1 ;;; outline.el --- outline mode commands for Emacs
3 ;; Copyright (C) 1986, 1993-1995, 1997, 2000-2013 Free Software
9 ;; This file is part of GNU Emacs.
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 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; This package is a major mode for editing outline-format documents.
27 ;; An outline can be `abstracted' to show headers at any given level,
28 ;; with all stuff below hidden. See the Emacs manual for details.
32 ;; - subtree-terminators
33 ;; - better handle comments before function bodies (i.e. heading)
34 ;; - don't bother hiding whitespace
38 (defvar font-lock-warning-face
)
41 (defgroup outlines nil
42 "Support for hierarchical outlining."
46 (defcustom outline-regexp
"[*\^L]+"
47 "Regular expression to match the beginning of a heading.
48 Any line whose beginning matches this regexp is considered to start a heading.
49 Note that Outline mode only checks this regexp at the start of a line,
50 so the regexp need not (and usually does not) start with `^'.
51 The recommended way to set this is with a Local Variables: list
52 in the file it applies to. See also `outline-heading-end-regexp'."
55 ;;;###autoload(put 'outline-regexp 'safe-local-variable 'stringp)
57 (defcustom outline-heading-end-regexp
"\n"
58 "Regular expression to match the end of a heading line.
59 You can assume that point is at the beginning of a heading when this
60 regexp is searched for. The heading ends at the end of the match.
61 The recommended way to set this is with a `Local Variables:' list
62 in the file it applies to."
65 ;;;###autoload(put 'outline-heading-end-regexp 'safe-local-variable 'stringp)
67 (defvar outline-mode-prefix-map
68 (let ((map (make-sparse-keymap)))
69 (define-key map
"@" 'outline-mark-subtree
)
70 (define-key map
"\C-n" 'outline-next-visible-heading
)
71 (define-key map
"\C-p" 'outline-previous-visible-heading
)
72 (define-key map
"\C-i" 'show-children
)
73 (define-key map
"\C-s" 'show-subtree
)
74 (define-key map
"\C-d" 'hide-subtree
)
75 (define-key map
"\C-u" 'outline-up-heading
)
76 (define-key map
"\C-f" 'outline-forward-same-level
)
77 (define-key map
"\C-b" 'outline-backward-same-level
)
78 (define-key map
"\C-t" 'hide-body
)
79 (define-key map
"\C-a" 'show-all
)
80 (define-key map
"\C-c" 'hide-entry
)
81 (define-key map
"\C-e" 'show-entry
)
82 (define-key map
"\C-l" 'hide-leaves
)
83 (define-key map
"\C-k" 'show-branches
)
84 (define-key map
"\C-q" 'hide-sublevels
)
85 (define-key map
"\C-o" 'hide-other
)
86 (define-key map
"\C-^" 'outline-move-subtree-up
)
87 (define-key map
"\C-v" 'outline-move-subtree-down
)
88 (define-key map
[(control ?
<)] 'outline-promote
)
89 (define-key map
[(control ?
>)] 'outline-demote
)
90 (define-key map
"\C-m" 'outline-insert-heading
)
91 ;; Where to bind outline-cycle ?
94 (defvar outline-mode-menu-bar-map
95 (let ((map (make-sparse-keymap)))
97 (define-key map
[hide] (cons "Hide" (make-sparse-keymap "Hide")))
99 (define-key map [hide hide-other]
100 '(menu-item "Hide Other" hide-other
101 :help "Hide everything except current body and parent and top-level headings"))
102 (define-key map [hide hide-sublevels]
103 '(menu-item "Hide Sublevels" hide-sublevels
104 :help "Hide everything but the top LEVELS levels of headers, in whole buffer"))
105 (define-key map [hide hide-subtree]
106 '(menu-item "Hide Subtree" hide-subtree
107 :help "Hide everything after this heading at deeper levels"))
108 (define-key map [hide hide-entry]
109 '(menu-item "Hide Entry" hide-entry
110 :help "Hide the body directly following this heading"))
111 (define-key map [hide hide-body]
112 '(menu-item "Hide Body" hide-body
113 :help "Hide all body lines in buffer, leaving all headings visible"))
114 (define-key map [hide hide-leaves]
115 '(menu-item "Hide Leaves" hide-leaves
116 :help "Hide the body after this heading and at deeper levels"))
118 (define-key map [show] (cons "Show" (make-sparse-keymap "Show")))
120 (define-key map [show show-subtree]
121 '(menu-item "Show Subtree" show-subtree
122 :help "Show everything after this heading at deeper levels"))
123 (define-key map [show show-children]
124 '(menu-item "Show Children" show-children
125 :help "Show all direct subheadings of this heading"))
126 (define-key map [show show-branches]
127 '(menu-item "Show Branches" show-branches
128 :help "Show all subheadings of this heading, but not their bodies"))
129 (define-key map [show show-entry]
130 '(menu-item "Show Entry" show-entry
131 :help "Show the body directly following this heading"))
132 (define-key map [show show-all]
133 '(menu-item "Show All" show-all
134 :help "Show all of the text in the buffer"))
136 (define-key map [headings]
137 (cons "Headings" (make-sparse-keymap "Headings")))
139 (define-key map [headings demote-subtree]
140 '(menu-item "Demote Subtree" outline-demote
141 :help "Demote headings lower down the tree"))
142 (define-key map [headings promote-subtree]
143 '(menu-item "Promote Subtree" outline-promote
144 :help "Promote headings higher up the tree"))
145 (define-key map [headings move-subtree-down]
146 '(menu-item "Move Subtree Down" outline-move-subtree-down
147 :help "Move the current subtree down past arg headlines of the same level"))
148 (define-key map [headings move-subtree-up]
149 '(menu-item "Move Subtree Up" outline-move-subtree-up
150 :help "Move the current subtree up past arg headlines of the same level"))
151 (define-key map [headings copy]
152 '(menu-item "Copy to Kill Ring" outline-headers-as-kill
154 :help "Save the visible outline headers in region at the start of the kill ring"))
155 (define-key map [headings outline-insert-heading]
156 '(menu-item "New Heading" outline-insert-heading
157 :help "Insert a new heading at same depth at point"))
158 (define-key map [headings outline-backward-same-level]
160 '(menu-item "Previous Same Level" outline-backward-same-level
161 :help "Move backward to the arg'th subheading at same level as this one."))
162 (define-key map [headings outline-forward-same-level]
164 '(menu-item "Next Same Level" outline-forward-same-level
165 :help "Move forward to the arg'th subheading at same level as this one"))
166 (define-key map [headings outline-previous-visible-heading]
168 '(menu-item "Previous" outline-previous-visible-heading
169 :help "Move to the previous heading line"))
170 (define-key map [headings outline-next-visible-heading]
172 '(menu-item "Next" outline-next-visible-heading
173 :help "Move to the next visible heading line"))
174 (define-key map [headings outline-up-heading]
176 '(menu-item "Up" outline-up-heading
177 :help "Move to the visible heading line of which the present line is a subheading"))
180 (defvar outline-minor-mode-menu-bar-map
181 (let ((map (make-sparse-keymap)))
182 (define-key map [outline]
184 (nconc (make-sparse-keymap "Outline")
185 ;; Remove extra separator
187 ;; Flatten the major mode's menus into a single menu.
191 ;; Add a separator between each
192 ;; part of the unified menu.
193 (cons '(--- "---") (cdr x))))
194 outline-mode-menu-bar-map))))))
198 (defvar outline-mode-map
199 (let ((map (make-sparse-keymap)))
200 (define-key map "\C-c" outline-mode-prefix-map)
201 (define-key map [menu-bar] outline-mode-menu-bar-map)
204 (defvar outline-font-lock-keywords
206 ;; Highlight headings according to the level.
207 (eval . (list (concat "^\\(?:" outline-regexp "\\).+")
208 0 '(outline-font-lock-face) nil t)))
209 "Additional expressions to highlight in Outline mode.")
212 '((t :inherit font-lock-function-name-face))
217 '((t :inherit font-lock-variable-name-face))
222 '((t :inherit font-lock-keyword-face))
227 '((t :inherit font-lock-comment-face))
232 '((t :inherit font-lock-type-face))
237 '((t :inherit font-lock-constant-face))
242 '((t :inherit font-lock-builtin-face))
247 '((t :inherit font-lock-string-face))
251 (defvar outline-font-lock-faces
252 [outline-1 outline-2 outline-3 outline-4
253 outline-5 outline-6 outline-7 outline-8])
255 ;; (defvar outline-font-lock-levels nil)
256 ;; (make-variable-buffer-local 'outline-font-lock-levels)
258 (defun outline-font-lock-face ()
260 ;; (outline-back-to-heading t)
262 ;; (start-level (funcall outline-level))
263 ;; (level start-level)
265 ;; (while (not (setq face-level
266 ;; (if (or (bobp) (eq level 1)) 0
267 ;; (cdr (assq level outline-font-lock-levels)))))
268 ;; (outline-up-heading 1 t)
269 ;; (setq count (1+ count))
270 ;; (setq level (funcall outline-level)))
271 ;; ;; Remember for later.
272 ;; (unless (zerop count)
273 ;; (setq face-level (+ face-level count))
274 ;; (push (cons start-level face-level) outline-font-lock-levels))
275 ;; (condition-case nil
276 ;; (aref outline-font-lock-faces face-level)
277 ;; (error font-lock-warning-face))))
279 (goto-char (match-beginning 0))
280 (looking-at outline-regexp)
281 (aref outline-font-lock-faces (% (1- (funcall outline-level)) (length outline-font-lock-faces)))))
283 (defvar outline-view-change-hook nil
284 "Normal hook to be run after outline visibility changes.")
286 (defvar outline-mode-hook nil
287 "This hook is run when outline mode starts.")
289 (defvar outline-blank-line nil
290 "Non-nil means to leave unhidden blank line before heading.")
293 (define-derived-mode outline-mode text-mode "Outline"
294 "Set major mode for editing outlines with selective display.
295 Headings are lines which start with asterisks: one for major headings,
296 two for subheadings, etc. Lines not starting with asterisks are body lines.
298 Body text or subheadings under a heading can be made temporarily
299 invisible, or visible again. Invisible lines are attached to the end
300 of the heading, so they move with it, if the line is killed and yanked
301 back. A heading with text hidden under it is marked with an ellipsis (...).
303 Commands:\\<outline-mode-map>
304 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings
305 \\[outline-previous-visible-heading] outline-previous-visible-heading
306 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings
307 \\[outline-backward-same-level] outline-backward-same-level
308 \\[outline-up-heading] outline-up-heading move from subheading to heading
310 \\[hide-body] make all text invisible (not headings).
311 \\[show-all] make everything in buffer visible.
312 \\[hide-sublevels] make only the first N levels of headers visible.
314 The remaining commands are used when point is on a heading line.
315 They apply to some of the body or subheadings of that heading.
316 \\[hide-subtree] hide-subtree make body and subheadings invisible.
317 \\[show-subtree] show-subtree make body and subheadings visible.
318 \\[show-children] show-children make direct subheadings visible.
319 No effect on body, or subheadings 2 or more levels down.
320 With arg N, affects subheadings N levels down.
321 \\[hide-entry] make immediately following body invisible.
322 \\[show-entry] make it visible.
323 \\[hide-leaves] make body under heading and under its subheadings invisible.
324 The subheadings remain visible.
325 \\[show-branches] make all subheadings at all levels visible.
327 The variable `outline-regexp' can be changed to control what is a heading.
328 A line is a heading if `outline-regexp' matches something at the
329 beginning of the line. The longer the match, the deeper the level.
331 Turning on outline mode calls the value of `text-mode-hook' and then of
332 `outline-mode-hook', if they are non-nil."
333 (make-local-variable 'line-move-ignore-invisible)
334 (setq line-move-ignore-invisible t)
335 ;; Cause use of ellipses for invisible text.
336 (add-to-invisibility-spec '(outline . t))
337 (set (make-local-variable 'paragraph-start)
338 (concat paragraph-start "\\|\\(?:" outline-regexp "\\)"))
339 ;; Inhibit auto-filling of header lines.
340 (set (make-local-variable 'auto-fill-inhibit-regexp) outline-regexp)
341 (set (make-local-variable 'paragraph-separate)
342 (concat paragraph-separate "\\|\\(?:" outline-regexp "\\)"))
343 (set (make-local-variable 'font-lock-defaults)
344 '(outline-font-lock-keywords t nil nil backward-paragraph))
345 (setq imenu-generic-expression
346 (list (list nil (concat "^\\(?:" outline-regexp "\\).*$") 0)))
347 (add-hook 'change-major-mode-hook 'show-all nil t))
349 (defcustom outline-minor-mode-prefix "\C-c@"
350 "Prefix key to use for Outline commands in Outline minor mode.
351 The value of this variable is checked as part of loading Outline mode.
352 After that, changing the prefix key requires manipulating keymaps."
357 (define-minor-mode outline-minor-mode
358 "Toggle Outline minor mode.
359 With a prefix argument ARG, enable Outline minor mode if ARG is
360 positive, and disable it otherwise. If called from Lisp, enable
361 the mode if ARG is omitted or nil.
363 See the command `outline-mode' for more information on this mode."
364 nil " Outl" (list (cons [menu-bar] outline-minor-mode-menu-bar-map)
365 (cons outline-minor-mode-prefix outline-mode-prefix-map))
367 (if outline-minor-mode
369 ;; Turn off this mode if we change major modes.
370 (add-hook 'change-major-mode-hook
371 (lambda () (outline-minor-mode -1))
373 (set (make-local-variable 'line-move-ignore-invisible) t)
374 ;; Cause use of ellipses for invisible text.
375 (add-to-invisibility-spec '(outline . t)))
376 (setq line-move-ignore-invisible nil)
377 ;; Cause use of ellipses for invisible text.
378 (remove-from-invisibility-spec '(outline . t))
379 ;; When turning off outline mode, get rid of any outline hiding.
382 (defvar outline-level 'outline-level
383 "Function of no args to compute a header's nesting level in an outline.
384 It can assume point is at the beginning of a header line and that the match
385 data reflects the `outline-regexp'.")
386 ;;;###autoload(put 'outline-level 'risky-local-variable t)
388 (defvar outline-heading-alist ()
389 "Alist associating a heading for every possible level.
390 Each entry is of the form (HEADING . LEVEL).
391 This alist is used two ways: to find the heading corresponding to
392 a given level and to find the level of a given heading.
393 If a mode or document needs several sets of outline headings (for example
394 numbered and unnumbered sections), list them set by set and sorted by level
395 within each set. For example in texinfo mode:
397 (setq outline-heading-alist
398 '((\"@chapter\" . 2) (\"@section\" . 3) (\"@subsection\" . 4)
399 (\"@subsubsection\" . 5)
400 (\"@unnumbered\" . 2) (\"@unnumberedsec\" . 3)
401 (\"@unnumberedsubsec\" . 4) (\"@unnumberedsubsubsec\" . 5)
402 (\"@appendix\" . 2) (\"@appendixsec\" . 3)...
403 (\"@appendixsubsec\" . 4) (\"@appendixsubsubsec\" . 5) ..))
405 Instead of sorting the entries in each set, you can also separate the
407 (make-variable-buffer-local 'outline-heading-alist)
409 ;; This used to count columns rather than characters, but that made ^L
410 ;; appear to be at level 2 instead of 1. Columns would be better for
411 ;; tab handling, but the default regexp doesn't use tabs, and anyone
412 ;; who changes the regexp can also redefine the outline-level variable
414 (defun outline-level ()
415 "Return the depth to which a statement is nested in the outline.
416 Point must be at the beginning of a header line.
417 This is actually either the level specified in `outline-heading-alist'
418 or else the number of characters matched by `outline-regexp'."
419 (or (cdr (assoc (match-string 0) outline-heading-alist))
420 (- (match-end 0) (match-beginning 0))))
422 (defun outline-next-preface ()
423 "Skip forward to just before the next heading line.
424 If there's no following heading line, stop before the newline
425 at the end of the buffer."
426 (if (re-search-forward (concat "\n\\(?:" outline-regexp "\\)")
428 (goto-char (match-beginning 0)))
429 (if (and (bolp) (or outline-blank-line (eobp)) (not (bobp)))
432 (defun outline-next-heading ()
433 "Move to the next (possibly invisible) heading line."
435 ;; Make sure we don't match the heading we're at.
436 (if (and (bolp) (not (eobp))) (forward-char 1))
437 (if (re-search-forward (concat "^\\(?:" outline-regexp "\\)")
439 (goto-char (match-beginning 0))))
441 (defun outline-previous-heading ()
442 "Move to the previous (possibly invisible) heading line."
444 (re-search-backward (concat "^\\(?:" outline-regexp "\\)")
447 (defsubst outline-invisible-p (&optional pos)
448 "Non-nil if the character after point is invisible."
449 (get-char-property (or pos (point)) 'invisible))
451 (defun outline-back-to-heading (&optional invisible-ok)
452 "Move to previous heading line, or beg of this line if it's a heading.
453 Only visible heading lines are considered, unless INVISIBLE-OK is non-nil."
455 (or (outline-on-heading-p invisible-ok)
459 (or (re-search-backward (concat "^\\(?:" outline-regexp "\\)")
461 (error "before first heading"))
462 (setq found (and (or invisible-ok (not (outline-invisible-p)))
467 (defun outline-on-heading-p (&optional invisible-ok)
468 "Return t if point is on a (visible) heading line.
469 If INVISIBLE-OK is non-nil, an invisible heading line is ok too."
472 (and (bolp) (or invisible-ok (not (outline-invisible-p)))
473 (looking-at outline-regexp))))
475 (defun outline-insert-heading ()
476 "Insert a new heading at same depth at point."
478 (let ((head (save-excursion
480 (outline-back-to-heading)
481 (error (outline-next-heading)))
483 (or (caar outline-heading-alist) "")
485 (unless (or (string-match "[ \t]\\'" head)
486 (not (string-match (concat "\\`\\(?:" outline-regexp "\\)")
488 (setq head (concat head " ")))
489 (unless (bolp) (end-of-line) (newline))
492 (save-excursion (newline-and-indent)))
493 (run-hooks 'outline-insert-heading-hook)))
495 (defun outline-invent-heading (head up)
497 ;; Let's try to invent one by repeating or deleting the last char.
498 (let ((new-head (if up (substring head 0 -1)
499 (concat head (substring head -1)))))
500 (if (string-match (concat "\\`\\(?:" outline-regexp "\\)")
502 ;; Why bother checking that it is indeed higher/lower level ?
504 ;; Didn't work, so ask what to do.
505 (read-string (format "%s heading for `%s': "
506 (if up "Parent" "Demoted") head)
509 (defun outline-promote (&optional which)
510 "Promote headings higher up the tree.
511 If transient-mark-mode is on, and mark is active, promote headings in
512 the region (from a Lisp program, pass `region' for WHICH). Otherwise:
513 without prefix argument, promote current heading and all headings in the
514 subtree (from a Lisp program, pass `subtree' for WHICH); with prefix
515 argument, promote just the current heading (from a Lisp program, pass
516 nil for WHICH, or do not pass any argument)."
518 (list (if (and transient-mark-mode mark-active) 'region
519 (outline-back-to-heading)
520 (if current-prefix-arg nil 'subtree))))
523 (outline-map-region 'outline-promote (region-beginning) (region-end)))
525 (outline-map-region 'outline-promote
527 (save-excursion (outline-get-next-sibling) (point))))
529 (outline-back-to-heading t)
530 (let* ((head (match-string-no-properties 0))
531 (level (save-match-data (funcall outline-level)))
532 (up-head (or (outline-head-from-level (1- level) head)
533 ;; Use the parent heading, if it is really
537 (outline-up-heading 1 t)
538 (and (= (1- level) (funcall outline-level))
539 (match-string-no-properties 0))))
540 ;; Bummer!! There is no lower level heading.
541 (outline-invent-heading head 'up))))
543 (unless (rassoc level outline-heading-alist)
544 (push (cons head level) outline-heading-alist))
546 (replace-match up-head nil t)))))
548 (defun outline-demote (&optional which)
549 "Demote headings lower down the tree.
550 If transient-mark-mode is on, and mark is active, demote headings in
551 the region (from a Lisp program, pass `region' for WHICH). Otherwise:
552 without prefix argument, demote current heading and all headings in the
553 subtree (from a Lisp program, pass `subtree' for WHICH); with prefix
554 argument, demote just the current heading (from a Lisp program, pass
555 nil for WHICH, or do not pass any argument)."
557 (list (if (and transient-mark-mode mark-active) 'region
558 (outline-back-to-heading)
559 (if current-prefix-arg nil 'subtree))))
562 (outline-map-region 'outline-demote (region-beginning) (region-end)))
564 (outline-map-region 'outline-demote
566 (save-excursion (outline-get-next-sibling) (point))))
568 (let* ((head (match-string-no-properties 0))
569 (level (save-match-data (funcall outline-level)))
571 (or (outline-head-from-level (1+ level) head)
574 (while (and (progn (outline-next-heading) (not (eobp)))
575 (<= (funcall outline-level) level)))
577 ;; Try again from the beginning of the buffer.
578 (goto-char (point-min))
579 (while (and (progn (outline-next-heading) (not (eobp)))
580 (<= (funcall outline-level) level))))
582 (looking-at outline-regexp)
583 (match-string-no-properties 0))))
584 ;; Bummer!! There is no higher-level heading in the buffer.
585 (outline-invent-heading head nil))))
587 (unless (rassoc level outline-heading-alist)
588 (push (cons head level) outline-heading-alist))
589 (replace-match down-head nil t)))))
591 (defun outline-head-from-level (level head &optional alist)
592 "Get new heading with level LEVEL from ALIST.
593 If there are no such entries, return nil.
594 ALIST defaults to `outline-heading-alist'.
595 Similar to (car (rassoc LEVEL ALIST)).
596 If there are several different entries with same new level, choose
597 the one with the smallest distance to the association of HEAD in the alist.
598 This makes it possible for promotion to work in modes with several
599 independent sets of headings (numbered, unnumbered, appendix...)"
600 (unless alist (setq alist outline-heading-alist))
601 (let ((l (rassoc level alist))
605 ;; If there's no HEAD after L, any other entry for LEVEL after L
606 ;; can't be much better than L.
607 ((null (setq h (assoc head (setq ll (memq l alist))))) (car l))
608 ;; If there's no other entry for LEVEL, just keep L.
609 ((null (setq l2 (rassoc level (cdr ll)))) (car l))
610 ;; Now we have L, L2, and H: see if L2 seems better than L.
611 ;; If H is after L2, L2 is better.
612 ((memq h (setq l2l (memq l2 (cdr ll))))
613 (outline-head-from-level level head l2l))
614 ;; Now we have H between L and L2.
615 ;; If there's a separator between L and H, prefer L2.
616 ((memq h (memq nil ll))
617 (outline-head-from-level level head l2l))
618 ;; If there's a separator between L2 and H, prefer L.
619 ((memq l2 (memq nil (setq hl (memq h ll)))) (car l))
620 ;; No separator between L and L2, check the distance.
621 ((< (* 2 (length hl)) (+ (length ll) (length l2l)))
622 (outline-head-from-level level head l2l))
623 ;; If all else fails, just keep L.
626 (defun outline-map-region (fun beg end)
627 "Call FUN for every heading between BEG and END.
628 When FUN is called, point is at the beginning of the heading and
629 the match data is set appropriately."
631 (setq end (copy-marker end))
633 (when (re-search-forward (concat "^\\(?:" outline-regexp "\\)") end t)
634 (goto-char (match-beginning 0))
637 (outline-next-heading)
642 ;; Vertical tree motion
644 (defun outline-move-subtree-up (&optional arg)
645 "Move the current subtree up past ARG headlines of the same level."
647 (outline-move-subtree-down (- arg)))
649 (defun outline-move-subtree-down (&optional arg)
650 "Move the current subtree down past ARG headlines of the same level."
652 (let ((movfunc (if (> arg 0) 'outline-get-next-sibling
653 'outline-get-last-sibling))
654 (ins-point (make-marker))
658 (outline-back-to-heading)
661 (save-excursion (outline-end-of-heading)
662 (setq folded (outline-invisible-p)))
663 (outline-end-of-subtree))
664 (if (= (char-after) ?\n) (forward-char 1))
666 ;; Find insertion point, with error handling
669 (or (funcall movfunc)
670 (progn (goto-char beg)
671 (error "Cannot move past superior level")))
674 ;; Moving forward - still need to move over subtree
675 (progn (outline-end-of-subtree)
676 (if (= (char-after) ?\n) (forward-char 1))))
677 (move-marker ins-point (point))
678 (insert (delete-and-extract-region beg end))
679 (goto-char ins-point)
680 (if folded (hide-subtree))
681 (move-marker ins-point nil)))
683 (defun outline-end-of-heading ()
684 (if (re-search-forward outline-heading-end-regexp nil 'move)
687 (defun outline-next-visible-heading (arg)
688 "Move to the next visible heading line.
689 With argument, repeats or can move backward if negative.
690 A heading line is one that starts with a `*' (or that
691 `outline-regexp' matches)."
696 (let (found-heading-p)
697 (while (and (not (bobp)) (< arg 0))
698 (while (and (not (bobp))
699 (setq found-heading-p
701 (concat "^\\(?:" outline-regexp "\\)")
703 (outline-invisible-p)))
705 (while (and (not (eobp)) (> arg 0))
706 (while (and (not (eobp))
707 (setq found-heading-p
709 (concat "^\\(?:" outline-regexp "\\)")
711 (outline-invisible-p (match-beginning 0))))
713 (if found-heading-p (beginning-of-line))))
715 (defun outline-previous-visible-heading (arg)
716 "Move to the previous heading line.
717 With argument, repeats or can move forward if negative.
718 A heading line is one that starts with a `*' (or that
719 `outline-regexp' matches)."
721 (outline-next-visible-heading (- arg)))
723 (defun outline-mark-subtree ()
724 "Mark the current subtree in an outlined document.
725 This puts point at the start of the current subtree, and mark at the end."
728 (if (outline-on-heading-p)
729 ;; we are already looking at a heading
731 ;; else go back to previous heading
732 (outline-previous-visible-heading 1))
734 (outline-end-of-subtree)
735 (push-mark (point) nil t)
739 (defvar outline-isearch-open-invisible-function nil
740 "Function called if `isearch' finishes in an invisible overlay.
741 The function is called with the overlay as its only argument.
742 If nil, `show-entry' is called to reveal the invisible text.")
744 (put 'outline 'reveal-toggle-invisible 'outline-reveal-toggle-invisible)
745 (defun outline-flag-region (from to flag)
746 "Hide or show lines from FROM to TO, according to FLAG.
747 If FLAG is nil then text is shown, while if FLAG is t the text is hidden."
748 (remove-overlays from to 'invisible 'outline)
750 ;; We use `front-advance' here because the invisible text begins at the
751 ;; very end of the heading, before the newline, so text inserted at FROM
752 ;; belongs to the heading rather than to the entry.
753 (let ((o (make-overlay from to nil 'front-advance)))
754 (overlay-put o 'evaporate t)
755 (overlay-put o 'invisible 'outline)
756 (overlay-put o 'isearch-open-invisible
757 (or outline-isearch-open-invisible-function
758 'outline-isearch-open-invisible))))
759 ;; Seems only used by lazy-lock. I.e. obsolete.
760 (run-hooks 'outline-view-change-hook))
762 (defun outline-reveal-toggle-invisible (o hidep)
764 (goto-char (overlay-start o))
766 ;; When hiding the area again, we could just clean it up and let
767 ;; reveal do the rest, by simply doing:
768 ;; (remove-overlays (overlay-start o) (overlay-end o)
769 ;; 'invisible 'outline)
771 ;; That works fine as long as everything is in sync, but if the
772 ;; structure of the document is changed while revealing parts of it,
773 ;; the resulting behavior can be ugly. I.e. we need to make
774 ;; sure that we hide exactly a subtree.
776 (let ((end (overlay-end o)))
780 (outline-next-visible-heading 1)
781 (and (not (eobp)) (< (point) end))))))
783 ;; When revealing, we just need to reveal sublevels. If point is
784 ;; inside one of the sublevels, reveal will call us again.
785 ;; But we need to preserve the original overlay.
786 (let ((o1 (copy-overlay o)))
787 (overlay-put o 'invisible nil) ;Show (most of) the text.
791 ;; Normally just the above is needed.
792 ;; But in odd cases, the above might fail to show anything.
793 ;; To avoid an infinite loop, we have to make sure that
794 ;; *something* gets shown.
795 (and (equal (overlay-start o) (overlay-start o1))
796 (< (point) (overlay-end o))
797 (= 0 (forward-line 1)))))
798 ;; If still nothing was shown, just kill the damn thing.
799 (when (equal (overlay-start o) (overlay-start o1))
800 ;; I've seen it happen at the end of buffer.
801 (delete-overlay o1))))))
803 ;; Function to be set as an outline-isearch-open-invisible' property
804 ;; to the overlay that makes the outline invisible (see
805 ;; `outline-flag-region').
806 (defun outline-isearch-open-invisible (_overlay)
807 ;; We rely on the fact that isearch places point on the matched text.
811 "Hide the body directly following this heading."
814 (outline-back-to-heading)
815 (outline-end-of-heading)
816 (outline-flag-region (point) (progn (outline-next-preface) (point)) t)))
819 "Show the body directly following this heading.
820 Show the heading too, if it is currently invisible."
823 (outline-back-to-heading t)
824 (outline-flag-region (1- (point))
825 (progn (outline-next-preface) (point)) nil)))
828 "Hide all body lines in buffer, leaving all headings visible."
830 (hide-region-body (point-min) (point-max)))
832 (defun hide-region-body (start end)
833 "Hide all body lines in the region, but not headings."
834 ;; Nullify the hook to avoid repeated calls to `outline-flag-region'
835 ;; wasting lots of time running `lazy-lock-fontify-after-outline'
836 ;; and run the hook finally.
837 (let (outline-view-change-hook)
840 (narrow-to-region start end)
841 (goto-char (point-min))
842 (if (outline-on-heading-p)
843 (outline-end-of-heading)
844 (outline-next-preface))
846 (outline-flag-region (point)
847 (progn (outline-next-preface) (point)) t)
849 (forward-char (if (looking-at "\n\n") 2 1))
850 (outline-end-of-heading))))))
851 (run-hooks 'outline-view-change-hook))
854 "Show all of the text in the buffer."
856 (outline-flag-region (point-min) (point-max) nil))
858 (defun hide-subtree ()
859 "Hide everything after this heading at deeper levels."
861 (outline-flag-subtree t))
863 (defun hide-leaves ()
864 "Hide the body after this heading and at deeper levels."
867 (outline-back-to-heading)
868 ;; Turned off to fix bug reported by Otto Maddox on 22 Nov 2005.
869 ;; (outline-end-of-heading)
870 (hide-region-body (point) (progn (outline-end-of-subtree) (point)))))
872 (defun show-subtree ()
873 "Show everything after this heading at deeper levels."
875 (outline-flag-subtree nil))
877 (defun outline-show-heading ()
878 "Show the current heading and move to its end."
879 (outline-flag-region (- (point)
881 (if (and outline-blank-line
882 (eq (char-before (1- (point))) ?\n))
884 (progn (outline-end-of-heading) (point))
887 (defun hide-sublevels (levels)
888 "Hide everything but the top LEVELS levels of headers, in whole buffer."
891 (current-prefix-arg (prefix-numeric-value current-prefix-arg))
892 ((save-excursion (beginning-of-line)
893 (looking-at outline-regexp))
894 (funcall outline-level))
897 (error "Must keep at least one level of headers"))
899 (let* (outline-view-change-hook
901 (goto-char (point-min))
902 ;; Skip the prelude, if any.
903 (unless (outline-on-heading-p t) (outline-next-heading))
906 (goto-char (point-max))
907 ;; Keep empty last line, if available.
908 (if (bolp) (1- (point)) (point)))))
910 (setq beg (prog1 end (setq end beg))))
911 ;; First hide everything.
912 (outline-flag-region beg end t)
913 ;; Then unhide the top level headers.
916 (if (<= (funcall outline-level) levels)
917 (outline-show-heading)))
919 ;; Finally unhide any trailing newline.
920 (goto-char (point-max))
921 (if (and (bolp) (not (bobp)) (outline-invisible-p (1- (point))))
922 (outline-flag-region (1- (point)) (point) nil))))
923 (run-hooks 'outline-view-change-hook))
926 "Hide everything except current body and parent and top-level headings."
929 (let (outline-view-change-hook)
931 (outline-back-to-heading t)
933 (while (condition-case nil (progn (outline-up-heading 1 t) (not (bobp)))
935 (outline-flag-region (1- (point))
936 (save-excursion (forward-line 1) (point))
938 (run-hooks 'outline-view-change-hook))
940 (defun outline-toggle-children ()
941 "Show or hide the current subtree depending on its current state."
944 (outline-back-to-heading)
945 (if (not (outline-invisible-p (line-end-position)))
950 (defun outline-flag-subtree (flag)
952 (outline-back-to-heading)
953 (outline-end-of-heading)
954 (outline-flag-region (point)
955 (progn (outline-end-of-subtree) (point))
958 (defun outline-end-of-subtree ()
959 (outline-back-to-heading)
961 (level (funcall outline-level)))
962 (while (and (not (eobp))
963 (or first (> (funcall outline-level) level)))
965 (outline-next-heading))
966 (if (and (bolp) (not (eolp)))
967 ;; We stopped at a nonempty line (the next heading).
969 ;; Go to end of line before heading
971 (if (and outline-blank-line (bolp))
972 ;; leave blank line before heading
973 (forward-char -1))))))
975 (defun show-branches ()
976 "Show all subheadings of this heading, but not their bodies."
978 (show-children 1000))
980 (defun show-children (&optional level)
981 "Show all direct subheadings of this heading.
982 Prefix arg LEVEL is how many levels below the current level should be shown.
983 Default is enough to cause the following heading to appear."
986 (if level (prefix-numeric-value level)
988 (outline-back-to-heading)
989 (let ((start-level (funcall outline-level)))
990 (outline-next-heading)
993 (max 1 (- (funcall outline-level) start-level)))))))
994 (let (outline-view-change-hook)
996 (outline-back-to-heading)
997 (setq level (+ level (funcall outline-level)))
1000 (if (<= (funcall outline-level) level)
1001 (outline-show-heading)))
1003 (progn (outline-end-of-subtree)
1004 (if (eobp) (point-max) (1+ (point)))))))
1005 (run-hooks 'outline-view-change-hook))
1009 (defun outline-up-heading (arg &optional invisible-ok)
1010 "Move to the visible heading line of which the present line is a subheading.
1011 With argument, move up ARG levels.
1012 If INVISIBLE-OK is non-nil, also consider invisible lines."
1014 (and (eq this-command 'outline-up-heading)
1015 (or (eq last-command 'outline-up-heading) (push-mark)))
1016 (outline-back-to-heading invisible-ok)
1017 (let ((start-level (funcall outline-level)))
1018 (when (<= start-level 1)
1019 (error "Already at top level of the outline"))
1020 (while (and (> start-level 1) (> arg 0) (not (bobp)))
1021 (let ((level start-level))
1022 (while (not (or (< level start-level) (bobp)))
1024 (outline-previous-heading)
1025 (outline-previous-visible-heading 1))
1026 (setq level (funcall outline-level)))
1027 (setq start-level level))
1028 (setq arg (- arg 1))))
1029 (looking-at outline-regexp))
1031 (defun outline-forward-same-level (arg)
1032 "Move forward to the ARG'th subheading at same level as this one.
1033 Stop at the first and last subheadings of a superior heading."
1035 (outline-back-to-heading)
1037 (let ((point-to-move-to (save-excursion
1038 (outline-get-next-sibling))))
1039 (if point-to-move-to
1041 (goto-char point-to-move-to)
1042 (setq arg (1- arg)))
1045 (error "No following same-level heading"))))))
1047 (defun outline-get-next-sibling ()
1048 "Move to next heading of the same level, and return point.
1049 If there is no such heading, return nil."
1050 (let ((level (funcall outline-level)))
1051 (outline-next-visible-heading 1)
1052 (while (and (not (eobp)) (> (funcall outline-level) level))
1053 (outline-next-visible-heading 1))
1054 (if (or (eobp) (< (funcall outline-level) level))
1058 (defun outline-backward-same-level (arg)
1059 "Move backward to the ARG'th subheading at same level as this one.
1060 Stop at the first and last subheadings of a superior heading."
1062 (outline-back-to-heading)
1064 (let ((point-to-move-to (save-excursion
1065 (outline-get-last-sibling))))
1066 (if point-to-move-to
1068 (goto-char point-to-move-to)
1069 (setq arg (1- arg)))
1072 (error "No previous same-level heading"))))))
1074 (defun outline-get-last-sibling ()
1075 "Move to previous heading of the same level, and return point.
1076 If there is no such heading, return nil."
1077 (let ((opoint (point))
1078 (level (funcall outline-level)))
1079 (outline-previous-visible-heading 1)
1080 (when (and (/= (point) opoint) (outline-on-heading-p))
1081 (while (and (> (funcall outline-level) level)
1083 (outline-previous-visible-heading 1))
1084 (if (< (funcall outline-level) level)
1088 (defun outline-headers-as-kill (beg end)
1089 "Save the visible outline headers in region at the start of the kill ring.
1091 Text shown between the headers isn't copied. Two newlines are
1092 inserted between saved headers. Yanking the result may be a
1093 convenient way to make a table of contents of the buffer."
1097 (narrow-to-region beg end)
1098 (goto-char (point-min))
1099 (let ((buffer (current-buffer))
1102 (with-current-buffer buffer
1103 ;; Boundary condition: starting on heading:
1104 (when (outline-on-heading-p)
1105 (outline-back-to-heading)
1107 end (progn (outline-end-of-heading)
1109 (insert-buffer-substring buffer start end)
1111 (let ((temp-buffer (current-buffer)))
1112 (with-current-buffer buffer
1113 (while (outline-next-heading)
1114 (unless (outline-invisible-p)
1116 end (progn (outline-end-of-heading) (point)))
1117 (with-current-buffer temp-buffer
1118 (insert-buffer-substring buffer start end)
1119 (insert "\n\n"))))))
1120 (kill-new (buffer-string)))))))
1125 ;;; outline.el ends here