diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js
index c4783a55..9afd66ab 100644
--- a/chrome/content/vimperator/commands.js
+++ b/chrome/content/vimperator/commands.js
@@ -1060,7 +1060,7 @@ function Commands() //{{{
":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+={value} and :set option-={value} will add/subtract {value} to a number option and append/remove {value} to a string option.
" +
- ":set all will show the current value of all options and :set all& will reset all options to their default values.
",
+ ":set all will show the current value of all options and :set all& will reset all options to their default values.
",
completer: function(filter) { return vimperator.completion.get_options_completions(filter); }
}
));
diff --git a/chrome/content/vimperator/help.js b/chrome/content/vimperator/help.js
index b969e694..4ac63fba 100644
--- a/chrome/content/vimperator/help.js
+++ b/chrome/content/vimperator/help.js
@@ -61,6 +61,7 @@ vimperator.help = function(section, easter) //{{{
//usage = usage.replace(/[^b][^r][^\/]>/g, ">");
usage = usage.replace(//g, ">");
+ usage = usage.replace(/&/g, "&");
usage = usage.replace(/\\n/g, "
");
// color [count], [!], {arg} and [arg] in the usage, not nice and error prone but the regexp work (for now)
usage = usage.replace(/({[^}]+})/g, "$1"); // required args