From 118e3cf42a03288d83ad4a54c2553ddcfd6c3269 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sat, 18 Dec 2010 11:56:24 -0500 Subject: [PATCH] Don't anchor option name completions by default. --- common/content/options.js | 1 + 1 file changed, 1 insertion(+) diff --git a/common/content/options.js b/common/content/options.js index 5454ec62..c620676b 100644 --- a/common/content/options.js +++ b/common/content/options.js @@ -1182,6 +1182,7 @@ const Options = Module("options", { completion.option = function option(context, scope, prefix) { context.title = ["Option"]; context.keys = { text: "names", description: "description" }; + context.anchored = false; context.completions = options; if (prefix == "inv") context.keys.text = function (opt)