diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2022-08-15 02:22:59 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2022-08-15 02:22:59 +0300 |
commit | ee3a674c7c9e39fe7ff296ce1f9830fc45520de8 (patch) | |
tree | e8ba1e7be54314f208454e80e3d31044c913f3eb /lisp/outline.el | |
parent | fe0e53d963899a16e0dd1bbc1ba10a6b59f7989e (diff) | |
parent | 0a8e88fd83db5398d36064a7f87cff5b57da7284 (diff) | |
download | emacs-scratch/font_lock_large_files.tar.gz |
Merge branch 'master' into scratch/font_lock_large_filesscratch/font_lock_large_files
Diffstat (limited to 'lisp/outline.el')
-rw-r--r-- | lisp/outline.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/outline.el b/lisp/outline.el index 35524a79a90..3250b62f1e7 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. @@ -294,16 +294,16 @@ buffers (yet) -- that will be amended in a future version." :version "29.1") (define-icon outline-open button - '((emoji "▶️") - (symbol " ⯈ ") + '((emoji "🔽") + (symbol " ▼ ") (text " open ")) "Icon used for buttons for opening a section in outline buffers." :version "29.1" :help-echo "Open this section") (define-icon outline-close button - '((emoji "🔽") - (symbol " ⯆ ") + '((emoji "▶️") + (symbol " ▶ ") (text " close ")) "Icon used for buttons for closing a section in outline buffers." :version "29.1" |