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 int cmd_list_keys_exec(struct cmd
*, struct cmd_ctx
*);
31 int cmd_list_keys_table(struct cmd
*, struct cmd_ctx
*);
33 const struct cmd_entry cmd_list_keys_entry
= {
44 cmd_list_keys_exec(struct cmd
*self
, struct cmd_ctx
*ctx
)
46 struct args
*args
= self
->args
;
47 struct key_binding
*bd
;
49 char tmp
[BUFSIZ
], flags
[8];
53 if (args_has(args
, 't'))
54 return (cmd_list_keys_table(self
, ctx
));
59 SPLAY_FOREACH(bd
, key_bindings
, &key_bindings
) {
60 key
= key_string_lookup_key(bd
->key
& ~KEYC_PREFIX
);
64 keywidth
= strlen(key
);
65 if (!(bd
->key
& KEYC_PREFIX
)) {
70 } else if (bd
->can_repeat
)
76 SPLAY_FOREACH(bd
, key_bindings
, &key_bindings
) {
77 key
= key_string_lookup_key(bd
->key
& ~KEYC_PREFIX
);
81 if (!(bd
->key
& KEYC_PREFIX
)) {
83 xsnprintf(flags
, sizeof flags
, "-rn ");
85 xsnprintf(flags
, sizeof flags
, "-n ");
86 } else if (bd
->can_repeat
)
87 xsnprintf(flags
, sizeof flags
, "-r ");
89 used
= xsnprintf(tmp
, sizeof tmp
, "%s%*s ",
90 flags
, (int) (width
- strlen(flags
)), key
);
91 if (used
>= sizeof tmp
)
94 cmd_list_print(bd
->cmdlist
, tmp
+ used
, (sizeof tmp
) - used
);
95 ctx
->print(ctx
, "bind-key %s", tmp
);
102 cmd_list_keys_table(struct cmd
*self
, struct cmd_ctx
*ctx
)
104 struct args
*args
= self
->args
;
105 const char *tablename
;
106 const struct mode_key_table
*mtab
;
107 struct mode_key_binding
*mbind
;
108 const char *key
, *cmdstr
, *mode
;
109 int width
, keywidth
, any_mode
;
111 tablename
= args_get(args
, 't');
112 if ((mtab
= mode_key_findtable(tablename
)) == NULL
) {
113 ctx
->error(ctx
, "unknown key table: %s", tablename
);
119 SPLAY_FOREACH(mbind
, mode_key_tree
, mtab
->tree
) {
120 key
= key_string_lookup_key(mbind
->key
);
124 if (mbind
->mode
!= 0)
127 keywidth
= strlen(key
);
128 if (keywidth
> width
)
132 SPLAY_FOREACH(mbind
, mode_key_tree
, mtab
->tree
) {
133 key
= key_string_lookup_key(mbind
->key
);
138 if (mbind
->mode
!= 0)
140 cmdstr
= mode_key_tostring(mtab
->cmdstr
, mbind
->cmd
);
141 if (cmdstr
!= NULL
) {
142 ctx
->print(ctx
, "bind-key -%st %s%s %*s %s",
143 mode
, any_mode
&& *mode
== '\0' ? " " : "",
144 mtab
->name
, (int) width
, key
, cmdstr
);