好的,在任何人理解错误之前,让我先澄清一下,我完全知道如何在 tmux 中使用键盘滚动。
我一直使用以下行set -ga terminal-overrides ',xterm*:smcup@:rmcup@'
来使用鼠标滚轮进行滚动。
我的tmux.conf
:
bind r source-file ~/.tmux.conf \; display-message "Config reloaded."
source "/usr/share/tmux/powerline.conf"
set -g default-terminal 'screen-256color'
set -ga terminal-overrides ',xterm*:smcup@:rmcup@'
set-option -g allow-rename off
bind h split-window -h
bind v split-window -v
unbind '"'
unbind %
我的.zshrc
alias tmuxn='tmux new-session -s $$'
_trap_exit() { tmux kill-session -t $$; }
trap _trap_exit EXIT
if [[ "$TERM" == "xterm-256color" ]];then
tmuxn
fi
if [[ "$TERM" == "screen" ]] || [[ "$TERM" == "screen-256color" ]];then
if [ -f `which powerline-daemon` ]; then
powerline-daemon -q
POWERLINE_ZSH_CONTINUATION=1
POWERLINE_ZSH_SELECT=1
. /usr/share/powerline/zsh/powerline.zsh
fi
fi
最近当我尝试滚动时,输出缺少几行而且通常不完整。我尝试过很多配置设置,但到目前为止都没有用。有什么建议吗?