Support for HP 9000 series 800 and Hitachi SR2001/SR2201 machines was
[bpt/emacs.git] / lisp / outline.el
CommitLineData
36a77f37
JB
1;;; outline.el --- outline mode commands for Emacs
2
0d30b337 3;; Copyright (C) 1986, 1993, 1994, 1995, 1997, 2000, 2001, 2002,
d7a0267c 4;; 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
36a77f37
JB
5
6;; Maintainer: FSF
7;; Keywords: outlines
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
22;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
36a77f37
JB
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
32;;; Todo:
33
34;; - subtree-terminators
35;; - better handle comments before function bodies (i.e. heading)
36;; - don't bother hiding whitespace
37
38;;; Code:
39
f63f8737
JB
40(defvar font-lock-warning-face)
41
42
36a77f37 43(defgroup outlines nil
7a5c8253 44 "Support for hierarchical outlining."
36a77f37
JB
45 :prefix "outline-"
46 :group 'editing)
47
48(defcustom outline-regexp "[*\^L]+"
1e0e9b38 49 "Regular expression to match the beginning of a heading.
36a77f37
JB
50Any line whose beginning matches this regexp is considered to start a heading.
51Note that Outline mode only checks this regexp at the start of a line,
52so the regexp need not (and usually does not) start with `^'.
53The recommended way to set this is with a Local Variables: list
54in the file it applies to. See also `outline-heading-end-regexp'."
55 :type '(choice regexp (const nil))
56 :group 'outlines)
631c8020 57;;;###autoload(put 'outline-regexp 'safe-local-variable 'string-or-null-p)
36a77f37
JB
58
59(defcustom outline-heading-end-regexp "\n"
1e0e9b38 60 "Regular expression to match the end of a heading line.
36a77f37
JB
61You can assume that point is at the beginning of a heading when this
62regexp is searched for. The heading ends at the end of the match.
63The recommended way to set this is with a `Local Variables:' list
64in the file it applies to."
65 :type 'regexp
66 :group 'outlines)
67
68(defvar outline-mode-prefix-map
69 (let ((map (make-sparse-keymap)))
70 (define-key map "@" 'outline-mark-subtree)
71 (define-key map "\C-n" 'outline-next-visible-heading)
72 (define-key map "\C-p" 'outline-previous-visible-heading)
73 (define-key map "\C-i" 'show-children)
74 (define-key map "\C-s" 'show-subtree)
75 (define-key map "\C-d" 'hide-subtree)
76 (define-key map "\C-u" 'outline-up-heading)
77 (define-key map "\C-f" 'outline-forward-same-level)
78 (define-key map "\C-b" 'outline-backward-same-level)
79 (define-key map "\C-t" 'hide-body)
80 (define-key map "\C-a" 'show-all)
81 (define-key map "\C-c" 'hide-entry)
82 (define-key map "\C-e" 'show-entry)
83 (define-key map "\C-l" 'hide-leaves)
84 (define-key map "\C-k" 'show-branches)
85 (define-key map "\C-q" 'hide-sublevels)
86 (define-key map "\C-o" 'hide-other)
87 (define-key map "\C-^" 'outline-move-subtree-up)
88 (define-key map "\C-v" 'outline-move-subtree-down)
89 (define-key map [(control ?<)] 'outline-promote)
90 (define-key map [(control ?>)] 'outline-demote)
91 (define-key map "\C-m" 'outline-insert-heading)
92 ;; Where to bind outline-cycle ?
93 map))
94
95(defvar outline-mode-menu-bar-map
96 (let ((map (make-sparse-keymap)))
97
98 (define-key map [hide] (cons "Hide" (make-sparse-keymap "Hide")))
99
100 (define-key map [hide hide-other] '("Hide Other" . hide-other))
101 (define-key map [hide hide-sublevels] '("Hide Sublevels" . hide-sublevels))
102 (define-key map [hide hide-subtree] '("Hide Subtree" . hide-subtree))
103 (define-key map [hide hide-entry] '("Hide Entry" . hide-entry))
104 (define-key map [hide hide-body] '("Hide Body" . hide-body))
105 (define-key map [hide hide-leaves] '("Hide Leaves" . hide-leaves))
106
107 (define-key map [show] (cons "Show" (make-sparse-keymap "Show")))
108
109 (define-key map [show show-subtree] '("Show Subtree" . show-subtree))
110 (define-key map [show show-children] '("Show Children" . show-children))
111 (define-key map [show show-branches] '("Show Branches" . show-branches))
112 (define-key map [show show-entry] '("Show Entry" . show-entry))
113 (define-key map [show show-all] '("Show All" . show-all))
114
115 (define-key map [headings]
116 (cons "Headings" (make-sparse-keymap "Headings")))
117
118 (define-key map [headings demote-subtree]
119 '(menu-item "Demote subtree" outline-demote))
120 (define-key map [headings promote-subtree]
121 '(menu-item "Promote subtree" outline-promote))
122 (define-key map [headings move-subtree-down]
123 '(menu-item "Move subtree down" outline-move-subtree-down))
124 (define-key map [headings move-subtree-up]
125 '(menu-item "Move subtree up" outline-move-subtree-up))
126 (define-key map [headings copy]
127 '(menu-item "Copy to kill ring" outline-headers-as-kill
128 :enable mark-active))
129 (define-key map [headings outline-insert-heading]
130 '("New heading" . outline-insert-heading))
131 (define-key map [headings outline-backward-same-level]
132 '("Previous Same Level" . outline-backward-same-level))
133 (define-key map [headings outline-forward-same-level]
134 '("Next Same Level" . outline-forward-same-level))
135 (define-key map [headings outline-previous-visible-heading]
136 '("Previous" . outline-previous-visible-heading))
137 (define-key map [headings outline-next-visible-heading]
138 '("Next" . outline-next-visible-heading))
139 (define-key map [headings outline-up-heading]
140 '("Up" . outline-up-heading))
141 map))
142
143(defvar outline-minor-mode-menu-bar-map
144 (let ((map (make-sparse-keymap)))
145 (define-key map [outline]
146 (cons "Outline"
147 (nconc (make-sparse-keymap "Outline")
148 ;; Remove extra separator
149 (cdr
150 ;; Flatten the major mode's menus into a single menu.
151 (apply 'append
152 (mapcar (lambda (x)
153 (if (consp x)
154 ;; Add a separator between each
155 ;; part of the unified menu.
156 (cons '(--- "---") (cdr x))))
157 outline-mode-menu-bar-map))))))
158 map))
48c9ce10 159
36a77f37
JB
160
161(defvar outline-mode-map
162 (let ((map (make-sparse-keymap)))
163 (define-key map "\C-c" outline-mode-prefix-map)
164 (define-key map [menu-bar] outline-mode-menu-bar-map)
165 map))
166
167(defvar outline-font-lock-keywords
168 '(;;
169 ;; Highlight headings according to the level.
170 (eval . (list (concat "^\\(?:" outline-regexp "\\).+")
171 0 '(outline-font-lock-face) nil t)))
172 "Additional expressions to highlight in Outline mode.")
173
1f2503a5
LK
174(defface outline-1
175 '((t :inherit font-lock-function-name-face))
176 "Level 1."
177 :group 'outlines)
178
179(defface outline-2
180 '((t :inherit font-lock-variable-name-face))
181 "Level 2."
182 :group 'outlines)
183
184(defface outline-3
185 '((t :inherit font-lock-keyword-face))
186 "Level 3."
187 :group 'outlines)
188
189(defface outline-4
190 '((t :inherit font-lock-builtin-face))
191 "Level 4."
192 :group 'outlines)
193
194(defface outline-5
195 '((t :inherit font-lock-comment-face))
196 "Level 5."
197 :group 'outlines)
198
199(defface outline-6
200 '((t :inherit font-lock-constant-face))
201 "Level 6."
202 :group 'outlines)
203
204(defface outline-7
205 '((t :inherit font-lock-type-face))
206 "Level 7."
207 :group 'outlines)
208
209(defface outline-8
210 '((t :inherit font-lock-string-face))
211 "Level 8."
212 :group 'outlines)
36a77f37
JB
213
214(defvar outline-font-lock-faces
215 [outline-1 outline-2 outline-3 outline-4
216 outline-5 outline-6 outline-7 outline-8])
217
218(defvar outline-font-lock-levels nil)
219(make-variable-buffer-local 'outline-font-lock-levels)
220
221(defun outline-font-lock-face ()
222 ;; (save-excursion
223 ;; (outline-back-to-heading t)
224 ;; (let* ((count 0)
225 ;; (start-level (funcall outline-level))
226 ;; (level start-level)
227 ;; face-level)
228 ;; (while (not (setq face-level
229 ;; (if (or (bobp) (eq level 1)) 0
230 ;; (cdr (assq level outline-font-lock-levels)))))
231 ;; (outline-up-heading 1 t)
232 ;; (setq count (1+ count))
233 ;; (setq level (funcall outline-level)))
234 ;; ;; Remember for later.
235 ;; (unless (zerop count)
236 ;; (setq face-level (+ face-level count))
237 ;; (push (cons start-level face-level) outline-font-lock-levels))
238 ;; (condition-case nil
239 ;; (aref outline-font-lock-faces face-level)
240 ;; (error font-lock-warning-face))))
241 (save-excursion
242 (goto-char (match-beginning 0))
243 (looking-at outline-regexp)
244 (condition-case nil
245 (aref outline-font-lock-faces (1- (funcall outline-level)))
246 (error font-lock-warning-face))))
247
248(defvar outline-view-change-hook nil
249 "Normal hook to be run after outline visibility changes.")
250
48c9ce10
JB
251(defvar outline-mode-hook nil
252 "*This hook is run when outline mode starts.")
253
ca858c64
JL
254(defvar outline-blank-line nil
255 "*Non-nil means to leave unhidden blank line before heading.")
256
36a77f37
JB
257;;;###autoload
258(define-derived-mode outline-mode text-mode "Outline"
259 "Set major mode for editing outlines with selective display.
260Headings are lines which start with asterisks: one for major headings,
261two for subheadings, etc. Lines not starting with asterisks are body lines.
262
263Body text or subheadings under a heading can be made temporarily
264invisible, or visible again. Invisible lines are attached to the end
265of the heading, so they move with it, if the line is killed and yanked
266back. A heading with text hidden under it is marked with an ellipsis (...).
267
268Commands:\\<outline-mode-map>
269\\[outline-next-visible-heading] outline-next-visible-heading move by visible headings
270\\[outline-previous-visible-heading] outline-previous-visible-heading
271\\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings
272\\[outline-backward-same-level] outline-backward-same-level
273\\[outline-up-heading] outline-up-heading move from subheading to heading
274
275\\[hide-body] make all text invisible (not headings).
276\\[show-all] make everything in buffer visible.
277\\[hide-sublevels] make only the first N levels of headers visible.
278
279The remaining commands are used when point is on a heading line.
280They apply to some of the body or subheadings of that heading.
281\\[hide-subtree] hide-subtree make body and subheadings invisible.
282\\[show-subtree] show-subtree make body and subheadings visible.
283\\[show-children] show-children make direct subheadings visible.
284 No effect on body, or subheadings 2 or more levels down.
285 With arg N, affects subheadings N levels down.
286\\[hide-entry] make immediately following body invisible.
287\\[show-entry] make it visible.
288\\[hide-leaves] make body under heading and under its subheadings invisible.
289 The subheadings remain visible.
290\\[show-branches] make all subheadings at all levels visible.
291
292The variable `outline-regexp' can be changed to control what is a heading.
293A line is a heading if `outline-regexp' matches something at the
294beginning of the line. The longer the match, the deeper the level.
295
296Turning on outline mode calls the value of `text-mode-hook' and then of
297`outline-mode-hook', if they are non-nil."
298 (make-local-variable 'line-move-ignore-invisible)
299 (setq line-move-ignore-invisible t)
300 ;; Cause use of ellipses for invisible text.
301 (add-to-invisibility-spec '(outline . t))
302 (set (make-local-variable 'paragraph-start)
303 (concat paragraph-start "\\|\\(?:" outline-regexp "\\)"))
304 ;; Inhibit auto-filling of header lines.
305 (set (make-local-variable 'auto-fill-inhibit-regexp) outline-regexp)
306 (set (make-local-variable 'paragraph-separate)
307 (concat paragraph-separate "\\|\\(?:" outline-regexp "\\)"))
308 (set (make-local-variable 'font-lock-defaults)
309 '(outline-font-lock-keywords t nil nil backward-paragraph))
310 (setq imenu-generic-expression
311 (list (list nil (concat "^\\(?:" outline-regexp "\\).*$") 0)))
53526855 312 (add-hook 'change-major-mode-hook 'show-all nil t))
36a77f37
JB
313
314(defcustom outline-minor-mode-prefix "\C-c@"
315 "*Prefix key to use for Outline commands in Outline minor mode.
316The value of this variable is checked as part of loading Outline mode.
317After that, changing the prefix key requires manipulating keymaps."
318 :type 'string
319 :group 'outlines)
320
321;;;###autoload
322(define-minor-mode outline-minor-mode
323 "Toggle Outline minor mode.
324With arg, turn Outline minor mode on if arg is positive, off otherwise.
325See the command `outline-mode' for more information on this mode."
326 nil " Outl" (list (cons [menu-bar] outline-minor-mode-menu-bar-map)
327 (cons outline-minor-mode-prefix outline-mode-prefix-map))
328 :group 'outlines
329 (if outline-minor-mode
330 (progn
331 ;; Turn off this mode if we change major modes.
332 (add-hook 'change-major-mode-hook
333 (lambda () (outline-minor-mode -1))
334 nil t)
335 (set (make-local-variable 'line-move-ignore-invisible) t)
336 ;; Cause use of ellipses for invisible text.
337 (add-to-invisibility-spec '(outline . t)))
338 (setq line-move-ignore-invisible nil)
339 ;; Cause use of ellipses for invisible text.
340 (remove-from-invisibility-spec '(outline . t))
341 ;; When turning off outline mode, get rid of any outline hiding.
342 (show-all)))
343\f
344(defvar outline-level 'outline-level
345 "*Function of no args to compute a header's nesting level in an outline.
346It can assume point is at the beginning of a header line and that the match
347data reflects the `outline-regexp'.")
348
349(defvar outline-heading-alist ()
350 "Alist associating a heading for every possible level.
351Each entry is of the form (HEADING . LEVEL).
352This alist is used two ways: to find the heading corresponding to
353a given level and to find the level of a given heading.
354If a mode or document needs several sets of outline headings (for example
355numbered and unnumbered sections), list them set by set and sorted by level
356within each set. For example in texinfo mode:
357
358 (setq outline-heading-alist
359 '((\"@chapter\" . 2) (\"@section\" . 3) (\"@subsection\" . 4)
360 (\"@subsubsection\" . 5)
361 (\"@unnumbered\" . 2) (\"@unnumberedsec\" . 3)
362 (\"@unnumberedsubsec\" . 4) (\"@unnumberedsubsubsec\" . 5)
363 (\"@appendix\" . 2) (\"@appendixsec\" . 3)...
364 (\"@appendixsubsec\" . 4) (\"@appendixsubsubsec\" . 5) ..))
365
366Instead of sorting the entries in each set, you can also separate the
367sets with nil.")
368(make-variable-buffer-local 'outline-heading-alist)
369
370;; This used to count columns rather than characters, but that made ^L
371;; appear to be at level 2 instead of 1. Columns would be better for
372;; tab handling, but the default regexp doesn't use tabs, and anyone
373;; who changes the regexp can also redefine the outline-level variable
374;; as appropriate.
375(defun outline-level ()
376 "Return the depth to which a statement is nested in the outline.
377Point must be at the beginning of a header line.
378This is actually either the level specified in `outline-heading-alist'
379or else the number of characters matched by `outline-regexp'."
380 (or (cdr (assoc (match-string 0) outline-heading-alist))
381 (- (match-end 0) (match-beginning 0))))
382
383(defun outline-next-preface ()
384 "Skip forward to just before the next heading line.
385If there's no following heading line, stop before the newline
386at the end of the buffer."
387 (if (re-search-forward (concat "\n\\(?:" outline-regexp "\\)")
388 nil 'move)
389 (goto-char (match-beginning 0)))
ca858c64 390 (if (and (bolp) (or outline-blank-line (eobp)) (not (bobp)))
36a77f37
JB
391 (forward-char -1)))
392
393(defun outline-next-heading ()
394 "Move to the next (possibly invisible) heading line."
395 (interactive)
396 ;; Make sure we don't match the heading we're at.
397 (if (and (bolp) (not (eobp))) (forward-char 1))
398 (if (re-search-forward (concat "^\\(?:" outline-regexp "\\)")
399 nil 'move)
400 (goto-char (match-beginning 0))))
401
402(defun outline-previous-heading ()
403 "Move to the previous (possibly invisible) heading line."
404 (interactive)
405 (re-search-backward (concat "^\\(?:" outline-regexp "\\)")
406 nil 'move))
407
408(defsubst outline-invisible-p (&optional pos)
409 "Non-nil if the character after point is invisible."
410 (get-char-property (or pos (point)) 'invisible))
411
412(defun outline-visible ()
413 (not (outline-invisible-p)))
414(make-obsolete 'outline-visible 'outline-invisible-p)
415
416(defun outline-back-to-heading (&optional invisible-ok)
417 "Move to previous heading line, or beg of this line if it's a heading.
418Only visible heading lines are considered, unless INVISIBLE-OK is non-nil."
419 (beginning-of-line)
420 (or (outline-on-heading-p invisible-ok)
421 (let (found)
422 (save-excursion
423 (while (not found)
424 (or (re-search-backward (concat "^\\(?:" outline-regexp "\\)")
425 nil t)
426 (error "before first heading"))
427 (setq found (and (or invisible-ok (not (outline-invisible-p)))
428 (point)))))
429 (goto-char found)
430 found)))
431
432(defun outline-on-heading-p (&optional invisible-ok)
433 "Return t if point is on a (visible) heading line.
434If INVISIBLE-OK is non-nil, an invisible heading line is ok too."
435 (save-excursion
436 (beginning-of-line)
437 (and (bolp) (or invisible-ok (not (outline-invisible-p)))
438 (looking-at outline-regexp))))
439
440(defun outline-insert-heading ()
441 "Insert a new heading at same depth at point."
442 (interactive)
443 (let ((head (save-excursion
444 (condition-case nil
445 (outline-back-to-heading)
446 (error (outline-next-heading)))
447 (if (eobp)
448 (or (caar outline-heading-alist) "")
449 (match-string 0)))))
450 (unless (or (string-match "[ \t]\\'" head)
f56af8ca
SM
451 (not (string-match (concat "\\`\\(?:" outline-regexp "\\)")
452 (concat head " "))))
36a77f37
JB
453 (setq head (concat head " ")))
454 (unless (bolp) (end-of-line) (newline))
455 (insert head)
456 (unless (eolp)
457 (save-excursion (newline-and-indent)))
458 (run-hooks 'outline-insert-heading-hook)))
459
797d92ed
SM
460(defun outline-invent-heading (head up)
461 (save-match-data
462 ;; Let's try to invent one by repeating or deleting the last char.
463 (let ((new-head (if up (substring head 0 -1)
464 (concat head (substring head -1)))))
465 (if (string-match (concat "\\`\\(?:" outline-regexp "\\)")
466 new-head)
467 ;; Why bother checking that it is indeed higher/lower level ?
468 new-head
469 ;; Didn't work, so ask what to do.
470 (read-string (format "%s heading for `%s': "
471 (if up "Parent" "Demoted") head)
472 head nil nil t)))))
473
36a77f37
JB
474(defun outline-promote (&optional children)
475 "Promote headings higher up the tree.
476If prefix argument CHILDREN is given, promote also all the children.
477If the region is active in `transient-mark-mode', promote all headings
478in the region."
479 (interactive
480 (list (if (and transient-mark-mode mark-active) 'region
481 (outline-back-to-heading)
482 (if current-prefix-arg nil 'subtree))))
483 (cond
484 ((eq children 'region)
485 (outline-map-region 'outline-promote (region-beginning) (region-end)))
486 (children
487 (outline-map-region 'outline-promote
488 (point)
489 (save-excursion (outline-get-next-sibling) (point))))
490 (t
491 (outline-back-to-heading t)
20e3210f 492 (let* ((head (match-string-no-properties 0))
36a77f37
JB
493 (level (save-match-data (funcall outline-level)))
494 (up-head (or (outline-head-from-level (1- level) head)
20e3210f
RS
495 ;; Use the parent heading, if it is really
496 ;; one level less.
36a77f37
JB
497 (save-excursion
498 (save-match-data
499 (outline-up-heading 1 t)
20e3210f
RS
500 (and (= (1- level) (funcall outline-level))
501 (match-string-no-properties 0))))
797d92ed
SM
502 ;; Bummer!! There is no lower level heading.
503 (outline-invent-heading head 'up))))
48c9ce10 504
36a77f37
JB
505 (unless (rassoc level outline-heading-alist)
506 (push (cons head level) outline-heading-alist))
48c9ce10 507
36a77f37
JB
508 (replace-match up-head nil t)))))
509
510(defun outline-demote (&optional children)
511 "Demote headings lower down the tree.
512If prefix argument CHILDREN is given, demote also all the children.
513If the region is active in `transient-mark-mode', demote all headings
514in the region."
515 (interactive
516 (list (if (and transient-mark-mode mark-active) 'region
517 (outline-back-to-heading)
518 (if current-prefix-arg nil 'subtree))))
519 (cond
520 ((eq children 'region)
521 (outline-map-region 'outline-demote (region-beginning) (region-end)))
522 (children
523 (outline-map-region 'outline-demote
524 (point)
525 (save-excursion (outline-get-next-sibling) (point))))
526 (t
20e3210f 527 (let* ((head (match-string-no-properties 0))
36a77f37
JB
528 (level (save-match-data (funcall outline-level)))
529 (down-head
530 (or (outline-head-from-level (1+ level) head)
531 (save-excursion
532 (save-match-data
533 (while (and (progn (outline-next-heading) (not (eobp)))
534 (<= (funcall outline-level) level)))
535 (when (eobp)
536 ;; Try again from the beginning of the buffer.
537 (goto-char (point-min))
538 (while (and (progn (outline-next-heading) (not (eobp)))
539 (<= (funcall outline-level) level))))
540 (unless (eobp)
541 (looking-at outline-regexp)
20e3210f 542 (match-string-no-properties 0))))
797d92ed
SM
543 ;; Bummer!! There is no higher-level heading in the buffer.
544 (outline-invent-heading head nil))))
36a77f37 545
20e3210f
RS
546 (unless (rassoc level outline-heading-alist)
547 (push (cons head level) outline-heading-alist))
548 (replace-match down-head nil t)))))
36a77f37
JB
549
550(defun outline-head-from-level (level head &optional alist)
551 "Get new heading with level LEVEL from ALIST.
552If there are no such entries, return nil.
553ALIST defaults to `outline-heading-alist'.
554Similar to (car (rassoc LEVEL ALIST)).
555If there are several different entries with same new level, choose
556the one with the smallest distance to the assocation of HEAD in the alist.
557This makes it possible for promotion to work in modes with several
558independent sets of headings (numbered, unnumbered, appendix...)"
559 (unless alist (setq alist outline-heading-alist))
560 (let ((l (rassoc level alist))
561 ll h hl l2 l2l)
562 (cond
563 ((null l) nil)
564 ;; If there's no HEAD after L, any other entry for LEVEL after L
565 ;; can't be much better than L.
566 ((null (setq h (assoc head (setq ll (memq l alist))))) (car l))
567 ;; If there's no other entry for LEVEL, just keep L.
568 ((null (setq l2 (rassoc level (cdr ll)))) (car l))
569 ;; Now we have L, L2, and H: see if L2 seems better than L.
570 ;; If H is after L2, L2 is better.
571 ((memq h (setq l2l (memq l2 (cdr ll))))
572 (outline-head-from-level level head l2l))
573 ;; Now we have H between L and L2.
574 ;; If there's a separator between L and H, prefer L2.
575 ((memq h (memq nil ll))
576 (outline-head-from-level level head l2l))
577 ;; If there's a separator between L2 and H, prefer L.
578 ((memq l2 (memq nil (setq hl (memq h ll)))) (car l))
579 ;; No separator between L and L2, check the distance.
580 ((< (* 2 (length hl)) (+ (length ll) (length l2l)))
581 (outline-head-from-level level head l2l))
582 ;; If all else fails, just keep L.
583 (t (car l)))))
584
585(defun outline-map-region (fun beg end)
586 "Call FUN for every heading between BEG and END.
587When FUN is called, point is at the beginning of the heading and
588the match data is set appropriately."
589 (save-excursion
590 (setq end (copy-marker end))
591 (goto-char beg)
592 (when (re-search-forward (concat "^\\(?:" outline-regexp "\\)") end t)
593 (goto-char (match-beginning 0))
594 (funcall fun)
595 (while (and (progn
596 (outline-next-heading)
597 (< (point) end))
598 (not (eobp)))
599 (funcall fun)))))
600
601;; Vertical tree motion
602
603(defun outline-move-subtree-up (&optional arg)
604 "Move the currrent subtree up past ARG headlines of the same level."
605 (interactive "p")
606 (outline-move-subtree-down (- arg)))
607
608(defun outline-move-subtree-down (&optional arg)
609 "Move the currrent subtree down past ARG headlines of the same level."
610 (interactive "p")
797d92ed 611 (let ((movfunc (if (> arg 0) 'outline-get-next-sibling
36a77f37
JB
612 'outline-get-last-sibling))
613 (ins-point (make-marker))
614 (cnt (abs arg))
797d92ed 615 beg end folded)
36a77f37
JB
616 ;; Select the tree
617 (outline-back-to-heading)
618 (setq beg (point))
48c9ce10
JB
619 (save-match-data
620 (save-excursion (outline-end-of-heading)
36a77f37
JB
621 (setq folded (outline-invisible-p)))
622 (outline-end-of-subtree))
623 (if (= (char-after) ?\n) (forward-char 1))
624 (setq end (point))
625 ;; Find insertion point, with error handling
626 (goto-char beg)
627 (while (> cnt 0)
628 (or (funcall movfunc)
629 (progn (goto-char beg)
630 (error "Cannot move past superior level")))
631 (setq cnt (1- cnt)))
632 (if (> arg 0)
633 ;; Moving forward - still need to move over subtree
48c9ce10 634 (progn (outline-end-of-subtree)
36a77f37
JB
635 (if (= (char-after) ?\n) (forward-char 1))))
636 (move-marker ins-point (point))
637 (insert (delete-and-extract-region beg end))
638 (goto-char ins-point)
639 (if folded (hide-subtree))
640 (move-marker ins-point nil)))
641
642(defun outline-end-of-heading ()
643 (if (re-search-forward outline-heading-end-regexp nil 'move)
644 (forward-char -1)))
645
646(defun outline-next-visible-heading (arg)
647 "Move to the next visible heading line.
648With argument, repeats or can move backward if negative.
649A heading line is one that starts with a `*' (or that
650`outline-regexp' matches)."
651 (interactive "p")
652 (if (< arg 0)
653 (beginning-of-line)
654 (end-of-line))
cf27cc83
EZ
655 (let (found-heading-p)
656 (while (and (not (bobp)) (< arg 0))
657 (while (and (not (bobp))
658 (setq found-heading-p
659 (re-search-backward
660 (concat "^\\(?:" outline-regexp "\\)")
661 nil 'move))
662 (outline-invisible-p)))
663 (setq arg (1+ arg)))
664 (while (and (not (eobp)) (> arg 0))
665 (while (and (not (eobp))
666 (setq found-heading-p
667 (re-search-forward
668 (concat "^\\(?:" outline-regexp "\\)")
669 nil 'move))
670 (outline-invisible-p (match-beginning 0))))
671 (setq arg (1- arg)))
672 (if found-heading-p (beginning-of-line))))
36a77f37
JB
673
674(defun outline-previous-visible-heading (arg)
675 "Move to the previous heading line.
676With argument, repeats or can move forward if negative.
677A heading line is one that starts with a `*' (or that
678`outline-regexp' matches)."
679 (interactive "p")
680 (outline-next-visible-heading (- arg)))
681
682(defun outline-mark-subtree ()
683 "Mark the current subtree in an outlined document.
684This puts point at the start of the current subtree, and mark at the end."
685 (interactive)
686 (let ((beg))
687 (if (outline-on-heading-p)
688 ;; we are already looking at a heading
689 (beginning-of-line)
690 ;; else go back to previous heading
691 (outline-previous-visible-heading 1))
692 (setq beg (point))
693 (outline-end-of-subtree)
d35b8a28 694 (push-mark (point) nil t)
36a77f37
JB
695 (goto-char beg)))
696\f
697
203bef73
KS
698(defvar outline-isearch-open-invisible-function nil
699 "Function called if `isearch' finishes in an invisible overlay.
700The function is called with the overlay as its only argument.
701If nil, `show-entry' is called to reveal the invisible text.")
702
36a77f37
JB
703(put 'outline 'reveal-toggle-invisible 'outline-reveal-toggle-invisible)
704(defun outline-flag-region (from to flag)
705 "Hide or show lines from FROM to TO, according to FLAG.
706If FLAG is nil then text is shown, while if FLAG is t the text is hidden."
707 (remove-overlays from to 'invisible 'outline)
708 (when flag
709 (let ((o (make-overlay from to)))
710 (overlay-put o 'invisible 'outline)
203bef73
KS
711 (overlay-put o 'isearch-open-invisible
712 (or outline-isearch-open-invisible-function
713 'outline-isearch-open-invisible))))
36a77f37
JB
714 ;; Seems only used by lazy-lock. I.e. obsolete.
715 (run-hooks 'outline-view-change-hook))
716
717(defun outline-reveal-toggle-invisible (o hidep)
718 (save-excursion
719 (goto-char (overlay-start o))
720 (if hidep
721 ;; When hiding the area again, we could just clean it up and let
722 ;; reveal do the rest, by simply doing:
723 ;; (remove-overlays (overlay-start o) (overlay-end o)
724 ;; 'invisible 'outline)
48c9ce10 725 ;;
36a77f37
JB
726 ;; That works fine as long as everything is in sync, but if the
727 ;; structure of the document is changed while revealing parts of it,
728 ;; the resulting behavior can be ugly. I.e. we need to make
729 ;; sure that we hide exactly a subtree.
730 (progn
731 (let ((end (overlay-end o)))
732 (delete-overlay o)
733 (while (progn
734 (hide-subtree)
735 (outline-next-visible-heading 1)
736 (and (not (eobp)) (< (point) end))))))
737
738 ;; When revealing, we just need to reveal sublevels. If point is
739 ;; inside one of the sublevels, reveal will call us again.
740 ;; But we need to preserve the original overlay.
741 (let ((o1 (copy-overlay o)))
742 (overlay-put o 'invisible nil) ;Show (most of) the text.
743 (while (progn
744 (show-entry)
745 (show-children)
746 ;; Normally just the above is needed.
747 ;; But in odd cases, the above might fail to show anything.
748 ;; To avoid an infinite loop, we have to make sure that
749 ;; *something* gets shown.
750 (and (equal (overlay-start o) (overlay-start o1))
751 (< (point) (overlay-end o))
752 (= 0 (forward-line 1)))))
753 ;; If still nothing was shown, just kill the damn thing.
754 (when (equal (overlay-start o) (overlay-start o1))
755 ;; I've seen it happen at the end of buffer.
756 (delete-overlay o1))))))
757
758;; Function to be set as an outline-isearch-open-invisible' property
759;; to the overlay that makes the outline invisible (see
760;; `outline-flag-region').
761(defun outline-isearch-open-invisible (overlay)
762 ;; We rely on the fact that isearch places point on the matched text.
763 (show-entry))
764\f
765(defun hide-entry ()
766 "Hide the body directly following this heading."
767 (interactive)
36a77f37 768 (save-excursion
c95502be 769 (outline-back-to-heading)
e4619728 770 (outline-end-of-heading)
36a77f37
JB
771 (outline-flag-region (point) (progn (outline-next-preface) (point)) t)))
772
773(defun show-entry ()
774 "Show the body directly following this heading.
775Show the heading too, if it is currently invisible."
776 (interactive)
777 (save-excursion
778 (outline-back-to-heading t)
779 (outline-flag-region (1- (point))
780 (progn (outline-next-preface) (point)) nil)))
781
782(defun hide-body ()
00958fa2 783 "Hide all body lines in buffer, leaving all headings visible."
36a77f37
JB
784 (interactive)
785 (hide-region-body (point-min) (point-max)))
786
787(defun hide-region-body (start end)
788 "Hide all body lines in the region, but not headings."
789 ;; Nullify the hook to avoid repeated calls to `outline-flag-region'
790 ;; wasting lots of time running `lazy-lock-fontify-after-outline'
791 ;; and run the hook finally.
792 (let (outline-view-change-hook)
793 (save-excursion
794 (save-restriction
795 (narrow-to-region start end)
796 (goto-char (point-min))
797 (if (outline-on-heading-p)
00958fa2
EZ
798 (outline-end-of-heading)
799 (outline-next-preface))
36a77f37
JB
800 (while (not (eobp))
801 (outline-flag-region (point)
802 (progn (outline-next-preface) (point)) t)
803 (unless (eobp)
804 (forward-char (if (looking-at "\n\n") 2 1))
805 (outline-end-of-heading))))))
806 (run-hooks 'outline-view-change-hook))
807
808(defun show-all ()
809 "Show all of the text in the buffer."
810 (interactive)
811 (outline-flag-region (point-min) (point-max) nil))
812
813(defun hide-subtree ()
814 "Hide everything after this heading at deeper levels."
815 (interactive)
816 (outline-flag-subtree t))
817
818(defun hide-leaves ()
d8b5b5d5 819 "Hide the body after this heading and at deeper levels."
36a77f37 820 (interactive)
36a77f37 821 (save-excursion
c95502be 822 (outline-back-to-heading)
4af23f81 823;; Turned off to fix bug reported by Otto Maddox on 22 Nov 2005.
d8b5b5d5 824;; (outline-end-of-heading)
36a77f37
JB
825 (hide-region-body (point) (progn (outline-end-of-subtree) (point)))))
826
827(defun show-subtree ()
828 "Show everything after this heading at deeper levels."
829 (interactive)
830 (outline-flag-subtree nil))
831
832(defun outline-show-heading ()
833 "Show the current heading and move to its end."
ca858c64
JL
834 (outline-flag-region (- (point)
835 (if (bobp) 0
836 (if (and outline-blank-line
837 (eq (char-before (1- (point))) ?\n))
838 2 1)))
36a77f37
JB
839 (progn (outline-end-of-heading) (point))
840 nil))
841
842(defun hide-sublevels (levels)
843 "Hide everything but the top LEVELS levels of headers, in whole buffer."
1e0e9b38
SM
844 (interactive (list
845 (cond
846 (current-prefix-arg (prefix-numeric-value current-prefix-arg))
847 ((save-excursion (beginning-of-line)
848 (looking-at outline-regexp))
849 (funcall outline-level))
850 (t 1))))
36a77f37
JB
851 (if (< levels 1)
852 (error "Must keep at least one level of headers"))
853 (let (outline-view-change-hook)
854 (save-excursion
855 (goto-char (point-min))
856 ;; Skip the prelude, if any.
857 (unless (outline-on-heading-p t) (outline-next-heading))
858 ;; First hide everything.
859 (outline-flag-region (point) (point-max) t)
860 ;; Then unhide the top level headers.
861 (outline-map-region
862 (lambda ()
863 (if (<= (funcall outline-level) levels)
864 (outline-show-heading)))
865 (point) (point-max))))
866 (run-hooks 'outline-view-change-hook))
867
868(defun hide-other ()
869 "Hide everything except current body and parent and top-level headings."
870 (interactive)
871 (hide-sublevels 1)
872 (let (outline-view-change-hook)
873 (save-excursion
874 (outline-back-to-heading t)
875 (show-entry)
6e32922d 876 (while (condition-case nil (progn (outline-up-heading 1 t) (not (bobp)))
36a77f37
JB
877 (error nil))
878 (outline-flag-region (1- (point))
879 (save-excursion (forward-line 1) (point))
880 nil))))
881 (run-hooks 'outline-view-change-hook))
882
883(defun outline-toggle-children ()
884 "Show or hide the current subtree depending on its current state."
885 (interactive)
c95502be
JL
886 (save-excursion
887 (outline-back-to-heading)
888 (if (not (outline-invisible-p (line-end-position)))
889 (hide-subtree)
890 (show-children)
891 (show-entry))))
36a77f37
JB
892
893(defun outline-flag-subtree (flag)
894 (save-excursion
895 (outline-back-to-heading)
896 (outline-end-of-heading)
897 (outline-flag-region (point)
898 (progn (outline-end-of-subtree) (point))
899 flag)))
900
901(defun outline-end-of-subtree ()
902 (outline-back-to-heading)
797d92ed 903 (let ((first t)
36a77f37
JB
904 (level (funcall outline-level)))
905 (while (and (not (eobp))
906 (or first (> (funcall outline-level) level)))
907 (setq first nil)
908 (outline-next-heading))
49bb7f01
RS
909 (if (and (bolp) (not (eolp)))
910 ;; We stopped at a nonempty line (the next heading).
36a77f37
JB
911 (progn
912 ;; Go to end of line before heading
ca858c64
JL
913 (forward-char -1)
914 (if (and outline-blank-line (bolp))
915 ;; leave blank line before heading
916 (forward-char -1))))))
36a77f37
JB
917\f
918(defun show-branches ()
919 "Show all subheadings of this heading, but not their bodies."
920 (interactive)
921 (show-children 1000))
922
923(defun show-children (&optional level)
924 "Show all direct subheadings of this heading.
925Prefix arg LEVEL is how many levels below the current level should be shown.
926Default is enough to cause the following heading to appear."
927 (interactive "P")
928 (setq level
929 (if level (prefix-numeric-value level)
930 (save-excursion
931 (outline-back-to-heading)
932 (let ((start-level (funcall outline-level)))
933 (outline-next-heading)
934 (if (eobp)
935 1
936 (max 1 (- (funcall outline-level) start-level)))))))
937 (let (outline-view-change-hook)
938 (save-excursion
939 (outline-back-to-heading)
940 (setq level (+ level (funcall outline-level)))
941 (outline-map-region
942 (lambda ()
943 (if (<= (funcall outline-level) level)
944 (outline-show-heading)))
945 (point)
946 (progn (outline-end-of-subtree)
947 (if (eobp) (point-max) (1+ (point)))))))
948 (run-hooks 'outline-view-change-hook))
949
950\f
951
952(defun outline-up-heading (arg &optional invisible-ok)
953 "Move to the visible heading line of which the present line is a subheading.
954With argument, move up ARG levels.
955If INVISIBLE-OK is non-nil, also consider invisible lines."
956 (interactive "p")
e4619728
JL
957 (and (eq this-command 'outline-up-heading)
958 (or (eq last-command 'outline-up-heading) (push-mark)))
36a77f37
JB
959 (outline-back-to-heading invisible-ok)
960 (let ((start-level (funcall outline-level)))
961 (if (eq start-level 1)
962 (error "Already at top level of the outline"))
963 (while (and (> start-level 1) (> arg 0) (not (bobp)))
964 (let ((level start-level))
965 (while (not (or (< level start-level) (bobp)))
966 (if invisible-ok
967 (outline-previous-heading)
968 (outline-previous-visible-heading 1))
969 (setq level (funcall outline-level)))
970 (setq start-level level))
971 (setq arg (- arg 1))))
972 (looking-at outline-regexp))
973
974(defun outline-forward-same-level (arg)
975 "Move forward to the ARG'th subheading at same level as this one.
976Stop at the first and last subheadings of a superior heading."
977 (interactive "p")
978 (outline-back-to-heading)
979 (while (> arg 0)
980 (let ((point-to-move-to (save-excursion
981 (outline-get-next-sibling))))
982 (if point-to-move-to
983 (progn
984 (goto-char point-to-move-to)
985 (setq arg (1- arg)))
986 (progn
987 (setq arg 0)
988 (error "No following same-level heading"))))))
989
990(defun outline-get-next-sibling ()
991 "Move to next heading of the same level, and return point or nil if none."
992 (let ((level (funcall outline-level)))
993 (outline-next-visible-heading 1)
994 (while (and (not (eobp)) (> (funcall outline-level) level))
995 (outline-next-visible-heading 1))
996 (if (or (eobp) (< (funcall outline-level) level))
997 nil
998 (point))))
999
1000(defun outline-backward-same-level (arg)
1001 "Move backward to the ARG'th subheading at same level as this one.
1002Stop at the first and last subheadings of a superior heading."
1003 (interactive "p")
1004 (outline-back-to-heading)
1005 (while (> arg 0)
1006 (let ((point-to-move-to (save-excursion
1007 (outline-get-last-sibling))))
1008 (if point-to-move-to
1009 (progn
1010 (goto-char point-to-move-to)
1011 (setq arg (1- arg)))
1012 (progn
1013 (setq arg 0)
1014 (error "No previous same-level heading"))))))
1015
1016(defun outline-get-last-sibling ()
1017 "Move to previous heading of the same level, and return point or nil if none."
1018 (let ((level (funcall outline-level)))
1019 (outline-previous-visible-heading 1)
1020 (while (and (> (funcall outline-level) level)
1021 (not (bobp)))
1022 (outline-previous-visible-heading 1))
1023 (if (< (funcall outline-level) level)
1024 nil
1025 (point))))
1026\f
1027(defun outline-headers-as-kill (beg end)
1028 "Save the visible outline headers in region at the start of the kill ring.
1029
1030Text shown between the headers isn't copied. Two newlines are
1031inserted between saved headers. Yanking the result may be a
1032convenient way to make a table of contents of the buffer."
1033 (interactive "r")
1034 (save-excursion
1035 (save-restriction
1036 (narrow-to-region beg end)
1037 (goto-char (point-min))
1038 (let ((buffer (current-buffer))
1039 start end)
1040 (with-temp-buffer
1041 (with-current-buffer buffer
1042 ;; Boundary condition: starting on heading:
1043 (when (outline-on-heading-p)
1044 (outline-back-to-heading)
1045 (setq start (point)
1046 end (progn (outline-end-of-heading)
1047 (point)))
1048 (insert-buffer-substring buffer start end)
1049 (insert "\n\n")))
1050 (let ((temp-buffer (current-buffer)))
1051 (with-current-buffer buffer
1052 (while (outline-next-heading)
1053 (unless (outline-invisible-p)
1054 (setq start (point)
1055 end (progn (outline-end-of-heading) (point)))
1056 (with-current-buffer temp-buffer
1057 (insert-buffer-substring buffer start end)
1058 (insert "\n\n"))))))
1059 (kill-new (buffer-string)))))))
1060
1061(provide 'outline)
1062(provide 'noutline)
1063
797d92ed 1064;; arch-tag: 1724410e-7d4d-4f46-b801-49e18171e874
36a77f37 1065;;; outline.el ends here