Mercurial > emacs
annotate lisp/textmodes/outline.el @ 38905:70ef1eb656a6
(menu_face_changed_default): New variable.
(menu_face_changed_count): Variable removed.
(Finternal_set_lisp_face_attribute): Doc fix. If FRAME is t, set
the menu_face_changed_default flag, otherwise set the FRAME's
menu_face_changed_p flag if the `menu' face has been changed.
Prevent calling set_font_frame_param if FRAME is t.
(make_face_cache): Initialize cache's menu_face_changed_p
from menu_face_changed_default.
(realize_basic_faces): Look into the frame's face cache to
determine if the menu appearance needs updating.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Wed, 22 Aug 2001 09:44:15 +0000 |
parents | abf444fe5166 |
children | 7370effcd55c |
rev | line source |
---|---|
10950 | 1 ;;; outline.el --- outline mode commands for Emacs |
14169 | 2 |
37751
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
3 ;; Copyright (C) 1986, 93, 94, 95, 97, 2000, 2001 |
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
10950 | 5 |
6 ;; Maintainer: FSF | |
11455 | 7 ;; Keywords: outlines |
10950 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
10950 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; This package is a major mode for editing outline-format documents. | |
29 ;; An outline can be `abstracted' to show headers at any given level, | |
30 ;; with all stuff below hidden. See the Emacs manual for details. | |
31 | |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
32 ;;; Todo: |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
33 |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
34 ;; - subtree-terminators |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
35 |
10950 | 36 ;;; Code: |
37 | |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
38 (defgroup outlines nil |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
39 "Support for hierarchical outlining" |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
40 :prefix "outline-" |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
41 :group 'editing) |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
42 |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
43 (defcustom outline-regexp nil |
10950 | 44 "*Regular expression to match the beginning of a heading. |
45 Any line whose beginning matches this regexp is considered to start a heading. | |
46 The recommended way to set this is with a Local Variables: list | |
24627 | 47 in the file it applies to. See also `outline-heading-end-regexp'." |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
48 :type '(choice regexp (const nil)) |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
49 :group 'outlines) |
10950 | 50 |
51 ;; Can't initialize this in the defvar above -- some major modes have | |
52 ;; already assigned a local value to it. | |
53 (or (default-value 'outline-regexp) | |
54 (setq-default outline-regexp "[*\^L]+")) | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
55 |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
56 (defcustom outline-heading-end-regexp "\n" |
10950 | 57 "*Regular expression to match the end of a heading line. |
58 You can assume that point is at the beginning of a heading when this | |
59 regexp is searched for. The heading ends at the end of the match. | |
60 The recommended way to set this is with a `Local Variables:' list | |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
61 in the file it applies to." |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
62 :type 'regexp |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
63 :group 'outlines) |
10950 | 64 |
65 (defvar outline-mode-prefix-map nil) | |
66 | |
67 (if outline-mode-prefix-map | |
68 nil | |
69 (setq outline-mode-prefix-map (make-sparse-keymap)) | |
17249
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
70 (define-key outline-mode-prefix-map "@" 'outline-mark-subtree) |
10950 | 71 (define-key outline-mode-prefix-map "\C-n" 'outline-next-visible-heading) |
72 (define-key outline-mode-prefix-map "\C-p" 'outline-previous-visible-heading) | |
73 (define-key outline-mode-prefix-map "\C-i" 'show-children) | |
74 (define-key outline-mode-prefix-map "\C-s" 'show-subtree) | |
75 (define-key outline-mode-prefix-map "\C-d" 'hide-subtree) | |
76 (define-key outline-mode-prefix-map "\C-u" 'outline-up-heading) | |
77 (define-key outline-mode-prefix-map "\C-f" 'outline-forward-same-level) | |
78 (define-key outline-mode-prefix-map "\C-b" 'outline-backward-same-level) | |
79 (define-key outline-mode-prefix-map "\C-t" 'hide-body) | |
80 (define-key outline-mode-prefix-map "\C-a" 'show-all) | |
81 (define-key outline-mode-prefix-map "\C-c" 'hide-entry) | |
82 (define-key outline-mode-prefix-map "\C-e" 'show-entry) | |
83 (define-key outline-mode-prefix-map "\C-l" 'hide-leaves) | |
84 (define-key outline-mode-prefix-map "\C-k" 'show-branches) | |
85 (define-key outline-mode-prefix-map "\C-q" 'hide-sublevels) | |
86 (define-key outline-mode-prefix-map "\C-o" 'hide-other)) | |
87 | |
88 (defvar outline-mode-menu-bar-map nil) | |
89 (if outline-mode-menu-bar-map | |
90 nil | |
91 (setq outline-mode-menu-bar-map (make-sparse-keymap)) | |
92 | |
93 (define-key outline-mode-menu-bar-map [hide] | |
94 (cons "Hide" (make-sparse-keymap "Hide"))) | |
95 | |
96 (define-key outline-mode-menu-bar-map [hide hide-other] | |
97 '("Hide Other" . hide-other)) | |
98 (define-key outline-mode-menu-bar-map [hide hide-sublevels] | |
99 '("Hide Sublevels" . hide-sublevels)) | |
100 (define-key outline-mode-menu-bar-map [hide hide-subtree] | |
101 '("Hide Subtree" . hide-subtree)) | |
102 (define-key outline-mode-menu-bar-map [hide hide-entry] | |
103 '("Hide Entry" . hide-entry)) | |
104 (define-key outline-mode-menu-bar-map [hide hide-body] | |
105 '("Hide Body" . hide-body)) | |
106 (define-key outline-mode-menu-bar-map [hide hide-leaves] | |
107 '("Hide Leaves" . hide-leaves)) | |
108 | |
109 (define-key outline-mode-menu-bar-map [show] | |
110 (cons "Show" (make-sparse-keymap "Show"))) | |
111 | |
112 (define-key outline-mode-menu-bar-map [show show-subtree] | |
113 '("Show Subtree" . show-subtree)) | |
114 (define-key outline-mode-menu-bar-map [show show-children] | |
115 '("Show Children" . show-children)) | |
116 (define-key outline-mode-menu-bar-map [show show-branches] | |
117 '("Show Branches" . show-branches)) | |
118 (define-key outline-mode-menu-bar-map [show show-entry] | |
119 '("Show Entry" . show-entry)) | |
120 (define-key outline-mode-menu-bar-map [show show-all] | |
121 '("Show All" . show-all)) | |
122 | |
123 (define-key outline-mode-menu-bar-map [headings] | |
124 (cons "Headings" (make-sparse-keymap "Headings"))) | |
125 | |
27204
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
126 (define-key outline-mode-menu-bar-map [headings copy] |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
127 '(menu-item "Copy to kill ring" outline-headers-as-kill |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
128 :enable mark-active)) |
10950 | 129 (define-key outline-mode-menu-bar-map [headings outline-backward-same-level] |
130 '("Previous Same Level" . outline-backward-same-level)) | |
131 (define-key outline-mode-menu-bar-map [headings outline-forward-same-level] | |
132 '("Next Same Level" . outline-forward-same-level)) | |
133 (define-key outline-mode-menu-bar-map [headings outline-previous-visible-heading] | |
134 '("Previous" . outline-previous-visible-heading)) | |
135 (define-key outline-mode-menu-bar-map [headings outline-next-visible-heading] | |
136 '("Next" . outline-next-visible-heading)) | |
137 (define-key outline-mode-menu-bar-map [headings outline-up-heading] | |
138 '("Up" . outline-up-heading))) | |
139 | |
140 (defvar outline-mode-map nil "") | |
141 | |
142 (if outline-mode-map | |
143 nil | |
144 (setq outline-mode-map (nconc (make-sparse-keymap) text-mode-map)) | |
145 (define-key outline-mode-map "\C-c" outline-mode-prefix-map) | |
146 (define-key outline-mode-map [menu-bar] outline-mode-menu-bar-map)) | |
147 | |
148 (defvar outline-font-lock-keywords | |
20175
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
149 '(;; |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
150 ;; Highlight headings according to the level. |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
151 (eval . (list (concat "^" outline-regexp ".+") |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
152 0 '(or (cdr (assq (outline-font-lock-level) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
153 '((1 . font-lock-function-name-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
154 (2 . font-lock-variable-name-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
155 (3 . font-lock-keyword-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
156 (4 . font-lock-builtin-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
157 (5 . font-lock-comment-face) |
20953
f3f9df46d008
Changed font-lock-reference-face to font-lock-constant-face.
Simon Marshall <simon@gnu.org>
parents:
20426
diff
changeset
|
158 (6 . font-lock-constant-face) |
20175
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
159 (7 . font-lock-type-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
160 (8 . font-lock-string-face)))) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
161 font-lock-warning-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
162 nil t))) |
10950 | 163 "Additional expressions to highlight in Outline mode.") |
164 | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
165 (defun outline-font-lock-level () |
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
166 (let ((count 1)) |
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
167 (save-excursion |
25148
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
168 (outline-back-to-heading t) |
37751
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
169 (while (and (not (bobp)) |
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
170 (not (eq (funcall outline-level) 1))) |
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
171 (outline-up-heading-all 1) |
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
172 (setq count (1+ count))) |
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
173 count))) |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
174 |
13259
11899bfa541c
(outline-view-change-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
12604
diff
changeset
|
175 (defvar outline-view-change-hook nil |
11899bfa541c
(outline-view-change-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
12604
diff
changeset
|
176 "Normal hook to be run after outline visibility changes.") |
11899bfa541c
(outline-view-change-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
12604
diff
changeset
|
177 |
17688
b02bb31c98b0
(outline-mode): Autoload cookie added.
Richard M. Stallman <rms@gnu.org>
parents:
17687
diff
changeset
|
178 ;;;###autoload |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
179 (define-derived-mode outline-mode text-mode "Outline" |
10950 | 180 "Set major mode for editing outlines with selective display. |
181 Headings are lines which start with asterisks: one for major headings, | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
182 two for subheadings, etc. Lines not starting with asterisks are body lines. |
10950 | 183 |
184 Body text or subheadings under a heading can be made temporarily | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
185 invisible, or visible again. Invisible lines are attached to the end |
10950 | 186 of the heading, so they move with it, if the line is killed and yanked |
187 back. A heading with text hidden under it is marked with an ellipsis (...). | |
188 | |
189 Commands:\\<outline-mode-map> | |
190 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings | |
191 \\[outline-previous-visible-heading] outline-previous-visible-heading | |
192 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings | |
193 \\[outline-backward-same-level] outline-backward-same-level | |
194 \\[outline-up-heading] outline-up-heading move from subheading to heading | |
195 | |
196 \\[hide-body] make all text invisible (not headings). | |
197 \\[show-all] make everything in buffer visible. | |
198 | |
199 The remaining commands are used when point is on a heading line. | |
200 They apply to some of the body or subheadings of that heading. | |
201 \\[hide-subtree] hide-subtree make body and subheadings invisible. | |
202 \\[show-subtree] show-subtree make body and subheadings visible. | |
203 \\[show-children] show-children make direct subheadings visible. | |
204 No effect on body, or subheadings 2 or more levels down. | |
205 With arg N, affects subheadings N levels down. | |
206 \\[hide-entry] make immediately following body invisible. | |
207 \\[show-entry] make it visible. | |
208 \\[hide-leaves] make body under heading and under its subheadings invisible. | |
209 The subheadings remain visible. | |
210 \\[show-branches] make all subheadings at all levels visible. | |
211 | |
212 The variable `outline-regexp' can be changed to control what is a heading. | |
213 A line is a heading if `outline-regexp' matches something at the | |
214 beginning of the line. The longer the match, the deeper the level. | |
215 | |
216 Turning on outline mode calls the value of `text-mode-hook' and then of | |
217 `outline-mode-hook', if they are non-nil." | |
218 (make-local-variable 'line-move-ignore-invisible) | |
219 (setq line-move-ignore-invisible t) | |
220 ;; Cause use of ellipses for invisible text. | |
17853
3af728d1f6cf
(outline-mode): Use `add-to-invisibility-spec' and
Richard M. Stallman <rms@gnu.org>
parents:
17690
diff
changeset
|
221 (add-to-invisibility-spec '(outline . t)) |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
222 (set (make-local-variable 'paragraph-start) |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
223 (concat paragraph-start "\\|\\(" outline-regexp "\\)")) |
10950 | 224 ;; Inhibit auto-filling of header lines. |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
225 (set (make-local-variable 'auto-fill-inhibit-regexp) outline-regexp) |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
226 (set (make-local-variable 'paragraph-separate) |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
227 (concat paragraph-separate "\\|\\(" outline-regexp "\\)")) |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
228 (set (make-local-variable 'font-lock-defaults) |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
229 '(outline-font-lock-keywords t nil nil backward-paragraph)) |
27204
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
230 (setq imenu-generic-expression |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
231 (list (list nil (concat outline-regexp ".*$") 0))) |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
232 (add-hook 'change-major-mode-hook 'show-all nil t)) |
10950 | 233 |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
234 (defcustom outline-minor-mode-prefix "\C-c@" |
10950 | 235 "*Prefix key to use for Outline commands in Outline minor mode. |
236 The value of this variable is checked as part of loading Outline mode. | |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
237 After that, changing the prefix key requires manipulating keymaps." |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
238 :type 'string |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
239 :group 'outlines) |
10950 | 240 |
17688
b02bb31c98b0
(outline-mode): Autoload cookie added.
Richard M. Stallman <rms@gnu.org>
parents:
17687
diff
changeset
|
241 ;;;###autoload |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
242 (define-minor-mode outline-minor-mode |
10950 | 243 "Toggle Outline minor mode. |
244 With arg, turn Outline minor mode on if arg is positive, off otherwise. | |
245 See the command `outline-mode' for more information on this mode." | |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
246 nil " Outl" (list (cons [menu-bar] outline-mode-menu-bar-map) |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
247 (cons outline-minor-mode-prefix outline-mode-prefix-map)) |
10950 | 248 (if outline-minor-mode |
249 (progn | |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
250 ;; Turn off this mode if we change major modes. |
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
251 (add-hook 'change-major-mode-hook |
30881
4758e306c41e
(outline-minor-mode): Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
27548
diff
changeset
|
252 (lambda () (outline-minor-mode -1)) |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
253 nil t) |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
254 (set (make-local-variable 'line-move-ignore-invisible) t) |
10950 | 255 ;; Cause use of ellipses for invisible text. |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
256 (add-to-invisibility-spec '(outline . t))) |
10950 | 257 (setq line-move-ignore-invisible nil) |
258 ;; Cause use of ellipses for invisible text. | |
17853
3af728d1f6cf
(outline-mode): Use `add-to-invisibility-spec' and
Richard M. Stallman <rms@gnu.org>
parents:
17690
diff
changeset
|
259 (remove-from-invisibility-spec '(outline . t))) |
10998 | 260 ;; When turning off outline mode, get rid of any outline hiding. |
10950 | 261 (or outline-minor-mode |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
262 (show-all))) |
10950 | 263 |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
264 (defcustom outline-level 'outline-level |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
265 "*Function of no args to compute a header's nesting level in an outline. |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
266 It can assume point is at the beginning of a header line." |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
267 :type 'function |
17690
3fa9da85b3ea
Fix customization change.
Richard M. Stallman <rms@gnu.org>
parents:
17688
diff
changeset
|
268 :group 'outlines) |
10950 | 269 |
270 ;; This used to count columns rather than characters, but that made ^L | |
271 ;; appear to be at level 2 instead of 1. Columns would be better for | |
272 ;; tab handling, but the default regexp doesn't use tabs, and anyone | |
273 ;; who changes the regexp can also redefine the outline-level variable | |
274 ;; as appropriate. | |
275 (defun outline-level () | |
276 "Return the depth to which a statement is nested in the outline. | |
277 Point must be at the beginning of a header line. This is actually | |
278 the number of characters that `outline-regexp' matches." | |
279 (save-excursion | |
280 (looking-at outline-regexp) | |
281 (- (match-end 0) (match-beginning 0)))) | |
282 | |
283 (defun outline-next-preface () | |
284 "Skip forward to just before the next heading line. | |
285 If there's no following heading line, stop before the newline | |
286 at the end of the buffer." | |
287 (if (re-search-forward (concat "\n\\(" outline-regexp "\\)") | |
288 nil 'move) | |
289 (goto-char (match-beginning 0))) | |
20426 | 290 (if (and (bolp) (not (bobp))) |
10950 | 291 (forward-char -1))) |
292 | |
293 (defun outline-next-heading () | |
294 "Move to the next (possibly invisible) heading line." | |
295 (interactive) | |
10998 | 296 (if (re-search-forward (concat "\n\\(" outline-regexp "\\)") |
10950 | 297 nil 'move) |
298 (goto-char (1+ (match-beginning 0))))) | |
299 | |
25177
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
300 (defun outline-previous-heading () |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
301 "Move to the previous (possibly invisible) heading line." |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
302 (interactive) |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
303 (re-search-backward (concat "^\\(" outline-regexp "\\)") |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
304 nil 'move)) |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
305 |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
306 (defsubst outline-invisible-p () |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
307 "Non-nil if the character after point is invisible." |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
308 (get-char-property (point) 'invisible)) |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
309 (defun outline-visible () |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
310 "Obsolete. Use `outline-invisible-p'." |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
311 (not (outline-invisible-p))) |
10950 | 312 |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
313 (defun outline-back-to-heading (&optional invisible-ok) |
10950 | 314 "Move to previous heading line, or beg of this line if it's a heading. |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
315 Only visible heading lines are considered, unless INVISIBLE-OK is non-nil." |
10950 | 316 (beginning-of-line) |
24457
5ab0869ed2c8
(outline-back-to-heading): fix invisible-ok.
Karl Heuer <kwzh@gnu.org>
parents:
24442
diff
changeset
|
317 (or (outline-on-heading-p invisible-ok) |
10950 | 318 (let (found) |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
319 (save-excursion |
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
320 (while (not found) |
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
321 (or (re-search-backward (concat "^\\(" outline-regexp "\\)") |
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
322 nil t) |
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
323 (error "before first heading")) |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
324 (setq found (and (or invisible-ok (outline-visible)) (point))))) |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
325 (goto-char found) |
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
326 found))) |
10950 | 327 |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
328 (defun outline-on-heading-p (&optional invisible-ok) |
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
329 "Return t if point is on a (visible) heading line. |
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
330 If INVISIBLE-OK is non-nil, an invisible heading line is ok too." |
10950 | 331 (save-excursion |
332 (beginning-of-line) | |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
333 (and (bolp) (or invisible-ok (outline-visible)) |
10950 | 334 (looking-at outline-regexp)))) |
335 | |
336 (defun outline-end-of-heading () | |
337 (if (re-search-forward outline-heading-end-regexp nil 'move) | |
338 (forward-char -1))) | |
339 | |
340 (defun outline-next-visible-heading (arg) | |
341 "Move to the next visible heading line. | |
342 With argument, repeats or can move backward if negative. | |
343 A heading line is one that starts with a `*' (or that | |
344 `outline-regexp' matches)." | |
345 (interactive "p") | |
346 (if (< arg 0) | |
347 (beginning-of-line) | |
348 (end-of-line)) | |
12604
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
349 (while (and (not (bobp)) (< arg 0)) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
350 (while (and (not (bobp)) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
351 (re-search-backward (concat "^\\(" outline-regexp "\\)") |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
352 nil 'move) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
353 (not (outline-visible)))) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
354 (setq arg (1+ arg))) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
355 (while (and (not (eobp)) (> arg 0)) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
356 (while (and (not (eobp)) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
357 (re-search-forward (concat "^\\(" outline-regexp "\\)") |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
358 nil 'move) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
359 (not (outline-visible)))) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
360 (setq arg (1- arg))) |
10950 | 361 (beginning-of-line)) |
362 | |
363 (defun outline-previous-visible-heading (arg) | |
364 "Move to the previous heading line. | |
365 With argument, repeats or can move forward if negative. | |
366 A heading line is one that starts with a `*' (or that | |
367 `outline-regexp' matches)." | |
368 (interactive "p") | |
369 (outline-next-visible-heading (- arg))) | |
370 | |
17249
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
371 (defun outline-mark-subtree () |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
372 "Mark the current subtree in an outlined document. |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
373 This puts point at the start of the current subtree, and mark at the end." |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
374 (interactive) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
375 (let ((beg)) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
376 (if (outline-on-heading-p) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
377 ;; we are already looking at a heading |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
378 (beginning-of-line) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
379 ;; else go back to previous heading |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
380 (outline-previous-visible-heading 1)) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
381 (setq beg (point)) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
382 (outline-end-of-subtree) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
383 (push-mark (point)) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
384 (goto-char beg))) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
385 |
10950 | 386 (defun outline-flag-region (from to flag) |
387 "Hides or shows lines from FROM to TO, according to FLAG. | |
388 If FLAG is nil then text is shown, while if FLAG is t the text is hidden." | |
33797
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
389 (save-excursion |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
390 (goto-char from) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
391 (end-of-line) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
392 (outline-discard-overlays (point) to 'outline) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
393 (if flag |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
394 (let ((o (make-overlay (point) to))) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
395 (overlay-put o 'invisible 'outline) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
396 (overlay-put o 'isearch-open-invisible |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
397 'outline-isearch-open-invisible)))) |
13259
11899bfa541c
(outline-view-change-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
12604
diff
changeset
|
398 (run-hooks 'outline-view-change-hook)) |
10996
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
399 |
21439
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
400 |
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
401 ;; Function to be set as an outline-isearch-open-invisible' property |
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
402 ;; to the overlay that makes the outline invisible (see |
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
403 ;; `outline-flag-region'). |
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
404 (defun outline-isearch-open-invisible (overlay) |
33797
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
405 ;; We rely on the fact that isearch places point one the matched text. |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
406 (show-entry)) |
21439
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
407 |
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
408 |
10998 | 409 ;; Exclude from the region BEG ... END all overlays |
21782
f2462c6cb265
(outline-discard-overlays):
Richard M. Stallman <rms@gnu.org>
parents:
21544
diff
changeset
|
410 ;; which have PROP as the value of the `invisible' property. |
10998 | 411 ;; Exclude them by shrinking them to exclude BEG ... END, |
412 ;; or even by splitting them if necessary. | |
21782
f2462c6cb265
(outline-discard-overlays):
Richard M. Stallman <rms@gnu.org>
parents:
21544
diff
changeset
|
413 ;; Overlays without such an `invisible' property are not touched. |
10996
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
414 (defun outline-discard-overlays (beg end prop) |
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
415 (if (< end beg) |
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
416 (setq beg (prog1 end (setq end beg)))) |
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
417 (save-excursion |
33797
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
418 (dolist (o (overlays-in beg end)) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
419 (if (eq (overlay-get o 'invisible) prop) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
420 ;; Either push this overlay outside beg...end |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
421 ;; or split it to exclude beg...end |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
422 ;; or delete it entirely (if it is contained in beg...end). |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
423 (if (< (overlay-start o) beg) |
18427
170b16201f82
(outline-discard-overlays): Don't use let inside a cycle.
Richard M. Stallman <rms@gnu.org>
parents:
17853
diff
changeset
|
424 (if (> (overlay-end o) end) |
33797
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
425 (progn |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
426 (move-overlay (outline-copy-overlay o) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
427 (overlay-start o) beg) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
428 (move-overlay o end (overlay-end o))) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
429 (move-overlay o (overlay-start o) beg)) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
430 (if (> (overlay-end o) end) |
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
431 (move-overlay o end (overlay-end o)) |
33799
77de13a8a918
(outline-discard-overlays): Missing paren.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33797
diff
changeset
|
432 (delete-overlay o))))))) |
10996
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
433 |
10998 | 434 ;; Make a copy of overlay O, with the same beginning, end and properties. |
10996
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
435 (defun outline-copy-overlay (o) |
10998 | 436 (let ((o1 (make-overlay (overlay-start o) (overlay-end o) |
437 (overlay-buffer o))) | |
10996
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
438 (props (overlay-properties o))) |
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
439 (while props |
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
440 (overlay-put o1 (car props) (nth 1 props)) |
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
441 (setq props (cdr (cdr props)))) |
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
442 o1)) |
10950 | 443 |
444 (defun hide-entry () | |
445 "Hide the body directly following this heading." | |
446 (interactive) | |
447 (outline-back-to-heading) | |
448 (outline-end-of-heading) | |
449 (save-excursion | |
450 (outline-flag-region (point) (progn (outline-next-preface) (point)) t))) | |
451 | |
452 (defun show-entry () | |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
453 "Show the body directly following this heading. |
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
454 Show the heading too, if it is currently invisible." |
10950 | 455 (interactive) |
456 (save-excursion | |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
457 (outline-back-to-heading t) |
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
458 (outline-flag-region (1- (point)) |
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
459 (progn (outline-next-preface) (point)) nil))) |
10950 | 460 |
461 (defun hide-body () | |
462 "Hide all of buffer except headings." | |
463 (interactive) | |
464 (hide-region-body (point-min) (point-max))) | |
465 | |
466 (defun hide-region-body (start end) | |
467 "Hide all body lines in the region, but not headings." | |
23366 | 468 ;; Nullify the hook to avoid repeated calls to `outline-flag-region' |
469 ;; wasting lots of time running `lazy-lock-fontify-after-outline' | |
470 ;; and run the hook finally. | |
471 (let (outline-view-change-hook) | |
472 (save-excursion | |
473 (save-restriction | |
474 (narrow-to-region start end) | |
475 (goto-char (point-min)) | |
476 (if (outline-on-heading-p) | |
477 (outline-end-of-heading)) | |
478 (while (not (eobp)) | |
479 (outline-flag-region (point) | |
480 (progn (outline-next-preface) (point)) t) | |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
481 (unless (eobp) |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
482 (forward-char (if (looking-at "\n\n") 2 1)) |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
483 (outline-end-of-heading)))))) |
23366 | 484 (run-hooks 'outline-view-change-hook)) |
10950 | 485 |
486 (defun show-all () | |
487 "Show all of the text in the buffer." | |
488 (interactive) | |
489 (outline-flag-region (point-min) (point-max) nil)) | |
490 | |
491 (defun hide-subtree () | |
492 "Hide everything after this heading at deeper levels." | |
493 (interactive) | |
494 (outline-flag-subtree t)) | |
495 | |
496 (defun hide-leaves () | |
497 "Hide all body after this heading at deeper levels." | |
498 (interactive) | |
499 (outline-back-to-heading) | |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
500 (save-excursion |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
501 (outline-end-of-heading) |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
502 (hide-region-body (point) (progn (outline-end-of-subtree) (point))))) |
10950 | 503 |
504 (defun show-subtree () | |
505 "Show everything after this heading at deeper levels." | |
506 (interactive) | |
507 (outline-flag-subtree nil)) | |
508 | |
509 (defun hide-sublevels (levels) | |
510 "Hide everything but the top LEVELS levels of headers, in whole buffer." | |
511 (interactive "p") | |
512 (if (< levels 1) | |
513 (error "Must keep at least one level of headers")) | |
514 (setq levels (1- levels)) | |
23366 | 515 (let (outline-view-change-hook) |
516 (save-excursion | |
517 (goto-char (point-min)) | |
518 ;; Keep advancing to the next top-level heading. | |
519 (while (or (and (bobp) (outline-on-heading-p)) | |
520 (outline-next-heading)) | |
521 (let ((end (save-excursion (outline-end-of-subtree) (point)))) | |
522 ;; Hide everything under that. | |
523 (outline-flag-region (point) end t) | |
524 ;; Show the first LEVELS levels under that. | |
525 (if (> levels 0) | |
526 (show-children levels)) | |
527 ;; Move to the next, since we already found it. | |
528 (goto-char end))))) | |
529 (run-hooks 'outline-view-change-hook)) | |
10950 | 530 |
531 (defun hide-other () | |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
532 "Hide everything except current body and parent and top-level headings." |
10950 | 533 (interactive) |
534 (hide-sublevels 1) | |
23366 | 535 (let (outline-view-change-hook) |
536 (save-excursion | |
537 (outline-back-to-heading t) | |
538 (show-entry) | |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
539 (while (condition-case nil (progn (outline-up-heading 1) (not (bobp))) |
23366 | 540 (error nil)) |
541 (outline-flag-region (1- (point)) | |
542 (save-excursion (forward-line 1) (point)) | |
543 nil)))) | |
544 (run-hooks 'outline-view-change-hook)) | |
10950 | 545 |
546 (defun outline-flag-subtree (flag) | |
547 (save-excursion | |
548 (outline-back-to-heading) | |
549 (outline-end-of-heading) | |
550 (outline-flag-region (point) | |
551 (progn (outline-end-of-subtree) (point)) | |
552 flag))) | |
553 | |
554 (defun outline-end-of-subtree () | |
555 (outline-back-to-heading) | |
556 (let ((opoint (point)) | |
557 (first t) | |
558 (level (funcall outline-level))) | |
559 (while (and (not (eobp)) | |
560 (or first (> (funcall outline-level) level))) | |
561 (setq first nil) | |
562 (outline-next-heading)) | |
563 (if (bolp) | |
564 (progn | |
565 ;; Go to end of line before heading | |
566 (forward-char -1) | |
567 (if (bolp) | |
568 ;; leave blank line before heading | |
569 (forward-char -1)))))) | |
570 | |
571 (defun show-branches () | |
572 "Show all subheadings of this heading, but not their bodies." | |
573 (interactive) | |
574 (show-children 1000)) | |
575 | |
576 (defun show-children (&optional level) | |
577 "Show all direct subheadings of this heading. | |
578 Prefix arg LEVEL is how many levels below the current level should be shown. | |
579 Default is enough to cause the following heading to appear." | |
580 (interactive "P") | |
581 (setq level | |
582 (if level (prefix-numeric-value level) | |
583 (save-excursion | |
584 (outline-back-to-heading) | |
585 (let ((start-level (funcall outline-level))) | |
586 (outline-next-heading) | |
587 (if (eobp) | |
588 1 | |
589 (max 1 (- (funcall outline-level) start-level))))))) | |
23366 | 590 (let (outline-view-change-hook) |
591 (save-excursion | |
592 (save-restriction | |
593 (outline-back-to-heading) | |
594 (setq level (+ level (funcall outline-level))) | |
595 (narrow-to-region (point) | |
596 (progn (outline-end-of-subtree) | |
597 (if (eobp) (point-max) (1+ (point))))) | |
598 (goto-char (point-min)) | |
599 (while (and (not (eobp)) | |
600 (progn | |
601 (outline-next-heading) | |
602 (not (eobp)))) | |
603 (if (<= (funcall outline-level) level) | |
604 (save-excursion | |
605 (outline-flag-region (save-excursion | |
606 (forward-char -1) | |
607 (if (bolp) | |
608 (forward-char -1)) | |
609 (point)) | |
610 (progn (outline-end-of-heading) (point)) | |
611 nil))))))) | |
612 (run-hooks 'outline-view-change-hook)) | |
10950 | 613 |
25148
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
614 (defun outline-up-heading-all (arg) |
25177
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
615 "Move to the heading line of which the present line is a subheading. |
25148
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
616 This function considers both visible and invisible heading lines. |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
617 With argument, move up ARG levels." |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
618 (outline-back-to-heading t) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
619 (if (eq (funcall outline-level) 1) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
620 (error "Already at top level of the outline")) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
621 (while (and (> (funcall outline-level) 1) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
622 (> arg 0) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
623 (not (bobp))) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
624 (let ((present-level (funcall outline-level))) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
625 (while (and (not (< (funcall outline-level) present-level)) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
626 (not (bobp))) |
25177
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
627 (outline-previous-heading)) |
25148
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
628 (setq arg (- arg 1))))) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
629 |
10950 | 630 (defun outline-up-heading (arg) |
25148
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
631 "Move to the visible heading line of which the present line is a subheading. |
10950 | 632 With argument, move up ARG levels." |
633 (interactive "p") | |
634 (outline-back-to-heading) | |
635 (if (eq (funcall outline-level) 1) | |
15466
5affe3230dfb
(outline-up-heading): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
636 (error "Already at top level of the outline")) |
10950 | 637 (while (and (> (funcall outline-level) 1) |
638 (> arg 0) | |
639 (not (bobp))) | |
640 (let ((present-level (funcall outline-level))) | |
19959
d6e501bdc16a
(outline-up-heading): Avoid infinite loop at beginning of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
18427
diff
changeset
|
641 (while (and (not (< (funcall outline-level) present-level)) |
d6e501bdc16a
(outline-up-heading): Avoid infinite loop at beginning of buffer.
Richard M. Stallman <rms@gnu.org>
parents:
18427
diff
changeset
|
642 (not (bobp))) |
10950 | 643 (outline-previous-visible-heading 1)) |
644 (setq arg (- arg 1))))) | |
645 | |
646 (defun outline-forward-same-level (arg) | |
647 "Move forward to the ARG'th subheading at same level as this one. | |
648 Stop at the first and last subheadings of a superior heading." | |
649 (interactive "p") | |
650 (outline-back-to-heading) | |
651 (while (> arg 0) | |
652 (let ((point-to-move-to (save-excursion | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
653 (outline-get-next-sibling)))) |
10950 | 654 (if point-to-move-to |
655 (progn | |
656 (goto-char point-to-move-to) | |
657 (setq arg (1- arg))) | |
658 (progn | |
659 (setq arg 0) | |
15466
5affe3230dfb
(outline-up-heading): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
660 (error "No following same-level heading")))))) |
10950 | 661 |
662 (defun outline-get-next-sibling () | |
663 "Move to next heading of the same level, and return point or nil if none." | |
664 (let ((level (funcall outline-level))) | |
665 (outline-next-visible-heading 1) | |
666 (while (and (> (funcall outline-level) level) | |
667 (not (eobp))) | |
668 (outline-next-visible-heading 1)) | |
669 (if (< (funcall outline-level) level) | |
670 nil | |
671 (point)))) | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
672 |
10950 | 673 (defun outline-backward-same-level (arg) |
674 "Move backward to the ARG'th subheading at same level as this one. | |
675 Stop at the first and last subheadings of a superior heading." | |
676 (interactive "p") | |
677 (outline-back-to-heading) | |
678 (while (> arg 0) | |
679 (let ((point-to-move-to (save-excursion | |
680 (outline-get-last-sibling)))) | |
681 (if point-to-move-to | |
682 (progn | |
683 (goto-char point-to-move-to) | |
684 (setq arg (1- arg))) | |
685 (progn | |
686 (setq arg 0) | |
15466
5affe3230dfb
(outline-up-heading): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
687 (error "No previous same-level heading")))))) |
10950 | 688 |
689 (defun outline-get-last-sibling () | |
24442
252453d80f53
(outline-get-last-sibling): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
23366
diff
changeset
|
690 "Move to previous heading of the same level, and return point or nil if none." |
10950 | 691 (let ((level (funcall outline-level))) |
692 (outline-previous-visible-heading 1) | |
693 (while (and (> (funcall outline-level) level) | |
694 (not (bobp))) | |
695 (outline-previous-visible-heading 1)) | |
696 (if (< (funcall outline-level) level) | |
697 nil | |
698 (point)))) | |
27204
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
699 |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
700 (defun outline-headers-as-kill (beg end) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
701 "Save the visible outline headers in region at the start of the kill ring. |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
702 |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
703 Text shown between the headers isn't copied. Two newlines are |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
704 inserted between saved headers. Yanking the result may be a |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
705 convenient way to make a table of contents of the buffer." |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
706 (interactive "r") |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
707 (save-excursion |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
708 (save-restriction |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
709 (narrow-to-region beg end) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
710 (goto-char (point-min)) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
711 (let ((buffer (current-buffer)) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
712 start end) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
713 (with-temp-buffer |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
714 (with-current-buffer buffer |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
715 ;; Boundary condition: starting on heading: |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
716 (when (outline-on-heading-p) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
717 (outline-back-to-heading) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
718 (setq start (point) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
719 end (progn (outline-end-of-heading) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
720 (point))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
721 (insert-buffer-substring buffer start end) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
722 (insert "\n\n"))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
723 (let ((temp-buffer (current-buffer))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
724 (with-current-buffer buffer |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
725 (while (outline-next-heading) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
726 (when (outline-visible) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
727 (setq start (point) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
728 end (progn (outline-end-of-heading) (point))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
729 (with-current-buffer temp-buffer |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
730 (insert-buffer-substring buffer start end) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
731 (insert "\n\n")))))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
732 (kill-new (buffer-string))))))) |
10950 | 733 |
734 (provide 'outline) | |
11736
07ac8009368c
Provide noutline as well as outline.
Richard M. Stallman <rms@gnu.org>
parents:
11713
diff
changeset
|
735 (provide 'noutline) |
10950 | 736 |
737 ;;; outline.el ends here |