diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-03 14:58:32 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-06-25 16:35:27 +0200 |
commit | ab7830e32a6eced0496bd352930bbf4fa0706da3 (patch) | |
tree | 345ac7007bb01e71c550d2a7a8cacad0c142d463 /src | |
parent | f6070da900fcfcc9e00495eb48eb1e6a1de12dd3 (diff) | |
download | weechat-ab7830e32a6eced0496bd352930bbf4fa0706da3.zip |
fset: add missing keys/input in title of fset buffer
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/fset/fset-buffer.c | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/src/plugins/fset/fset-buffer.c b/src/plugins/fset/fset-buffer.c index e83dcad91..f14c98819 100644 --- a/src/plugins/fset/fset-buffer.c +++ b/src/plugins/fset/fset-buffer.c @@ -62,9 +62,21 @@ fset_buffer_set_title () snprintf (str_title, sizeof (str_title), _("%s | %d/%d%s | " - "Key(input): alt+'-'(-)=subtract 1, alt+'+'(+)=add 1, " - "alt+f,alt+r(r)=reset, alf+f,alt+u(u)=unset, " - "alt+enter(s)=set, alt+f,alt+a(a)=append"), + "Key(input): " + "alt+space=toggle boolean, " + "alt+'-'(-)=subtract 1, " + "alt+'+'(+)=add 1, " + "alt+f,alt+r(r)=reset, " + "alf+f,alt+u(u)=unset, " + "alt+enter(s)=set, " + "alt+f,alt+a(a)=append " + "alt+','=mark/unmark " + "shift+down=mark/move down " + "shift+up=mark/move up " + "($)=refresh " + "($$)=unmark/refresh " + "alt+v(v)=toggle help bar " + "(q)=close buffer"), (fset_option_filter) ? fset_option_filter : "*", (num_options > 0) ? fset_buffer_selected_line + 1 : 0, num_options, |