aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorStephen Berman2025-06-23 11:51:31 +0200
committerStephen Berman2025-06-23 11:51:31 +0200
commit2b34f38b383533ca659202492870c319fbc7ef41 (patch)
tree973e81005041b43c7f2a51256a939ba492152272 /etc
parentedd18978aaae3ea50478843d0c9ad3441125f82f (diff)
downloademacs-2b34f38b383533ca659202492870c319fbc7ef41.tar.gz
emacs-2b34f38b383533ca659202492870c319fbc7ef41.zip
Optionally suppress recentf open file messages (bug#78666)
* etc/NEWS: Announce new user option. * lisp/recentf.el (recentf-suppress-open-file-help): New defcustom. (recentf-dialog-goto-first): Use it; otherwise, make calling 'widget-move' suppress message only for interactive recentf use. (recentf-forward, recentf-backward): New commands, wrappers around 'widget-{forward, backward}' using 'recentf-suppress-open-file-help'. (recentf-dialog): Use them in locally remapped key bindings. * lisp/wid-edit.el (widget-forward, widget-backward): Add optional argument to suppress :help-echo message and pass it to 'widget-move'.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/etc/NEWS b/etc/NEWS
index ca97f26a196..f7aebdf538f 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1055,6 +1055,15 @@ compatible.
1055'recentf-save-list' can print a message when saving the recentf list. 1055'recentf-save-list' can print a message when saving the recentf list.
1056The new option, if set to nil, suppresses this message. 1056The new option, if set to nil, suppresses this message.
1057 1057
1058---
1059*** New user option 'recentf-suppress-open-file-help'.
1060By default, invoking 'recentf-open-files' displays a message saying what
1061action clicking or typing RET on the item at point executes, and tabbing
1062between items in the *Open Recent* buffer likewise displays such
1063messages. To suppress these messages, customize the user option
1064'recentf-suppress-open-file-help' to non-nil. The default value of this
1065option is nil.
1066
1058** Saveplace 1067** Saveplace
1059 1068
1060--- 1069---