1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 16:22:27 +01:00

Fix <C-l> again. What happened to my last fix?

This commit is contained in:
Kris Maglione
2008-10-14 20:32:42 +00:00
parent fb67ac7028
commit 50a5eeea56

View File

@@ -255,7 +255,7 @@ const config = { //{{{
mappings.add([modes.NORMAL], ["<C-l>"], mappings.add([modes.NORMAL], ["<C-l>"],
"Redraw the screen", "Redraw the screen",
function () { commands.get("redraw").execute(); }); function () { commands.get("redraw").execute("", false); });
/////////////////////////////////////////////////////////////////////////////}}} /////////////////////////////////////////////////////////////////////////////}}}
////////////////////// COMMANDS //////////////////////////////////////////////// ////////////////////// COMMANDS ////////////////////////////////////////////////
@@ -299,6 +299,7 @@ const config = { //{{{
var wu = window.QueryInterface(Components.interfaces.nsIInterfaceRequestor). var wu = window.QueryInterface(Components.interfaces.nsIInterfaceRequestor).
getInterface(Components.interfaces.nsIDOMWindowUtils); getInterface(Components.interfaces.nsIDOMWindowUtils);
wu.redraw(); wu.redraw();
modes.show();
}, },
{ argCount: "0" }); { argCount: "0" });