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); --- For http://conkeror.org/BreakingChanges: == April 6, 2012 == `hints-minibuffer-annotation-mode` is now enabled by default. To disable: {{{ 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: * -- 1.7.9.1 _______________________________________________ Conkeror mailing list [email protected] https://www.mozdev.org/mailman/listinfo/conkeror
