From 0c9f91ab976ac3017cbabcd4dbfba5ab60d06e2d Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 28 Sep 2011 21:47:44 -0400 Subject: [PATCH] Kill AUTOCOMPLETE mode with . --- common/content/modes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/modes.js b/common/content/modes.js index e681835e..ae26b090 100644 --- a/common/content/modes.js +++ b/common/content/modes.js @@ -615,7 +615,7 @@ var Modes = Module("modes", { "Return to the previous mode", function () { modes.pop(null, { fromEscape: true }); }); - mappings.add([modes.MENU], [""], + mappings.add([modes.AUTOCOMPLETE, modes.MENU], [""], "Leave Menu mode", function () { modes.pop(); });