commit 52e11e55b41f1d8a58ac3b1aa8f11887d775c531
parent 79cc696087537b65b9eb10a64f1ae057face99cb
Author: Chris Bracken <chris@bracken.jp>
Date: Wed, 26 Jan 2022 11:05:29 -0800
tmux: bind C-b ? to list-keys
By default this mapping is bound to `list-keys -N` which lists only the
root and prefix tables. Almost every time I'm actually looking up a
key binding, it's something more obscure, so we now list all bindings by
default.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/.tmux.conf b/.tmux.conf
@@ -7,6 +7,7 @@ bind-key h select-pane -L
bind-key j select-pane -D
bind-key k select-pane -U
bind-key l select-pane -R
+bind-key ? list-keys
bind-key -T copy-mode-vi 'v' send-keys -X begin-selection
bind-key -T copy-mode-vi 'y' send-keys -X copy-selection
bind-key -T copy-mode-vi 'r' send-keys -X rectangle-toggle