From 50a5eeea568f07f776b684973acbba2adae5ef19 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Tue, 14 Oct 2008 20:32:42 +0000 Subject: [PATCH] Fix again. What happened to my last fix? --- content/vimperator.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/vimperator.js b/content/vimperator.js index 1cfae93c..e9564f73 100644 --- a/content/vimperator.js +++ b/content/vimperator.js @@ -255,7 +255,7 @@ const config = { //{{{ mappings.add([modes.NORMAL], [""], "Redraw the screen", - function () { commands.get("redraw").execute(); }); + function () { commands.get("redraw").execute("", false); }); /////////////////////////////////////////////////////////////////////////////}}} ////////////////////// COMMANDS //////////////////////////////////////////////// @@ -299,6 +299,7 @@ const config = { //{{{ var wu = window.QueryInterface(Components.interfaces.nsIInterfaceRequestor). getInterface(Components.interfaces.nsIDOMWindowUtils); wu.redraw(); + modes.show(); }, { argCount: "0" });