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