From b261b4ba56e24611dad4231832ef32db9d960ace Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sun, 11 Oct 2009 03:13:23 -0400 Subject: [PATCH] Muck up the source code with a hidden option to hide the bloody command shadow. --- common/content/ui.js | 2 +- vimperator/NEWS | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/content/ui.js b/common/content/ui.js index 4694dc62..e5154fb7 100644 --- a/common/content/ui.js +++ b/common/content/ui.js @@ -1336,7 +1336,7 @@ function CommandLine() //{{{ if (events.isAcceptKey(key)) { let mode = currentExtendedMode; // save it here, as modes.pop() resets it - keepCommand = true; + keepCommand = !userContext.hidden_option_no_command_afterimage; currentExtendedMode = null; // Don't let modes.pop trigger "cancel" modes.pop(!this.silent); commandline.triggerCallback("submit", mode, command); diff --git a/vimperator/NEWS b/vimperator/NEWS index 0127773f..caff4c31 100644 --- a/vimperator/NEWS +++ b/vimperator/NEWS @@ -1,7 +1,7 @@ 2009-XX-XX: * version 2.2a1pre - * IMPORTANT: Vimperator is from now on ONLY licensed unter the MIT - license, if you need a GPL, LGPL or MPL version, please use Vimperator 2.1 + * IMPORTANT: Vimperator's licence has changed from the MPL/GPL/LGPL + tri-license to the MIT license. * IMPORTANT: Map.flags has been replaced with individual properties. Mappings defined in plugins with mappings.add will need to be updated. ...................................