Мой .tmux.conf выглядит следующим образом:

# 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]'

Согласно различным источникам, включая man-страницу tmux, команда «copy-mode» должна заставить tmux войти в режим copy. По какой-то причине это не работает: при открытии tmux я получаю ошибку /home/max/.tmux.conf:12: unknown command: copy-mode и при попытке войти в режим копирования с помощью PageUp-Key (после спамить консоль с помощью команды nmap ) ничего не происходит. Однако в режиме копирования я могу использовать PageUp-Key для перехода на половину страницы вверх.

1 ответ1

0

Чтобы войти в copy-mode нажатием PgUp (без префикса), вам нужно это:

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

Из раздела man на bind-key:

Корневая таблица используется для клавиш, нажимаемых без префиксной клавиши: привязка 'c' к новому окну в корневой таблице (не рекомендуется) означает, что обычная 'c' создаст новое окно. -n является псевдонимом для -T root.

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .