aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2022-08-12 14:56:46 +0200
committerLars Ingebrigtsen2022-08-12 14:56:46 +0200
commit95d8a4544ec097058d908235060f6fcbf63cf643 (patch)
tree10e9a7076434bfaddbc3e049cd2e89255e5ec17a
parenta23f9b7bda9f56ea97a4d5ff590e81625de63a6b (diff)
downloademacs-95d8a4544ec097058d908235060f6fcbf63cf643.tar.gz
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.
-rw-r--r--lisp/outline.el2
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."
281 [outline-1 outline-2 outline-3 outline-4 281 [outline-1 outline-2 outline-3 outline-4
282 outline-5 outline-6 outline-7 outline-8]) 282 outline-5 outline-6 outline-7 outline-8])
283 283
284(defcustom outline-minor-mode-use-buttons '(derived-mode . special-mode) 284(defcustom outline-minor-mode-use-buttons '(derived-mode . help-mode)
285 "Whether to display clickable buttons on the headings. 285 "Whether to display clickable buttons on the headings.
286The value should be a `buffer-match-p' condition. 286The value should be a `buffer-match-p' condition.
287 287