4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
29 enum cmd_retval
cmd_list_keys_exec(struct cmd
*, struct cmd_q
*);
30 enum cmd_retval
cmd_list_keys_table(struct cmd
*, struct cmd_q
*);
32 const struct cmd_entry cmd_list_keys_entry
= {
42 cmd_list_keys_exec(struct cmd
*self
, struct cmd_q
*cmdq
)
44 struct args
*args
= self
->args
;
45 struct key_binding
*bd
;
47 char tmp
[BUFSIZ
], flags
[8];
51 if (args_has(args
, 't'))
52 return (cmd_list_keys_table(self
, cmdq
));
56 RB_FOREACH(bd
, key_bindings
, &key_bindings
) {
57 key
= key_string_lookup_key(bd
->key
& ~KEYC_PREFIX
);
61 keywidth
= strlen(key
);
62 if (!(bd
->key
& KEYC_PREFIX
)) {
67 } else if (bd
->can_repeat
)
73 RB_FOREACH(bd
, key_bindings
, &key_bindings
) {
74 key
= key_string_lookup_key(bd
->key
& ~KEYC_PREFIX
);
79 if (!(bd
->key
& KEYC_PREFIX
)) {
81 xsnprintf(flags
, sizeof flags
, "-rn ");
83 xsnprintf(flags
, sizeof flags
, "-n ");
84 } else if (bd
->can_repeat
)
85 xsnprintf(flags
, sizeof flags
, "-r ");
87 used
= xsnprintf(tmp
, sizeof tmp
, "%s%*s ",
88 flags
, (int) (width
- strlen(flags
)), key
);
89 if (used
>= sizeof tmp
)
92 cmd_list_print(bd
->cmdlist
, tmp
+ used
, (sizeof tmp
) - used
);
93 cmdq_print(cmdq
, "bind-key %s", tmp
);
96 return (CMD_RETURN_NORMAL
);
100 cmd_list_keys_table(struct cmd
*self
, struct cmd_q
*cmdq
)
102 struct args
*args
= self
->args
;
103 const char *tablename
;
104 const struct mode_key_table
*mtab
;
105 struct mode_key_binding
*mbind
;
106 const char *key
, *cmdstr
, *mode
;
107 int width
, keywidth
, any_mode
;
109 tablename
= args_get(args
, 't');
110 if ((mtab
= mode_key_findtable(tablename
)) == NULL
) {
111 cmdq_error(cmdq
, "unknown key table: %s", tablename
);
112 return (CMD_RETURN_ERROR
);
117 RB_FOREACH(mbind
, mode_key_tree
, mtab
->tree
) {
118 key
= key_string_lookup_key(mbind
->key
);
122 if (mbind
->mode
!= 0)
125 keywidth
= strlen(key
);
126 if (keywidth
> width
)
130 RB_FOREACH(mbind
, mode_key_tree
, mtab
->tree
) {
131 key
= key_string_lookup_key(mbind
->key
);
136 if (mbind
->mode
!= 0)
138 cmdstr
= mode_key_tostring(mtab
->cmdstr
, mbind
->cmd
);
139 if (cmdstr
!= NULL
) {
140 cmdq_print(cmdq
, "bind-key -%st %s%s %*s %s%s%s%s",
141 mode
, any_mode
&& *mode
== '\0' ? " " : "",
142 mtab
->name
, (int) width
, key
, cmdstr
,
143 mbind
->arg
!= NULL
? " \"" : "",
144 mbind
->arg
!= NULL
? mbind
->arg
: "",
145 mbind
->arg
!= NULL
? "\"": "");
149 return (CMD_RETURN_NORMAL
);