Mercurial > emacs
annotate lisp/textmodes/outline.el @ 50065:747150fd554a
*** empty log message ***
author | David Kastrup <dak@gnu.org> |
---|---|
date | Sun, 09 Mar 2003 22:47:22 +0000 |
parents | d32039b77774 |
children | d4f965eb8fd5 |
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 |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
35 ;; - better handle comments before function bodies (i.e. heading) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
36 ;; - don't bother hiding whitespace |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
37 |
10950 | 38 ;;; Code: |
39 | |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
40 (defgroup outlines nil |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
41 "Support for hierarchical outlining" |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
42 :prefix "outline-" |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
43 :group 'editing) |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
44 |
39261
fc133c103640
(outline-regexp): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
39238
diff
changeset
|
45 (defcustom outline-regexp "[*\^L]+" |
10950 | 46 "*Regular expression to match the beginning of a heading. |
47 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
|
48 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
|
49 so the regexp need not (and usually does not) start with `^'. |
10950 | 50 The recommended way to set this is with a Local Variables: list |
24627 | 51 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
|
52 :type '(choice regexp (const nil)) |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
53 :group 'outlines) |
10950 | 54 |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
55 (defcustom outline-heading-end-regexp "\n" |
10950 | 56 "*Regular expression to match the end of a heading line. |
57 You can assume that point is at the beginning of a heading when this | |
58 regexp is searched for. The heading ends at the end of the match. | |
59 The recommended way to set this is with a `Local Variables:' list | |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
60 in the file it applies to." |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
61 :type 'regexp |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
62 :group 'outlines) |
10950 | 63 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
64 (defvar outline-mode-prefix-map |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
65 (let ((map (make-sparse-keymap))) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
66 (define-key map "@" 'outline-mark-subtree) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
67 (define-key map "\C-n" 'outline-next-visible-heading) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
68 (define-key map "\C-p" 'outline-previous-visible-heading) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
69 (define-key map "\C-i" 'show-children) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
70 (define-key map "\C-s" 'show-subtree) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
71 (define-key map "\C-d" 'hide-subtree) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
72 (define-key map "\C-u" 'outline-up-heading) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
73 (define-key map "\C-f" 'outline-forward-same-level) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
74 (define-key map "\C-b" 'outline-backward-same-level) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
75 (define-key map "\C-t" 'hide-body) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
76 (define-key map "\C-a" 'show-all) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
77 (define-key map "\C-c" 'hide-entry) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
78 (define-key map "\C-e" 'show-entry) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
79 (define-key map "\C-l" 'hide-leaves) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
80 (define-key map "\C-k" 'show-branches) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
81 (define-key map "\C-q" 'hide-sublevels) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
82 (define-key map "\C-o" 'hide-other) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
83 (define-key map "\C-^" 'outline-promote) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
84 (define-key map "\C-v" 'outline-demote) |
45429
5d3b861665f0
(outline-reveal-toggle-invisible): Reverse the meaning of the second arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41782
diff
changeset
|
85 ;; Where to bind toggle and insert-heading ? |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
86 map)) |
10950 | 87 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
88 (defvar outline-mode-menu-bar-map |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
89 (let ((map (make-sparse-keymap))) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
90 |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
91 (define-key map [hide] (cons "Hide" (make-sparse-keymap "Hide"))) |
10950 | 92 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
93 (define-key map [hide hide-other] '("Hide Other" . hide-other)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
94 (define-key map [hide hide-sublevels] '("Hide Sublevels" . hide-sublevels)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
95 (define-key map [hide hide-subtree] '("Hide Subtree" . hide-subtree)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
96 (define-key map [hide hide-entry] '("Hide Entry" . hide-entry)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
97 (define-key map [hide hide-body] '("Hide Body" . hide-body)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
98 (define-key map [hide hide-leaves] '("Hide Leaves" . hide-leaves)) |
10950 | 99 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
100 (define-key map [show] (cons "Show" (make-sparse-keymap "Show"))) |
10950 | 101 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
102 (define-key map [show show-subtree] '("Show Subtree" . show-subtree)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
103 (define-key map [show show-children] '("Show Children" . show-children)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
104 (define-key map [show show-branches] '("Show Branches" . show-branches)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
105 (define-key map [show show-entry] '("Show Entry" . show-entry)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
106 (define-key map [show show-all] '("Show All" . show-all)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
107 |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
108 (define-key map [headings] |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
109 (cons "Headings" (make-sparse-keymap "Headings"))) |
10950 | 110 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
111 (define-key map [headings copy] |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
112 '(menu-item "Copy to kill ring" outline-headers-as-kill |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
113 :enable mark-active)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
114 (define-key map [headings outline-backward-same-level] |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
115 '("Previous Same Level" . outline-backward-same-level)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
116 (define-key map [headings outline-forward-same-level] |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
117 '("Next Same Level" . outline-forward-same-level)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
118 (define-key map [headings outline-previous-visible-heading] |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
119 '("Previous" . outline-previous-visible-heading)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
120 (define-key map [headings outline-next-visible-heading] |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
121 '("Next" . outline-next-visible-heading)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
122 (define-key map [headings outline-up-heading] |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
123 '("Up" . outline-up-heading)) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
124 map)) |
10950 | 125 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
126 (defvar outline-minor-mode-menu-bar-map |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
127 (let ((map (make-sparse-keymap))) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
128 (define-key map [outline] |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
129 (cons "Outline" |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
130 (nconc (make-sparse-keymap "Outline") |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
131 ;; Remove extra separator |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
132 (cdr |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
133 ;; Flatten the major mode's menus into a single menu. |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
134 (apply 'append |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
135 (mapcar (lambda (x) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
136 (if (consp x) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
137 ;; Add a separator between each |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
138 ;; part of the unified menu. |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
139 (cons '(--- "---") (cdr x)))) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
140 outline-mode-menu-bar-map)))))) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
141 map)) |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48930
diff
changeset
|
142 |
10950 | 143 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
144 (defvar outline-mode-map |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
145 (let ((map (make-sparse-keymap))) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
146 (define-key map "\C-c" outline-mode-prefix-map) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
147 (define-key map [menu-bar] outline-mode-menu-bar-map) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
148 map)) |
10950 | 149 |
150 (defvar outline-font-lock-keywords | |
20175
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
151 '(;; |
ea977d99058b
(outline-font-lock-keywords): Highlight the
Karl Heuer <kwzh@gnu.org>
parents:
20062
diff
changeset
|
152 ;; Highlight headings according to the level. |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
153 (eval . (list (concat "^\\(?:" outline-regexp "\\).+") |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
154 0 '(outline-font-lock-face) nil t))) |
10950 | 155 "Additional expressions to highlight in Outline mode.") |
156 | |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
157 (defface outline-1 '((t :inherit font-lock-function-name-face)) "Level 1.") |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
158 (defface outline-2 '((t :inherit font-lock-variable-name-face)) "Level 2.") |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
159 (defface outline-3 '((t :inherit font-lock-keyword-face)) "Level 3.") |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
160 (defface outline-4 '((t :inherit font-lock-builtin-face)) "Level 4.") |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
161 (defface outline-5 '((t :inherit font-lock-comment-face)) "Level 5.") |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
162 (defface outline-6 '((t :inherit font-lock-constant-face)) "Level 6.") |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
163 (defface outline-7 '((t :inherit font-lock-type-face)) "Level 7.") |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
164 (defface outline-8 '((t :inherit font-lock-string-face)) "Level 8.") |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
165 |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
166 (defvar outline-font-lock-faces |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
167 [outline-1 outline-2 outline-3 outline-4 |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
168 outline-5 outline-6 outline-7 outline-8]) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
169 |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
170 (defvar outline-font-lock-levels nil) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
171 (make-variable-buffer-local 'outline-font-lock-levels) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
172 |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
173 (defun outline-font-lock-face () |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
174 ;; (save-excursion |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
175 ;; (outline-back-to-heading t) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
176 ;; (let* ((count 0) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
177 ;; (start-level (funcall outline-level)) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
178 ;; (level start-level) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
179 ;; face-level) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
180 ;; (while (not (setq face-level |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
181 ;; (if (or (bobp) (eq level 1)) 0 |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
182 ;; (cdr (assq level outline-font-lock-levels))))) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
183 ;; (outline-up-heading 1 t) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
184 ;; (setq count (1+ count)) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
185 ;; (setq level (funcall outline-level))) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
186 ;; ;; Remember for later. |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
187 ;; (unless (zerop count) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
188 ;; (setq face-level (+ face-level count)) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
189 ;; (push (cons start-level face-level) outline-font-lock-levels)) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
190 ;; (condition-case nil |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
191 ;; (aref outline-font-lock-faces face-level) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
192 ;; (error font-lock-warning-face)))) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
193 (save-excursion |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
194 (goto-char (match-beginning 0)) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
195 (looking-at outline-regexp) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
196 (condition-case nil |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
197 (aref outline-font-lock-faces (1- (funcall outline-level))) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
198 (error font-lock-warning-face)))) |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
199 |
13259
11899bfa541c
(outline-view-change-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
12604
diff
changeset
|
200 (defvar outline-view-change-hook nil |
11899bfa541c
(outline-view-change-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
12604
diff
changeset
|
201 "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
|
202 |
17688
b02bb31c98b0
(outline-mode): Autoload cookie added.
Richard M. Stallman <rms@gnu.org>
parents:
17687
diff
changeset
|
203 ;;;###autoload |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
204 (define-derived-mode outline-mode text-mode "Outline" |
10950 | 205 "Set major mode for editing outlines with selective display. |
206 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
|
207 two for subheadings, etc. Lines not starting with asterisks are body lines. |
10950 | 208 |
209 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
|
210 invisible, or visible again. Invisible lines are attached to the end |
10950 | 211 of the heading, so they move with it, if the line is killed and yanked |
212 back. A heading with text hidden under it is marked with an ellipsis (...). | |
213 | |
214 Commands:\\<outline-mode-map> | |
215 \\[outline-next-visible-heading] outline-next-visible-heading move by visible headings | |
216 \\[outline-previous-visible-heading] outline-previous-visible-heading | |
217 \\[outline-forward-same-level] outline-forward-same-level similar but skip subheadings | |
218 \\[outline-backward-same-level] outline-backward-same-level | |
219 \\[outline-up-heading] outline-up-heading move from subheading to heading | |
220 | |
221 \\[hide-body] make all text invisible (not headings). | |
222 \\[show-all] make everything in buffer visible. | |
48675
8da64061d63d
(outline-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
48001
diff
changeset
|
223 \\[hide-sublevels] make only the first N levels of headers visible. |
10950 | 224 |
225 The remaining commands are used when point is on a heading line. | |
226 They apply to some of the body or subheadings of that heading. | |
227 \\[hide-subtree] hide-subtree make body and subheadings invisible. | |
228 \\[show-subtree] show-subtree make body and subheadings visible. | |
229 \\[show-children] show-children make direct subheadings visible. | |
230 No effect on body, or subheadings 2 or more levels down. | |
231 With arg N, affects subheadings N levels down. | |
232 \\[hide-entry] make immediately following body invisible. | |
233 \\[show-entry] make it visible. | |
234 \\[hide-leaves] make body under heading and under its subheadings invisible. | |
235 The subheadings remain visible. | |
236 \\[show-branches] make all subheadings at all levels visible. | |
237 | |
238 The variable `outline-regexp' can be changed to control what is a heading. | |
239 A line is a heading if `outline-regexp' matches something at the | |
240 beginning of the line. The longer the match, the deeper the level. | |
241 | |
242 Turning on outline mode calls the value of `text-mode-hook' and then of | |
243 `outline-mode-hook', if they are non-nil." | |
244 (make-local-variable 'line-move-ignore-invisible) | |
245 (setq line-move-ignore-invisible t) | |
246 ;; 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
|
247 (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
|
248 (set (make-local-variable 'paragraph-start) |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
249 (concat paragraph-start "\\|\\(?:" outline-regexp "\\)")) |
10950 | 250 ;; 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
|
251 (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
|
252 (set (make-local-variable 'paragraph-separate) |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
253 (concat paragraph-separate "\\|\\(?:" outline-regexp "\\)")) |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
254 (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
|
255 '(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
|
256 (setq imenu-generic-expression |
39238
7370effcd55c
(outline-mode): Use `^' and a shy group
Gerd Moellmann <gerd@gnu.org>
parents:
37920
diff
changeset
|
257 (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
|
258 (add-hook 'change-major-mode-hook 'show-all nil t)) |
10950 | 259 |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
260 (defcustom outline-minor-mode-prefix "\C-c@" |
10950 | 261 "*Prefix key to use for Outline commands in Outline minor mode. |
262 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
|
263 After that, changing the prefix key requires manipulating keymaps." |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
264 :type 'string |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
265 :group 'outlines) |
10950 | 266 |
17688
b02bb31c98b0
(outline-mode): Autoload cookie added.
Richard M. Stallman <rms@gnu.org>
parents:
17687
diff
changeset
|
267 ;;;###autoload |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
268 (define-minor-mode outline-minor-mode |
10950 | 269 "Toggle Outline minor mode. |
270 With arg, turn Outline minor mode on if arg is positive, off otherwise. | |
271 See the command `outline-mode' for more information on this mode." | |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
272 nil " Outl" (list (cons [menu-bar] outline-minor-mode-menu-bar-map) |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
273 (cons outline-minor-mode-prefix outline-mode-prefix-map)) |
47988
c392f8b359aa
(outline-minor-mode): Add customization group.
Juanma Barranquero <lekktu@gmail.com>
parents:
47735
diff
changeset
|
274 :group 'outlines |
10950 | 275 (if outline-minor-mode |
276 (progn | |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
277 ;; 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
|
278 (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
|
279 (lambda () (outline-minor-mode -1)) |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
280 nil t) |
31986
350d5ee0e430
(outline-minor-mode): Use define-minor-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30881
diff
changeset
|
281 (set (make-local-variable 'line-move-ignore-invisible) t) |
10950 | 282 ;; 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
|
283 (add-to-invisibility-spec '(outline . t))) |
10950 | 284 (setq line-move-ignore-invisible nil) |
285 ;; Cause use of ellipses for invisible text. | |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
286 (remove-from-invisibility-spec '(outline . t)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
287 ;; When turning off outline mode, get rid of any outline hiding. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
288 (show-all))) |
10950 | 289 |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
290 (defcustom outline-level 'outline-level |
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
291 "*Function of no args to compute a header's nesting level in an outline. |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
292 It can assume point is at the beginning of a header line and that the match |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
293 data reflects the `outline-regexp'." |
17687
e6d5322b810c
Use defgroup and defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
17249
diff
changeset
|
294 :type 'function |
17690
3fa9da85b3ea
Fix customization change.
Richard M. Stallman <rms@gnu.org>
parents:
17688
diff
changeset
|
295 :group 'outlines) |
10950 | 296 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
297 (defvar outline-heading-alist () |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
298 "Alist associating a heading for every possible level. |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
299 Each entry is of the form (HEADING . LEVEL). |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
300 This alist is used both to find the heading corresponding to |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
301 a given level and to find the level of a given heading.") |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
302 (make-variable-buffer-local 'outline-heading-alist) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
303 |
10950 | 304 ;; This used to count columns rather than characters, but that made ^L |
305 ;; appear to be at level 2 instead of 1. Columns would be better for | |
306 ;; tab handling, but the default regexp doesn't use tabs, and anyone | |
307 ;; who changes the regexp can also redefine the outline-level variable | |
308 ;; as appropriate. | |
309 (defun outline-level () | |
310 "Return the depth to which a statement is nested in the outline. | |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
311 Point must be at the beginning of a header line. |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
312 This is actually either the level specified in `outline-heading-alist' |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
313 or else the number of characters matched by `outline-regexp'." |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
314 (or (cdr (assoc (match-string 0) outline-heading-alist)) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
315 (- (match-end 0) (match-beginning 0)))) |
10950 | 316 |
317 (defun outline-next-preface () | |
318 "Skip forward to just before the next heading line. | |
319 If there's no following heading line, stop before the newline | |
320 at the end of the buffer." | |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
321 (if (re-search-forward (concat "\n\\(?:" outline-regexp "\\)") |
10950 | 322 nil 'move) |
323 (goto-char (match-beginning 0))) | |
20426 | 324 (if (and (bolp) (not (bobp))) |
10950 | 325 (forward-char -1))) |
326 | |
327 (defun outline-next-heading () | |
328 "Move to the next (possibly invisible) heading line." | |
329 (interactive) | |
48001
4e7ef1c1f0dd
(outline-next-heading): Make sure the match-data is correct where returning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47988
diff
changeset
|
330 ;; Make sure we don't match the heading we're at. |
4e7ef1c1f0dd
(outline-next-heading): Make sure the match-data is correct where returning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47988
diff
changeset
|
331 (if (and (bolp) (not (eobp))) (forward-char 1)) |
4e7ef1c1f0dd
(outline-next-heading): Make sure the match-data is correct where returning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47988
diff
changeset
|
332 (if (re-search-forward (concat "^\\(?:" outline-regexp "\\)") |
10950 | 333 nil 'move) |
48001
4e7ef1c1f0dd
(outline-next-heading): Make sure the match-data is correct where returning.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47988
diff
changeset
|
334 (goto-char (match-beginning 0)))) |
10950 | 335 |
25177
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
336 (defun outline-previous-heading () |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
337 "Move to the previous (possibly invisible) heading line." |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
338 (interactive) |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
339 (re-search-backward (concat "^\\(?:" outline-regexp "\\)") |
25177
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
340 nil 'move)) |
0ac130f2181a
(outline-previous-heading): New function.
Richard M. Stallman <rms@gnu.org>
parents:
25148
diff
changeset
|
341 |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
342 (defsubst outline-invisible-p () |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
343 "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
|
344 (get-char-property (point) 'invisible)) |
49622
d32039b77774
(outline-visible): Add obsolescence declaration and remove redundant info from
Juanma Barranquero <lekktu@gmail.com>
parents:
49599
diff
changeset
|
345 |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
346 (defun outline-visible () |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
347 (not (outline-invisible-p))) |
49622
d32039b77774
(outline-visible): Add obsolescence declaration and remove redundant info from
Juanma Barranquero <lekktu@gmail.com>
parents:
49599
diff
changeset
|
348 (make-obsolete 'outline-visible 'outline-invisible-p) |
10950 | 349 |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
350 (defun outline-back-to-heading (&optional invisible-ok) |
10950 | 351 "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
|
352 Only visible heading lines are considered, unless INVISIBLE-OK is non-nil." |
10950 | 353 (beginning-of-line) |
24457
5ab0869ed2c8
(outline-back-to-heading): fix invisible-ok.
Karl Heuer <kwzh@gnu.org>
parents:
24442
diff
changeset
|
354 (or (outline-on-heading-p invisible-ok) |
10950 | 355 (let (found) |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
356 (save-excursion |
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
357 (while (not found) |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
358 (or (re-search-backward (concat "^\\(?:" outline-regexp "\\)") |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
359 nil t) |
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
360 (error "before first heading")) |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
361 (setq found (and (or invisible-ok (not (outline-invisible-p))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
362 (point))))) |
15518
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
363 (goto-char found) |
d01e58c9e431
(outline-minor-mode): No longer permanent local.
Richard M. Stallman <rms@gnu.org>
parents:
15466
diff
changeset
|
364 found))) |
10950 | 365 |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
366 (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
|
367 "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
|
368 If INVISIBLE-OK is non-nil, an invisible heading line is ok too." |
10950 | 369 (save-excursion |
370 (beginning-of-line) | |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
371 (and (bolp) (or invisible-ok (not (outline-invisible-p))) |
10950 | 372 (looking-at outline-regexp)))) |
373 | |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
374 (defun outline-insert-heading () |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
375 "Insert a new heading at same depth at point." |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
376 (interactive) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
377 (let ((head (save-excursion |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
378 (condition-case nil |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
379 (outline-back-to-heading) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
380 (error (outline-next-heading))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
381 (if (eobp) |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
382 (or (caar outline-heading-alist) "") |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
383 (match-string 0))))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
384 (unless (or (string-match "[ \t]\\'" head) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
385 (not (string-match outline-regexp (concat head " ")))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
386 (setq head (concat head " "))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
387 (unless (bolp) (end-of-line) (newline)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
388 (insert head) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
389 (unless (eolp) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
390 (save-excursion (newline-and-indent))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
391 (run-hooks 'outline-insert-heading-hook))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
392 |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
393 (defun outline-promote (&optional children) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
394 "Promote the current heading higher up the tree. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
395 If prefix argument CHILDREN is given, promote also all the children." |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
396 (interactive "P") |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
397 (outline-back-to-heading) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
398 (let* ((head (match-string 0)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
399 (level (save-match-data (funcall outline-level))) |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
400 (up-head (or (car (rassoc (1- level) outline-heading-alist)) |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
401 (save-excursion |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
402 (save-match-data |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
403 (outline-up-heading 1 t) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
404 (match-string 0)))))) |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48930
diff
changeset
|
405 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
406 (unless (rassoc level outline-heading-alist) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
407 (push (cons head level) outline-heading-alist)) |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
408 |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
409 (replace-match up-head nil t) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
410 (when children |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
411 (outline-map-tree 'outline-promote level)))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
412 |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
413 (defun outline-demote (&optional children) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
414 "Demote the current heading lower down the tree. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
415 If prefix argument CHILDREN is given, demote also all the children." |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
416 (interactive "P") |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
417 (outline-back-to-heading) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
418 (let* ((head (match-string 0)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
419 (level (save-match-data (funcall outline-level))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
420 (down-head |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
421 (or (car (rassoc (1+ level) outline-heading-alist)) |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
422 (save-excursion |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
423 (save-match-data |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
424 (while (and (not (eobp)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
425 (progn |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
426 (outline-next-heading) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
427 (<= (funcall outline-level) level)))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
428 (when (eobp) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
429 ;; Try again from the beginning of the buffer. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
430 (goto-char (point-min)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
431 (while (and (not (eobp)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
432 (progn |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
433 (outline-next-heading) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
434 (<= (funcall outline-level) level))))) |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
435 (unless (eobp) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
436 (looking-at outline-regexp) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
437 (match-string 0)))) |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
438 (save-match-data |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
439 ;; Bummer!! There is no lower heading in the buffer. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
440 ;; Let's try to invent one by repeating the first char. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
441 (let ((new-head (concat (substring head 0 1) head))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
442 (if (string-match (concat "\\`" outline-regexp) new-head) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
443 ;; Why bother checking that it is indeed of lower level ? |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
444 new-head |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
445 ;; Didn't work: keep it as is so it's still a heading. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
446 head)))))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
447 |
41782
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
448 (unless (rassoc level outline-heading-alist) |
eea433180987
(outline-mode-prefix-map): Add bindings for outline-promote and outline-demote.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41700
diff
changeset
|
449 (push (cons head level) outline-heading-alist)) |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48930
diff
changeset
|
450 |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
451 (replace-match down-head nil t) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
452 (when children |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
453 (outline-map-tree 'outline-demote level)))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
454 |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
455 (defun outline-map-tree (fun level) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
456 "Call FUN for every heading underneath the current one." |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
457 (save-excursion |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
458 (while (and (progn |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
459 (outline-next-heading) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
460 (> (funcall outline-level) level)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
461 (not (eobp))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
462 (funcall fun)))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
463 |
10950 | 464 (defun outline-end-of-heading () |
465 (if (re-search-forward outline-heading-end-regexp nil 'move) | |
466 (forward-char -1))) | |
467 | |
468 (defun outline-next-visible-heading (arg) | |
469 "Move to the next visible heading line. | |
470 With argument, repeats or can move backward if negative. | |
471 A heading line is one that starts with a `*' (or that | |
472 `outline-regexp' matches)." | |
473 (interactive "p") | |
474 (if (< arg 0) | |
475 (beginning-of-line) | |
476 (end-of-line)) | |
12604
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
477 (while (and (not (bobp)) (< arg 0)) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
478 (while (and (not (bobp)) |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
479 (re-search-backward (concat "^\\(?:" outline-regexp "\\)") |
12604
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
480 nil 'move) |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
481 (outline-invisible-p))) |
12604
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
482 (setq arg (1+ arg))) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
483 (while (and (not (eobp)) (> arg 0)) |
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
484 (while (and (not (eobp)) |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
485 (re-search-forward (concat "^\\(?:" outline-regexp "\\)") |
12604
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
486 nil 'move) |
48930
2cbcb30abe6f
(outline-next-visible-heading):
Richard M. Stallman <rms@gnu.org>
parents:
48675
diff
changeset
|
487 (save-excursion |
2cbcb30abe6f
(outline-next-visible-heading):
Richard M. Stallman <rms@gnu.org>
parents:
48675
diff
changeset
|
488 (goto-char (match-beginning 0)) |
2cbcb30abe6f
(outline-next-visible-heading):
Richard M. Stallman <rms@gnu.org>
parents:
48675
diff
changeset
|
489 (outline-invisible-p)))) |
12604
140e46e751a0
(outline-next-visible-heading): Rewritten to handle
Richard M. Stallman <rms@gnu.org>
parents:
11736
diff
changeset
|
490 (setq arg (1- arg))) |
10950 | 491 (beginning-of-line)) |
492 | |
493 (defun outline-previous-visible-heading (arg) | |
494 "Move to the previous heading line. | |
495 With argument, repeats or can move forward if negative. | |
496 A heading line is one that starts with a `*' (or that | |
497 `outline-regexp' matches)." | |
498 (interactive "p") | |
499 (outline-next-visible-heading (- arg))) | |
500 | |
17249
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
501 (defun outline-mark-subtree () |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
502 "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
|
503 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
|
504 (interactive) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
505 (let ((beg)) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
506 (if (outline-on-heading-p) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
507 ;; we are already looking at a heading |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
508 (beginning-of-line) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
509 ;; else go back to previous heading |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
510 (outline-previous-visible-heading 1)) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
511 (setq beg (point)) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
512 (outline-end-of-subtree) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
513 (push-mark (point)) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
514 (goto-char beg))) |
2dfc334bdc6f
(outline-discard-overlays): Fix the case
Richard M. Stallman <rms@gnu.org>
parents:
17248
diff
changeset
|
515 |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
516 |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
517 (put 'outline 'reveal-toggle-invisible 'outline-reveal-toggle-invisible) |
10950 | 518 (defun outline-flag-region (from to flag) |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
519 "Hide or show lines from FROM to TO, according to FLAG. |
10950 | 520 If FLAG is nil then text is shown, while if FLAG is t the text is hidden." |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
521 (remove-overlays from to 'invisible 'outline) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
522 (when flag |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
523 (let ((o (make-overlay from to))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
524 (overlay-put o 'invisible 'outline) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
525 (overlay-put o 'isearch-open-invisible 'outline-isearch-open-invisible))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
526 ;; Seems only used by lazy-lock. I.e. obsolete. |
13259
11899bfa541c
(outline-view-change-hook): New hook variable.
Richard M. Stallman <rms@gnu.org>
parents:
12604
diff
changeset
|
527 (run-hooks 'outline-view-change-hook)) |
10996
356f658dbd65
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
10950
diff
changeset
|
528 |
45429
5d3b861665f0
(outline-reveal-toggle-invisible): Reverse the meaning of the second arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41782
diff
changeset
|
529 (defun outline-reveal-toggle-invisible (o hidep) |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
530 (save-excursion |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
531 (goto-char (overlay-start o)) |
45429
5d3b861665f0
(outline-reveal-toggle-invisible): Reverse the meaning of the second arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41782
diff
changeset
|
532 (if hidep |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
533 ;; When hiding the area again, we could just clean it up and let |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
534 ;; reveal do the rest, by simply doing: |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
535 ;; (remove-overlays (overlay-start o) (overlay-end o) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
536 ;; 'invisible 'outline) |
49599
5ade352e8d1c
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48930
diff
changeset
|
537 ;; |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
538 ;; That works fine as long as everything is in sync, but if the |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
539 ;; structure of the document is changed while revealing parts of it, |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
540 ;; the resulting behavior can be ugly. I.e. we need to make |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
541 ;; sure that we hide exactly a subtree. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
542 (progn |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
543 (let ((end (overlay-end o))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
544 (delete-overlay o) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
545 (while (progn |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
546 (hide-subtree) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
547 (outline-next-visible-heading 1) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
548 (and (not (eobp)) (< (point) end)))))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
549 |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
550 ;; When revealing, we just need to reveal sublevels. If point is |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
551 ;; inside one of the sublevels, reveal will call us again. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
552 ;; But we need to preserve the original overlay. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
553 (let ((o1 (copy-overlay o))) |
45429
5d3b861665f0
(outline-reveal-toggle-invisible): Reverse the meaning of the second arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41782
diff
changeset
|
554 (overlay-put o 'invisible nil) ;Show (most of) the text. |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
555 (while (progn |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
556 (show-entry) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
557 (show-children) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
558 ;; Normally just the above is needed. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
559 ;; But in odd cases, the above might fail to show anything. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
560 ;; To avoid an infinite loop, we have to make sure that |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
561 ;; *something* gets shown. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
562 (and (equal (overlay-start o) (overlay-start o1)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
563 (< (point) (overlay-end o)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
564 (= 0 (forward-line 1))))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
565 ;; If still nothing was shown, just kill the damn thing. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
566 (when (equal (overlay-start o) (overlay-start o1)) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
567 ;; I've seen it happen at the end of buffer. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
568 (delete-overlay o1)))))) |
21439
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
569 |
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
570 ;; 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
|
571 ;; to the overlay that makes the outline invisible (see |
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
572 ;; `outline-flag-region'). |
2280d06ab327
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21438
diff
changeset
|
573 (defun outline-isearch-open-invisible (overlay) |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
574 ;; We rely on the fact that isearch places point on the matched text. |
33797
b5df14d31790
(outline-flag-region):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31986
diff
changeset
|
575 (show-entry)) |
10950 | 576 |
577 (defun hide-entry () | |
578 "Hide the body directly following this heading." | |
579 (interactive) | |
580 (outline-back-to-heading) | |
581 (outline-end-of-heading) | |
582 (save-excursion | |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
583 (outline-flag-region (point) (progn (outline-next-preface) (point)) t))) |
10950 | 584 |
585 (defun show-entry () | |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
586 "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
|
587 Show the heading too, if it is currently invisible." |
10950 | 588 (interactive) |
589 (save-excursion | |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
590 (outline-back-to-heading t) |
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
591 (outline-flag-region (1- (point)) |
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
592 (progn (outline-next-preface) (point)) nil))) |
10950 | 593 |
594 (defun hide-body () | |
595 "Hide all of buffer except headings." | |
596 (interactive) | |
597 (hide-region-body (point-min) (point-max))) | |
598 | |
599 (defun hide-region-body (start end) | |
600 "Hide all body lines in the region, but not headings." | |
23366 | 601 ;; Nullify the hook to avoid repeated calls to `outline-flag-region' |
602 ;; wasting lots of time running `lazy-lock-fontify-after-outline' | |
603 ;; and run the hook finally. | |
604 (let (outline-view-change-hook) | |
605 (save-excursion | |
606 (save-restriction | |
607 (narrow-to-region start end) | |
608 (goto-char (point-min)) | |
609 (if (outline-on-heading-p) | |
610 (outline-end-of-heading)) | |
611 (while (not (eobp)) | |
612 (outline-flag-region (point) | |
613 (progn (outline-next-preface) (point)) t) | |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
614 (unless (eobp) |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
615 (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
|
616 (outline-end-of-heading)))))) |
23366 | 617 (run-hooks 'outline-view-change-hook)) |
10950 | 618 |
619 (defun show-all () | |
620 "Show all of the text in the buffer." | |
621 (interactive) | |
622 (outline-flag-region (point-min) (point-max) nil)) | |
623 | |
624 (defun hide-subtree () | |
625 "Hide everything after this heading at deeper levels." | |
626 (interactive) | |
627 (outline-flag-subtree t)) | |
628 | |
629 (defun hide-leaves () | |
630 "Hide all body after this heading at deeper levels." | |
631 (interactive) | |
632 (outline-back-to-heading) | |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
633 (save-excursion |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
634 (outline-end-of-heading) |
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
635 (hide-region-body (point) (progn (outline-end-of-subtree) (point))))) |
10950 | 636 |
637 (defun show-subtree () | |
638 "Show everything after this heading at deeper levels." | |
639 (interactive) | |
640 (outline-flag-subtree nil)) | |
641 | |
642 (defun hide-sublevels (levels) | |
643 "Hide everything but the top LEVELS levels of headers, in whole buffer." | |
644 (interactive "p") | |
645 (if (< levels 1) | |
646 (error "Must keep at least one level of headers")) | |
647 (setq levels (1- levels)) | |
23366 | 648 (let (outline-view-change-hook) |
649 (save-excursion | |
650 (goto-char (point-min)) | |
651 ;; Keep advancing to the next top-level heading. | |
652 (while (or (and (bobp) (outline-on-heading-p)) | |
653 (outline-next-heading)) | |
654 (let ((end (save-excursion (outline-end-of-subtree) (point)))) | |
655 ;; Hide everything under that. | |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
656 (outline-end-of-heading) |
23366 | 657 (outline-flag-region (point) end t) |
658 ;; Show the first LEVELS levels under that. | |
659 (if (> levels 0) | |
660 (show-children levels)) | |
661 ;; Move to the next, since we already found it. | |
662 (goto-char end))))) | |
663 (run-hooks 'outline-view-change-hook)) | |
10950 | 664 |
665 (defun hide-other () | |
20062
bf3f4dc09cc0
(outline-back-to-heading): New arg INVISIBLE-OK.
Karl Heuer <kwzh@gnu.org>
parents:
19959
diff
changeset
|
666 "Hide everything except current body and parent and top-level headings." |
10950 | 667 (interactive) |
668 (hide-sublevels 1) | |
23366 | 669 (let (outline-view-change-hook) |
670 (save-excursion | |
671 (outline-back-to-heading t) | |
672 (show-entry) | |
37920
abf444fe5166
(outline-mode): Fix font-lock-defaults.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37751
diff
changeset
|
673 (while (condition-case nil (progn (outline-up-heading 1) (not (bobp))) |
23366 | 674 (error nil)) |
675 (outline-flag-region (1- (point)) | |
676 (save-excursion (forward-line 1) (point)) | |
677 nil)))) | |
678 (run-hooks 'outline-view-change-hook)) | |
10950 | 679 |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
680 (defun outline-toggle-children () |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
681 "Show or hide the current subtree depending on its current state." |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
682 (interactive) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
683 (outline-back-to-heading) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
684 (if (save-excursion |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
685 (end-of-line) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
686 (not (outline-invisible-p))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
687 (hide-subtree) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
688 (show-children) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
689 (show-entry))) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
690 |
10950 | 691 (defun outline-flag-subtree (flag) |
692 (save-excursion | |
693 (outline-back-to-heading) | |
694 (outline-end-of-heading) | |
695 (outline-flag-region (point) | |
696 (progn (outline-end-of-subtree) (point)) | |
697 flag))) | |
698 | |
699 (defun outline-end-of-subtree () | |
700 (outline-back-to-heading) | |
701 (let ((opoint (point)) | |
702 (first t) | |
703 (level (funcall outline-level))) | |
704 (while (and (not (eobp)) | |
705 (or first (> (funcall outline-level) level))) | |
706 (setq first nil) | |
707 (outline-next-heading)) | |
708 (if (bolp) | |
709 (progn | |
710 ;; Go to end of line before heading | |
711 (forward-char -1) | |
712 (if (bolp) | |
713 ;; leave blank line before heading | |
714 (forward-char -1)))))) | |
715 | |
716 (defun show-branches () | |
717 "Show all subheadings of this heading, but not their bodies." | |
718 (interactive) | |
719 (show-children 1000)) | |
720 | |
721 (defun show-children (&optional level) | |
722 "Show all direct subheadings of this heading. | |
723 Prefix arg LEVEL is how many levels below the current level should be shown. | |
724 Default is enough to cause the following heading to appear." | |
725 (interactive "P") | |
726 (setq level | |
727 (if level (prefix-numeric-value level) | |
728 (save-excursion | |
729 (outline-back-to-heading) | |
730 (let ((start-level (funcall outline-level))) | |
731 (outline-next-heading) | |
732 (if (eobp) | |
733 1 | |
734 (max 1 (- (funcall outline-level) start-level))))))) | |
23366 | 735 (let (outline-view-change-hook) |
736 (save-excursion | |
737 (save-restriction | |
738 (outline-back-to-heading) | |
739 (setq level (+ level (funcall outline-level))) | |
740 (narrow-to-region (point) | |
741 (progn (outline-end-of-subtree) | |
742 (if (eobp) (point-max) (1+ (point))))) | |
743 (goto-char (point-min)) | |
744 (while (and (not (eobp)) | |
745 (progn | |
746 (outline-next-heading) | |
747 (not (eobp)))) | |
748 (if (<= (funcall outline-level) level) | |
749 (save-excursion | |
750 (outline-flag-region (save-excursion | |
751 (forward-char -1) | |
752 (if (bolp) | |
753 (forward-char -1)) | |
754 (point)) | |
755 (progn (outline-end-of-heading) (point)) | |
756 nil))))))) | |
757 (run-hooks 'outline-view-change-hook)) | |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
758 |
10950 | 759 |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
760 |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
761 (defun outline-up-heading (arg &optional invisible-ok) |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
762 "Move to the visible heading line of which the present line is a subheading. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
763 With argument, move up ARG levels. |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
764 If INVISIBLE-OK is non-nil, also consider invisible lines." |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
765 (interactive "p") |
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
766 (outline-back-to-heading invisible-ok) |
47735
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
767 (let ((start-level (funcall outline-level))) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
768 (if (eq start-level 1) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
769 (error "Already at top level of the outline")) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
770 (while (and (> start-level 1) (> arg 0) (not (bobp))) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
771 (let ((level start-level)) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
772 (while (not (or (< level start-level) (bobp))) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
773 (if invisible-ok |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
774 (outline-previous-heading) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
775 (outline-previous-visible-heading 1)) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
776 (setq level (funcall outline-level))) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
777 (setq start-level level)) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
778 (setq arg (- arg 1)))) |
0d2e42a6fd1c
(outline-1, outline-2, outline-3, outline-4)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45429
diff
changeset
|
779 (looking-at outline-regexp)) |
10950 | 780 |
781 (defun outline-forward-same-level (arg) | |
782 "Move forward to the ARG'th subheading at same level as this one. | |
783 Stop at the first and last subheadings of a superior heading." | |
784 (interactive "p") | |
785 (outline-back-to-heading) | |
786 (while (> arg 0) | |
787 (let ((point-to-move-to (save-excursion | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
788 (outline-get-next-sibling)))) |
10950 | 789 (if point-to-move-to |
790 (progn | |
791 (goto-char point-to-move-to) | |
792 (setq arg (1- arg))) | |
793 (progn | |
794 (setq arg 0) | |
15466
5affe3230dfb
(outline-up-heading): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
795 (error "No following same-level heading")))))) |
10950 | 796 |
797 (defun outline-get-next-sibling () | |
798 "Move to next heading of the same level, and return point or nil if none." | |
799 (let ((level (funcall outline-level))) | |
800 (outline-next-visible-heading 1) | |
801 (while (and (> (funcall outline-level) level) | |
802 (not (eobp))) | |
803 (outline-next-visible-heading 1)) | |
804 (if (< (funcall outline-level) level) | |
805 nil | |
806 (point)))) | |
21544
95ec24fc6d78
(outline-font-lock-level): New function.
Karl Heuer <kwzh@gnu.org>
parents:
21439
diff
changeset
|
807 |
10950 | 808 (defun outline-backward-same-level (arg) |
809 "Move backward to the ARG'th subheading at same level as this one. | |
810 Stop at the first and last subheadings of a superior heading." | |
811 (interactive "p") | |
812 (outline-back-to-heading) | |
813 (while (> arg 0) | |
814 (let ((point-to-move-to (save-excursion | |
815 (outline-get-last-sibling)))) | |
816 (if point-to-move-to | |
817 (progn | |
818 (goto-char point-to-move-to) | |
819 (setq arg (1- arg))) | |
820 (progn | |
821 (setq arg 0) | |
15466
5affe3230dfb
(outline-up-heading): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
822 (error "No previous same-level heading")))))) |
10950 | 823 |
824 (defun outline-get-last-sibling () | |
24442
252453d80f53
(outline-get-last-sibling): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
23366
diff
changeset
|
825 "Move to previous heading of the same level, and return point or nil if none." |
10950 | 826 (let ((level (funcall outline-level))) |
827 (outline-previous-visible-heading 1) | |
828 (while (and (> (funcall outline-level) level) | |
829 (not (bobp))) | |
830 (outline-previous-visible-heading 1)) | |
831 (if (< (funcall outline-level) level) | |
832 nil | |
833 (point)))) | |
27204
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
834 |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
835 (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
|
836 "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
|
837 |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
838 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
|
839 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
|
840 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
|
841 (interactive "r") |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
842 (save-excursion |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
843 (save-restriction |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
844 (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
|
845 (goto-char (point-min)) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
846 (let ((buffer (current-buffer)) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
847 start end) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
848 (with-temp-buffer |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
849 (with-current-buffer buffer |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
850 ;; 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
|
851 (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
|
852 (outline-back-to-heading) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
853 (setq start (point) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
854 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
|
855 (point))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
856 (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
|
857 (insert "\n\n"))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
858 (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
|
859 (with-current-buffer buffer |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
860 (while (outline-next-heading) |
41657
4f8e9cc04af5
(outline-up-heading): Add `invisible-ok' arg.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39261
diff
changeset
|
861 (unless (outline-invisible-p) |
27204
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
862 (setq start (point) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
863 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
|
864 (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
|
865 (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
|
866 (insert "\n\n")))))) |
ce06277761dc
(outline-mode-menu-bar-map): Add outline-headers-as-kill.
Dave Love <fx@gnu.org>
parents:
25177
diff
changeset
|
867 (kill-new (buffer-string))))))) |
10950 | 868 |
869 (provide 'outline) | |
11736
07ac8009368c
Provide noutline as well as outline.
Richard M. Stallman <rms@gnu.org>
parents:
11713
diff
changeset
|
870 (provide 'noutline) |
10950 | 871 |
872 ;;; outline.el ends here |