diff options
author | 2016-10-19 09:24:57 +0000 | |
---|---|---|
committer | 2016-10-19 09:24:57 +0000 | |
commit | 9c93705d006b68f7e048b45847a5d2fd0b4e1fb2 (patch) | |
tree | eed9228eafa2420bf0be7e44fa79f7323f8c4306 | |
parent | Alerts are too slow, so rather than walking all sessions and windows, (diff) | |
download | wireguard-openbsd-9c93705d006b68f7e048b45847a5d2fd0b4e1fb2.tar.xz wireguard-openbsd-9c93705d006b68f7e048b45847a5d2fd0b4e1fb2.zip |
Do not have a default binding for C-b in copy-mode-vi or it conflicts
with the default prefix. Reported by natano@.
-rw-r--r-- | usr.bin/tmux/key-bindings.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/key-bindings.c b/usr.bin/tmux/key-bindings.c index cb993397a8f..04d17a7a68c 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.62 2016/10/16 19:04:05 nicm Exp $ */ +/* $OpenBSD: key-bindings.c,v 1.63 2016/10/19 09:24:57 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -296,7 +296,6 @@ key_bindings_init(void) "bind -Tcopy-mode C-Up send -X scroll-up", "bind -Tcopy-mode C-Down send -X scroll-down", - "bind -Tcopy-mode-vi C-b send -X page-up", "bind -Tcopy-mode-vi C-c send -X cancel", "bind -Tcopy-mode-vi C-d send -X halfpage-down", "bind -Tcopy-mode-vi C-e send -X scroll-down", |