diff options
author | 2009-10-06 07:19:32 +0000 | |
---|---|---|
committer | 2009-10-06 07:19:32 +0000 | |
commit | 0a3091b17e1418a56e1bba5cca78b6a640b1fc1f (patch) | |
tree | aca571c5ead5532344d65e676a6b50447950a380 /usr.bin/tmux/cmd.c | |
parent | Make C-Up and C-Down in copy mode scroll the screen up and down one line (diff) | |
download | wireguard-openbsd-0a3091b17e1418a56e1bba5cca78b6a640b1fc1f.tar.xz wireguard-openbsd-0a3091b17e1418a56e1bba5cca78b6a640b1fc1f.zip |
Remove scroll mode which is now redundant, copy mode should be used instead.
The = key binding now does nothing.
Diffstat (limited to 'usr.bin/tmux/cmd.c')
-rw-r--r-- | usr.bin/tmux/cmd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd.c b/usr.bin/tmux/cmd.c index 13cd5f41045..46df3ec69ef 100644 --- a/usr.bin/tmux/cmd.c +++ b/usr.bin/tmux/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.20 2009/10/05 18:30:54 nicm Exp $ */ +/* $OpenBSD: cmd.c,v 1.21 2009/10/06 07:19:32 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -80,7 +80,6 @@ const struct cmd_entry *cmd_table[] = { &cmd_rotate_window_entry, &cmd_run_shell_entry, &cmd_save_buffer_entry, - &cmd_scroll_mode_entry, &cmd_select_layout_entry, &cmd_select_pane_entry, &cmd_select_prompt_entry, |