Mercurial > emacs
annotate lisp/textmodes/ooutline.el @ 6138:1642e3f231d0
Initial revision
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 02 Mar 1994 04:56:25 +0000 |
parents | 2f02deab5b9e |
children | 340f5eb2e8b6 |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
1 ;;; outline.el --- outline mode commands for Emacs |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
2 |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
3 ;; Copyright (C) 1986, 1993 Free Software Foundation, Inc. |
845 | 4 |
5855
c23afcf4e954
(show-children): Don't narrow to (1+ (point-max)) when
Richard M. Stallman <rms@gnu.org>
parents:
5786
diff
changeset
|
5 ;; 7-Feb-94 Kevin Broadey |
c23afcf4e954
(show-children): Don't narrow to (1+ (point-max)) when
Richard M. Stallman <rms@gnu.org>
parents:
5786
diff
changeset
|
6 ;; Fix show-children so it doesn't try to narrow to (1+ (point-max)) when |
c23afcf4e954
(show-children): Don't narrow to (1+ (point-max)) when
Richard M. Stallman <rms@gnu.org>
parents:
5786
diff
changeset
|
7 ;; exposing the last level-n header in the buffer. |
c23afcf4e954
(show-children): Don't narrow to (1+ (point-max)) when
Richard M. Stallman <rms@gnu.org>
parents:
5786
diff
changeset
|
8 ;; |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
730
diff
changeset
|
9 ;; Maintainer: FSF |
234 | 10 |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
730
diff
changeset
|
15 ;; the Free Software Foundation; either version 2, or (at your option) |
234 | 16 ;; any later version. |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
25 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
26 | |
2308
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
27 ;;; Commentary: |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
28 |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
29 ;; This package is a major mode for editing outline-format documents. |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
30 ;; An outline can be `abstracted' to show headers at any given level, |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
31 ;; with all stuff below hidden. See the Emacs manual for details. |
f287613dfc28
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
845
diff
changeset
|
32 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
730
diff
changeset
|
33 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
730
diff
changeset
|
34 |
234 | 35 ;; Jan '86, Some new features added by Peter Desnoyers and rewritten by RMS. |
36 | |
37 (defvar outline-regexp "[*\^l]+" | |
38 "*Regular expression to match the beginning of a heading. | |
39 Any line whose beginning matches this regexp is considered to start a heading. | |
40 The recommended way to set this is with a Local Variables: list | |
41 in the file it applies to. See also outline-heading-end-regexp.") | |
42 | |
2900
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
43 (defvar outline-heading-end-regexp "[\n\^M]" |
234 | 44 "*Regular expression to match the end of a heading line. |
45 You can assume that point is at the beginning of a heading when this | |
46 regexp is searched for. The heading ends at the end of the match. | |
47 The recommended way to set this is with a \"Local Variables:\" list | |
48 in the file it applies to.") | |
49 | |
50 (defvar outline-mode-map nil "") | |
51 | |
52 (if outline-mode-map | |
53 nil | |
54 (setq outline-mode-map (nconc (make-sparse-keymap) text-mode-map)) | |
55 (define-key outline-mode-map "\C-c\C-n" 'outline-next-visible-heading) | |
56 (define-key outline-mode-map "\C-c\C-p" 'outline-previous-visible-heading) | |
57 (define-key outline-mode-map "\C-c\C-i" 'show-children) | |
58 (define-key outline-mode-map "\C-c\C-s" 'show-subtree) | |
5781
5ebe399ed4a3
(outline-mode-map): Move C-c C-h to C-c C-d.
Richard M. Stallman <rms@gnu.org>
parents:
5711
diff
changeset
|
59 (define-key outline-mode-map "\C-c\C-d" 'hide-subtree) |
234 | 60 (define-key outline-mode-map "\C-c\C-u" 'outline-up-heading) |
61 (define-key outline-mode-map "\C-c\C-f" 'outline-forward-same-level) | |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
62 (define-key outline-mode-map "\C-c\C-b" 'outline-backward-same-level) |
6077
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
63 (define-key outline-mode-map "\C-c\C-t" 'hide-body) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
64 (define-key outline-mode-map "\C-c\C-a" 'show-all) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
65 (define-key outline-mode-map "\C-c\C-c" 'hide-entry) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
66 (define-key outline-mode-map "\C-c\C-e" 'show-entry) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
67 (define-key outline-mode-map "\C-c\C-l" 'hide-leaves) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
68 (define-key outline-mode-map "\C-c\C-k" 'show-branches) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
69 (define-key outline-mode-map "\C-c\C-q" 'outline-hide-sublevels) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
70 (define-key outline-mode-map "\C-c\C-o" 'outline-hide-other) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
71 |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
72 (define-key outline-mode-map [menu-bar hide] |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
73 (cons "Hide" (make-sparse-keymap "Hide"))) |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
74 |
6077
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
75 (define-key outline-mode-map [menu-bar hide hide-other] |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
76 '("Hide Other" . outline-hide-other)) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
77 (define-key outline-mode-map [menu-bar hide hide-sublevels] |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
78 '("Hide Sublevels" . outline-hide-sublevels)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
79 (define-key outline-mode-map [menu-bar hide hide-subtree] |
4187
b3df9c7072bb
(outline-mode-map): Delete spurious `outline-'
Richard M. Stallman <rms@gnu.org>
parents:
3987
diff
changeset
|
80 '("Hide Subtree" . hide-subtree)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
81 (define-key outline-mode-map [menu-bar hide hide-entry] |
4187
b3df9c7072bb
(outline-mode-map): Delete spurious `outline-'
Richard M. Stallman <rms@gnu.org>
parents:
3987
diff
changeset
|
82 '("Hide Entry" . hide-entry)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
83 (define-key outline-mode-map [menu-bar hide hide-body] |
4187
b3df9c7072bb
(outline-mode-map): Delete spurious `outline-'
Richard M. Stallman <rms@gnu.org>
parents:
3987
diff
changeset
|
84 '("Hide Body" . hide-body)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
85 (define-key outline-mode-map [menu-bar hide hide-leaves] |
4187
b3df9c7072bb
(outline-mode-map): Delete spurious `outline-'
Richard M. Stallman <rms@gnu.org>
parents:
3987
diff
changeset
|
86 '("Hide Leaves" . hide-leaves)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
87 |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
88 (define-key outline-mode-map [menu-bar show] |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
89 (cons "Show" (make-sparse-keymap "Show"))) |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
90 |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
91 (define-key outline-mode-map [menu-bar show show-subtree] |
4187
b3df9c7072bb
(outline-mode-map): Delete spurious `outline-'
Richard M. Stallman <rms@gnu.org>
parents:
3987
diff
changeset
|
92 '("Show Subtree" . show-subtree)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
93 (define-key outline-mode-map [menu-bar show show-children] |
4187
b3df9c7072bb
(outline-mode-map): Delete spurious `outline-'
Richard M. Stallman <rms@gnu.org>
parents:
3987
diff
changeset
|
94 '("Show Children" . show-children)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
95 (define-key outline-mode-map [menu-bar show show-branches] |
4187
b3df9c7072bb
(outline-mode-map): Delete spurious `outline-'
Richard M. Stallman <rms@gnu.org>
parents:
3987
diff
changeset
|
96 '("Show Branches" . show-branches)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
97 (define-key outline-mode-map [menu-bar show show-entry] |
4187
b3df9c7072bb
(outline-mode-map): Delete spurious `outline-'
Richard M. Stallman <rms@gnu.org>
parents:
3987
diff
changeset
|
98 '("Show Entry" . show-entry)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
99 (define-key outline-mode-map [menu-bar show show-all] |
4187
b3df9c7072bb
(outline-mode-map): Delete spurious `outline-'
Richard M. Stallman <rms@gnu.org>
parents:
3987
diff
changeset
|
100 '("Show All" . show-all)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
101 |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
102 (define-key outline-mode-map [menu-bar headings] |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
103 (cons "Headings" (make-sparse-keymap "Headings"))) |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
104 |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
105 (define-key outline-mode-map [menu-bar headings outline-backward-same-level] |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
106 '("Previous Same Level" . outline-backward-same-level)) |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
107 (define-key outline-mode-map [menu-bar headings outline-forward-same-level] |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
108 '("Next Same Level" . outline-forward-same-level)) |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
109 (define-key outline-mode-map [menu-bar headings outline-previous-visible-heading] |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
110 '("Previous" . outline-previous-visible-heading)) |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
111 (define-key outline-mode-map [menu-bar headings outline-next-visible-heading] |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
112 '("Next" . outline-next-visible-heading)) |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
113 (define-key outline-mode-map [menu-bar headings outline-up-heading] |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
114 '("Up" . outline-up-heading))) |
234 | 115 |
116 (defvar outline-minor-mode nil | |
117 "Non-nil if using Outline mode as a minor mode of some other mode.") | |
2934
7c4226d1ea65
(outline-minor-mode): Make var permanent local in all buffers.
Richard M. Stallman <rms@gnu.org>
parents:
2900
diff
changeset
|
118 (make-variable-buffer-local 'outline-minor-mode) |
7c4226d1ea65
(outline-minor-mode): Make var permanent local in all buffers.
Richard M. Stallman <rms@gnu.org>
parents:
2900
diff
changeset
|
119 (put 'outline-minor-mode 'permanent-local t) |
5693
e54c2697692b
(minor-mode-alist): Don't add "Outl" if already added.
Richard M. Stallman <rms@gnu.org>
parents:
5306
diff
changeset
|
120 (or (assq 'outline-minor-mode minor-mode-alist) |
e54c2697692b
(minor-mode-alist): Don't add "Outl" if already added.
Richard M. Stallman <rms@gnu.org>
parents:
5306
diff
changeset
|
121 (setq minor-mode-alist (append minor-mode-alist |
e54c2697692b
(minor-mode-alist): Don't add "Outl" if already added.
Richard M. Stallman <rms@gnu.org>
parents:
5306
diff
changeset
|
122 (list '(outline-minor-mode " Outl"))))) |
234 | 123 |
258 | 124 ;;;###autoload |
234 | 125 (defun outline-mode () |
126 "Set major mode for editing outlines with selective display. | |
127 Headings are lines which start with asterisks: one for major headings, | |
128 two for subheadings, etc. Lines not starting with asterisks are body lines. | |
129 | |
130 Body text or subheadings under a heading can be made temporarily | |
131 invisible, or visible again. Invisible lines are attached to the end | |
132 of the heading, so they move with it, if the line is killed and yanked | |
133 back. A heading with text hidden under it is marked with an ellipsis (...). | |
134 | |
135 Commands:\\<outline-mode-map> | |
136 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings | |
137 \\[outline-previous-visible-heading] outline-previous-visible-heading | |
138 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings | |
139 \\[outline-backward-same-level] outline-backward-same-level | |
140 \\[outline-up-heading] outline-up-heading move from subheading to heading | |
141 | |
142 M-x hide-body make all text invisible (not headings). | |
143 M-x show-all make everything in buffer visible. | |
144 | |
145 The remaining commands are used when point is on a heading line. | |
146 They apply to some of the body or subheadings of that heading. | |
147 \\[hide-subtree] hide-subtree make body and subheadings invisible. | |
148 \\[show-subtree] show-subtree make body and subheadings visible. | |
149 \\[show-children] show-children make direct subheadings visible. | |
150 No effect on body, or subheadings 2 or more levels down. | |
151 With arg N, affects subheadings N levels down. | |
152 M-x hide-entry make immediately following body invisible. | |
153 M-x show-entry make it visible. | |
154 M-x hide-leaves make body under heading and under its subheadings invisible. | |
155 The subheadings remain visible. | |
156 M-x show-branches make all subheadings at all levels visible. | |
157 | |
158 The variable `outline-regexp' can be changed to control what is a heading. | |
159 A line is a heading if `outline-regexp' matches something at the | |
160 beginning of the line. The longer the match, the deeper the level. | |
161 | |
162 Turning on outline mode calls the value of `text-mode-hook' and then of | |
163 `outline-mode-hook', if they are non-nil." | |
164 (interactive) | |
165 (kill-all-local-variables) | |
166 (setq selective-display t) | |
167 (use-local-map outline-mode-map) | |
168 (setq mode-name "Outline") | |
169 (setq major-mode 'outline-mode) | |
170 (define-abbrev-table 'text-mode-abbrev-table ()) | |
171 (setq local-abbrev-table text-mode-abbrev-table) | |
172 (set-syntax-table text-mode-syntax-table) | |
173 (make-local-variable 'paragraph-start) | |
174 (setq paragraph-start (concat paragraph-start "\\|^\\(" | |
175 outline-regexp "\\)")) | |
176 ;; Inhibit auto-filling of header lines. | |
177 (make-local-variable 'auto-fill-inhibit-regexp) | |
178 (setq auto-fill-inhibit-regexp outline-regexp) | |
179 (make-local-variable 'paragraph-separate) | |
180 (setq paragraph-separate (concat paragraph-separate "\\|^\\(" | |
181 outline-regexp "\\)")) | |
5876
82e1a78ab625
(outline-mode): Fix spelling of add-hook.
Karl Heuer <kwzh@gnu.org>
parents:
5855
diff
changeset
|
182 (add-hook 'change-major-mode-hook 'show-all) |
234 | 183 (run-hooks 'text-mode-hook 'outline-mode-hook)) |
184 | |
6077
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
185 (defvar outline-minor-mode-prefix "\C-c\C-o" |
4622
a55b9c08e4af
(outline-minor-mode-prefix): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4187
diff
changeset
|
186 "*Prefix key to use for Outline commands in Outline minor mode.") |
a55b9c08e4af
(outline-minor-mode-prefix): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4187
diff
changeset
|
187 |
2900
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
188 (defvar outline-minor-mode-map nil) |
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
189 (if outline-minor-mode-map |
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
190 nil |
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
191 (setq outline-minor-mode-map (make-sparse-keymap)) |
3987
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
192 (define-key outline-minor-mode-map [menu-bar] |
4eada6c0b8d4
(outline-mode-map): Add menu bar items.
Richard M. Stallman <rms@gnu.org>
parents:
3531
diff
changeset
|
193 (lookup-key outline-mode-map [menu-bar])) |
4622
a55b9c08e4af
(outline-minor-mode-prefix): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4187
diff
changeset
|
194 (define-key outline-minor-mode-map outline-minor-mode-prefix |
2900
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
195 (lookup-key outline-mode-map "\C-c"))) |
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
196 |
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
197 (or (assq 'outline-minor-mode minor-mode-map-alist) |
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
198 (setq minor-mode-map-alist |
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
199 (cons (cons 'outline-minor-mode outline-minor-mode-map) |
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
200 minor-mode-map-alist))) |
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
201 |
3531
0732700eb6c0
(outline-minor-mode): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
3376
diff
changeset
|
202 ;;;###autoload |
2900
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
203 (defun outline-minor-mode (&optional arg) |
2934
7c4226d1ea65
(outline-minor-mode): Make var permanent local in all buffers.
Richard M. Stallman <rms@gnu.org>
parents:
2900
diff
changeset
|
204 "Toggle Outline minor mode. |
7c4226d1ea65
(outline-minor-mode): Make var permanent local in all buffers.
Richard M. Stallman <rms@gnu.org>
parents:
2900
diff
changeset
|
205 With arg, turn Outline minor mode on if arg is positive, off otherwise. |
7c4226d1ea65
(outline-minor-mode): Make var permanent local in all buffers.
Richard M. Stallman <rms@gnu.org>
parents:
2900
diff
changeset
|
206 See the command `outline-mode' for more information on this mode." |
234 | 207 (interactive "P") |
208 (setq outline-minor-mode | |
209 (if (null arg) (not outline-minor-mode) | |
210 (> (prefix-numeric-value arg) 0))) | |
211 (if outline-minor-mode | |
212 (progn | |
213 (setq selective-display t) | |
214 (run-hooks 'outline-minor-mode-hook)) | |
4763
a57b0b715c04
(outline-minor-mode): Force update of modeline when outline-minor-mode
Brian Fox <bfox@gnu.org>
parents:
4623
diff
changeset
|
215 (setq selective-display nil)) |
5306
a2f8f9c4e29b
(outline-minor-mode): When turning off the mode, turn ^Ms back to \n's.
Richard M. Stallman <rms@gnu.org>
parents:
4763
diff
changeset
|
216 ;; When turning off outline mode, get rid of any ^M's. |
a2f8f9c4e29b
(outline-minor-mode): When turning off the mode, turn ^Ms back to \n's.
Richard M. Stallman <rms@gnu.org>
parents:
4763
diff
changeset
|
217 (or outline-minor-mode |
a2f8f9c4e29b
(outline-minor-mode): When turning off the mode, turn ^Ms back to \n's.
Richard M. Stallman <rms@gnu.org>
parents:
4763
diff
changeset
|
218 (outline-flag-region (point-min) (point-max) ?\n)) |
4763
a57b0b715c04
(outline-minor-mode): Force update of modeline when outline-minor-mode
Brian Fox <bfox@gnu.org>
parents:
4623
diff
changeset
|
219 (set-buffer-modified-p (buffer-modified-p))) |
234 | 220 |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
221 (defvar outline-level 'outline-level |
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
222 "Function of no args to compute a header's nesting level in an outline. |
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
223 It can assume point is at the beginning of a header line.") |
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
224 |
234 | 225 (defun outline-level () |
226 "Return the depth to which a statement is nested in the outline. | |
227 Point must be at the beginning of a header line. This is actually | |
228 the column number of the end of what `outline-regexp matches'." | |
229 (save-excursion | |
230 (looking-at outline-regexp) | |
231 (save-excursion (goto-char (match-end 0)) (current-column)))) | |
232 | |
233 (defun outline-next-preface () | |
234 "Skip forward to just before the next heading line." | |
235 (if (re-search-forward (concat "[\n\^M]\\(" outline-regexp "\\)") | |
236 nil 'move) | |
237 (goto-char (match-beginning 0))) | |
238 (if (memq (preceding-char) '(?\n ?\^M)) | |
239 (forward-char -1))) | |
240 | |
241 (defun outline-next-heading () | |
242 "Move to the next (possibly invisible) heading line." | |
243 (interactive) | |
244 (if (re-search-forward (concat "[\n\^M]\\(" outline-regexp "\\)") | |
245 nil 'move) | |
246 (goto-char (1+ (match-beginning 0))))) | |
247 | |
248 (defun outline-back-to-heading () | |
249 "Move to previous (possibly invisible) heading line, | |
250 or to the beginning of this line if it is a heading line." | |
251 (beginning-of-line) | |
252 (or (outline-on-heading-p) | |
253 (re-search-backward (concat "^\\(" outline-regexp "\\)") nil 'move))) | |
254 | |
255 (defun outline-on-heading-p () | |
256 "Return T if point is on a header line." | |
257 (save-excursion | |
258 (beginning-of-line) | |
259 (and (eq (preceding-char) ?\n) | |
260 (looking-at outline-regexp)))) | |
261 | |
262 (defun outline-end-of-heading () | |
263 (if (re-search-forward outline-heading-end-regexp nil 'move) | |
264 (forward-char -1))) | |
265 | |
266 (defun outline-next-visible-heading (arg) | |
267 "Move to the next visible heading line. | |
268 With argument, repeats or can move backward if negative. | |
269 A heading line is one that starts with a `*' (or that | |
270 `outline-regexp' matches)." | |
271 (interactive "p") | |
272 (if (< arg 0) | |
273 (beginning-of-line) | |
274 (end-of-line)) | |
275 (re-search-forward (concat "^\\(" outline-regexp "\\)") nil nil arg) | |
276 (beginning-of-line)) | |
277 | |
278 (defun outline-previous-visible-heading (arg) | |
279 "Move to the previous heading line. | |
280 With argument, repeats or can move forward if negative. | |
281 A heading line is one that starts with a `*' (or that | |
282 `outline-regexp' matches)." | |
283 (interactive "p") | |
284 (outline-next-visible-heading (- arg))) | |
285 | |
286 (defun outline-flag-region (from to flag) | |
287 "Hides or shows lines from FROM to TO, according to FLAG. | |
288 If FLAG is `\\n' (newline character) then text is shown, | |
289 while if FLAG is `\\^M' (control-M) the text is hidden." | |
3376
898d7a33c038
(outline-flag-region): Pass t as NOUNDO arg
Richard M. Stallman <rms@gnu.org>
parents:
2934
diff
changeset
|
290 (let (buffer-read-only) |
898d7a33c038
(outline-flag-region): Pass t as NOUNDO arg
Richard M. Stallman <rms@gnu.org>
parents:
2934
diff
changeset
|
291 (subst-char-in-region from to |
898d7a33c038
(outline-flag-region): Pass t as NOUNDO arg
Richard M. Stallman <rms@gnu.org>
parents:
2934
diff
changeset
|
292 (if (= flag ?\n) ?\^M ?\n) |
898d7a33c038
(outline-flag-region): Pass t as NOUNDO arg
Richard M. Stallman <rms@gnu.org>
parents:
2934
diff
changeset
|
293 flag t))) |
234 | 294 |
295 (defun hide-entry () | |
296 "Hide the body directly following this heading." | |
297 (interactive) | |
298 (outline-back-to-heading) | |
299 (outline-end-of-heading) | |
300 (save-excursion | |
301 (outline-flag-region (point) (progn (outline-next-preface) (point)) ?\^M))) | |
302 | |
303 (defun show-entry () | |
304 "Show the body directly following this heading." | |
305 (interactive) | |
306 (save-excursion | |
307 (outline-flag-region (point) (progn (outline-next-preface) (point)) ?\n))) | |
308 | |
309 (defun hide-body () | |
310 "Hide all of buffer except headings." | |
311 (interactive) | |
312 (hide-region-body (point-min) (point-max))) | |
313 | |
314 (defun hide-region-body (start end) | |
315 "Hide all body lines in the region, but not headings." | |
316 (save-excursion | |
317 (save-restriction | |
318 (narrow-to-region start end) | |
319 (goto-char (point-min)) | |
320 (if (outline-on-heading-p) | |
321 (outline-end-of-heading)) | |
322 (while (not (eobp)) | |
323 (outline-flag-region (point) | |
324 (progn (outline-next-preface) (point)) ?\^M) | |
325 (if (not (eobp)) | |
326 (progn | |
327 (forward-char | |
328 (if (looking-at "[\n\^M][\n\^M]") | |
329 2 1)) | |
330 (outline-end-of-heading))))))) | |
331 | |
332 (defun show-all () | |
333 "Show all of the text in the buffer." | |
334 (interactive) | |
335 (outline-flag-region (point-min) (point-max) ?\n)) | |
336 | |
337 (defun hide-subtree () | |
338 "Hide everything after this heading at deeper levels." | |
339 (interactive) | |
340 (outline-flag-subtree ?\^M)) | |
341 | |
342 (defun hide-leaves () | |
343 "Hide all body after this heading at deeper levels." | |
344 (interactive) | |
345 (outline-back-to-heading) | |
346 (outline-end-of-heading) | |
347 (hide-region-body (point) (progn (outline-end-of-subtree) (point)))) | |
348 | |
349 (defun show-subtree () | |
350 "Show everything after this heading at deeper levels." | |
351 (interactive) | |
352 (outline-flag-subtree ?\n)) | |
353 | |
6080
2f02deab5b9e
(hide-sublevels): Doc fix. Rename arg.
Richard M. Stallman <rms@gnu.org>
parents:
6077
diff
changeset
|
354 (defun hide-sublevels (levels) |
2f02deab5b9e
(hide-sublevels): Doc fix. Rename arg.
Richard M. Stallman <rms@gnu.org>
parents:
6077
diff
changeset
|
355 "Hide everything except the top LEVELS levels of headers." |
6077
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
356 (interactive "p") |
6080
2f02deab5b9e
(hide-sublevels): Doc fix. Rename arg.
Richard M. Stallman <rms@gnu.org>
parents:
6077
diff
changeset
|
357 (if (< levels 1) |
6077
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
358 (error "Must keep at least one level of headers")) |
6080
2f02deab5b9e
(hide-sublevels): Doc fix. Rename arg.
Richard M. Stallman <rms@gnu.org>
parents:
6077
diff
changeset
|
359 (setq levels (1- levels)) |
6077
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
360 (save-excursion |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
361 (goto-char (point-min)) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
362 (hide-subtree) |
6080
2f02deab5b9e
(hide-sublevels): Doc fix. Rename arg.
Richard M. Stallman <rms@gnu.org>
parents:
6077
diff
changeset
|
363 (show-children levels) |
6077
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
364 (condition-case err |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
365 (while (outline-get-next-sibling) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
366 (hide-subtree) |
6080
2f02deab5b9e
(hide-sublevels): Doc fix. Rename arg.
Richard M. Stallman <rms@gnu.org>
parents:
6077
diff
changeset
|
367 (show-children levels)) |
6077
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
368 (error nil)))) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
369 |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
370 (defun hide-other () |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
371 "Hide everything except for the current body and the parent headings." |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
372 (interactive) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
373 (outline-hide-sublevels 1) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
374 (let ((last (point)) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
375 (pos (point))) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
376 (while (save-excursion |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
377 (and (re-search-backward "[\n\r]" nil t) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
378 (eq (following-char) ?\r))) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
379 (save-excursion |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
380 (beginning-of-line) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
381 (if (eq last (point)) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
382 (progn |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
383 (outline-next-heading) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
384 (outline-flag-region last (point) ?\n)) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
385 (show-children) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
386 (setq last (point))))))) |
7c17887a0daf
(outline-minor-mode-prefix): Change to C-c C-o.
Richard M. Stallman <rms@gnu.org>
parents:
5876
diff
changeset
|
387 |
234 | 388 (defun outline-flag-subtree (flag) |
389 (save-excursion | |
390 (outline-back-to-heading) | |
391 (outline-end-of-heading) | |
392 (outline-flag-region (point) | |
393 (progn (outline-end-of-subtree) (point)) | |
394 flag))) | |
395 | |
396 (defun outline-end-of-subtree () | |
397 (outline-back-to-heading) | |
398 (let ((opoint (point)) | |
399 (first t) | |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
400 (level (funcall outline-level))) |
234 | 401 (while (and (not (eobp)) |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
402 (or first (> (funcall outline-level) level))) |
234 | 403 (setq first nil) |
404 (outline-next-heading)) | |
5786
730053369cab
(outline-end-of-subtree): If loop leaves us at eob,
Richard M. Stallman <rms@gnu.org>
parents:
5781
diff
changeset
|
405 (if (eobp) |
730053369cab
(outline-end-of-subtree): If loop leaves us at eob,
Richard M. Stallman <rms@gnu.org>
parents:
5781
diff
changeset
|
406 nil |
730053369cab
(outline-end-of-subtree): If loop leaves us at eob,
Richard M. Stallman <rms@gnu.org>
parents:
5781
diff
changeset
|
407 ;; go to end of line before heading |
730053369cab
(outline-end-of-subtree): If loop leaves us at eob,
Richard M. Stallman <rms@gnu.org>
parents:
5781
diff
changeset
|
408 (forward-char -1) |
730053369cab
(outline-end-of-subtree): If loop leaves us at eob,
Richard M. Stallman <rms@gnu.org>
parents:
5781
diff
changeset
|
409 ;; skip preceding balnk line, if there is one |
730053369cab
(outline-end-of-subtree): If loop leaves us at eob,
Richard M. Stallman <rms@gnu.org>
parents:
5781
diff
changeset
|
410 (if (memq (preceding-char) '(?\n ?\^M)) |
730053369cab
(outline-end-of-subtree): If loop leaves us at eob,
Richard M. Stallman <rms@gnu.org>
parents:
5781
diff
changeset
|
411 (forward-char -1))))) |
234 | 412 |
413 (defun show-branches () | |
414 "Show all subheadings of this heading, but not their bodies." | |
415 (interactive) | |
416 (show-children 1000)) | |
417 | |
418 (defun show-children (&optional level) | |
419 "Show all direct subheadings of this heading. | |
420 Prefix arg LEVEL is how many levels below the current level should be shown. | |
421 Default is enough to cause the following heading to appear." | |
422 (interactive "P") | |
423 (setq level | |
424 (if level (prefix-numeric-value level) | |
425 (save-excursion | |
426 (beginning-of-line) | |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
427 (let ((start-level (funcall outline-level))) |
234 | 428 (outline-next-heading) |
5711
6f772d7f1289
(show-children): Don't call outline-level at eob.
Richard M. Stallman <rms@gnu.org>
parents:
5693
diff
changeset
|
429 (if (eobp) |
6f772d7f1289
(show-children): Don't call outline-level at eob.
Richard M. Stallman <rms@gnu.org>
parents:
5693
diff
changeset
|
430 1 |
6f772d7f1289
(show-children): Don't call outline-level at eob.
Richard M. Stallman <rms@gnu.org>
parents:
5693
diff
changeset
|
431 (max 1 (- (funcall outline-level) start-level))))))) |
234 | 432 (save-excursion |
433 (save-restriction | |
434 (beginning-of-line) | |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
435 (setq level (+ level (funcall outline-level))) |
234 | 436 (narrow-to-region (point) |
5855
c23afcf4e954
(show-children): Don't narrow to (1+ (point-max)) when
Richard M. Stallman <rms@gnu.org>
parents:
5786
diff
changeset
|
437 (progn (outline-end-of-subtree) |
c23afcf4e954
(show-children): Don't narrow to (1+ (point-max)) when
Richard M. Stallman <rms@gnu.org>
parents:
5786
diff
changeset
|
438 (if (eobp) (point-max) (1+ (point))))) |
234 | 439 (goto-char (point-min)) |
440 (while (and (not (eobp)) | |
441 (progn | |
442 (outline-next-heading) | |
443 (not (eobp)))) | |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
444 (if (<= (funcall outline-level) level) |
234 | 445 (save-excursion |
446 (outline-flag-region (save-excursion | |
447 (forward-char -1) | |
448 (if (memq (preceding-char) '(?\n ?\^M)) | |
449 (forward-char -1)) | |
450 (point)) | |
451 (progn (outline-end-of-heading) (point)) | |
452 ?\n))))))) | |
453 | |
454 (defun outline-up-heading (arg) | |
455 "Move to the heading line of which the present line is a subheading. | |
456 With argument, move up ARG levels." | |
457 (interactive "p") | |
458 (outline-back-to-heading) | |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
459 (if (eq (funcall outline-level) 1) |
234 | 460 (error "")) |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
461 (while (and (> (funcall outline-level) 1) |
234 | 462 (> arg 0) |
463 (not (bobp))) | |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
464 (let ((present-level (funcall outline-level))) |
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
465 (while (not (< (funcall outline-level) present-level)) |
234 | 466 (outline-previous-visible-heading 1)) |
467 (setq arg (- arg 1))))) | |
468 | |
469 (defun outline-forward-same-level (arg) | |
470 "Move forward to the ARG'th subheading from here of the same level as the | |
471 present one. It stops at the first and last subheadings of a superior heading." | |
472 (interactive "p") | |
473 (outline-back-to-heading) | |
474 (while (> arg 0) | |
475 (let ((point-to-move-to (save-excursion | |
476 (outline-get-next-sibling)))) | |
477 (if point-to-move-to | |
478 (progn | |
479 (goto-char point-to-move-to) | |
480 (setq arg (1- arg))) | |
481 (progn | |
482 (setq arg 0) | |
483 (error "")))))) | |
484 | |
485 (defun outline-get-next-sibling () | |
486 "Position the point at the next heading of the same level, | |
487 and return that position or nil if it cannot be found." | |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
488 (let ((level (funcall outline-level))) |
234 | 489 (outline-next-visible-heading 1) |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
490 (while (and (> (funcall outline-level) level) |
234 | 491 (not (eobp))) |
492 (outline-next-visible-heading 1)) | |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
493 (if (< (funcall outline-level) level) |
234 | 494 nil |
495 (point)))) | |
496 | |
497 (defun outline-backward-same-level (arg) | |
498 "Move backward to the ARG'th subheading from here of the same level as the | |
499 present one. It stops at the first and last subheadings of a superior heading." | |
500 (interactive "p") | |
501 (outline-back-to-heading) | |
502 (while (> arg 0) | |
503 (let ((point-to-move-to (save-excursion | |
504 (outline-get-last-sibling)))) | |
505 (if point-to-move-to | |
506 (progn | |
507 (goto-char point-to-move-to) | |
508 (setq arg (1- arg))) | |
509 (progn | |
510 (setq arg 0) | |
511 (error "")))))) | |
512 | |
513 (defun outline-get-last-sibling () | |
514 "Position the point at the previous heading of the same level, | |
515 and return that position or nil if it cannot be found." | |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
516 (let ((level (funcall outline-level))) |
234 | 517 (outline-previous-visible-heading 1) |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
518 (while (and (> (funcall outline-level) level) |
234 | 519 (not (bobp))) |
520 (outline-previous-visible-heading 1)) | |
4623
3c1c4e9a4464
(outline-level): New var. Everything funcalls this
Richard M. Stallman <rms@gnu.org>
parents:
4622
diff
changeset
|
521 (if (< (funcall outline-level) level) |
234 | 522 nil |
523 (point)))) | |
524 | |
2900
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
525 (provide 'outline) |
443ebd8f59d2
(outline-heading-end-regexp): Fix typo.
Richard M. Stallman <rms@gnu.org>
parents:
2308
diff
changeset
|
526 |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
258
diff
changeset
|
527 ;;; outline.el ends here |