diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-02-22 21:35:09 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-03-16 20:42:19 +0100 |
commit | 5b5c9afa290bd444514c446ab6184c2ca55d9d72 (patch) | |
tree | 65f5b3da18d616053f63e2fe7edf3d9a46d2202a /src/gui/gui-key.h | |
parent | 1f5c791c37957d8714fb0e7d6e962531790e259b (diff) | |
download | weechat-5b5c9afa290bd444514c446ab6184c2ca55d9d72.zip |
core: add key alt-K (alt+shift+k) to grab raw key and its command
Diffstat (limited to 'src/gui/gui-key.h')
-rw-r--r-- | src/gui/gui-key.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/gui-key.h b/src/gui/gui-key.h index 8bcac6f64..c28658761 100644 --- a/src/gui/gui-key.h +++ b/src/gui/gui-key.h @@ -90,7 +90,8 @@ extern time_t gui_key_last_activity_time; extern void gui_key_init (); extern int gui_key_search_context (const char *context); -extern void gui_key_grab_init (int grab_command, const char *delay); +extern void gui_key_grab_init (int grab_raw_key, int grab_command, + const char *delay); extern char *gui_key_legacy_expand (const char *key); extern int gui_key_expand (const char *key, char **key_name, char **key_name_alias); |