Tmux:滚动缓冲区不适用于 MSYS2/MINGW64(Git for Windows SDK)

Tmux:滚动缓冲区不适用于 MSYS2/MINGW64(Git for Windows SDK)

我安装了适用于 Windows SDK 的 Git在 Windows 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

相关内容