1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-04 10:25:48 +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"],
"Define which info messages are displayed",
"number", 0,
"number", 1,
{ validator: function (value) value >= 0 && value <= 15 });
options.add(["visualbell", "vb"],

View File

@@ -19,6 +19,7 @@
special versions for the old behavior
* IMPORTANT: renamed Startup and Quit autocmd events to VimperatorEnter and
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 "r", "l", and "b" to 'guioptions' to toggle the scrollbars.

View File

@@ -975,7 +975,7 @@ function QuickMarks() //{{{
add: function add(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)

View File

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