1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 00:07:58 +01:00

mention numerical options in :set option+={value} documentation

This commit is contained in:
Doug Kearns
2007-08-20 11:06:19 +00:00
parent 0df930ffbd
commit 0031c65651

View File

@@ -1032,7 +1032,7 @@ function Commands() //{{{
"<code class=\"command\">:set option!</code> and <code class=\"command\">:set invoption</code> invert the value of a boolean option.<br/>" +
"<code class=\"command\">:set option?</code> or <code class=\"command\">:set option</code>(for string and list options) shows the current value of an option.<br/>" +
"<code class=\"command\">:set option&amp;</code> resets an option to its default value.<br/>" +
"<code class=\"command\">:set option+=foo</code> and <code class=\"command\">:set option-=foo</code> add/remove 'foo' from a string option.<br/>",
"<code class=\"command\">:set option+={value}</code> and <code class=\"command\">:set option-={value}</code> will add/subtract {value} to a number option and append/remove {value} to a string option.<br/>",
completer: function(filter) { return vimperator.completion.get_options_completions(filter); }
}
));