Tmux Mouse scroll quebrado

1

Ok, então, antes que alguém entenda errado, deixe-me claro que estou totalmente ciente de como rolar usando o teclado no tmux.

Eu tenho usado a seguinte linha set -ga terminal-overrides ',xterm*:smcup@:rmcup@' para usar a roda do mouse para rolagem.

Meu 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 %

Meu .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

Ultimamente, quando tento a rolagem, a saída está ausente em várias linhas e geralmente está incompleta. Eu tentei um monte de configuração, nenhum dos quais funcionou até agora. Algum conselho?

    
por Ashesh Kumar Singh 01.11.2017 / 18:12

0 respostas