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