diff options
author | 2020-03-20 18:05:22 +0000 | |
---|---|---|
committer | 2020-03-20 18:05:22 +0000 | |
commit | 489d95b46f0aee6177a780912f54d30ad8a60772 (patch) | |
tree | 3ed6038f824362d49d3b63685739f5df88ea6861 /usr.bin/tmux/key-bindings.c | |
parent | Make the mouse_word and mouse_line formats work in copy mode and enable (diff) | |
download | wireguard-openbsd-489d95b46f0aee6177a780912f54d30ad8a60772.tar.xz wireguard-openbsd-489d95b46f0aee6177a780912f54d30ad8a60772.zip |
Oops, typo in key binding.
Diffstat (limited to 'usr.bin/tmux/key-bindings.c')
-rw-r--r-- | usr.bin/tmux/key-bindings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/key-bindings.c b/usr.bin/tmux/key-bindings.c index 410a5aadaf6..30b6e983ee8 100644 --- a/usr.bin/tmux/key-bindings.c +++ b/usr.bin/tmux/key-bindings.c @@ -1,4 +1,4 @@ -/* $OpenBSD: key-bindings.c,v 1.109 2020/03/20 17:59:39 nicm Exp $ */ +/* $OpenBSD: key-bindings.c,v 1.110 2020/03/20 18:05:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -47,7 +47,7 @@ " 'New At End' 'W' {new-window}" #define DEFAULT_PANE_MENU \ " '#{?#{==:#{pane_mode},copy-mode},Go To Top,}' '<' {send -X history-top}" \ - " '#{?#{==:#{pane_mode},copy-mode},Go To Bottom,}' '<' {send -X history-bottom}" \ + " '#{?#{==:#{pane_mode},copy-mode},Go To Bottom,}' '>' {send -X history-bottom}" \ " ''" \ " '#{?mouse_word,Search For #[underscore]#{=/9/...:mouse_word},}' 'C-r' {copy-mode -t=; send -Xt= search-backward \"#{q:mouse_word}\"}" \ " '#{?mouse_word,Type #[underscore]#{=/9/...:mouse_word},}' 'C-y' {copy-mode -q; send-keys -l -- \"#{q:mouse_word}\"}" \ |