From 318031edd23af3b03a533dd105cb8bfd51075fa0 Mon Sep 17 00:00:00 2001 From: David Kettler Date: Fri, 6 Apr 2012 11:36:41 +0930 Subject: [PATCH] Enable hints-minibuffer-annotation-mode by default. The consensus seems to be that this mode should be enabled by default; or at least there has been no dissent expressed. The mode can be disabled with: hints_minibuffer_annotation_mode(false); --- contrib/config/common.js | 5 ----- modules/hints.js | 2 ++ 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/contrib/config/common.js b/contrib/config/common.js index a9fa987..e7b96af 100644 --- a/contrib/config/common.js +++ b/contrib/config/common.js @@ -18,11 +18,6 @@ hints_auto_exit_delay = 500; hints_ambiguous_auto_exit_delay = 500; -// display properties of the current selected node during -// the hints interaction. -hints_minibuffer_annotation_mode(true); - - // default directory for downloads and shell commands. cwd = get_home_directory(); cwd.append("downloads"); diff --git a/modules/hints.js b/modules/hints.js index 41e73c9..71c93f6 100644 --- a/modules/hints.js +++ b/modules/hints.js @@ -476,6 +476,8 @@ define_global_mode("hints_minibuffer_annotation_mode", "a minibuffer annotation.\nThis mode is most useful when "+ "hints_auto_exit_delay is long or disabled."); +hints_minibuffer_annotation_mode(true); + /** * keyword arguments: * -- 2.11.4.GIT