diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-01 21:23:52 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-25 16:35:27 +0200 |
commit | b7d7a95ff071d192bd582890cbb50c60e88766fe (patch) | |
tree | cb0336df6a945e3119948f223b176f341c435e55 /src/plugins/fset/fset-command.c | |
parent | 9a923eb7e7d6c812133b24025e674596d75943ec (diff) | |
download | weechat-b7d7a95ff071d192bd582890cbb50c60e88766fe.zip |
fset: add allowed input on buffer in /help fset
Diffstat (limited to 'src/plugins/fset/fset-command.c')
-rw-r--r-- | src/plugins/fset/fset-command.c | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/src/plugins/fset/fset-command.c b/src/plugins/fset/fset-command.c index d003f6175..cd8b3cbba 100644 --- a/src/plugins/fset/fset-command.c +++ b/src/plugins/fset/fset-command.c @@ -570,17 +570,19 @@ fset_command_init () " - same names prefixed by two underscores, for example: " "${__name}, ${__type}, ...\n" "\n" - "Keys on fset buffer:\n" - " alt+space toggle boolean value\n" - " alt+'-' subtract 1 from value (integer/color)\n" - " alt+'+' add 1 to value (integer/color)\n" - " alt+f, alt+r reset value\n" - " alt+f, alt+u unset value\n" - " alt+enter set value\n" - " alt+f, alt+a append to value\n" - " 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"), + "Keys and input 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" + " alt+f, alt+r r reset value\n" + " alt+f, alt+u u unset value\n" + " alt+enter s set value\n" + " alt+f, alt+a a append to value\n" + " 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, unmark all options\n" + " q close fset buffer"), "-bar" " || -refresh" " || -up 1|2|3|4|5" |