1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 22:36:38 +02:00

buflist: add default keys ctrl-F1/F2 to scroll up/down one page in buflist (same action as F1/F2)

This commit is contained in:
Sébastien Helleu
2019-01-20 01:27:12 +01:00
parent 9d6ebeda0d
commit e847068a3c
8 changed files with 29 additions and 12 deletions
+4
View File
@@ -419,6 +419,10 @@ weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
{ /* <f1> */ "meta2-11~", "/bar scroll buflist * -100%" },
{ /* <f2> */ "meta-OQ", "/bar scroll buflist * +100%" },
{ /* <f2> */ "meta2-12~", "/bar scroll buflist * +100%" },
{ /* c-<f1> */ "meta2-11^", "/bar scroll buflist * -100%" },
{ /* c-<f1> */ "meta2-1;5P", "/bar scroll buflist * -100%" },
{ /* c-<f2> */ "meta2-12^", "/bar scroll buflist * +100%" },
{ /* c-<f2> */ "meta2-1;5P", "/bar scroll buflist * +100%" },
{ /* m-<f1> */ "meta-meta-OP", "/bar scroll buflist * b" },
{ /* m-<f1> */ "meta-meta2-11~", "/bar scroll buflist * b" },
{ /* m-<f2> */ "meta-meta-OQ", "/bar scroll buflist * e" },