diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js index d8b3bc7f..a474a823 100644 --- a/chrome/content/vimperator/commands.js +++ b/chrome/content/vimperator/commands.js @@ -777,12 +777,12 @@ function Commands() //{{{ "" + "
  • Opened with the specified search engine if the token looks like a search string " + - "and the first word is the name of a search engine (:open wikipedia linus torvalds " + + "and the first word is the name of a search engine (:open Wikipedia linus torvalds " + "will open the wikipedia entry for linus torvalds). The short name of a search engine is automatically guessed from its name. " + "If you want to set a custom name, open the $FIREFOX_PROFILE/searchplugins/*.xml file of the search engine, and add/change " + "<Alias>myalias</Alias>
  • " + "
  • Opened with the default search engine or keyword (specified with the 'defsearch' option) " + - "if the first word is no search engine (:open linus torvalds will open a google search for linux torvalds).
  • " + + "if the first word is no search engine (:open linus torvalds will open a Google search for linux torvalds)." + "
  • Passed directly to Firefox in all other cases (:open www.osnews.com, www.slashdot.org will " + "open OSNews in the current, and Slashdot in a new background tab).
  • " + "" + diff --git a/chrome/content/vimperator/mappings.js b/chrome/content/vimperator/mappings.js index 7bb60058..ff9651ff 100644 --- a/chrome/content/vimperator/mappings.js +++ b/chrome/content/vimperator/mappings.js @@ -312,7 +312,7 @@ function Mappings() //{{{ addDefaultMap(new Map(vimperator.modes.NORMAL, ["I"], function() { vimperator.addMode(null, vimperator.modes.ESCAPE_ALL_KEYS); }, { - short_help: "Disable vimperator keys", + short_help: "Disable Vimperator keys", help: "Starts an 'ignorekeys' mode, where all keys except <Esc> are passed to the next event handler.
    " + "This is especially useful, if JavaScript controlled forms like the RichEdit form fields of GMail don't work anymore.
    " + "To exit this mode, press <Esc>. If you also need to pass <Esc>" + @@ -323,8 +323,8 @@ function Mappings() //{{{ function() { vimperator.addMode(null, vimperator.modes.ESCAPE_ONE_KEY); }, { short_help: "Escape next key", - help: "If you need to pass a certain key to a javascript form field or another extension prefix the key with <C-v>.
    " + - "Also works to unshadow Firefox shortcuts like <C-o> which are otherwise hidden in vimperator.
    " + + help: "If you need to pass a certain key to a JavaScript form field or another extension prefix the key with <C-v>.
    " + + "Also works to unshadow Firefox shortcuts like <C-o> which are otherwise hidden in Vimperator.
    " + "When in 'ignorekeys' mode (activated by <I>), <C-v> will pass the next key to Vimperator instead of the web page." } ));