1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-27 05:03:32 +01:00

added :prefs to the help

This commit is contained in:
Martin Stubenschrott
2008-01-22 16:15:00 +00:00
parent b0d51d7516
commit 435bce0d98
4 changed files with 43 additions and 12 deletions

View File

@@ -38,10 +38,13 @@ HEADER=<span style="float: right; padding-top: 10px;"><form action="https://www.
# maximum 3 tags for now # maximum 3 tags for now
[section-inlinemacro] [section-inlinemacro]
<a id="{target}" /> <a id="{target}" />
<table style="border-bottom: 1px solid silver; width: 100%">
<tr width="100%"><td width="50%"><h2>{target}</h2></td><td width="50%">
{3? <span class="tag section">{3}</span>} {3? <span class="tag section">{3}</span>}
{2? <span class="tag section">{2}</span>} {2? <span class="tag section">{2}</span>}
{1? <span class="tag section">{1}</span>} {1? <span class="tag section">{1}</span>}
<h2>{target}</h2> </td></tr>
</table>
[help-inlinemacro] [help-inlinemacro]
<a href="chrome://vimperator/locale/{1}">{target}</a> <a href="chrome://vimperator/locale/{1}">{target}</a>

View File

@@ -84,13 +84,15 @@ section:Navigating[navigating]
|H| |<C-o>| |CTRL-O| |:ba| |:back| |H| |<C-o>| |CTRL-O| |:ba| |:back|
||:[count]ba[ck][!] [url]|| + ||:[count]ba[ck][!] [url]|| +
||CTRL-o||
________________________________________________________________________________ ________________________________________________________________________________
Go [count] pages back in the browser history. Go [count] pages back in the browser history.
The special version [c]:back![c] goes to the beginning of the browser history. The special version [c]:back![c] goes to the beginning of the browser history.
________________________________________________________________________________ ________________________________________________________________________________
|L| |<C-i>| |CTRL-i| |:fo| |:fw| |:forward| |L| |<C-i>| |CTRL-i| |:fo| |:fw| |:forward|
||:[count]fo[rward] [!] [url]|| + ||:[count]fo[rward][!] [url]|| +
||CTRL-i||
________________________________________________________________________________ ________________________________________________________________________________
Go [count] pages back in the browser history. Go [count] pages back in the browser history.
The special version [c]:forward![c] goes to the end of the browser history. The special version [c]:forward![c] goes to the end of the browser history.

View File

@@ -81,7 +81,27 @@ exactly as they appear in the option. Remove flags
one by one to avoid problems. one by one to avoid problems.
____ ____
'''' section:Setting{nbsp}Firefox{nbsp}options[firefox-options]
Most Firefox options are not touched/overriden by Vimperator. In order to set
any of these preferences use either of the following:
|:prefs| |:preferences|
||:pref[erences]||
________________________________________________________________________________
Show Browser Preferences +
You can change the browser preferences from this dialog. Be aware that not
all Firefox preferences work, because Vimperator overrides some key
bindings and changes Firefox's GUI.
________________________________________________________________________________
|:prefs!| |:preferences!|
||:pref[erences]!||
________________________________________________________________________________
Opens about:config in the current tab where you can change advanced Firefox
preferences.
________________________________________________________________________________
section:List{nbsp}of{nbsp}options[list-options] section:List{nbsp}of{nbsp}options[list-options]
@@ -214,15 +234,18 @@ ____
|\'nohls'| |\'nohlsearch'| |\'hls'| |\'hlsearch'| |\'nohls'| |\'nohlsearch'| |\'hls'| |\'hlsearch'|
||'hlsearch' 'hls'|| boolean (default: off) ||'hlsearch' 'hls'|| boolean (default off)
____ ____
Highlight previous search pattern matches Highlight previous search pattern matches
____ ____
|\'hlss'| |\'hlsearchstyle'| |\'hlss'| |\'hlsearchstyle'|
||'hlsearchstyle' 'hlss'|| string (default: color: black; background-color: yellow; padding: 0; display: inline;) ||'hlsearchstyle' 'hlss'||
____ ____
string (default: color: black; background-color: yellow; padding: 0; display:
inline;) +
CSS specification of highlighted search items CSS specification of highlighted search items
____ ____
@@ -235,14 +258,14 @@ ____
|\'nois'| |\'noincsearch'| |\'is'| |\'incsearch'| |\'nois'| |\'noincsearch'| |\'is'| |\'incsearch'|
||'incsearch' 'is'|| boolean (default: on) ||'incsearch' 'is'|| boolean (default on)
____ ____
Show where the search pattern matches as it is typed. + Show where the search pattern matches as it is typed. +
NOTE: Incremental searching currently only works in the forward direction. NOTE: Incremental searching currently only works in the forward direction.
____ ____
|\'noim'| |\'noinsertmode'| |\'im'| |\'insertmode'| |\'noim'| |\'noinsertmode'| |\'im'| |\'insertmode'|
||'insertmode' 'im'|| boolean (default: on) ||'insertmode' 'im'|| boolean (default on)
____ ____
Use Insert mode as the default for text areas. Use Insert mode as the default for text areas.
Makes Vimperator work in a way that Insert mode is the default mode for text areas. Makes Vimperator work in a way that Insert mode is the default mode for text areas.
@@ -271,7 +294,7 @@ This includes (X)HTML elements with an "href" atrribute and XLink "simple" links
____ ____
|\'nomore'| |\'more'| |\'nomore'| |\'more'|
||'more'|| boolean (default: on) ||'more'|| boolean (default on)
____ ____
Pause the message list window when more than one screen of listings is displayed Pause the message list window when more than one screen of listings is displayed
____ ____

View File

@@ -51,9 +51,11 @@ body h1 {
} }
body h2 { body h2 {
margin-top: 50px; /* necessary, because we put h2 into tables */
margin-top: 20px !important;
margin-bottom: 0px !important;
line-height: 1.3; line-height: 1.3;
border-bottom: 1px solid silver; /*border-bottom: 1px solid silver;*/
} }
body h3 { body h3 {
@@ -286,7 +288,8 @@ span.tag {
float: right; float: right;
} }
span.section { span.section {
padding-top: 35px !important; /* NOTE: needs change when you change <h2>'s margin */ /*margin-top: 20px !important; /* NOTE: needs change when you change <h2>'s margin */
margin-bottom: 0px;
} }
div.key { div.key {
@@ -321,5 +324,5 @@ fieldset.paypal {
} }
.quoteblock { .quoteblock {
margin-left: 140px; margin-left: 140px;
margin-bottom: 20px; padding-bottom: 20px;
} }