diff options
Diffstat (limited to 'src/plugins/fset')
-rw-r--r-- | src/plugins/fset/fset-command.c | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/src/plugins/fset/fset-command.c b/src/plugins/fset/fset-command.c index 7772f0730..f76d476e7 100644 --- a/src/plugins/fset/fset-command.c +++ b/src/plugins/fset/fset-command.c @@ -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 " |