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