Tmux:スクロールバッファがMSYS2 / MINGW64(Windows SDK用Git)では機能しません。

Tmux:スクロールバッファがMSYS2 / MINGW64(Windows SDK用Git)では機能しません。

インストールしましたWindows SDK用GitWindows 11では、pacmanパッケージインストーラをインストールできるように設定しますtmux

多くの機能は他のプラットフォームと同様に機能しますが、PREFIX+を使用して後方にスクロールする[ことは実際には機能しません。

端末がスクロールモードに切り替わる方法を見ることができます(右上隅にある黄色のカウンター)、まったく動くことができず停止します0/XX。私ができることはスクロールを止めるだけですC-c

この問題をどのように解決できますか?

私のもの.tmux.conf

# prefix
unbind C-b
set -g prefix C-t
bind C-t send-prefix

# behavior
set -g escape-time 10 # see https://github.com/tmux/tmux/issues/353#issuecomment-294570322
set -g repeat-time 550 # allows holding down array keys for continuous strokes on MacOS

# theme
set -g default-terminal "screen-256color"
set -g status-bg color234
set -g status-fg white
set-window-option -g window-status-current-style bg=color233
bind § command-prompt -p "(set status-bg)" "set status-bg %1"

# rename
bind $ command-prompt "rename-session '%%'"
bind , command-prompt "rename-window '%%'"

# persistent cwd
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"

# reload config
bind r source-file ~/.tmux.conf

ベストアンサー1

おすすめ記事