diff --git a/NEWS b/NEWS index ff88478f..86bd8e98 100644 --- a/NEWS +++ b/NEWS @@ -2,8 +2,6 @@ 2007-xx-xx: * version 0.6 * THIS VERSION ONLY WORKS WITH FIREFOX 3.0 - * [+], [-] and [+-] in the statusline, whether we can go back, forward, or both - * :set showtabline now finally works as expected for all values * added full zoom, and changed keybindings slightly for text zoom * :buffer partial_string works now as in vim, and with ! even better * improvements for scrollable -- more -- prompt diff --git a/content/commands.js b/content/commands.js index 2d81079d..b2733234 100644 --- a/content/commands.js +++ b/content/commands.js @@ -1019,7 +1019,7 @@ 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 " + "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 " + + "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).
  • " + @@ -1414,7 +1414,7 @@ function Commands() //{{{ "NOTE: In both cases you must add functions to the global window object like shown above, functions written as:
    " + "function hello2() {
      alert(\"Hello world\");
    }
    are only available within the scope of the script.

    " + "The .vimperatorrc file in your home directory and any files in ~/.vimperator/plugin/ are always sourced at startup.
    " + - "~ is supported as a shortcut for the $HOME directory.
    " + + "~ is supported as a shortcut for the $HOME directory.
    " + "If ! is specified, errors are not printed.", completer: function(filter) { return vimperator.completion.get_file_completions(filter); } } diff --git a/content/help.js b/content/help.js index 8c8f6ef9..45e054ac 100644 --- a/content/help.js +++ b/content/help.js @@ -169,12 +169,12 @@ vimperator.help = function(section, easter) //{{{ '
  • Unix and Mac - ~/.vimperator/plugin
  • ' + '
  • Windows - ~/vimperator/plugin
  • ' + '' + - '

    The user\'s $HOME(~) directory is determined as follows:

    ' + + '

    The user\'s $HOME(~) directory is determined as follows:

    ' + '' + - '$VIMPERATOR_HOME can be used to override the calculated $HOME directory.'; + '$VIMPERATOR_HOME can be used to override the calculated $HOME directory.'; var mappings = 'mappings

    Mappings

    ' + '

    The denotion of modifier keys is like in Vim, so C- means the Control key, M- the Meta key, A- the Alt key and S- the Shift key.

    '+