1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 09:43:13 +02:00

fset: add missing keys/mouse actions in /help fset

This commit is contained in:
Sébastien Helleu
2017-06-10 13:24:20 +02:00
parent f8fad8e6a5
commit c1801663f3
+21 -5
View File
@@ -618,7 +618,13 @@ fset_command_init ()
" - same names prefixed by two underscores, for example: "
"${__name}, ${__type}, ...\n"
"\n"
"Keys and input on fset buffer:\n"
"Keys to move in on fset buffer:\n"
" up/down move one line up/down\n"
" pgup/pgdn move one page up/down\n"
" alt-home/alt-end move to first/last line\n"
" F11/F12 scroll horizontally on the left/right\n"
"\n"
"Keys and input to set options on fset buffer:\n"
" alt+space t toggle boolean value\n"
" alt+'-' - subtract 1 from value (integer/color)\n"
" alt+'+' + add 1 to value (integer/color)\n"
@@ -629,10 +635,20 @@ fset_command_init ()
" alt+',' , mark/unmark option and move one line down\n"
" shift+down mark/unmark option and move one line down\n"
" shift+up mark/unmark option and move one line up\n"
" $ refresh options (keep marked options)\n"
" $$ refresh options (unmark all options)\n"
" v toggle help bar\n"
" q close fset buffer\n"
"\n"
"Other input on fset buffer:\n"
" $ refresh options (keep marked options)\n"
" $$ refresh options (unmark all options)\n"
" v toggle help bar\n"
" q close fset buffer\n"
"\n"
"Mouse actions on fset buffer:\n"
" wheel up/down move line up/down\n"
" left button move line here\n"
" right button toggle boolean (on/off) or "
"edit the option value\n"
" right button + drag left/right increase/decrease value "
"(for integer or color)\n"
"\n"
"Note: spaces at beginning of input are ignored, so for example "
"\"q\" closes the fset buffer while \" q\" searches all options "