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