From 9fe3e53ce0bccc83bd7bed1df15367c1516a9287 Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Mon, 8 Dec 2008 15:47:38 +0100 Subject: [PATCH] Fixed Added Quickmarks annoyance, and changed verbose to 1 by default --- common/content/liberator.js | 2 +- vimperator/NEWS | 1 + vimperator/content/bookmarks.js | 2 +- vimperator/locale/en-US/options.txt | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/common/content/liberator.js b/common/content/liberator.js index 181f623e..b905c372 100644 --- a/common/content/liberator.js +++ b/common/content/liberator.js @@ -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"], diff --git a/vimperator/NEWS b/vimperator/NEWS index 6f24a969..3262cdca 100644 --- a/vimperator/NEWS +++ b/vimperator/NEWS @@ -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. diff --git a/vimperator/content/bookmarks.js b/vimperator/content/bookmarks.js index 55c89e94..051f5366 100644 --- a/vimperator/content/bookmarks.js +++ b/vimperator/content/bookmarks.js @@ -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) diff --git a/vimperator/locale/en-US/options.txt b/vimperator/locale/en-US/options.txt index cd88197c..76649aef 100644 --- a/vimperator/locale/en-US/options.txt +++ b/vimperator/locale/en-US/options.txt @@ -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.