1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-06 09:45:46 +01:00

add rough initial implementations of :message, g< (gm for now) and 'messages'

This commit is contained in:
Doug Kearns
2008-09-27 12:33:23 +00:00
parent 8154f7b5fa
commit 675ae16f24
13 changed files with 253 additions and 101 deletions

View File

@@ -270,10 +270,11 @@ section:Options[option-index]
||'linkfgcolor'|| Foreground color of a link during hint mode +
||'linksearch'|| Limit the search to hyperlink text +
||'loadplugins'|| Load plugin scripts when starting up +
||'messages'|| Number of messages to store in the message history +
||'more'|| Pause the message list window when more than one screen of listings is displayed +
||'newtab'|| Define which commands should output in a new tab by default +
||'nextpattern'|| Patterns to use when guessing the 'next' page in a document sequence +
||'online'|| Set the 'work offline' option +
||'online'|| Set the \'work offline' option +
||'pageinfo'|| Desired info on :pa[geinfo] +
||'popups'|| Where to show requested popup windows +
||'preload'|| Speed up first time history/bookmark completion +
@@ -290,7 +291,7 @@ section:Options[option-index]
||'titlestring'|| Change the title of the window +
||'urlseparator'|| Set the separator regexp used to separate multiple URL args +
||'usermode'|| Show current website with a minimal style sheet to make it easily accessible +
||'verbose'|| Define which type of messages are logged +
||'verbose'|| Define which info messages are displayed +
||'visualbell'|| Use visual bell instead of beeping on errors +
||'visualbellstyle'|| CSS specification of the visual bell +
||'wildignore'|| List of file patterns to ignore when completing files +

View File

@@ -67,6 +67,7 @@ section:Help{nbsp}topics[overview]
events.
- help:Print[print.html]: Printing pages.
- help:GUI[gui.html]: Accessing Firefox menus, dialogs and the sidebar.
- help:Messages[message.html]: A description of messages and error messages.
- help:Developer{nbsp}information[developer.html]: How to write docs or
plugins.
- help:Various[various.html]: Other help which didn't fit into any other

22
locale/en-US/message.txt Normal file
View File

@@ -0,0 +1,22 @@
HEADER
|message-history| +
Vimperator stores all info and error messages in a message history. The type of
info messages output can be controlled by the 'verbose' option.
|:mes| |:messages| +
||:mes[sages]||
________________________________________________________________________________
Display previously given messages.
________________________________________________________________________________
|gm| +
||gm||
________________________________________________________________________________
Redisplay the last command output. Only the most recent commands output is
available.
________________________________________________________________________________
// vim: set syntax=asciidoc:

View File

@@ -468,6 +468,13 @@ Load plugin scripts when starting up.
____
|\'msgs'| |\'messages'|
||'messages' 'msgs'|| number (default: 100)
____
Number of messages to store in the message history.
____
|\'nomore'| |\'more'|
||'more'|| boolean (default: on)
____
@@ -708,10 +715,12 @@ ____
|\'verbose', \'vbs'|
||'verbose' 'vbs'|| number (default: 0)
____
Define which type of messages are logged.
Define which info messages are displayed.
When bigger than zero, Vimperator will give messages about what it is doing.
They are printed to the error console which can be shown with [c]:javascript![c].
The highest value is 9, being the most verbose mode.
These can be viewed at any time with the [c]:messages[c] command. The highest
value is 15, being the most verbose mode.
TODO: list levels and associated messages
____