summaryrefslogtreecommitdiffstats
path: root/cmd-previous-window.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-03-28 14:08:09 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-03-28 14:08:09 +0000
commitcb2ac5c269d42d1f95e6dc6e5585c4ac01a360e4 (patch)
tree073904bbde12e7de88bf481cb50ca29436251a89 /cmd-previous-window.c
parent587badecdb4eed64835e076a589631ceda3bcae5 (diff)
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-previous-window.c')
-rw-r--r--cmd-previous-window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-previous-window.c b/cmd-previous-window.c
index b2372777..e9c4124d 100644
--- a/cmd-previous-window.c
+++ b/cmd-previous-window.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-previous-window.c,v 1.15 2009-01-19 18:23:40 nicm Exp $ */
+/* $Id: cmd-previous-window.c,v 1.16 2009-03-28 14:08:09 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -30,7 +30,7 @@ int cmd_previous_window_exec(struct cmd *, struct cmd_ctx *);
const struct cmd_entry cmd_previous_window_entry = {
"previous-window", "prev",
CMD_TARGET_SESSION_USAGE,
- CMD_CANREPEAT|CMD_AFLAG,
+ CMD_AFLAG,
cmd_previous_window_init,
cmd_target_parse,
cmd_previous_window_exec,