diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js index bee3af2a..51fd41ef 100644 --- a/chrome/content/vimperator/commands.js +++ b/chrome/content/vimperator/commands.js @@ -1032,7 +1032,7 @@ function Commands() //{{{ ":set option! and :set invoption invert the value of a boolean option.
" + ":set option? or :set option(for string and list options) shows the current value of an option.
" + ":set option& resets an option to its default value.
" + - ":set option+=foo and :set option-=foo add/remove 'foo' from a string option.
", + ":set option+={value} and :set option-={value} will add/subtract {value} to a number option and append/remove {value} to a string option.
", completer: function(filter) { return vimperator.completion.get_options_completions(filter); } } ));