diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-01-20 01:33:47 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-01-20 01:33:47 +0100 |
commit | ada29940621834134343ee98fcfd26d473dbecbc (patch) | |
tree | a0721dcbc8fe3101153f1a10b6f6db2e55cbbd7c /src/plugins | |
parent | a199d243cad098708cc5c9131ed1d3e93db9339c (diff) | |
download | weechat-ada29940621834134343ee98fcfd26d473dbecbc.zip |
buflist: add alternate key codes for alt-F1/alt-F2 (xterm)
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/buflist/buflist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/buflist/buflist.c b/src/plugins/buflist/buflist.c index 0c79a24c0..f4ccb820a 100644 --- a/src/plugins/buflist/buflist.c +++ b/src/plugins/buflist/buflist.c @@ -425,8 +425,10 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[]) { /* c-<f2> */ "meta2-1;5Q", "/bar scroll buflist * +100%" }, { /* m-<f1> */ "meta-meta-OP", "/bar scroll buflist * b" }, { /* m-<f1> */ "meta-meta2-11~", "/bar scroll buflist * b" }, + { /* m-<f1> */ "meta2-1;3P", "/bar scroll buflist * b" }, { /* m-<f2> */ "meta-meta-OQ", "/bar scroll buflist * e" }, { /* m-<f2> */ "meta-meta2-12~", "/bar scroll buflist * e" }, + { /* m-<f2> */ "meta2-1;3Q", "/bar scroll buflist * e" }, { NULL, NULL }, }; |