summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/cmd-find-window.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2015-12-13 21:53:58 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2015-12-13 21:53:58 +0000
commitb6963b0c60cfb681b75de82ba3a20f950f4e7ea6 (patch)
tree46af6a3189c247c9d776e54ff1cdd580241e5c63 /usr.bin/tmux/cmd-find-window.c
parent617a01beaf1c1a39a678cf2edc5d01ab1baae1fe (diff)
Use member names in cmd_entry definitions so I stop getting confused
about the order.
Diffstat (limited to 'usr.bin/tmux/cmd-find-window.c')
-rw-r--r--usr.bin/tmux/cmd-find-window.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/usr.bin/tmux/cmd-find-window.c b/usr.bin/tmux/cmd-find-window.c
index bbcc76812d0..cebcc117b7e 100644
--- a/usr.bin/tmux/cmd-find-window.c
+++ b/usr.bin/tmux/cmd-find-window.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-find-window.c,v 1.34 2015/12/13 14:32:38 nicm Exp $ */
+/* $OpenBSD: cmd-find-window.c,v 1.35 2015/12/13 21:53:57 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -48,11 +48,14 @@ void cmd_find_window_callback(struct window_choose_data *);
CMD_FIND_WINDOW_BY_NAME)
const struct cmd_entry cmd_find_window_entry = {
- "find-window", "findw",
- "F:CNt:T", 1, 4,
- "[-CNT] [-F format] " CMD_TARGET_WINDOW_USAGE " match-string",
- CMD_WINDOW_T,
- cmd_find_window_exec
+ .name = "find-window",
+ .alias = "findw",
+
+ .args = { "F:CNt:T", 1, 4 },
+ .usage = "[-CNT] [-F format] " CMD_TARGET_WINDOW_USAGE " match-string",
+
+ .flags = CMD_WINDOW_T,
+ .exec = cmd_find_window_exec
};
struct cmd_find_window_data {