Eu gostaria de poder rolar para cima / baixo em um determinado painel com a mesma combinação de teclas que o xterm faz, ou seja, SHIFT + Page Up / Down.
Por exemplo, se a janela do tmux estiver dividida em 2 painéis verticais, eu poderia rolar em um dos dois com o teclado enquanto o outro não rolar.
É possível ?
Aqui está o meu tmux.conf:
set -g status off
set -g prefix C-o
unbind C-b
bind C-o send-prefix
# settings -------------------------------------------------------------
setw -g utf8 on
setw -g xterm-keys on
set -g default-terminal "screen-256color"
set-option -g set-titles on
set-option -g set-titles-string '[#S:#I #H] #W'
# auto-set window title
setw -g automatic-rename
setw -g aggressive-resize on
# vim keybinds
set-option -g status-keys vi
set-window-option -g mode-keys vi
# scroll inside the current pane
#bind-key k page-up
#bind-key l page-down
# mouse
set -g mode-mouse on
setw -g mouse-select-window on
setw -g mouse-select-pane on
# scrollback buffer n lines
set -g history-limit 100000
# fixes shift-pageup/shift-pagedown
set -g terminal-overrides 'xterm*:smcup@:rmcup@'
set -g visual-activity on
# faster key repetition
set -s escape-time 0
# activity alert
setw -g monitor-activity on
set -g visual-activity on
# alt+directions navigates through panes
bind-key -n M-left select-pane -L
bind-key -n M-right select-pane -R
bind-key -n M-up select-pane -U
bind-key -n M-down select-pane -D
bind -n Pageup copy-mode -u
me permita pressionar PgUp para entrar no modo de cópia e rolar para cima, não posso usar o PgUp para continuar rolando para cima.