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:
@@ -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"],
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user