From f7accd657aa57677acc00619a712bbff9ee6e137 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sun, 11 Jan 2009 11:30:40 +1100 Subject: [PATCH] Don't anchor :undo completions. --- common/content/tabs.js | 1 + 1 file changed, 1 insertion(+) diff --git a/common/content/tabs.js b/common/content/tabs.js index ee4c1b85..64890e6b 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -617,6 +617,7 @@ function Tabs() //{{{ argCount: "?", completer: function (context) { + context.anchored = false; context.keys = { text: function (item) item.state.entries[0].url, description: "title" }; context.completions = tabs.closedTabs; },