diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-14 22:13:30 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-14 22:13:30 +0000 |
commit | 97fef895f25eccb5de4d57eebe241f5ef8a61f51 (patch) | |
tree | 2a55b3626ee26b79b136ef08130931418e518ce3 /cmd-resize-pane-down.c | |
parent | 0a99ba0b30f89388384c58a1188d38cea327b687 (diff) | |
download | rtmux-97fef895f25eccb5de4d57eebe241f5ef8a61f51.tar.gz rtmux-97fef895f25eccb5de4d57eebe241f5ef8a61f51.tar.bz2 rtmux-97fef895f25eccb5de4d57eebe241f5ef8a61f51.zip |
Rework the prefix-time stuff. The option is now call repeat-time and defaults to 500 ms. However, it only applies to a small subset of commands, currently: up-pane, down-pane, next-window, previous-window, resize-pane-up, resize-pane-down. These are the commands for which it is obviously useful, having it for everything else was just bloody annoying.
Diffstat (limited to 'cmd-resize-pane-down.c')
-rw-r--r-- | cmd-resize-pane-down.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-resize-pane-down.c b/cmd-resize-pane-down.c index 4707ab9e..edc63f06 100644 --- a/cmd-resize-pane-down.c +++ b/cmd-resize-pane-down.c @@ -1,4 +1,4 @@ -/* $Id: cmd-resize-pane-down.c,v 1.3 2009-01-14 21:08:52 nicm Exp $ */ +/* $Id: cmd-resize-pane-down.c,v 1.4 2009-01-14 22:13:30 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -32,7 +32,7 @@ void cmd_resize_pane_down_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_resize_pane_down_entry = { "resize-pane-down", "resizep-down", CMD_PANE_WINDOW_USAGE " [adjustment]", - CMD_ZEROONEARG, + CMD_ZEROONEARG|CMD_CANREPEAT, cmd_resize_pane_down_init, cmd_pane_parse, cmd_resize_pane_down_exec, |