1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-24 12:35:53 +01:00

Fixed Added Quickmarks annoyance, and changed verbose to 1 by default

This commit is contained in:
Martin Stubenschrott
2008-12-08 15:47:38 +01:00
parent 6f8e39e84e
commit 9fe3e53ce0
4 changed files with 4 additions and 3 deletions

View File

@@ -171,7 +171,7 @@ const liberator = (function () //{{{
options.add(["verbose", "vbs"], options.add(["verbose", "vbs"],
"Define which info messages are displayed", "Define which info messages are displayed",
"number", 0, "number", 1,
{ validator: function (value) value >= 0 && value <= 15 }); { validator: function (value) value >= 0 && value <= 15 });
options.add(["visualbell", "vb"], options.add(["visualbell", "vb"],

View File

@@ -19,6 +19,7 @@
special versions for the old behavior special versions for the old behavior
* IMPORTANT: renamed Startup and Quit autocmd events to VimperatorEnter and * IMPORTANT: renamed Startup and Quit autocmd events to VimperatorEnter and
VimperatorLeave respectively VimperatorLeave respectively
* IMPORTANT: 'verbose' is now by default at 1, set to 0 to not show any status messages
* add ";f" extended hint mode to focus a frame * add ";f" extended hint mode to focus a frame
* add "r", "l", and "b" to 'guioptions' to toggle the scrollbars. * add "r", "l", and "b" to 'guioptions' to toggle the scrollbars.

View File

@@ -975,7 +975,7 @@ function QuickMarks() //{{{
add: function add(qmark, location) add: function add(qmark, location)
{ {
qmarks.set(qmark, location); qmarks.set(qmark, location);
liberator.echo("Added Quick Mark '" + qmark + "': " + location); liberator.echomsg("Added Quick Mark '" + qmark + "': " + location, 1);
}, },
remove: function remove(filter) remove: function remove(filter)

View File

@@ -714,7 +714,7 @@ ____
|\'verbose', \'vbs'| |\'verbose', \'vbs'|
||'verbose' 'vbs'|| number (default: 0) ||'verbose' 'vbs'|| number (default: 1)
____ ____
Define which info messages are displayed. Define which info messages are displayed.
When bigger than zero, Vimperator will give messages about what it is doing. When bigger than zero, Vimperator will give messages about what it is doing.