diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-12 10:20:58 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-12 10:22:38 +0100 |
commit | 8d238491d01f21f5be5d6f8755126a0da6ad914c (patch) | |
tree | 5f987e4f5e54d7e1f3454e09d209a8d5232bea5a /tmux.h | |
parent | 5a34f51d337aefa723d3e5366727f88c723b293a (diff) | |
download | rtmux-8d238491d01f21f5be5d6f8755126a0da6ad914c.tar.gz rtmux-8d238491d01f21f5be5d6f8755126a0da6ad914c.tar.bz2 rtmux-8d238491d01f21f5be5d6f8755126a0da6ad914c.zip |
Show default key bindings in customize mode.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1669,6 +1669,7 @@ RB_HEAD(key_bindings, key_binding); struct key_table { const char *name; struct key_bindings key_bindings; + struct key_bindings default_key_bindings; u_int references; @@ -2245,6 +2246,7 @@ struct key_table *key_bindings_first_table(void); struct key_table *key_bindings_next_table(struct key_table *); void key_bindings_unref_table(struct key_table *); struct key_binding *key_bindings_get(struct key_table *, key_code); +struct key_binding *key_bindings_get_default(struct key_table *, key_code); struct key_binding *key_bindings_first(struct key_table *); struct key_binding *key_bindings_next(struct key_table *, struct key_binding *); void key_bindings_add(const char *, key_code, const char *, int, |