diff options
author | nicm <nicm> | 2020-06-03 16:35:40 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-06-03 16:35:40 +0000 |
commit | 3f6af4156f451cfbee867babe74cc6675eb3f947 (patch) | |
tree | 7390998b520046f1ff1667a8197033dd8c1af902 | |
parent | 4694e9a2b62c8df0862d80237e42978d65fc824e (diff) | |
download | rtmux-3f6af4156f451cfbee867babe74cc6675eb3f947.tar.gz rtmux-3f6af4156f451cfbee867babe74cc6675eb3f947.tar.bz2 rtmux-3f6af4156f451cfbee867babe74cc6675eb3f947.zip |
Make paste -p the default for ], GitHub issue 2248.
-rw-r--r-- | key-bindings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/key-bindings.c b/key-bindings.c index a518fbd8..9e198123 100644 --- a/key-bindings.c +++ b/key-bindings.c @@ -311,7 +311,7 @@ key_bindings_init(void) "bind -N 'Switch to the last client' L switch-client -l", "bind -N 'Clear the marked pane' M select-pane -M", "bind -N 'Enter copy mode' [ copy-mode", - "bind -N 'Paste the most recent paste buffer' ] paste-buffer", + "bind -N 'Paste the most recent paste buffer' ] paste-buffer -p", "bind -N 'Create a new window' c new-window", "bind -N 'Detach the current client' d detach-client", "bind -N 'Search for a pane' f command-prompt \"find-window -Z -- '%%'\"", |