|
|
|
|
|
by donio
745 days ago
|
|
Not parent but keybindings are fully configurable. For example to scroll up with Shift-Pgup: bind -n S-PPage copy-mode -u
bind -T copy-mode S-PPage send -X page-up
bind -T copy-mode S-NPage send -X page-down
The first line is a top-level binding to enter copy-mode and immediately scroll up one page. The other two add bindings within copy-mode so you can continue to scroll up or down with those keys.I also have a small hack in my .zshrc to start scrolling up with `M-v` (like in Emacs) while at a shell prompt: tmuxup(){tmux copy-mode -u}
zle -N tmuxup
bindkey '^[v' tmuxup
|
|
[1] https://zellij.dev/