From 8bd3c666cf84d4df285a882ad988495bb3a196fa Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Sun, 11 Jan 2009 01:15:41 +0100 Subject: [PATCH] Revert "Don't anchor :dia completions". The reason we anchor :dia, is that once you know which :dialog you want to open, you can usually open it with :dia xy very quickly and reliable. The difference to :emenu is that :emenu has lots of completion items with the same prefix, so anchored completions wouldn't really be that helpful to quickly open a menu. This reverts commit fa842fd716aac599891a53efdf64cab76422c153. --- common/content/completion.js | 1 - 1 file changed, 1 deletion(-) diff --git a/common/content/completion.js b/common/content/completion.js index 60f4f829..192dfef9 100644 --- a/common/content/completion.js +++ b/common/content/completion.js @@ -1432,7 +1432,6 @@ function Completion() //{{{ dialog: function dialog(context) { context.title = ["Dialog"]; - context.anchored = false; context.completions = config.dialogs; },