diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-12 14:56:46 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-12 14:56:46 +0200 |
commit | 95d8a4544ec097058d908235060f6fcbf63cf643 (patch) | |
tree | 10e9a7076434bfaddbc3e049cd2e89255e5ec17a /lisp/outline.el | |
parent | a23f9b7bda9f56ea97a4d5ff590e81625de63a6b (diff) | |
download | emacs-95d8a4544ec097058d908235060f6fcbf63cf643.tar.gz emacs-95d8a4544ec097058d908235060f6fcbf63cf643.tar.bz2 emacs-95d8a4544ec097058d908235060f6fcbf63cf643.zip |
Default outline-minor-mode-use-buttons to only happen in *Help*
* lisp/outline.el (outline-minor-mode-use-buttons): Change the
default to only use buttons in the *Help* buffer (for now),
because it's too disruptive in other modes. This will probably be
changed again to have some other mechanism to opt in in certain
modes, but it's not clear what that mechanism should look like.
Diffstat (limited to 'lisp/outline.el')
-rw-r--r-- | lisp/outline.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/outline.el b/lisp/outline.el index 8132043097e..bb62c573c40 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -281,7 +281,7 @@ This option is only in effect when `outline-minor-mode-cycle' is non-nil." [outline-1 outline-2 outline-3 outline-4 outline-5 outline-6 outline-7 outline-8]) -(defcustom outline-minor-mode-use-buttons '(derived-mode . special-mode) +(defcustom outline-minor-mode-use-buttons '(derived-mode . help-mode) "Whether to display clickable buttons on the headings. The value should be a `buffer-match-p' condition. |