tmux produz “comando desconhecido: modo de cópia” no início

0

Meu arquivo .tmux.conf se parece com o seguinte:

# enable aliases in tmux
set-option -g default-command /bin/bash
bind-key -n C-a send-prefix

# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %

# Scroll using PgUp and PgDown
bind -temacs-edit -n PageUp copy-mode -u
bind -temacs-copy -n PageUp halfpage-up
bind -temacs-copy -n PageDown halfpage-down

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

# switch panes using Alt+Arrowkeys
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D

# enable mouse-mode
set -g mouse-select-window on
set -g mouse-select-pane on
set -g mode-mouse on

# rename windows automatically - will be changed eventually
set-option -g allow-rename on

# set the first window index to 1 to match keyboard layout
set -g base-index 1

# set scrollback-buffer
set -g history-limit 10000

# Ctrl+Pg(Up/Down) to switch windows
bind-key -n C-PageDown select-window -t :+
bind-key -n C-PageUp select-window -t :-

# No delay for escape key press
set -sg escape-time 0

# THEME
set -g status-bg blue
set -g status-fg white
set -g window-status-current-bg blue
set -g window-status-current-fg white
set -g window-status-current-attr bold
set -g status-interval 15
set -g status-left-length 30
set -g status-left '#[fg=yellow][#(whoami)@#(uname -n)]'
set -g status-right '#[fg=yellow]#(cut -d " " -f 1-3 /proc/loadavg)#[default] #[fg=white]%H:%M#[default]'

De acordo com várias fontes, incluindo a man-page do tmux, o comando "copy-mode" deve fazer com que o tmux entre no modo de cópia. Por alguma razão isso não funciona: Ao abrir o tmux, recebo o erro /home/max/.tmux.conf:12: unknown command: copy-mode e ao tentar entrar no modo de cópia usando a PageUp-Key (depois de enviar spam pelo console usando o comando nmap ), nada acontece. No modo de cópia, no entanto, posso usar a PageUp-Key para pular meia página para cima.

    
por Max Matti 04.11.2016 / 12:07

1 resposta

0

Para inserir copy-mode pressionando PgUp (sem o prefixo), você precisa disso:

bind-key -T root PageUp copy-mode -u

Na seção manpage, em bind-key :

The root table is used for keys pressed without the prefix key: binding ‘c’ to new-window in the root table (not recommended) means a plain ‘c’ will create a new window. -n is an alias for -T root.

    
por 04.11.2016 / 14:28