diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-03-28 14:08:09 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-03-28 14:08:09 +0000 |
commit | cb2ac5c269d42d1f95e6dc6e5585c4ac01a360e4 (patch) | |
tree | 073904bbde12e7de88bf481cb50ca29436251a89 /cmd-resize-pane-up.c | |
parent | 587badecdb4eed64835e076a589631ceda3bcae5 (diff) | |
download | rtmux-cb2ac5c269d42d1f95e6dc6e5585c4ac01a360e4.tar.gz rtmux-cb2ac5c269d42d1f95e6dc6e5585c4ac01a360e4.tar.bz2 rtmux-cb2ac5c269d42d1f95e6dc6e5585c4ac01a360e4.zip |
Key repeating is now a property of the key binding not of the command. Repeat
is turned on when the key is bound with the -r flag to bind-key. next/previous-
window no longer repeat by default as it turned out to annoy me.
Diffstat (limited to 'cmd-resize-pane-up.c')
-rw-r--r-- | cmd-resize-pane-up.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-resize-pane-up.c b/cmd-resize-pane-up.c index 578a4316..5c685c78 100644 --- a/cmd-resize-pane-up.c +++ b/cmd-resize-pane-up.c @@ -1,4 +1,4 @@ -/* $Id: cmd-resize-pane-up.c,v 1.6 2009-01-19 18:23:40 nicm Exp $ */ +/* $Id: cmd-resize-pane-up.c,v 1.7 2009-03-28 14:08:09 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -32,7 +32,7 @@ int cmd_resize_pane_up_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_resize_pane_up_entry = { "resize-pane-up", "resizep-up", CMD_PANE_WINDOW_USAGE " [adjustment]", - CMD_ARG01|CMD_CANREPEAT, + CMD_ARG01, cmd_resize_pane_up_init, cmd_pane_parse, cmd_resize_pane_up_exec, |