diff options
| author | Lars Ingebrigtsen | 2022-08-12 14:56:46 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-08-12 14:56:46 +0200 |
| commit | 95d8a4544ec097058d908235060f6fcbf63cf643 (patch) | |
| tree | 10e9a7076434bfaddbc3e049cd2e89255e5ec17a | |
| parent | a23f9b7bda9f56ea97a4d5ff590e81625de63a6b (diff) | |
| download | emacs-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.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." | |||
| 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. |
| 286 | The value should be a `buffer-match-p' condition. | 286 | The value should be a `buffer-match-p' condition. |
| 287 | 287 | ||