Mercurial > emacs
annotate lisp/textmodes/outline.el @ 40360:04be247dd745
(text-mode): Use define-derived-mode.
(toggle-text-mode-auto-fill): Use derived-mode-p.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sat, 27 Oct 2001 07:42:11 +0000 |
parents | fc133c103640 |
children | 4f8e9cc04af5 |
rev | line source |
---|---|
10950 | 1 ;;; outline.el --- outline mode commands for Emacs |
14169 | 2 |
37751
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
3 ;; Copyright (C) 1986, 93, 94, 95, 97, 2000, 2001 |
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
4 ;; Free Software Foundation, Inc. |
10950 | 5 |
6 ;; Maintainer: FSF | |
11455 | 7 ;; Keywords: outlines |
10950 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
10950 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; This package is a major mode for editing outline-format documents. | |
29 ;; An outline can be `abstracted' to show headers at any given level, | |
30 ;; with all stuff below hidden. See the Emacs manual for details. | |
31 | |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
32 ;;; Todo: |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
33 |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
34 ;; - subtree-terminators |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
35 |
10950 | 36 ;;; Code: |
37 | |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
38 (defgroup outlines nil |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
39 "Support for hierarchical outlining" |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
40 :prefix "outline-" |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
41 :group 'editing) |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
42 |
39261
fc133c103640
(outline-regexp): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
39238
diff
changeset
|
43 (defcustom outline-regexp "[*\^L]+" |
10950 | 44 "*Regular expression to match the beginning of a heading. |
45 Any line whose beginning matches this regexp is considered to start a heading. | |
39261
fc133c103640
(outline-regexp): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
39238
diff
changeset
|
46 Note that Outline mode only checks this regexp at the start of a line, |
fc133c103640
(outline-regexp): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
39238
diff
changeset
|
47 so the regexp need not (and usually does not) start with `^'. |
10950 | 48 The recommended way to set this is with a Local Variables: list |
24627 | 49 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
|
50 :type '(choice regexp (const nil)) |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
51 :group 'outlines) |
10950 | 52 |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
53 (defcustom outline-heading-end-regexp "\n" |
10950 | 54 "*Regular expression to match the end of a heading line. |
55 You can assume that point is at the beginning of a heading when this | |
56 regexp is searched for. The heading ends at the end of the match. | |
57 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
|
58 in the file it applies to." |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
59 :type 'regexp |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
60 :group 'outlines) |
10950 | 61 |
62 (defvar outline-mode-prefix-map nil) | |
63 | |
64 (if outline-mode-prefix-map | |
65 nil | |
66 (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
|
67 (define-key outline-mode-prefix-map "@" 'outline-mark-subtree) |
10950 | 68 (define-key outline-mode-prefix-map "\C-n" 'outline-next-visible-heading) |
69 (define-key outline-mode-prefix-map "\C-p" 'outline-previous-visible-heading) | |
70 (define-key outline-mode-prefix-map "\C-i" 'show-children) | |
71 (define-key outline-mode-prefix-map "\C-s" 'show-subtree) | |
72 (define-key outline-mode-prefix-map "\C-d" 'hide-subtree) | |
73 (define-key outline-mode-prefix-map "\C-u" 'outline-up-heading) | |
74 (define-key outline-mode-prefix-map "\C-f" 'outline-forward-same-level) | |
75 (define-key outline-mode-prefix-map "\C-b" 'outline-backward-same-level) | |
76 (define-key outline-mode-prefix-map "\C-t" 'hide-body) | |
77 (define-key outline-mode-prefix-map "\C-a" 'show-all) | |
78 (define-key outline-mode-prefix-map "\C-c" 'hide-entry) | |
79 (define-key outline-mode-prefix-map "\C-e" 'show-entry) | |
80 (define-key outline-mode-prefix-map "\C-l" 'hide-leaves) | |
81 (define-key outline-mode-prefix-map "\C-k" 'show-branches) | |
82 (define-key outline-mode-prefix-map "\C-q" 'hide-sublevels) | |
83 (define-key outline-mode-prefix-map "\C-o" 'hide-other)) | |
84 | |
85 (defvar outline-mode-menu-bar-map nil) | |
86 (if outline-mode-menu-bar-map | |
87 nil | |
88 (setq outline-mode-menu-bar-map (make-sparse-keymap)) | |
89 | |
90 (define-key outline-mode-menu-bar-map [hide] | |
91 (cons "Hide" (make-sparse-keymap "Hide"))) | |
92 | |
93 (define-key outline-mode-menu-bar-map [hide hide-other] | |
94 '("Hide Other" . hide-other)) | |
95 (define-key outline-mode-menu-bar-map [hide hide-sublevels] | |
96 '("Hide Sublevels" . hide-sublevels)) | |
97 (define-key outline-mode-menu-bar-map [hide hide-subtree] | |
98 '("Hide Subtree" . hide-subtree)) | |
99 (define-key outline-mode-menu-bar-map [hide hide-entry] | |
100 '("Hide Entry" . hide-entry)) | |
101 (define-key outline-mode-menu-bar-map [hide hide-body] | |
102 '("Hide Body" . hide-body)) | |
103 (define-key outline-mode-menu-bar-map [hide hide-leaves] | |
104 '("Hide Leaves" . hide-leaves)) | |
105 | |
106 (define-key outline-mode-menu-bar-map [show] | |
107 (cons "Show" (make-sparse-keymap "Show"))) | |
108 | |
109 (define-key outline-mode-menu-bar-map [show show-subtree] | |
110 '("Show Subtree" . show-subtree)) | |
111 (define-key outline-mode-menu-bar-map [show show-children] | |
112 '("Show Children" . show-children)) | |
113 (define-key outline-mode-menu-bar-map [show show-branches] | |
114 '("Show Branches" . show-branches)) | |
115 (define-key outline-mode-menu-bar-map [show show-entry] | |
116 '("Show Entry" . show-entry)) | |
117 (define-key outline-mode-menu-bar-map [show show-all] | |
118 '("Show All" . show-all)) | |
119 | |
120 (define-key outline-mode-menu-bar-map [headings] | |
121 (cons "Headings" (make-sparse-keymap "Headings"))) | |
122 | |
27204
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
123 (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
|
124 '(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
|
125 :enable mark-active)) |
10950 | 126 (define-key outline-mode-menu-bar-map [headings outline-backward-same-level] |
127 '("Previous Same Level" . outline-backward-same-level)) | |
128 (define-key outline-mode-menu-bar-map [headings outline-forward-same-level] | |
129 '("Next Same Level" . outline-forward-same-level)) | |
130 (define-key outline-mode-menu-bar-map [headings outline-previous-visible-heading] | |
131 '("Previous" . outline-previous-visible-heading)) | |
132 (define-key outline-mode-menu-bar-map [headings outline-next-visible-heading] | |
133 '("Next" . outline-next-visible-heading)) | |
134 (define-key outline-mode-menu-bar-map [headings outline-up-heading] | |
135 '("Up" . outline-up-heading))) | |
136 | |
137 (defvar outline-mode-map nil "") | |
138 | |
139 (if outline-mode-map | |
140 nil | |
141 (setq outline-mode-map (nconc (make-sparse-keymap) text-mode-map)) | |
142 (define-key outline-mode-map "\C-c" outline-mode-prefix-map) | |
143 (define-key outline-mode-map [menu-bar] outline-mode-menu-bar-map)) | |
144 | |
145 (defvar outline-font-lock-keywords | |
20175
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
146 '(;; |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
147 ;; Highlight headings according to the level. |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
148 (eval . (list (concat "^" outline-regexp ".+") |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
149 0 '(or (cdr (assq (outline-font-lock-level) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
150 '((1 . font-lock-function-name-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
151 (2 . font-lock-variable-name-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
152 (3 . font-lock-keyword-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
153 (4 . font-lock-builtin-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
154 (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
|
155 (6 . font-lock-constant-face) |
20175
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
156 (7 . font-lock-type-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
157 (8 . font-lock-string-face)))) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
158 font-lock-warning-face) |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
159 nil t))) |
10950 | 160 "Additional expressions to highlight in Outline mode.") |
161 | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
162 (defun outline-font-lock-level () |
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
163 (let ((count 1)) |
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
164 (save-excursion |
25148
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
165 (outline-back-to-heading t) |
37751
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
166 (while (and (not (bobp)) |
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
167 (not (eq (funcall outline-level) 1))) |
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
168 (outline-up-heading-all 1) |
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
169 (setq count (1+ count))) |
ac83181a33d0
(outline-font-lock-level): Remove the
Gerd Moellmann <gerd@gnu.org>
parents:
35485
diff
changeset
|
170 count))) |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
171 |
13259
11899bfa541c
(outline-view-change-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
12604
diff
changeset
|
172 (defvar outline-view-change-hook nil |
11899bfa541c
(outline-view-change-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
12604
diff
changeset
|
173 "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
|
174 |
17688
b02bb31c98b0
(outline-mode): Autoload cookie added.
Richard M. Stallman <rms@gnu.org>
parents:
17687
diff
changeset
|
175 ;;;###autoload |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
176 (define-derived-mode outline-mode text-mode "Outline" |
10950 | 177 "Set major mode for editing outlines with selective display. |
178 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
|
179 two for subheadings, etc. Lines not starting with asterisks are body lines. |
10950 | 180 |
181 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
|
182 invisible, or visible again. Invisible lines are attached to the end |
10950 | 183 of the heading, so they move with it, if the line is killed and yanked |
184 back. A heading with text hidden under it is marked with an ellipsis (...). | |
185 | |
186 Commands:\\<outline-mode-map> | |
187 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings | |
188 \\[outline-previous-visible-heading] outline-previous-visible-heading | |
189 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings | |
190 \\[outline-backward-same-level] outline-backward-same-level | |
191 \\[outline-up-heading] outline-up-heading move from subheading to heading | |
192 | |
193 \\[hide-body] make all text invisible (not headings). | |
194 \\[show-all] make everything in buffer visible. | |
195 | |
196 The remaining commands are used when point is on a heading line. | |
197 They apply to some of the body or subheadings of that heading. | |
198 \\[hide-subtree] hide-subtree make body and subheadings invisible. | |
199 \\[show-subtree] show-subtree make body and subheadings visible. | |
200 \\[show-children] show-children make direct subheadings visible. | |
201 No effect on body, or subheadings 2 or more levels down. | |
202 With arg N, affects subheadings N levels down. | |
203 \\[hide-entry] make immediately following body invisible. | |
204 \\[show-entry] make it visible. | |
205 \\[hide-leaves] make body under heading and under its subheadings invisible. | |
206 The subheadings remain visible. | |
207 \\[show-branches] make all subheadings at all levels visible. | |
208 | |
209 The variable `outline-regexp' can be changed to control what is a heading. | |
210 A line is a heading if `outline-regexp' matches something at the | |
211 beginning of the line. The longer the match, the deeper the level. | |
212 | |
213 Turning on outline mode calls the value of `text-mode-hook' and then of | |
214 `outline-mode-hook', if they are non-nil." | |
215 (make-local-variable 'line-move-ignore-invisible) | |
216 (setq line-move-ignore-invisible t) | |
217 ;; 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
|
218 (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
|
219 (set (make-local-variable 'paragraph-start) |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
220 (concat paragraph-start "\\|\\(" outline-regexp "\\)")) |
10950 | 221 ;; 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
|
222 (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
|
223 (set (make-local-variable 'paragraph-separate) |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
224 (concat paragraph-separate "\\|\\(" outline-regexp "\\)")) |
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
225 (set (make-local-variable 'font-lock-defaults) |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
226 '(outline-font-lock-keywords t nil nil backward-paragraph)) |
27204
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
227 (setq imenu-generic-expression |
39238
7370effcd55c
(outline-mode): Use `^' and a shy group
Gerd Moellmann <gerd@gnu.org>
parents:
37920
diff
changeset
|
228 (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
|
229 (add-hook 'change-major-mode-hook 'show-all nil t)) |
10950 | 230 |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
231 (defcustom outline-minor-mode-prefix "\C-c@" |
10950 | 232 "*Prefix key to use for Outline commands in Outline minor mode. |
233 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
|
234 After that, changing the prefix key requires manipulating keymaps." |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
235 :type 'string |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
236 :group 'outlines) |
10950 | 237 |
17688
b02bb31c98b0
(outline-mode): Autoload cookie added.
Richard M. Stallman <rms@gnu.org>
parents:
17687
diff
changeset
|
238 ;;;###autoload |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
239 (define-minor-mode outline-minor-mode |
10950 | 240 "Toggle Outline minor mode. |
241 With arg, turn Outline minor mode on if arg is positive, off otherwise. | |
242 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
|
243 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
|
244 (cons outline-minor-mode-prefix outline-mode-prefix-map)) |
10950 | 245 (if outline-minor-mode |
246 (progn | |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
247 ;; 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
|
248 (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
|
249 (lambda () (outline-minor-mode -1)) |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
250 nil t) |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
251 (set (make-local-variable 'line-move-ignore-invisible) t) |
10950 | 252 ;; 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
|
253 (add-to-invisibility-spec '(outline . t))) |
10950 | 254 (setq line-move-ignore-invisible nil) |
255 ;; 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
|
256 (remove-from-invisibility-spec '(outline . t))) |
10998 | 257 ;; When turning off outline mode, get rid of any outline hiding. |
10950 | 258 (or outline-minor-mode |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
259 (show-all))) |
10950 | 260 |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
261 (defcustom outline-level 'outline-level |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
262 "*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
|
263 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
|
264 :type 'function |
17690
3fa9da85b3ea
Fix customization change.
Richard M. Stallman <rms@gnu.org>
parents:
17688
diff
changeset
|
265 :group 'outlines) |
10950 | 266 |
267 ;; This used to count columns rather than characters, but that made ^L | |
268 ;; appear to be at level 2 instead of 1. Columns would be better for | |
269 ;; tab handling, but the default regexp doesn't use tabs, and anyone | |
270 ;; who changes the regexp can also redefine the outline-level variable | |
271 ;; as appropriate. | |
272 (defun outline-level () | |
273 "Return the depth to which a statement is nested in the outline. | |
274 Point must be at the beginning of a header line. This is actually | |
275 the number of characters that `outline-regexp' matches." | |
276 (save-excursion | |
277 (looking-at outline-regexp) | |
278 (- (match-end 0) (match-beginning 0)))) | |
279 | |
280 (defun outline-next-preface () | |
281 "Skip forward to just before the next heading line. | |
282 If there's no following heading line, stop before the newline | |
283 at the end of the buffer." | |
284 (if (re-search-forward (concat "\n\\(" outline-regexp "\\)") | |
285 nil 'move) | |
286 (goto-char (match-beginning 0))) | |
20426 | 287 (if (and (bolp) (not (bobp))) |
10950 | 288 (forward-char -1))) |
289 | |
290 (defun outline-next-heading () | |
291 "Move to the next (possibly invisible) heading line." | |
292 (interactive) | |
10998 | 293 (if (re-search-forward (concat "\n\\(" outline-regexp "\\)") |
10950 | 294 nil 'move) |
295 (goto-char (1+ (match-beginning 0))))) | |
296 | |
25177
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
297 (defun outline-previous-heading () |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
298 "Move to the previous (possibly invisible) heading line." |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
299 (interactive) |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
300 (re-search-backward (concat "^\\(" outline-regexp "\\)") |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
301 nil 'move)) |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
302 |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
303 (defsubst outline-invisible-p () |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
304 "Non-nil if the character after point is invisible." |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
305 (get-char-property (point) 'invisible)) |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
306 (defun outline-visible () |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
307 "Obsolete. Use `outline-invisible-p'." |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
308 (not (outline-invisible-p))) |
10950 | 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) | |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
478 (unless (eobp) |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
479 (forward-char (if (looking-at "\n\n") 2 1)) |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
480 (outline-end-of-heading)))))) |
23366 | 481 (run-hooks 'outline-view-change-hook)) |
10950 | 482 |
483 (defun show-all () | |
484 "Show all of the text in the buffer." | |
485 (interactive) | |
486 (outline-flag-region (point-min) (point-max) nil)) | |
487 | |
488 (defun hide-subtree () | |
489 "Hide everything after this heading at deeper levels." | |
490 (interactive) | |
491 (outline-flag-subtree t)) | |
492 | |
493 (defun hide-leaves () | |
494 "Hide all body after this heading at deeper levels." | |
495 (interactive) | |
496 (outline-back-to-heading) | |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
497 (save-excursion |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
498 (outline-end-of-heading) |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
499 (hide-region-body (point) (progn (outline-end-of-subtree) (point))))) |
10950 | 500 |
501 (defun show-subtree () | |
502 "Show everything after this heading at deeper levels." | |
503 (interactive) | |
504 (outline-flag-subtree nil)) | |
505 | |
506 (defun hide-sublevels (levels) | |
507 "Hide everything but the top LEVELS levels of headers, in whole buffer." | |
508 (interactive "p") | |
509 (if (< levels 1) | |
510 (error "Must keep at least one level of headers")) | |
511 (setq levels (1- levels)) | |
23366 | 512 (let (outline-view-change-hook) |
513 (save-excursion | |
514 (goto-char (point-min)) | |
515 ;; Keep advancing to the next top-level heading. | |
516 (while (or (and (bobp) (outline-on-heading-p)) | |
517 (outline-next-heading)) | |
518 (let ((end (save-excursion (outline-end-of-subtree) (point)))) | |
519 ;; Hide everything under that. | |
520 (outline-flag-region (point) end t) | |
521 ;; Show the first LEVELS levels under that. | |
522 (if (> levels 0) | |
523 (show-children levels)) | |
524 ;; Move to the next, since we already found it. | |
525 (goto-char end))))) | |
526 (run-hooks 'outline-view-change-hook)) | |
10950 | 527 |
528 (defun hide-other () | |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
529 "Hide everything except current body and parent and top-level headings." |
10950 | 530 (interactive) |
531 (hide-sublevels 1) | |
23366 | 532 (let (outline-view-change-hook) |
533 (save-excursion | |
534 (outline-back-to-heading t) | |
535 (show-entry) | |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
536 (while (condition-case nil (progn (outline-up-heading 1) (not (bobp))) |
23366 | 537 (error nil)) |
538 (outline-flag-region (1- (point)) | |
539 (save-excursion (forward-line 1) (point)) | |
540 nil)))) | |
541 (run-hooks 'outline-view-change-hook)) | |
10950 | 542 |
543 (defun outline-flag-subtree (flag) | |
544 (save-excursion | |
545 (outline-back-to-heading) | |
546 (outline-end-of-heading) | |
547 (outline-flag-region (point) | |
548 (progn (outline-end-of-subtree) (point)) | |
549 flag))) | |
550 | |
551 (defun outline-end-of-subtree () | |
552 (outline-back-to-heading) | |
553 (let ((opoint (point)) | |
554 (first t) | |
555 (level (funcall outline-level))) | |
556 (while (and (not (eobp)) | |
557 (or first (> (funcall outline-level) level))) | |
558 (setq first nil) | |
559 (outline-next-heading)) | |
560 (if (bolp) | |
561 (progn | |
562 ;; Go to end of line before heading | |
563 (forward-char -1) | |
564 (if (bolp) | |
565 ;; leave blank line before heading | |
566 (forward-char -1)))))) | |
567 | |
568 (defun show-branches () | |
569 "Show all subheadings of this heading, but not their bodies." | |
570 (interactive) | |
571 (show-children 1000)) | |
572 | |
573 (defun show-children (&optional level) | |
574 "Show all direct subheadings of this heading. | |
575 Prefix arg LEVEL is how many levels below the current level should be shown. | |
576 Default is enough to cause the following heading to appear." | |
577 (interactive "P") | |
578 (setq level | |
579 (if level (prefix-numeric-value level) | |
580 (save-excursion | |
581 (outline-back-to-heading) | |
582 (let ((start-level (funcall outline-level))) | |
583 (outline-next-heading) | |
584 (if (eobp) | |
585 1 | |
586 (max 1 (- (funcall outline-level) start-level))))))) | |
23366 | 587 (let (outline-view-change-hook) |
588 (save-excursion | |
589 (save-restriction | |
590 (outline-back-to-heading) | |
591 (setq level (+ level (funcall outline-level))) | |
592 (narrow-to-region (point) | |
593 (progn (outline-end-of-subtree) | |
594 (if (eobp) (point-max) (1+ (point))))) | |
595 (goto-char (point-min)) | |
596 (while (and (not (eobp)) | |
597 (progn | |
598 (outline-next-heading) | |
599 (not (eobp)))) | |
600 (if (<= (funcall outline-level) level) | |
601 (save-excursion | |
602 (outline-flag-region (save-excursion | |
603 (forward-char -1) | |
604 (if (bolp) | |
605 (forward-char -1)) | |
606 (point)) | |
607 (progn (outline-end-of-heading) (point)) | |
608 nil))))))) | |
609 (run-hooks 'outline-view-change-hook)) | |
10950 | 610 |
25148
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
611 (defun outline-up-heading-all (arg) |
25177
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
612 "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
|
613 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
|
614 With argument, move up ARG levels." |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
615 (outline-back-to-heading t) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
616 (if (eq (funcall outline-level) 1) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
617 (error "Already at top level of the outline")) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
618 (while (and (> (funcall outline-level) 1) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
619 (> arg 0) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
620 (not (bobp))) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
621 (let ((present-level (funcall outline-level))) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
622 (while (and (not (< (funcall outline-level) present-level)) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
623 (not (bobp))) |
25177
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
624 (outline-previous-heading)) |
25148
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
625 (setq arg (- arg 1))))) |
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
626 |
10950 | 627 (defun outline-up-heading (arg) |
25148
01b59199fcbc
(outline-next-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
24627
diff
changeset
|
628 "Move to the visible heading line of which the present line is a subheading. |
10950 | 629 With argument, move up ARG levels." |
630 (interactive "p") | |
631 (outline-back-to-heading) | |
632 (if (eq (funcall outline-level) 1) | |
15466
5affe3230dfb
(outline-up-heading): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
633 (error "Already at top level of the outline")) |
10950 | 634 (while (and (> (funcall outline-level) 1) |
635 (> arg 0) | |
636 (not (bobp))) | |
637 (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
|
638 (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
|
639 (not (bobp))) |
10950 | 640 (outline-previous-visible-heading 1)) |
641 (setq arg (- arg 1))))) | |
642 | |
643 (defun outline-forward-same-level (arg) | |
644 "Move forward to the ARG'th subheading at same level as this one. | |
645 Stop at the first and last subheadings of a superior heading." | |
646 (interactive "p") | |
647 (outline-back-to-heading) | |
648 (while (> arg 0) | |
649 (let ((point-to-move-to (save-excursion | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
650 (outline-get-next-sibling)))) |
10950 | 651 (if point-to-move-to |
652 (progn | |
653 (goto-char point-to-move-to) | |
654 (setq arg (1- arg))) | |
655 (progn | |
656 (setq arg 0) | |
15466
5affe3230dfb
(outline-up-heading): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
657 (error "No following same-level heading")))))) |
10950 | 658 |
659 (defun outline-get-next-sibling () | |
660 "Move to next heading of the same level, and return point or nil if none." | |
661 (let ((level (funcall outline-level))) | |
662 (outline-next-visible-heading 1) | |
663 (while (and (> (funcall outline-level) level) | |
664 (not (eobp))) | |
665 (outline-next-visible-heading 1)) | |
666 (if (< (funcall outline-level) level) | |
667 nil | |
668 (point)))) | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
669 |
10950 | 670 (defun outline-backward-same-level (arg) |
671 "Move backward to the ARG'th subheading at same level as this one. | |
672 Stop at the first and last subheadings of a superior heading." | |
673 (interactive "p") | |
674 (outline-back-to-heading) | |
675 (while (> arg 0) | |
676 (let ((point-to-move-to (save-excursion | |
677 (outline-get-last-sibling)))) | |
678 (if point-to-move-to | |
679 (progn | |
680 (goto-char point-to-move-to) | |
681 (setq arg (1- arg))) | |
682 (progn | |
683 (setq arg 0) | |
15466
5affe3230dfb
(outline-up-heading): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
684 (error "No previous same-level heading")))))) |
10950 | 685 |
686 (defun outline-get-last-sibling () | |
24442
252453d80f53
(outline-get-last-sibling): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
23366
diff
changeset
|
687 "Move to previous heading of the same level, and return point or nil if none." |
10950 | 688 (let ((level (funcall outline-level))) |
689 (outline-previous-visible-heading 1) | |
690 (while (and (> (funcall outline-level) level) | |
691 (not (bobp))) | |
692 (outline-previous-visible-heading 1)) | |
693 (if (< (funcall outline-level) level) | |
694 nil | |
695 (point)))) | |
27204
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
696 |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
697 (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
|
698 "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
|
699 |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
700 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
|
701 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
|
702 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
|
703 (interactive "r") |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
704 (save-excursion |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
705 (save-restriction |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
706 (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
|
707 (goto-char (point-min)) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
708 (let ((buffer (current-buffer)) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
709 start end) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
710 (with-temp-buffer |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
711 (with-current-buffer buffer |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
712 ;; 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
|
713 (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
|
714 (outline-back-to-heading) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
715 (setq start (point) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
716 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
|
717 (point))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
718 (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
|
719 (insert "\n\n"))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
720 (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
|
721 (with-current-buffer buffer |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
722 (while (outline-next-heading) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
723 (when (outline-visible) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
724 (setq start (point) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
725 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
|
726 (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
|
727 (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
|
728 (insert "\n\n")))))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
729 (kill-new (buffer-string))))))) |
10950 | 730 |
731 (provide 'outline) | |
11736
07ac8009368c
Provide noutline as well as outline.
Richard M. Stallman <rms@gnu.org>
parents:
11713
diff
changeset
|
732 (provide 'noutline) |
10950 | 733 |
734 ;;; outline.el ends here |