diff --git a/chrome/content/vimperator/help.js b/chrome/content/vimperator/help.js index bbd1cf83..0e8bd6b7 100644 --- a/chrome/content/vimperator/help.js +++ b/chrome/content/vimperator/help.js @@ -139,34 +139,34 @@ vimperator.help = function(section, easter) //{{{ var header = '

Vimperator

\n' + '

First there was a Navigator, then there was an Explorer.\n' + - 'Later it was time for a Konqueror. Now it\'s time for an Imperator, the VIMperator :)

\n'; + 'Later it was time for a Konqueror. Now it\'s time for an Imperator, the VIMperator :)

'; var introduction = 'introduction

Introduction

' + '

Vimperator is a free browser add-on for Firefox, which makes it look and behave like the Vim text editor. ' + - 'It has similar key bindings, and you could call it a modal web browser, as key bindings differ according to which mode you are in.

\n' + + 'It has similar key bindings, and you could call it a modal web browser, as key bindings differ according to which mode you are in.

' + '

Warning: To provide the most authentic Vim experience, the Firefox menubar and toolbar were hidden.
' + - 'If you really need them, type: :set guioptions+=mT to get it back.\n' + - 'If you don\'t like Vimperator at all, you can uninstall it by typing :addons and remove/disable it. ' + - 'If you like it, but can\'t remember the shortcuts, press F1 or :help to get this help window back.

\n' + + 'If you really need them, type: :set guioptions+=mT to get them back.\n' + + 'If you don\'t like Vimperator at all, you can uninstall it by typing :addons and remove/disable it.\n' + + 'If you like it, but can\'t remember the shortcuts, press F1 or :help to get this help window back.

' + '

Since Vimperator\'s GUI is embedded into a toolbar, it may look too 3D-like with the default theme. ' + - 'For the best experience, I therefore recommend the Whitehart theme or any other flat theme.

\n' + + 'For the best experience, I therefore recommend the Whitehart theme or any other flat theme.

' + '

Vimperator was written by Martin Stubenschrott. ' + - 'If you appreciate my work on Vimperator and want to encourage me working on it more, you can either send me greetings, patches or make a donation:

\n' + + 'If you appreciate my work on Vimperator and want to encourage me working on it more, you can either send me greetings, patches or make a donation:

' + - '
\n
' + + '
' + '' + '' + '' + '' + - '
\n\n' + + '
' + - '

Of course as a believer in free open source software, only make a donation if you really like Vimperator and the money doesn\'t hurt - otherwise just use it, recommend it and like it :)

\n' + '

Of course as a believer in free open source software, only make a donation if you really like Vimperator and the money doesn\'t hurt - otherwise just use it, recommend it and like it :)

' - var initialization = 'initialization

Initialization

\n' + + var initialization = 'initialization

Initialization

' + '

At startup Vimperator sources a user RC file, containing Ex commands, and any JavaScript files found in the plugin directory.

' + '

The RC file may be named .vimperatorrc or _vimperatorrc. The search order is:

' + ''; - var mappings = 'mappings

Mappings

\n' + + 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.

'+ '' mappings += makeHelpString(vimperator.mappings, "", "", null); @@ -192,7 +192,7 @@ vimperator.help = function(section, easter) //{{{ if (section && section == 'holy-grail') mappings += '

You found it, Arthur!

\n'; - var commands = 'commands

Commands

\n' + + var commands = 'commands

Commands

' + '
\n'; commands += makeHelpString(vimperator.commands, ":", "", null); commands += '
'; @@ -202,7 +202,7 @@ vimperator.help = function(section, easter) //{{{ 'now dead, unfortunately. So now you might wonder what the meaning of death
' + 'is...

\n'; - var options = 'options

Options

\n' + + var options = 'options

Options

' + '\n'; options += makeHelpString(vimperator.options, "'", "'", makeOptionsHelpString); options += '
';