diff options
| author | Stephen Berman | 2025-06-23 11:51:31 +0200 |
|---|---|---|
| committer | Stephen Berman | 2025-06-23 11:51:31 +0200 |
| commit | 2b34f38b383533ca659202492870c319fbc7ef41 (patch) | |
| tree | 973e81005041b43c7f2a51256a939ba492152272 /etc | |
| parent | edd18978aaae3ea50478843d0c9ad3441125f82f (diff) | |
| download | emacs-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/NEWS | 9 |
1 files changed, 9 insertions, 0 deletions
| @@ -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. |
| 1056 | The new option, if set to nil, suppresses this message. | 1056 | The new option, if set to nil, suppresses this message. |
| 1057 | 1057 | ||
| 1058 | --- | ||
| 1059 | *** New user option 'recentf-suppress-open-file-help'. | ||
| 1060 | By default, invoking 'recentf-open-files' displays a message saying what | ||
| 1061 | action clicking or typing RET on the item at point executes, and tabbing | ||
| 1062 | between items in the *Open Recent* buffer likewise displays such | ||
| 1063 | messages. To suppress these messages, customize the user option | ||
| 1064 | 'recentf-suppress-open-file-help' to non-nil. The default value of this | ||
| 1065 | option is nil. | ||
| 1066 | |||
| 1058 | ** Saveplace | 1067 | ** Saveplace |
| 1059 | 1068 | ||
| 1060 | --- | 1069 | --- |