diff --git a/content/commands.js b/content/commands.js
index 2a9fb60e..77e4c6b6 100644
--- a/content/commands.js
+++ b/content/commands.js
@@ -529,7 +529,7 @@ vimperator.Commands = function() //{{{
function() { vimperator.open("chrome://mozapps/content/extensions/extensions.xul", vimperator.NEW_TAB); },
{
short_help: "Show available Browser Extensions and Themes",
- help: "You can add/remove/disable browser extensions from this dialog.
Be aware that not all Firefox extensions work, because Vimperator overrides some keybindings and changes Firefox's GUI."
+ help: "You can add/remove/disable browser extensions from this dialog.
Be aware that not all Firefox extensions work, because Vimperator overrides some key bindings and changes Firefox's GUI."
}
));
addDefaultCommand(new vimperator.Command(["ba[ck]"],
@@ -689,7 +689,7 @@ vimperator.Commands = function() //{{{
usage: ["delbm[arks] [url]"],
short_help: "Delete a bookmark",
help: "Deletes all bookmarks which match the [url]. " +
- "If ommited, [url] defaults to the URL of the current buffer. " +
+ "If omitted, [url] defaults to the URL of the current buffer. " +
"Use <Tab> key on a string to complete the URL which you want to delete.
" +
"The following options WILL be interpreted in the future:
" +
" [!] a special version to delete ALL bookmarks
",
@@ -942,7 +942,7 @@ vimperator.Commands = function() //{{{
usage: ["h[elp] {subject}"],
short_help: "Open the help window",
help: "You can jump to the specified {subject} with :help {subject}.
" +
- "Make sure you use the full vim notation when jumping to {subject}. This means:
" +
+ "Make sure you use the full Vim notation when jumping to {subject}. This means:
" +
"
:help :help for commands (: prefix):help 'complete' for options (surrounded by ' and ')[file] is specified then ~/.vimperatorrc is written unless this file already exists. " +
"The special version will overwrite [file] if it exists.:prefs! opens about:config in the current tab where you can change advanced Firefox preferences."
}
));
@@ -2081,7 +2081,7 @@ vimperator.Commands = function() //{{{
short_help: "Profile a piece of code or a command",
help: "Runs {code} {count} times (default 1) and returns the elapsed time. " +
"{code} is always passed to JavaScript's eval(), which might be slow, so take the results with a grain of salt.{code} starts with a :, it is executed as a vimperator command.{code} starts with a :, it is executed as a Vimperator command.v to start its Visual mode."
}
));
@@ -1057,7 +1057,7 @@ vimperator.Mappings = function() //{{{
{
short_help: "Start QuickHint mode, but open link in a new tab",
usage: ["F{hint}"],
- help: "Like normal QuickMode (activated with f) but opens the link in a new tab."
+ help: "Like normal QuickHint mode (activated with f) but opens the link in a new tab."
}
));
// addDefaultMap(new vimperator.Map([vimperator.modes.NORMAL], ["F"],
@@ -1118,7 +1118,7 @@ vimperator.Mappings = function() //{{{
{
short_help: "Search forward for a pattern",
usage: ["/{pattern}[/]{pattern}.{pattern}.'ignorecase' is on. " +
"\"\\C\" forces case-sensitive matching for the whole pattern.'linksearch' is on. " +
@@ -1130,7 +1130,7 @@ vimperator.Mappings = function() //{{{
{
short_help: "Search backwards for a pattern",
usage: ["?{pattern}[?]{pattern}.{pattern}.'ignorecase' is on. " +
"\"\\C\" forces case-sensitive matching for the whole pattern.'linksearch' is on. " +
diff --git a/content/options.js b/content/options.js
index 0d4b1972..bb93ab80 100644
--- a/content/options.js
+++ b/content/options.js
@@ -458,7 +458,7 @@ vimperator.Options = function() //{{{
{
short_help: "Set the external text editor",
help: "Sets the editor to run when <C-i> " +
- "is pressed in INSERT and TEXTAREA modes. Note that vimperator will " +
+ "is pressed in INSERT and TEXTAREA modes. Note that Vimperator will " +
"not behave correctly if the editor forks its own process, such as with "+
"gvim without the -f argument.",
default_value: "gvim -f"