src/gnutls.c: Remove bogus references to :verify-error.
[emacs.git] / lisp / allout.el
blobd238745df17661291e0d6095d66d109a92085e92
1 ;;; allout.el --- extensive outline mode for use alone and with other modes
3 ;; Copyright (C) 1992-1994, 2001-2011 Free Software Foundation, Inc.
5 ;; Author: Ken Manheimer <ken dot manheimer at gmail dot com>
6 ;; Maintainer: Ken Manheimer <ken dot manheimer at gmail dot com>
7 ;; Created: Dec 1991 -- first release to usenet
8 ;; Version: 2.3
9 ;; Keywords: outlines, wp, languages, PGP, GnuPG
10 ;; Website: http://myriadicity.net/Sundry/EmacsAllout
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;;; Commentary:
29 ;; Allout outline minor mode provides extensive outline formatting and
30 ;; and manipulation beyond standard emacs outline mode. Some features:
32 ;; - Classic outline-mode topic-oriented navigation and exposure adjustment
33 ;; - Topic-oriented editing including coherent topic and subtopic
34 ;; creation, promotion, demotion, cut/paste across depths, etc.
35 ;; - Incremental search with dynamic exposure and reconcealment of text
36 ;; - Customizable bullet format -- enables programming-language specific
37 ;; outlining, for code-folding editing. (Allout code itself is to try it;
38 ;; formatted as an outline -- do ESC-x eval-buffer in allout.el; but
39 ;; emacs local file variables need to be enabled when the
40 ;; file was visited -- see `enable-local-variables'.)
41 ;; - Configurable per-file initial exposure settings
42 ;; - Symmetric-key and key-pair topic encryption. Encryption is via the
43 ;; Emacs 'epg' library. See allout-toggle-current-subtree-encryption
44 ;; docstring.
45 ;; - Automatic topic-number maintenance
46 ;; - "Hot-spot" operation, for single-keystroke maneuvering and
47 ;; exposure control (see the allout-mode docstring)
48 ;; - Easy rendering of exposed portions into numbered, latex, indented, etc
49 ;; outline styles
50 ;; - Careful attention to whitespace -- enabling blank lines between items
51 ;; and maintenance of hanging indentation (in paragraph auto-fill and
52 ;; across topic promotion and demotion) of topic bodies consistent with
53 ;; indentation of their topic header.
55 ;; and more.
57 ;; See the `allout-mode' function's docstring for an introduction to the
58 ;; mode.
60 ;; Directions to the latest development version and helpful notes are
61 ;; available at http://myriadicity.net/Sundry/EmacsAllout .
63 ;; The outline menubar additions provide quick reference to many of the
64 ;; features. See the docstring of the variables `allout-layout' and
65 ;; `allout-auto-activation' for details on automatic activation of
66 ;; `allout-mode' as a minor mode. (`allout-init' is deprecated in favor of
67 ;; a purely customization-based method.)
69 ;; Note -- the lines beginning with `;;;_' are outline topic headers.
70 ;; Customize `allout-auto-activation' to enable, then revisit this
71 ;; buffer to give it a whirl.
73 ;; ken manheimer (ken dot manheimer at gmail dot com)
75 ;;; Code:
77 ;;;_* Dependency loads
78 (require 'overlay)
79 (eval-when-compile
80 ;; Most of the requires here are for stuff covered by autoloads, which
81 ;; byte-compiling doesn't trigger.
82 (require 'epg)
83 (require 'epa)
84 (require 'overlay)
85 ;; `cl' is required for `assert'. `assert' is not covered by a standard
86 ;; autoload, but it is a macro, so that eval-when-compile is sufficient
87 ;; to byte-compile it in, or to do the require when the buffer evalled.
88 (require 'cl)
91 ;;;_* USER CUSTOMIZATION VARIABLES:
93 ;;;_ > defgroup allout, allout-keybindings
94 (defgroup allout nil
95 "Extensive outline minor-mode, for use stand-alone and with other modes.
97 See Allout Auto Activation for automatic activation."
98 :prefix "allout-"
99 :group 'outlines)
100 (defgroup allout-keybindings nil
101 "Allout outline mode keyboard bindings configuration."
102 :group 'allout)
104 ;;;_ + Layout, Mode, and Topic Header Configuration
106 (defvar allout-command-prefix) ; defined below
108 ;;;_ > allout-keybindings incidentals:
109 ;;;_ : internal key binding stuff - in this section for load-order.
110 ;;;_ = allout-mode-map
111 (defvar allout-mode-map 'allout-mode-map
112 "Keybindings place-holder for (allout) outline minor mode.
114 Do NOT set the value of this variable. Instead, customize
115 `allout-command-prefix', `allout-prefixed-keybindings', and
116 `allout-unprefixed-keybindings'.")
117 ;;;_ = allout-mode-map-value
118 (defvar allout-mode-map-value nil
119 "Keymap for allout outline minor mode.
121 Do NOT set the value of this variable. Instead, customize
122 `allout-command-prefix', `allout-prefixed-keybindings', and
123 `allout-unprefixed-keybindings'.")
124 ;;;_ = make allout-mode-map-value an alias for allout-mode-map:
125 ;; this needs to be revised when the value is changed, sigh.
126 (defalias 'allout-mode-map allout-mode-map-value)
127 ;;;_ > allout-compose-and-institute-keymap (&optional varname value)
128 (defun allout-compose-and-institute-keymap (&optional varname value)
129 "Create the allout keymap according to the keybinding specs, and set it.
131 Useful standalone or to effect customizations of the
132 respective allout-mode keybinding variables, `allout-command-prefix',
133 `allout-prefixed-keybindings', and `allout-unprefixed-keybindings'"
134 ;; Set the customization variable, if any:
135 (when varname
136 (set-default varname value))
137 (let ((map (make-sparse-keymap)))
138 (when (boundp 'allout-prefixed-keybindings)
139 ;; tolerate first definitions of the variables:
140 (dolist (entry allout-prefixed-keybindings)
141 (define-key map
142 ;; XXX vector vs non-vector key descriptions?
143 (vconcat allout-command-prefix
144 (car (read-from-string (car entry))))
145 (cadr entry))))
146 (when (boundp 'allout-unprefixed-keybindings)
147 (dolist (entry allout-unprefixed-keybindings)
148 (define-key map (car (read-from-string (car entry))) (cadr entry))))
149 (substitute-key-definition 'beginning-of-line 'allout-beginning-of-line
150 map global-map)
151 (substitute-key-definition 'move-beginning-of-line 'allout-beginning-of-line
152 map global-map)
153 (substitute-key-definition 'end-of-line 'allout-end-of-line
154 map global-map)
155 (substitute-key-definition 'move-end-of-line 'allout-end-of-line
156 map global-map)
157 (allout-institute-keymap map)))
158 ;;;_ > allout-institute-keymap (map)
159 (defun allout-institute-keymap (map)
160 "Associate allout-mode bindings with allout as a minor mode."
161 ;; Architecture:
162 ;; allout-mode-map var is a keymap by virtue of being a defalias for
163 ;; allout-mode-map-value, which has the actual keymap value.
164 ;; allout-mode-map's symbol value is just 'allout-mode-map, so it can be
165 ;; used in minor-mode-map-alist to indirect to the actual
166 ;; allout-mode-map-var value, which can be adjusted and reassigned.
168 ;; allout-mode-map-value for keymap reference in various places:
169 (setq allout-mode-map-value map)
170 ;; the function value keymap of allout-mode-map is used in
171 ;; minor-mode-map-alist - update it:
172 (fset allout-mode-map allout-mode-map-value))
173 ;;;_ * intialize the mode map:
174 ;; ensure that allout-mode-map has some setting even if allout-mode hasn't
175 ;; been invoked:
176 (allout-compose-and-institute-keymap)
177 ;;;_ = allout-command-prefix
178 (defcustom allout-command-prefix "\C-c "
179 "Key sequence to be used as prefix for outline mode command key bindings.
181 Default is '\C-c<space>'; just '\C-c' is more short-and-sweet, if you're
182 willing to let allout use a bunch of \C-c keybindings."
183 :type 'string
184 :group 'allout-keybindings
185 :set 'allout-compose-and-institute-keymap)
186 ;;;_ = allout-keybindings-binding
187 (define-widget 'allout-keybindings-binding 'lazy
188 "Structure of allout keybindings customization items."
189 :type '(repeat
190 (list (string :tag "Key" :value "[(meta control shift ?f)]")
191 (function :tag "Function name"
192 :value allout-forward-current-level))))
193 ;;;_ = allout-prefixed-keybindings
194 (defcustom allout-prefixed-keybindings
195 '(("[(control ?n)]" allout-next-visible-heading)
196 ("[(control ?p)]" allout-previous-visible-heading)
197 ("[(control ?u)]" allout-up-current-level)
198 ("[(control ?f)]" allout-forward-current-level)
199 ("[(control ?b)]" allout-backward-current-level)
200 ("[(control ?a)]" allout-beginning-of-current-entry)
201 ("[(control ?e)]" allout-end-of-entry)
202 ("[(control ?i)]" allout-show-children)
203 ("[(control ?s)]" allout-show-current-subtree)
204 ("[(control ?t)]" allout-toggle-current-subtree-exposure)
205 ;; Let user customize if they want to preempt describe-prefix-bindings ^h use.
206 ;; ("[(control ?h)]" allout-hide-current-subtree)
207 ("[?h]" allout-hide-current-subtree)
208 ("[(control ?o)]" allout-show-current-entry)
209 ("[?!]" allout-show-all)
210 ("[?x]" allout-toggle-current-subtree-encryption)
211 ("[? ]" allout-open-sibtopic)
212 ("[?.]" allout-open-subtopic)
213 ("[?,]" allout-open-supertopic)
214 ("[?']" allout-shift-in)
215 ("[?>]" allout-shift-in)
216 ("[?<]" allout-shift-out)
217 ("[(control ?m)]" allout-rebullet-topic)
218 ("[?*]" allout-rebullet-current-heading)
219 ("[?#]" allout-number-siblings)
220 ("[(control ?k)]" allout-kill-topic)
221 ("[(meta ?k)]" allout-copy-topic-as-kill)
222 ("[?@]" allout-resolve-xref)
223 ("[?=?c]" allout-copy-exposed-to-buffer)
224 ("[?=?i]" allout-indented-exposed-to-buffer)
225 ("[?=?t]" allout-latexify-exposed)
226 ("[?=?p]" allout-flatten-exposed-to-buffer)
228 "Allout-mode key bindings that are prefixed with `allout-command-prefix'.
230 See `allout-unprefixed-keybindings' for the list of keybindings
231 that are not prefixed.
233 Use vector format for the keys:
234 - put literal keys after a '?' question mark, eg: '?a', '?.'
235 - enclose control, shift, or meta-modified keys as sequences within
236 parentheses, with the literal key, as above, preceded by the name(s)
237 of the modifiers, eg: [(control ?a)]
238 See the existing keys for examples.
240 Functions can be bound to multiple keys, but binding keys to
241 multiple functions will not work - the last binding for a key
242 prevails."
243 :type 'allout-keybindings-binding
244 :group 'allout-keybindings
245 :set 'allout-compose-and-institute-keymap
247 ;;;_ = allout-unprefixed-keybindings
248 (defcustom allout-unprefixed-keybindings
249 '(("[(control ?k)]" allout-kill-line)
250 ("[(meta ?k)]" allout-copy-line-as-kill)
251 ("[(control ?y)]" allout-yank)
252 ("[(meta ?y)]" allout-yank-pop)
254 "Allout-mode functions bound to keys without any added prefix.
256 This is in contrast to the majority of allout-mode bindings on
257 `allout-prefixed-bindings', whose bindings are created with a
258 preceding command key.
260 Use vector format for the keys:
261 - put literal keys after a '?' question mark, eg: '?a', '?.'
262 - enclose control, shift, or meta-modified keys as sequences within
263 parentheses, with the literal key, as above, preceded by the name(s)
264 of the modifiers, eg: [(control ?a)]
265 See the existing keys for examples."
266 :type 'allout-keybindings-binding
267 :group 'allout-keybindings
268 :set 'allout-compose-and-institute-keymap
271 ;;;_ > allout-auto-activation-helper (var value)
272 ;;;###autoload
273 (defun allout-auto-activation-helper (var value)
274 "Institute `allout-auto-activation'.
276 Intended to be used as the `allout-auto-activation' :set function."
277 (set-default var value)
278 (allout-setup))
279 ;;;_ > allout-setup ()
280 ;;;###autoload
281 (defun allout-setup ()
282 "Do fundamental emacs session for allout auto-activation.
284 Establishes allout processing as part of visiting a file if
285 `allout-auto-activation' is non-nil, or removes it otherwise.
287 The proper way to use this is through customizing the setting of
288 `allout-auto-activation'."
289 (if (not allout-auto-activation)
290 (remove-hook 'find-file-hook 'allout-find-file-hook)
291 (add-hook 'find-file-hook 'allout-find-file-hook)))
292 ;;;_ = allout-auto-activation
293 ;;;###autoload
294 (defcustom allout-auto-activation nil
295 "Configure allout outline mode auto-activation.
297 Control whether and how allout outline mode is automatically
298 activated when files are visited with non-nil buffer-specific
299 file variable `allout-layout'.
301 When allout-auto-activation is \"On\" \(t), allout mode is
302 activated in buffers with non-nil `allout-layout', and the
303 specified layout is applied.
305 With value \"ask\", auto-mode-activation is enabled, and endorsement for
306 performing auto-layout is asked of the user each time.
308 With value \"activate\", only auto-mode-activation is enabled.
309 Auto-layout is not.
311 With value nil, inhibit any automatic allout-mode activation."
312 :set 'allout-auto-activation-helper
313 ;; FIXME: Using strings here is unusual and less efficient than symbols.
314 :type '(choice (const :tag "On" t)
315 (const :tag "Ask about layout" "ask")
316 (const :tag "Mode only" "activate")
317 (const :tag "Off" nil))
318 :group 'allout)
319 (allout-setup)
320 ;;;_ = allout-default-layout
321 (defcustom allout-default-layout '(-2 : 0)
322 "Default allout outline layout specification.
324 This setting specifies the outline exposure to use when
325 `allout-layout' has the local value `t'. This docstring describes the
326 layout specifications.
328 A list value specifies a default layout for the current buffer,
329 to be applied upon activation of `allout-mode'. Any non-nil
330 value will automatically trigger `allout-mode', provided
331 `allout-auto-activation' has been customized to enable it.
333 The types of elements in the layout specification are:
335 INTEGER -- dictate the relative depth to open the corresponding topic(s),
336 where:
337 -- negative numbers force the topic to be closed before opening
338 to the absolute value of the number, so all siblings are open
339 only to that level.
340 -- positive numbers open to the relative depth indicated by the
341 number, but do not force already opened subtopics to be closed.
342 -- 0 means to close topic -- hide all subitems.
343 : -- repeat spec -- apply the preceding element to all siblings at
344 current level, *up to* those siblings that would be covered by specs
345 following the `:' on the list. Ie, apply to all topics at level but
346 trailing ones accounted for by trailing specs. (Only the first of
347 multiple colons at the same level is honored -- later ones are ignored.)
348 * -- completely exposes the topic, including bodies
349 + -- exposes all subtopics, but not the bodies
350 - -- exposes the body of the corresponding topic, but not subtopics
351 LIST -- a nested layout spec, to be applied intricately to its
352 corresponding item(s)
354 Examples:
355 (-2 : 0)
356 Collapse the top-level topics to show their children and
357 grandchildren, but completely collapse the final top-level topic.
358 (-1 () : 1 0)
359 Close the first topic so only the immediate subtopics are shown,
360 leave the subsequent topics exposed as they are until the second
361 second to last topic, which is exposed at least one level, and
362 completely close the last topic.
363 (-2 : -1 *)
364 Expose children and grandchildren of all topics at current
365 level except the last two; expose children of the second to
366 last and completely expose the last one, including its subtopics.
368 See `allout-expose-topic' for more about the exposure process.
370 Also, allout's mode-specific provisions will make topic prefixes default
371 to the comment-start string, if any, of the language of the file. This
372 is modulo the setting of `allout-use-mode-specific-leader', which see."
373 :type 'allout-layout-type
374 :group 'allout)
375 ;;;_ : allout-layout-type
376 (define-widget 'allout-layout-type 'lazy
377 "Allout layout format customization basic building blocks."
378 :type '(repeat
379 (choice (integer :tag "integer (<= zero is strict)")
380 (const :tag ": (repeat prior)" :)
381 (const :tag "* (completely expose)" *)
382 (const :tag "+ (expose all offspring, headlines only)" +)
383 (const :tag "- (expose topic body but not offspring)" -)
384 (allout-layout-type :tag "<Nested layout>"))))
386 ;;;_ = allout-inhibit-auto-fill
387 (defcustom allout-inhibit-auto-fill nil
388 "If non-nil, auto-fill will be inhibited in the allout buffers.
390 You can customize this setting to set it for all allout buffers, or set it
391 in individual buffers if you want to inhibit auto-fill only in particular
392 buffers. (You could use a function on `allout-mode-hook' to inhibit
393 auto-fill according, eg, to the major mode.)
395 If you don't set this and auto-fill-mode is enabled, allout will use the
396 value that `normal-auto-fill-function', if any, when allout mode starts, or
397 else allout's special hanging-indent maintaining auto-fill function,
398 `allout-auto-fill'."
399 :type 'boolean
400 :group 'allout)
401 (make-variable-buffer-local 'allout-inhibit-auto-fill)
402 ;;;_ = allout-inhibit-auto-fill-on-headline
403 (defcustom allout-inhibit-auto-fill-on-headline nil
404 "If non-nil, auto-fill will be inhibited while on topic's header line."
405 :type 'boolean
406 :group 'allout)
407 (make-variable-buffer-local 'allout-inhibit-auto-fill-on-headline)
408 ;;;_ = allout-use-hanging-indents
409 (defcustom allout-use-hanging-indents t
410 "If non-nil, topic body text auto-indent defaults to indent of the header.
411 Ie, it is indented to be just past the header prefix. This is
412 relevant mostly for use with `indented-text-mode', or other situations
413 where auto-fill occurs."
414 :type 'boolean
415 :group 'allout)
416 (make-variable-buffer-local 'allout-use-hanging-indents)
417 ;;;###autoload
418 (put 'allout-use-hanging-indents 'safe-local-variable
419 (if (fboundp 'booleanp) 'booleanp (lambda (x) (member x '(t nil)))))
420 ;;;_ = allout-reindent-bodies
421 (defcustom allout-reindent-bodies (if allout-use-hanging-indents
422 'text)
423 "Non-nil enables auto-adjust of topic body hanging indent with depth shifts.
425 When active, topic body lines that are indented even with or beyond
426 their topic header are reindented to correspond with depth shifts of
427 the header.
429 A value of t enables reindent in non-programming-code buffers, ie
430 those that do not have the variable `comment-start' set. A value of
431 `force' enables reindent whether or not `comment-start' is set."
432 :type '(choice (const nil) (const t) (const text) (const force))
433 :group 'allout)
435 (make-variable-buffer-local 'allout-reindent-bodies)
436 ;;;###autoload
437 (put 'allout-reindent-bodies 'safe-local-variable
438 (lambda (x) (memq x '(nil t text force))))
440 ;;;_ = allout-show-bodies
441 (defcustom allout-show-bodies nil
442 "If non-nil, show entire body when exposing a topic, rather than
443 just the header."
444 :type 'boolean
445 :group 'allout)
446 (make-variable-buffer-local 'allout-show-bodies)
447 ;;;###autoload
448 (put 'allout-show-bodies 'safe-local-variable
449 (if (fboundp 'booleanp) 'booleanp (lambda (x) (member x '(t nil)))))
451 ;;;_ = allout-beginning-of-line-cycles
452 (defcustom allout-beginning-of-line-cycles t
453 "If non-nil, \\[allout-beginning-of-line] will cycle through smart-placement options.
455 Cycling only happens on when the command is repeated, not when it
456 follows a different command.
458 Smart-placement means that repeated calls to this function will
459 advance as follows:
461 - if the cursor is on a non-headline body line and not on the first column:
462 then it goes to the first column
463 - if the cursor is on the first column of a non-headline body line:
464 then it goes to the start of the headline within the item body
465 - if the cursor is on the headline and not the start of the headline:
466 then it goes to the start of the headline
467 - if the cursor is on the start of the headline:
468 then it goes to the bullet character (for hotspot navigation)
469 - if the cursor is on the bullet character:
470 then it goes to the first column of that line (the headline)
471 - if the cursor is on the first column of the headline:
472 then it goes to the start of the headline within the item body.
474 In this fashion, you can use the beginning-of-line command to do
475 its normal job and then, when repeated, advance through the
476 entry, cycling back to start.
478 If this configuration variable is nil, then the cursor is just
479 advanced to the beginning of the line and remains there on
480 repeated calls."
481 :type 'boolean :group 'allout)
482 ;;;_ = allout-end-of-line-cycles
483 (defcustom allout-end-of-line-cycles t
484 "If non-nil, \\[allout-end-of-line] will cycle through smart-placement options.
486 Cycling only happens on when the command is repeated, not when it
487 follows a different command.
489 Smart placement means that repeated calls to this function will
490 advance as follows:
492 - if the cursor is not on the end-of-line,
493 then it goes to the end-of-line
494 - if the cursor is on the end-of-line but not the end-of-entry,
495 then it goes to the end-of-entry, exposing it if necessary
496 - if the cursor is on the end-of-entry,
497 then it goes to the end of the head line
499 In this fashion, you can use the end-of-line command to do its
500 normal job and then, when repeated, advance through the entry,
501 cycling back to start.
503 If this configuration variable is nil, then the cursor is just
504 advanced to the end of the line and remains there on repeated
505 calls."
506 :type 'boolean :group 'allout)
508 ;;;_ = allout-header-prefix
509 (defcustom allout-header-prefix "."
510 ;; this string is treated as literal match. it will be `regexp-quote'd, so
511 ;; one cannot use regular expressions to match varying header prefixes.
512 "Leading string which helps distinguish topic headers.
514 Outline topic header lines are identified by a leading topic
515 header prefix, which mostly have the value of this var at their front.
516 Level 1 topics are exceptions. They consist of only a single
517 character, which is typically set to the `allout-primary-bullet'."
518 :type 'string
519 :group 'allout)
520 (make-variable-buffer-local 'allout-header-prefix)
521 ;;;###autoload
522 (put 'allout-header-prefix 'safe-local-variable 'stringp)
523 ;;;_ = allout-primary-bullet
524 (defcustom allout-primary-bullet "*"
525 "Bullet used for top-level outline topics.
527 Outline topic header lines are identified by a leading topic header
528 prefix, which is concluded by bullets that includes the value of this
529 var and the respective allout-*-bullets-string vars.
531 The value of an asterisk (`*') provides for backwards compatibility
532 with the original Emacs outline mode. See `allout-plain-bullets-string'
533 and `allout-distinctive-bullets-string' for the range of available
534 bullets."
535 :type 'string
536 :group 'allout)
537 (make-variable-buffer-local 'allout-primary-bullet)
538 ;;;###autoload
539 (put 'allout-primary-bullet 'safe-local-variable 'stringp)
540 ;;;_ = allout-plain-bullets-string
541 (defcustom allout-plain-bullets-string ".,"
542 "The bullets normally used in outline topic prefixes.
544 See `allout-distinctive-bullets-string' for the other kind of
545 bullets.
547 DO NOT include the close-square-bracket, `]', as a bullet.
549 Outline mode has to be reactivated in order for changes to the value
550 of this var to take effect."
551 :type 'string
552 :group 'allout)
553 (make-variable-buffer-local 'allout-plain-bullets-string)
554 ;;;###autoload
555 (put 'allout-plain-bullets-string 'safe-local-variable 'stringp)
556 ;;;_ = allout-distinctive-bullets-string
557 (defcustom allout-distinctive-bullets-string "*+-=>()[{}&!?#%\"X@$~_\\:;^"
558 "Persistent outline header bullets used to distinguish special topics.
560 These bullets are distinguish topics with particular character.
561 They are not used by default in the topic creation routines, but
562 are offered as options when you modify topic creation with a
563 universal argument \(\\[universal-argument]), or during rebulleting \(\\[allout-rebullet-current-heading]).
565 Distinctive bullets are not cycled when topics are shifted or
566 otherwise automatically rebulleted, so their marking is
567 persistent until deliberately changed. Their significance is
568 purely by convention, however. Some conventions suggest
569 themselves:
571 `(' - open paren -- an aside or incidental point
572 `?' - question mark -- uncertain or outright question
573 `!' - exclamation point/bang -- emphatic
574 `[' - open square bracket -- meta-note, about item instead of item's subject
575 `\"' - double quote -- a quotation or other citation
576 `=' - equal sign -- an assignment, some kind of definition
577 `^' - carat -- relates to something above
579 Some are more elusive, but their rationale may be recognizable:
581 `+' - plus -- pending consideration, completion
582 `_' - underscore -- done, completed
583 `&' - ampersand -- addendum, furthermore
585 \(Some other non-plain bullets have special meaning to the
586 software. By default:
588 `~' marks encryptable topics -- see `allout-topic-encryption-bullet'
589 `#' marks auto-numbered bullets -- see `allout-numbered-bullet'.)
591 See `allout-plain-bullets-string' for the standard, alternating
592 bullets.
594 You must run `set-allout-regexp' in order for outline mode to
595 adopt changes of this value.
597 DO NOT include the close-square-bracket, `]', on either of the bullet
598 strings."
599 :type 'string
600 :group 'allout)
601 (make-variable-buffer-local 'allout-distinctive-bullets-string)
602 ;;;###autoload
603 (put 'allout-distinctive-bullets-string 'safe-local-variable 'stringp)
605 ;;;_ = allout-use-mode-specific-leader
606 (defcustom allout-use-mode-specific-leader t
607 "When non-nil, use mode-specific topic-header prefixes.
609 Allout outline mode will use the mode-specific `allout-mode-leaders' or
610 comment-start string, if any, to lead the topic prefix string, so topic
611 headers look like comments in the programming language. It will also use
612 the comment-start string, with an '_' appended, for `allout-primary-bullet'.
614 String values are used as literals, not regular expressions, so
615 do not escape any regulare-expression characters.
617 Value t means to first check for assoc value in `allout-mode-leaders'
618 alist, then use comment-start string, if any, then use default (`.').
619 \(See note about use of comment-start strings, below.)
621 Set to the symbol for either of `allout-mode-leaders' or
622 `comment-start' to use only one of them, respectively.
624 Value nil means to always use the default (`.') and leave
625 `allout-primary-bullet' unaltered.
627 comment-start strings that do not end in spaces are tripled in
628 the header-prefix, and an `_' underscore is tacked on the end, to
629 distinguish them from regular comment strings. comment-start
630 strings that do end in spaces are not tripled, but an underscore
631 is substituted for the space. [This presumes that the space is
632 for appearance, not comment syntax. You can use
633 `allout-mode-leaders' to override this behavior, when
634 undesired.]"
635 :type '(choice (const t) (const nil) string
636 (const allout-mode-leaders)
637 (const comment-start))
638 :group 'allout)
639 ;;;###autoload
640 (put 'allout-use-mode-specific-leader 'safe-local-variable
641 (lambda (x) (or (memq x '(t nil allout-mode-leaders comment-start))
642 (stringp x))))
643 ;;;_ = allout-mode-leaders
644 (defvar allout-mode-leaders '()
645 "Specific allout-prefix leading strings per major modes.
647 Use this if the mode's comment-start string isn't what you
648 prefer, or if the mode lacks a comment-start string. See
649 `allout-use-mode-specific-leader' for more details.
651 If you're constructing a string that will comment-out outline
652 structuring so it can be included in program code, append an extra
653 character, like an \"_\" underscore, to distinguish the lead string
654 from regular comments that start at the beginning-of-line.")
656 ;;;_ = allout-old-style-prefixes
657 (defcustom allout-old-style-prefixes nil
658 "When non-nil, use only old-and-crusty `outline-mode' `*' topic prefixes.
660 Non-nil restricts the topic creation and modification
661 functions to asterix-padded prefixes, so they look exactly
662 like the original Emacs-outline style prefixes.
664 Whatever the setting of this variable, both old and new style prefixes
665 are always respected by the topic maneuvering functions."
666 :type 'boolean
667 :group 'allout)
668 (make-variable-buffer-local 'allout-old-style-prefixes)
669 ;;;###autoload
670 (put 'allout-old-style-prefixes 'safe-local-variable
671 (if (fboundp 'booleanp) 'booleanp (lambda (x) (member x '(t nil)))))
672 ;;;_ = allout-stylish-prefixes -- alternating bullets
673 (defcustom allout-stylish-prefixes t
674 "Do fancy stuff with topic prefix bullets according to level, etc.
676 Non-nil enables topic creation, modification, and repositioning
677 functions to vary the topic bullet char (the char that marks the topic
678 depth) just preceding the start of the topic text) according to level.
679 Otherwise, only asterisks (`*') and distinctive bullets are used.
681 This is how an outline can look (but sans indentation) with stylish
682 prefixes:
684 * Top level
685 .* A topic
686 . + One level 3 subtopic
687 . . One level 4 subtopic
688 . . A second 4 subtopic
689 . + Another level 3 subtopic
690 . #1 A numbered level 4 subtopic
691 . #2 Another
692 . ! Another level 4 subtopic with a different distinctive bullet
693 . #4 And another numbered level 4 subtopic
695 This would be an outline with stylish prefixes inhibited (but the
696 numbered and other distinctive bullets retained):
698 * Top level
699 .* A topic
700 . * One level 3 subtopic
701 . * One level 4 subtopic
702 . * A second 4 subtopic
703 . * Another level 3 subtopic
704 . #1 A numbered level 4 subtopic
705 . #2 Another
706 . ! Another level 4 subtopic with a different distinctive bullet
707 . #4 And another numbered level 4 subtopic
709 Stylish and constant prefixes (as well as old-style prefixes) are
710 always respected by the topic maneuvering functions, regardless of
711 this variable setting.
713 The setting of this var is not relevant when `allout-old-style-prefixes'
714 is non-nil."
715 :type 'boolean
716 :group 'allout)
717 (make-variable-buffer-local 'allout-stylish-prefixes)
718 ;;;###autoload
719 (put 'allout-stylish-prefixes 'safe-local-variable
720 (if (fboundp 'booleanp) 'booleanp (lambda (x) (member x '(t nil)))))
722 ;;;_ = allout-numbered-bullet
723 (defcustom allout-numbered-bullet "#"
724 "String designating bullet of topics that have auto-numbering; nil for none.
726 Topics having this bullet have automatic maintenance of a sibling
727 sequence-number tacked on, just after the bullet. Conventionally set
728 to \"#\", you can set it to a bullet of your choice. A nil value
729 disables numbering maintenance."
730 :type '(choice (const nil) string)
731 :group 'allout)
732 (make-variable-buffer-local 'allout-numbered-bullet)
733 ;;;###autoload
734 (put 'allout-numbered-bullet 'safe-local-variable
735 (if (fboundp 'string-or-null-p)
736 'string-or-null-p
737 (lambda (x) (or (stringp x) (null x)))))
738 ;;;_ = allout-file-xref-bullet
739 (defcustom allout-file-xref-bullet "@"
740 "Bullet signifying file cross-references, for `allout-resolve-xref'.
742 Set this var to the bullet you want to use for file cross-references."
743 :type '(choice (const nil) string)
744 :group 'allout)
745 ;;;###autoload
746 (put 'allout-file-xref-bullet 'safe-local-variable
747 (if (fboundp 'string-or-null-p)
748 'string-or-null-p
749 (lambda (x) (or (stringp x) (null x)))))
750 ;;;_ = allout-presentation-padding
751 (defcustom allout-presentation-padding 2
752 "Presentation-format white-space padding factor, for greater indent."
753 :type 'integer
754 :group 'allout)
756 (make-variable-buffer-local 'allout-presentation-padding)
757 ;;;###autoload
758 (put 'allout-presentation-padding 'safe-local-variable 'integerp)
760 ;;;_ = allout-flattened-numbering-abbreviation
761 (define-obsolete-variable-alias 'allout-abbreviate-flattened-numbering
762 'allout-flattened-numbering-abbreviation "24.1")
763 (defcustom allout-flattened-numbering-abbreviation nil
764 "If non-nil, `allout-flatten-exposed-to-buffer' abbreviates topic
765 numbers to minimal amount with some context. Otherwise, entire
766 numbers are always used."
767 :type 'boolean
768 :group 'allout)
770 ;;;_ + LaTeX formatting
771 ;;;_ - allout-number-pages
772 (defcustom allout-number-pages nil
773 "Non-nil turns on page numbering for LaTeX formatting of an outline."
774 :type 'boolean
775 :group 'allout)
776 ;;;_ - allout-label-style
777 (defcustom allout-label-style "\\large\\bf"
778 "Font and size of labels for LaTeX formatting of an outline."
779 :type 'string
780 :group 'allout)
781 ;;;_ - allout-head-line-style
782 (defcustom allout-head-line-style "\\large\\sl "
783 "Font and size of entries for LaTeX formatting of an outline."
784 :type 'string
785 :group 'allout)
786 ;;;_ - allout-body-line-style
787 (defcustom allout-body-line-style " "
788 "Font and size of entries for LaTeX formatting of an outline."
789 :type 'string
790 :group 'allout)
791 ;;;_ - allout-title-style
792 (defcustom allout-title-style "\\Large\\bf"
793 "Font and size of titles for LaTeX formatting of an outline."
794 :type 'string
795 :group 'allout)
796 ;;;_ - allout-title
797 (defcustom allout-title '(or buffer-file-name (buffer-name))
798 "Expression to be evaluated to determine the title for LaTeX
799 formatted copy."
800 :type 'sexp
801 :group 'allout)
802 ;;;_ - allout-line-skip
803 (defcustom allout-line-skip ".05cm"
804 "Space between lines for LaTeX formatting of an outline."
805 :type 'string
806 :group 'allout)
807 ;;;_ - allout-indent
808 (defcustom allout-indent ".3cm"
809 "LaTeX formatted depth-indent spacing."
810 :type 'string
811 :group 'allout)
813 ;;;_ + Topic encryption
814 ;;;_ = allout-encryption group
815 (defgroup allout-encryption nil
816 "Settings for topic encryption features of allout outliner."
817 :group 'allout)
818 ;;;_ = allout-topic-encryption-bullet
819 (defcustom allout-topic-encryption-bullet "~"
820 "Bullet signifying encryption of the entry's body."
821 :type '(choice (const nil) string)
822 :version "22.1"
823 :group 'allout-encryption)
824 ;;;_ = allout-encrypt-unencrypted-on-saves
825 (defcustom allout-encrypt-unencrypted-on-saves t
826 "When saving, should topics pending encryption be encrypted?
828 The idea is to prevent file-system exposure of any un-encrypted stuff, and
829 mostly covers both deliberate file writes and auto-saves.
831 - Yes: encrypt all topics pending encryption, even if it's the one
832 currently being edited. (In that case, the currently edited topic
833 will be automatically decrypted before any user interaction, so they
834 can continue editing but the copy on the file system will be
835 encrypted.)
836 Auto-saves will use the \"All except current topic\" mode if this
837 one is selected, to avoid practical difficulties -- see below.
838 - All except current topic: skip the topic currently being edited, even if
839 it's pending encryption. This may expose the current topic on the
840 file sytem, but avoids the nuisance of prompts for the encryption
841 passphrase in the middle of editing for, eg, autosaves.
842 This mode is used for auto-saves for both this option and \"Yes\".
843 - No: leave it to the user to encrypt any unencrypted topics.
845 For practical reasons, auto-saves always use the 'except-current policy
846 when auto-encryption is enabled. (Otherwise, spurious passphrase prompts
847 and unavoidable timing collisions are too disruptive.) If security for a
848 file requires that even the current topic is never auto-saved in the clear,
849 disable auto-saves for that file."
851 :type '(choice (const :tag "Yes" t)
852 (const :tag "All except current topic" except-current)
853 (const :tag "No" nil))
854 :version "22.1"
855 :group 'allout-encryption)
856 (make-variable-buffer-local 'allout-encrypt-unencrypted-on-saves)
858 ;;;_ + Developer
859 ;;;_ = allout-developer group
860 (defgroup allout-developer nil
861 "Allout settings developers care about, including topic encryption and more."
862 :group 'allout)
863 ;;;_ = allout-run-unit-tests-on-load
864 (defcustom allout-run-unit-tests-on-load nil
865 "When non-nil, unit tests will be run at end of loading the allout module.
867 Generally, allout code developers are the only ones who'll want to set this.
869 \(If set, this makes it an even better practice to exercise changes by
870 doing byte-compilation with a repeat count, so the file is loaded after
871 compilation.)
873 See `allout-run-unit-tests' to see what's run."
874 :type 'boolean
875 :group 'allout-developer)
877 ;;;_ + Miscellaneous customization
879 ;;;_ = allout-enable-file-variable-adjustment
880 (defcustom allout-enable-file-variable-adjustment t
881 "If non-nil, some allout outline actions edit Emacs local file var text.
883 This can range from changes to existing entries, addition of new ones,
884 and creation of a new local variables section when necessary.
886 Emacs file variables adjustments are also inhibited if `enable-local-variables'
887 is nil.
889 Operations potentially causing edits include allout encryption routines.
890 For details, see `allout-toggle-current-subtree-encryption's docstring."
891 :type 'boolean
892 :group 'allout)
893 (make-variable-buffer-local 'allout-enable-file-variable-adjustment)
895 ;;;_* CODE -- no user customizations below.
897 ;;;_ #1 Internal Outline Formatting and Configuration
898 ;;;_ : Version
899 ;;;_ = allout-version
900 (defvar allout-version "2.3"
901 "Version of currently loaded outline package. (allout.el)")
902 ;;;_ > allout-version
903 (defun allout-version (&optional here)
904 "Return string describing the loaded outline version."
905 (interactive "P")
906 (let ((msg (concat "Allout Outline Mode v " allout-version)))
907 (if here (insert msg))
908 (message "%s" msg)
909 msg))
910 ;;;_ : Mode activation (defined here because it's referenced early)
911 ;;;_ = allout-mode
912 (defvar allout-mode nil "Allout outline mode minor-mode flag.")
913 (make-variable-buffer-local 'allout-mode)
914 ;;;_ = allout-layout nil
915 (defvar allout-layout nil ; LEAVE GLOBAL VALUE NIL -- see docstring.
916 "Buffer-specific setting for allout layout.
918 In buffers where this is non-nil \(and if `allout-auto-activation'
919 has been customized to enable this behavior), `allout-mode' will be
920 automatically activated. The layout dictated by the value will be used to
921 set the initial exposure when `allout-mode' is activated.
923 \*You should not setq-default this variable non-nil unless you want every
924 visited file to be treated as an allout file.*
926 The value would typically be set by a file local variable. For
927 example, the following lines at the bottom of an Emacs Lisp file:
929 ;;;Local variables:
930 ;;;allout-layout: (0 : -1 -1 0)
931 ;;;End:
933 dictate activation of `allout-mode' mode when the file is visited
934 \(presuming proper `allout-auto-activation' customization),
935 followed by the equivalent of `(allout-expose-topic 0 : -1 -1 0)'.
936 \(This is the layout used for the allout.el source file.)
938 `allout-default-layout' describes the specification format.
939 `allout-layout' can additionally have the value `t', in which
940 case the value of `allout-default-layout' is used.")
941 (make-variable-buffer-local 'allout-layout)
942 ;;;###autoload
943 (put 'allout-layout 'safe-local-variable
944 (lambda (x) (or (numberp x) (listp x) (memq x '(: * + -)))))
946 ;;;_ : Topic header format
947 ;;;_ = allout-regexp
948 (defvar allout-regexp ""
949 "*Regular expression to match the beginning of a heading line.
951 Any line whose beginning matches this regexp is considered a
952 heading. This var is set according to the user configuration vars
953 by `set-allout-regexp'.")
954 (make-variable-buffer-local 'allout-regexp)
955 ;;;_ = allout-bullets-string
956 (defvar allout-bullets-string ""
957 "A string dictating the valid set of outline topic bullets.
959 This var should *not* be set by the user -- it is set by `set-allout-regexp',
960 and is produced from the elements of `allout-plain-bullets-string'
961 and `allout-distinctive-bullets-string'.")
962 (make-variable-buffer-local 'allout-bullets-string)
963 ;;;_ = allout-bullets-string-len
964 (defvar allout-bullets-string-len 0
965 "Length of current buffers' `allout-plain-bullets-string'.")
966 (make-variable-buffer-local 'allout-bullets-string-len)
967 ;;;_ = allout-depth-specific-regexp
968 (defvar allout-depth-specific-regexp ""
969 "*Regular expression to match a heading line prefix for a particular depth.
971 This expression is used to search for depth-specific topic
972 headers at depth 2 and greater. Use `allout-depth-one-regexp'
973 for to seek topics at depth one.
975 This var is set according to the user configuration vars by
976 `set-allout-regexp'. It is prepared with format strings for two
977 decimal numbers, which should each be one less than the depth of the
978 topic prefix to be matched.")
979 (make-variable-buffer-local 'allout-depth-specific-regexp)
980 ;;;_ = allout-depth-one-regexp
981 (defvar allout-depth-one-regexp ""
982 "*Regular expression to match a heading line prefix for depth one.
984 This var is set according to the user configuration vars by
985 `set-allout-regexp'. It is prepared with format strings for two
986 decimal numbers, which should each be one less than the depth of the
987 topic prefix to be matched.")
988 (make-variable-buffer-local 'allout-depth-one-regexp)
989 ;;;_ = allout-line-boundary-regexp
990 (defvar allout-line-boundary-regexp ()
991 "`allout-regexp' prepended with a newline for the search target.
993 This is properly set by `set-allout-regexp'.")
994 (make-variable-buffer-local 'allout-line-boundary-regexp)
995 ;;;_ = allout-bob-regexp
996 (defvar allout-bob-regexp ()
997 "Like `allout-line-boundary-regexp', for headers at beginning of buffer.")
998 (make-variable-buffer-local 'allout-bob-regexp)
999 ;;;_ = allout-header-subtraction
1000 (defvar allout-header-subtraction (1- (length allout-header-prefix))
1001 "Allout-header prefix length to subtract when computing topic depth.")
1002 (make-variable-buffer-local 'allout-header-subtraction)
1003 ;;;_ = allout-plain-bullets-string-len
1004 (defvar allout-plain-bullets-string-len (length allout-plain-bullets-string)
1005 "Length of `allout-plain-bullets-string', updated by `set-allout-regexp'.")
1006 (make-variable-buffer-local 'allout-plain-bullets-string-len)
1008 ;;;_ = allout-doublecheck-at-and-shallower
1009 (defconst allout-doublecheck-at-and-shallower 3
1010 "Validate apparent topics of this depth and shallower as being non-aberrant.
1012 Verified with `allout-aberrant-container-p'. The usefulness of
1013 this check is limited to shallow depths, because the
1014 determination of aberrance is according to the mistaken item
1015 being followed by a legitimate item of excessively greater depth.
1017 The classic example of a mistaken item, for a standard allout
1018 outline configuration, is a body line that begins with an '...'
1019 ellipsis. This happens to contain a legitimate depth-2 header
1020 prefix, constituted by two '..' dots at the beginning of the
1021 line. The only thing that can distinguish it *in principle* from
1022 a legitimate one is if the following real header is at a depth
1023 that is discontinuous from the depth of 2 implied by the
1024 ellipsis, ie depth 4 or more. As the depth being tested gets
1025 greater, the likelihood of this kind of disqualification is
1026 lower, and the usefulness of this test is lower.
1028 Extending the depth of the doublecheck increases the amount it is
1029 applied, increasing the cost of the test - on casual estimation,
1030 for outlines with many deep topics, geometrically (O(n)?).
1031 Taken together with decreasing likelihood that the test will be
1032 useful at greater depths, more modest doublecheck limits are more
1033 suitably economical.")
1034 ;;;_ X allout-reset-header-lead (header-lead)
1035 (defun allout-reset-header-lead (header-lead)
1036 "Reset the leading string used to identify topic headers."
1037 (interactive "sNew lead string: ")
1038 (setq allout-header-prefix header-lead)
1039 (setq allout-header-subtraction (1- (length allout-header-prefix)))
1040 (set-allout-regexp))
1041 ;;;_ X allout-lead-with-comment-string (header-lead)
1042 (defun allout-lead-with-comment-string (&optional header-lead)
1043 "Set the topic-header leading string to specified string.
1045 Useful when for encapsulating outline structure in programming
1046 language comments. Returns the leading string."
1048 (interactive "P")
1049 (if (not (stringp header-lead))
1050 (setq header-lead (read-string
1051 "String prefix for topic headers: ")))
1052 (setq allout-reindent-bodies nil)
1053 (allout-reset-header-lead header-lead)
1054 header-lead)
1055 ;;;_ > allout-infer-header-lead-and-primary-bullet ()
1056 (defun allout-infer-header-lead-and-primary-bullet ()
1057 "Determine appropriate `allout-header-prefix' and `allout-primary-bullet'.
1059 Works according to settings of:
1061 `comment-start'
1062 `allout-header-prefix' (default)
1063 `allout-use-mode-specific-leader'
1064 and `allout-mode-leaders'.
1066 Apply this via (re)activation of `allout-mode', rather than
1067 invoking it directly."
1068 (let* ((use-leader (and (boundp 'allout-use-mode-specific-leader)
1069 (if (or (stringp allout-use-mode-specific-leader)
1070 (memq allout-use-mode-specific-leader
1071 '(allout-mode-leaders
1072 comment-start
1073 t)))
1074 allout-use-mode-specific-leader
1075 ;; Oops -- garbled value, equate with effect of t:
1076 t)))
1077 (leader
1078 (cond
1079 ((not use-leader) nil)
1080 ;; Use the explicitly designated leader:
1081 ((stringp use-leader) use-leader)
1082 (t (or (and (memq use-leader '(t allout-mode-leaders))
1083 ;; Get it from outline mode leaders?
1084 (cdr (assq major-mode allout-mode-leaders)))
1085 ;; ... didn't get from allout-mode-leaders...
1086 (and (memq use-leader '(t comment-start))
1087 comment-start
1088 ;; Use comment-start, maybe tripled, and with
1089 ;; underscore:
1090 (concat
1091 (if (string= " "
1092 (substring comment-start
1093 (1- (length comment-start))))
1094 ;; Use comment-start, sans trailing space:
1095 (substring comment-start 0 -1)
1096 (concat comment-start comment-start comment-start))
1097 ;; ... and append underscore, whichever:
1098 "_")))))))
1099 (if (not leader)
1101 (setq allout-header-prefix leader)
1102 (if (not allout-old-style-prefixes)
1103 ;; setting allout-primary-bullet makes the top level topics use --
1104 ;; actually, be -- the special prefix:
1105 (setq allout-primary-bullet leader))
1106 allout-header-prefix)))
1107 (defalias 'allout-infer-header-lead
1108 'allout-infer-header-lead-and-primary-bullet)
1109 ;;;_ > allout-infer-body-reindent ()
1110 (defun allout-infer-body-reindent ()
1111 "Determine proper setting for `allout-reindent-bodies'.
1113 Depends on default setting of `allout-reindent-bodies' (which see)
1114 and presence of setting for `comment-start', to tell whether the
1115 file is programming code."
1116 (if (and allout-reindent-bodies
1117 comment-start
1118 (not (eq 'force allout-reindent-bodies)))
1119 (setq allout-reindent-bodies nil)))
1120 ;;;_ > set-allout-regexp ()
1121 (defun set-allout-regexp ()
1122 "Generate proper topic-header regexp form for outline functions.
1124 Works with respect to `allout-plain-bullets-string' and
1125 `allout-distinctive-bullets-string'.
1127 Also refresh various data structures that hinge on the regexp."
1129 (interactive)
1130 ;; Derive allout-bullets-string from user configured components:
1131 (setq allout-bullets-string "")
1132 (let ((strings (list 'allout-plain-bullets-string
1133 'allout-distinctive-bullets-string
1134 'allout-primary-bullet))
1135 cur-string
1136 cur-len
1137 cur-char
1138 index)
1139 (while strings
1140 (setq index 0)
1141 (setq cur-len (length (setq cur-string (symbol-value (car strings)))))
1142 (while (< index cur-len)
1143 (setq cur-char (aref cur-string index))
1144 (setq allout-bullets-string
1145 (concat allout-bullets-string
1146 (cond
1147 ; Single dash would denote a
1148 ; sequence, repeated denotes
1149 ; a dash:
1150 ((eq cur-char ?-) "--")
1151 ; literal close-square-bracket
1152 ; doesn't work right in the
1153 ; expr, exclude it:
1154 ((eq cur-char ?\]) "")
1155 (t (regexp-quote (char-to-string cur-char))))))
1156 (setq index (1+ index)))
1157 (setq strings (cdr strings)))
1159 ;; Derive next for repeated use in allout-pending-bullet:
1160 (setq allout-plain-bullets-string-len (length allout-plain-bullets-string))
1161 (setq allout-header-subtraction (1- (length allout-header-prefix)))
1163 (let (new-part old-part formfeed-part)
1164 (setq new-part (concat "\\("
1165 (regexp-quote allout-header-prefix)
1166 "[ \t]*"
1167 ;; already regexp-quoted in a custom way:
1168 "[" allout-bullets-string "]"
1169 "\\)")
1170 old-part (concat "\\("
1171 (regexp-quote allout-primary-bullet)
1172 "\\|"
1173 (regexp-quote allout-header-prefix)
1174 "\\)"
1176 " ?[^" allout-primary-bullet "]")
1177 formfeed-part "\\(\^L\\)"
1179 allout-regexp (concat new-part
1180 "\\|"
1181 old-part
1182 "\\|"
1183 formfeed-part)
1185 allout-line-boundary-regexp (concat "\n" new-part
1186 "\\|"
1187 "\n" old-part
1188 "\\|"
1189 "\n" formfeed-part)
1191 allout-bob-regexp (concat "\\`" new-part
1192 "\\|"
1193 "\\`" old-part
1194 "\\|"
1195 "\\`" formfeed-part
1198 (setq allout-depth-specific-regexp
1199 (concat "\\(^\\|\\`\\)"
1200 "\\("
1202 ;; new-style spacers-then-bullet string:
1203 "\\("
1204 (allout-format-quote (regexp-quote allout-header-prefix))
1205 " \\{%s\\}"
1206 "[" (allout-format-quote allout-bullets-string) "]"
1207 "\\)"
1209 ;; old-style all-bullets string, if primary not multi-char:
1210 (if (< 0 allout-header-subtraction)
1212 (concat "\\|\\("
1213 (allout-format-quote
1214 (regexp-quote allout-primary-bullet))
1215 (allout-format-quote
1216 (regexp-quote allout-primary-bullet))
1217 (allout-format-quote
1218 (regexp-quote allout-primary-bullet))
1219 "\\{%s\\}"
1220 ;; disqualify greater depths:
1221 "[^"
1222 (allout-format-quote allout-primary-bullet)
1223 "]\\)"
1225 "\\)"
1227 (setq allout-depth-one-regexp
1228 (concat "\\(^\\|\\`\\)"
1229 "\\("
1231 "\\("
1232 (regexp-quote allout-header-prefix)
1233 ;; disqualify any bullet char following any amount of
1234 ;; intervening whitespace:
1235 " *"
1236 (concat "[^ " allout-bullets-string "]")
1237 "\\)"
1238 (if (< 0 allout-header-subtraction)
1239 ;; Need not support anything like the old
1240 ;; bullet style if the prefix is multi-char.
1242 (concat "\\|"
1243 (regexp-quote allout-primary-bullet)
1244 ;; disqualify deeper primary-bullet sequences:
1245 "[^" allout-primary-bullet "]"))
1246 "\\)"
1247 ))))
1248 ;;;_ : Menu bar
1249 (defvar allout-mode-exposure-menu)
1250 (defvar allout-mode-editing-menu)
1251 (defvar allout-mode-navigation-menu)
1252 (defvar allout-mode-misc-menu)
1253 (defun produce-allout-mode-menubar-entries ()
1254 (require 'easymenu)
1255 (easy-menu-define allout-mode-exposure-menu
1256 allout-mode-map-value
1257 "Allout outline exposure menu."
1258 '("Exposure"
1259 ["Show Entry" allout-show-current-entry t]
1260 ["Show Children" allout-show-children t]
1261 ["Show Subtree" allout-show-current-subtree t]
1262 ["Hide Subtree" allout-hide-current-subtree t]
1263 ["Hide Leaves" allout-hide-current-leaves t]
1264 "----"
1265 ["Show All" allout-show-all t]))
1266 (easy-menu-define allout-mode-editing-menu
1267 allout-mode-map-value
1268 "Allout outline editing menu."
1269 '("Headings"
1270 ["Open Sibling" allout-open-sibtopic t]
1271 ["Open Subtopic" allout-open-subtopic t]
1272 ["Open Supertopic" allout-open-supertopic t]
1273 "----"
1274 ["Shift Topic In" allout-shift-in t]
1275 ["Shift Topic Out" allout-shift-out t]
1276 ["Rebullet Topic" allout-rebullet-topic t]
1277 ["Rebullet Heading" allout-rebullet-current-heading t]
1278 ["Number Siblings" allout-number-siblings t]
1279 "----"
1280 ["Toggle Topic Encryption"
1281 allout-toggle-current-subtree-encryption
1282 (> (allout-current-depth) 1)]))
1283 (easy-menu-define allout-mode-navigation-menu
1284 allout-mode-map-value
1285 "Allout outline navigation menu."
1286 '("Navigation"
1287 ["Next Visible Heading" allout-next-visible-heading t]
1288 ["Previous Visible Heading"
1289 allout-previous-visible-heading t]
1290 "----"
1291 ["Up Level" allout-up-current-level t]
1292 ["Forward Current Level" allout-forward-current-level t]
1293 ["Backward Current Level"
1294 allout-backward-current-level t]
1295 "----"
1296 ["Beginning of Entry"
1297 allout-beginning-of-current-entry t]
1298 ["End of Entry" allout-end-of-entry t]
1299 ["End of Subtree" allout-end-of-current-subtree t]))
1300 (easy-menu-define allout-mode-misc-menu
1301 allout-mode-map-value
1302 "Allout outlines miscellaneous bindings."
1303 '("Misc"
1304 ["Version" allout-version t]
1305 "----"
1306 ["Duplicate Exposed" allout-copy-exposed-to-buffer t]
1307 ["Duplicate Exposed, numbered"
1308 allout-flatten-exposed-to-buffer t]
1309 ["Duplicate Exposed, indented"
1310 allout-indented-exposed-to-buffer t]
1311 "----"
1312 ["Set Header Lead" allout-reset-header-lead t]
1313 ["Set New Exposure" allout-expose-topic t])))
1314 ;;;_ : Allout Modal-Variables Utilities
1315 ;;;_ = allout-mode-prior-settings
1316 (defvar allout-mode-prior-settings nil
1317 "Internal `allout-mode' use; settings to be resumed on mode deactivation.
1319 See `allout-add-resumptions' and `allout-do-resumptions'.")
1320 (make-variable-buffer-local 'allout-mode-prior-settings)
1321 ;;;_ > allout-add-resumptions (&rest pairs)
1322 (defun allout-add-resumptions (&rest pairs)
1323 "Set name/value PAIRS.
1325 Old settings are preserved for later resumption using `allout-do-resumptions'.
1327 The new values are set as a buffer local. On resumption, the prior buffer
1328 scope of the variable is restored along with its value. If it was a void
1329 buffer-local value, then it is left as nil on resumption.
1331 The pairs are lists whose car is the name of the variable and car of the
1332 cdr is the new value: '(some-var some-value)'. The pairs can actually be
1333 triples, where the third element qualifies the disposition of the setting,
1334 as described further below.
1336 If the optional third element is the symbol 'extend, then the new value
1337 created by `cons'ing the second element of the pair onto the front of the
1338 existing value.
1340 If the optional third element is the symbol 'append, then the new value is
1341 extended from the existing one by `append'ing a list containing the second
1342 element of the pair onto the end of the existing value.
1344 Extension, and resumptions in general, should not be used for hook
1345 functions -- use the 'local mode of `add-hook' for that, instead.
1347 The settings are stored on `allout-mode-prior-settings'."
1348 (while pairs
1349 (let* ((pair (pop pairs))
1350 (name (car pair))
1351 (value (cadr pair))
1352 (qualifier (if (> (length pair) 2)
1353 (caddr pair)))
1354 prior-value)
1355 (if (not (symbolp name))
1356 (error "Pair's name, %S, must be a symbol, not %s"
1357 name (type-of name)))
1358 (setq prior-value (condition-case nil
1359 (symbol-value name)
1360 (void-variable nil)))
1361 (when (not (assoc name allout-mode-prior-settings))
1362 ;; Not already added as a resumption, create the prior setting entry.
1363 (if (local-variable-p name (current-buffer))
1364 ;; is already local variable -- preserve the prior value:
1365 (push (list name prior-value) allout-mode-prior-settings)
1366 ;; wasn't local variable, indicate so for resumption by killing
1367 ;; local value, and make it local:
1368 (push (list name) allout-mode-prior-settings)
1369 (make-local-variable name)))
1370 (if qualifier
1371 (cond ((eq qualifier 'extend)
1372 (if (not (listp prior-value))
1373 (error "extension of non-list prior value attempted")
1374 (set name (cons value prior-value))))
1375 ((eq qualifier 'append)
1376 (if (not (listp prior-value))
1377 (error "appending of non-list prior value attempted")
1378 (set name (append prior-value (list value)))))
1379 (t (error "unrecognized setting qualifier `%s' encountered"
1380 qualifier)))
1381 (set name value)))))
1382 ;;;_ > allout-do-resumptions ()
1383 (defun allout-do-resumptions ()
1384 "Resume all name/value settings registered by `allout-add-resumptions'.
1386 This is used when concluding allout-mode, to resume selected variables to
1387 their settings before allout-mode was started."
1389 (while allout-mode-prior-settings
1390 (let* ((pair (pop allout-mode-prior-settings))
1391 (name (car pair))
1392 (value-cell (cdr pair)))
1393 (if (not value-cell)
1394 ;; Prior value was global:
1395 (kill-local-variable name)
1396 ;; Prior value was explicit:
1397 (set name (car value-cell))))))
1398 ;;;_ : Mode-specific incidentals
1399 ;;;_ > allout-unprotected (expr)
1400 (defmacro allout-unprotected (expr)
1401 "Enable internal outline operations to alter invisible text."
1402 `(let ((inhibit-read-only (if (not buffer-read-only) t))
1403 (inhibit-field-text-motion t))
1404 ,expr))
1405 ;;;_ = allout-mode-hook
1406 (defvar allout-mode-hook nil
1407 "*Hook that's run when allout mode starts.")
1408 ;;;_ = allout-mode-deactivate-hook
1409 (defvar allout-mode-deactivate-hook nil
1410 "*Hook that's run when allout mode ends.")
1411 (define-obsolete-variable-alias 'allout-mode-deactivate-hook
1412 'allout-mode-off-hook "24.1")
1413 ;;;_ = allout-exposure-category
1414 (defvar allout-exposure-category nil
1415 "Symbol for use as allout invisible-text overlay category.")
1416 ;;;_ = allout-exposure-change-hook
1417 (defvar allout-exposure-change-hook nil
1418 "*Hook that's run after allout outline subtree exposure changes.
1420 It is run at the conclusion of `allout-flag-region'.
1422 Functions on the hook must take three arguments:
1424 - FROM -- integer indicating the point at the start of the change.
1425 - TO -- integer indicating the point of the end of the change.
1426 - FLAG -- change mode: nil for exposure, otherwise concealment.
1428 This hook might be invoked multiple times by a single command.")
1429 ;;;_ = allout-structure-added-hook
1430 (defvar allout-structure-added-hook nil
1431 "*Hook that's run after addition of items to the outline.
1433 Functions on the hook should take two arguments:
1435 - NEW-START -- integer indicating position of start of the first new item.
1436 - NEW-END -- integer indicating position of end of the last new item.
1438 This hook might be invoked multiple times by a single command.")
1439 ;;;_ = allout-structure-deleted-hook
1440 (defvar allout-structure-deleted-hook nil
1441 "*Hook that's run after disciplined deletion of subtrees from the outline.
1443 Functions on the hook must take two arguments:
1445 - DEPTH -- integer indicating the depth of the subtree that was deleted.
1446 - REMOVED-FROM -- integer indicating the point where the subtree was removed.
1448 Some edits that remove or invalidate items may missed by this hook:
1449 specifically edits that native allout routines do not control.
1451 This hook might be invoked multiple times by a single command.")
1452 ;;;_ = allout-structure-shifted-hook
1453 (defvar allout-structure-shifted-hook nil
1454 "*Hook that's run after shifting of items in the outline.
1456 Functions on the hook should take two arguments:
1458 - DEPTH-CHANGE -- integer indicating depth increase, negative for decrease
1459 - START -- integer indicating the start point of the shifted parent item.
1461 Some edits that shift items can be missed by this hook: specifically edits
1462 that native allout routines do not control.
1464 This hook might be invoked multiple times by a single command.")
1465 ;;;_ = allout-after-copy-or-kill-hook
1466 (defvar allout-after-copy-or-kill-hook nil
1467 "*Hook that's run after copying outline text.
1469 Functions on the hook should not take any arguments.")
1470 ;;;_ = allout-outside-normal-auto-fill-function
1471 (defvar allout-outside-normal-auto-fill-function nil
1472 "Value of normal-auto-fill-function outside of allout mode.
1474 Used by allout-auto-fill to do the mandated normal-auto-fill-function
1475 wrapped within allout's automatic fill-prefix setting.")
1476 (make-variable-buffer-local 'allout-outside-normal-auto-fill-function)
1477 ;;;_ = prevent redundant activation by desktop mode:
1478 (add-to-list 'desktop-minor-mode-handlers '(allout-mode . nil))
1479 ;;;_ = allout-passphrase-verifier-string
1480 (defvar allout-passphrase-verifier-string nil
1481 "Setting used to test solicited encryption passphrases against the one
1482 already associated with a file.
1484 It consists of an encrypted random string useful only to verify that a
1485 passphrase entered by the user is effective for decryption. The passphrase
1486 itself is \*not* recorded in the file anywhere, and the encrypted contents
1487 are random binary characters to avoid exposing greater susceptibility to
1488 search attacks.
1490 The verifier string is retained as an Emacs file variable, as well as in
1491 the Emacs buffer state, if file variable adjustments are enabled. See
1492 `allout-enable-file-variable-adjustment' for details about that.")
1493 (make-variable-buffer-local 'allout-passphrase-verifier-string)
1494 (make-obsolete 'allout-passphrase-verifier-string
1495 'allout-passphrase-verifier-string "23.3")
1496 ;;;###autoload
1497 (put 'allout-passphrase-verifier-string 'safe-local-variable 'stringp)
1498 ;;;_ = allout-passphrase-hint-string
1499 (defvar allout-passphrase-hint-string ""
1500 "Variable used to retain reminder string for file's encryption passphrase.
1502 See the description of `allout-passphrase-hint-handling' for details about how
1503 the reminder is deployed.
1505 The hint is retained as an Emacs file variable, as well as in the Emacs buffer
1506 state, if file variable adjustments are enabled. See
1507 `allout-enable-file-variable-adjustment' for details about that.")
1508 (make-variable-buffer-local 'allout-passphrase-hint-string)
1509 (setq-default allout-passphrase-hint-string "")
1510 (make-obsolete 'allout-passphrase-hint-string
1511 'allout-passphrase-hint-string "23.3")
1512 ;;;###autoload
1513 (put 'allout-passphrase-hint-string 'safe-local-variable 'stringp)
1514 ;;;_ = allout-after-save-decrypt
1515 (defvar allout-after-save-decrypt nil
1516 "Internal variable, is nil or has the value of two points:
1518 - the location of a topic to be decrypted after saving is done
1519 - where to situate the cursor after the decryption is performed
1521 This is used to decrypt the topic that was currently being edited, if it
1522 was encrypted automatically as part of a file write or autosave.")
1523 (make-variable-buffer-local 'allout-after-save-decrypt)
1524 ;;;_ = allout-encryption-plaintext-sanitization-regexps
1525 (defvar allout-encryption-plaintext-sanitization-regexps nil
1526 "List of regexps whose matches are removed from plaintext before encryption.
1528 This is for the sake of removing artifacts, like escapes, that are added on
1529 and not actually part of the original plaintext. The removal is done just
1530 prior to encryption.
1532 Entries must be symbols that are bound to the desired values.
1534 Each value can be a regexp or a list with a regexp followed by a
1535 substitution string. If it's just a regexp, all its matches are removed
1536 before the text is encrypted. If it's a regexp and a substitution, the
1537 substition is used against the regexp matches, a la `replace-match'.")
1538 (make-variable-buffer-local 'allout-encryption-text-removal-regexps)
1539 ;;;_ = allout-encryption-ciphertext-rejection-regexps
1540 (defvar allout-encryption-ciphertext-rejection-regexps nil
1541 "Variable for regexps matching plaintext to remove before encryption.
1543 This is used to detect strings in encryption results that would
1544 register as allout mode structural elements, for exmple, as a
1545 topic prefix.
1547 Entries must be symbols that are bound to the desired regexp values.
1549 Encryptions that result in matches will be retried, up to
1550 `allout-encryption-ciphertext-rejection-limit' times, after which
1551 an error is raised.")
1553 (make-variable-buffer-local 'allout-encryption-ciphertext-rejection-regexps)
1554 ;;;_ = allout-encryption-ciphertext-rejection-ceiling
1555 (defvar allout-encryption-ciphertext-rejection-ceiling 5
1556 "Limit on number of times encryption ciphertext is rejected.
1558 See `allout-encryption-ciphertext-rejection-regexps' for rejection reasons.")
1559 (make-variable-buffer-local 'allout-encryption-ciphertext-rejection-ceiling)
1560 ;;;_ > allout-mode-p ()
1561 ;; Must define this macro above any uses, or byte compilation will lack
1562 ;; proper def, if file isn't loaded -- eg, during emacs build!
1563 ;;;###autoload
1564 (defmacro allout-mode-p ()
1565 "Return t if `allout-mode' is active in current buffer."
1566 'allout-mode)
1567 ;;;_ > allout-write-file-hook-handler ()
1568 (defun allout-write-file-hook-handler ()
1569 "Implement `allout-encrypt-unencrypted-on-saves' policy for file writes."
1571 (if (or (not (allout-mode-p))
1572 (not (boundp 'allout-encrypt-unencrypted-on-saves))
1573 (not allout-encrypt-unencrypted-on-saves))
1575 (let ((except-mark (and (equal allout-encrypt-unencrypted-on-saves
1576 'except-current)
1577 (point-marker))))
1578 (if (save-excursion (goto-char (point-min))
1579 (allout-next-topic-pending-encryption except-mark))
1580 (progn
1581 (message "auto-encrypting pending topics")
1582 (sit-for 0)
1583 (condition-case failure
1584 (setq allout-after-save-decrypt
1585 (allout-encrypt-decrypted except-mark))
1586 (error (message
1587 "allout-write-file-hook-handler suppressing error %s"
1588 failure)
1589 (sit-for 2)))))
1591 nil)
1592 ;;;_ > allout-auto-save-hook-handler ()
1593 (defun allout-auto-save-hook-handler ()
1594 "Implement `allout-encrypt-unencrypted-on-saves' policy for auto save."
1596 (if (and (allout-mode-p) allout-encrypt-unencrypted-on-saves)
1597 ;; Always implement 'except-current policy when enabled.
1598 (let ((allout-encrypt-unencrypted-on-saves 'except-current))
1599 (allout-write-file-hook-handler))))
1600 ;;;_ > allout-after-saves-handler ()
1601 (defun allout-after-saves-handler ()
1602 "Decrypt topic encrypted for save, if it's currently being edited.
1604 Ie, if it was pending encryption and contained the point in its body before
1605 the save.
1607 We use values stored in `allout-after-save-decrypt' to locate the topic
1608 and the place for the cursor after the decryption is done."
1609 (if (not (and (allout-mode-p)
1610 (boundp 'allout-after-save-decrypt)
1611 allout-after-save-decrypt))
1613 (goto-char (car allout-after-save-decrypt))
1614 (let ((was-modified (buffer-modified-p)))
1615 (allout-toggle-subtree-encryption)
1616 (if (not was-modified)
1617 (set-buffer-modified-p nil)))
1618 (goto-char (cadr allout-after-save-decrypt))
1619 (setq allout-after-save-decrypt nil))
1621 ;;;_ > allout-called-interactively-p ()
1622 (defmacro allout-called-interactively-p ()
1623 "A version of called-interactively-p independent of emacs version."
1624 ;; ... to ease maintenance of allout without betraying deprecation.
1625 (if (equal (subr-arity (symbol-function 'called-interactively-p))
1626 '(0 . 0))
1627 '(called-interactively-p)
1628 '(called-interactively-p 'interactive)))
1629 ;;;_ = allout-inhibit-aberrance-doublecheck nil
1630 ;; In some exceptional moments, disparate topic depths need to be allowed
1631 ;; momentarily, eg when one topic is being yanked into another and they're
1632 ;; about to be reconciled. let-binding allout-inhibit-aberrance-doublecheck
1633 ;; prevents the aberrance doublecheck to allow, eg, the reconciliation
1634 ;; processing to happen in the presence of such discrepancies. It should
1635 ;; almost never be needed, however.
1636 (defvar allout-inhibit-aberrance-doublecheck nil
1637 "Internal state, for momentarily inhibits aberrance doublecheck.
1639 This should only be momentarily let-bound non-nil, not set
1640 non-nil in a lasting way.")
1642 ;;;_ #2 Mode environment and activation
1643 ;;;_ = allout-explicitly-deactivated
1644 (defvar allout-explicitly-deactivated nil
1645 "If t, `allout-mode's last deactivation was deliberate.
1646 So `allout-post-command-business' should not reactivate it...")
1647 (make-variable-buffer-local 'allout-explicitly-deactivated)
1648 ;;;_ > allout-init (mode)
1649 (defun allout-init (mode)
1650 "DEPRECATED - configure allout activation by customizing
1651 `allout-auto-activation'. This function remains around, limited
1652 from what it did before, for backwards compatibility.
1654 MODE is the activation mode - see `allout-auto-activation' for
1655 valid values."
1657 (custom-set-variables (list 'allout-auto-activation (format "%s" mode)))
1658 (format "%s" mode))
1659 (make-obsolete 'allout-init
1660 "customize 'allout-auto-activation' instead." "23.3")
1661 ;;;_ > allout-setup-menubar ()
1662 (defun allout-setup-menubar ()
1663 "Populate the current buffer's menubar with `allout-mode' stuff."
1664 (let ((menus (list allout-mode-exposure-menu
1665 allout-mode-editing-menu
1666 allout-mode-navigation-menu
1667 allout-mode-misc-menu))
1668 cur)
1669 (while menus
1670 (setq cur (car menus)
1671 menus (cdr menus))
1672 (easy-menu-add cur))))
1673 ;;;_ > allout-overlay-preparations
1674 (defun allout-overlay-preparations ()
1675 "Set the properties of the allout invisible-text overlay and others."
1676 (setplist 'allout-exposure-category nil)
1677 (put 'allout-exposure-category 'invisible 'allout)
1678 (put 'allout-exposure-category 'evaporate t)
1679 ;; ??? We use isearch-open-invisible *and* isearch-mode-end-hook. The
1680 ;; latter would be sufficient, but it seems that a separate behavior --
1681 ;; the _transient_ opening of invisible text during isearch -- is keyed to
1682 ;; presence of the isearch-open-invisible property -- even though this
1683 ;; property controls the isearch _arrival_ behavior. This is the case at
1684 ;; least in emacs 21, 22.1, and xemacs 21.4.
1685 (put 'allout-exposure-category 'isearch-open-invisible
1686 'allout-isearch-end-handler)
1687 (if (featurep 'xemacs)
1688 (put 'allout-exposure-category 'start-open t)
1689 (put 'allout-exposure-category 'insert-in-front-hooks
1690 '(allout-overlay-insert-in-front-handler)))
1691 (put 'allout-exposure-category 'modification-hooks
1692 '(allout-overlay-interior-modification-handler)))
1693 ;;;_ > define-minor-mode allout-mode
1694 ;;;_ : Defun:
1695 ;;;###autoload
1696 (define-minor-mode allout-mode
1697 ;;;_ . Doc string:
1698 "Toggle minor mode for controlling exposure and editing of text outlines.
1699 \\<allout-mode-map-value>
1701 Allout outline mode always runs as a minor mode.
1703 Allout outline mode provides extensive outline oriented
1704 formatting and manipulation. It enables structural editing of
1705 outlines, as well as navigation and exposure. It also is
1706 specifically aimed at accommodating syntax-sensitive text like
1707 programming languages. \(For example, see the allout code itself,
1708 which is organized as an allout outline.)
1710 In addition to typical outline navigation and exposure, allout includes:
1712 - topic-oriented authoring, including keystroke-based topic creation,
1713 repositioning, promotion/demotion, cut, and paste
1714 - incremental search with dynamic exposure and reconcealment of hidden text
1715 - adjustable format, so programming code can be developed in outline-structure
1716 - easy topic encryption and decryption, symmetric or key-pair
1717 - \"Hot-spot\" operation, for single-keystroke maneuvering and exposure control
1718 - integral outline layout, for automatic initial exposure when visiting a file
1719 - independent extensibility, using comprehensive exposure and authoring hooks
1721 and many other features.
1723 Below is a description of the key bindings, and then description
1724 of special `allout-mode' features and terminology. See also the
1725 outline menubar additions for quick reference to many of the
1726 features. Customize `allout-auto-activation' to prepare your
1727 emacs session for automatic activation of `allout-mode'.
1729 The bindings are those listed in `allout-prefixed-keybindings'
1730 and `allout-unprefixed-keybindings'. We recommend customizing
1731 `allout-command-prefix' to use just `\\C-c' as the command
1732 prefix, if the allout bindings don't conflict with any personal
1733 bindings you have on \\C-c. In any case, outline structure
1734 navigation and authoring is simplified by positioning the cursor
1735 on an item's bullet character, the \"hot-spot\" -- then you can
1736 invoke allout commands with just the un-prefixed,
1737 un-control-shifted command letters. This is described further in
1738 the HOT-SPOT Operation section.
1740 Exposure Control:
1741 ----------------
1742 \\[allout-hide-current-subtree] `allout-hide-current-subtree'
1743 \\[allout-show-children] `allout-show-children'
1744 \\[allout-show-current-subtree] `allout-show-current-subtree'
1745 \\[allout-show-current-entry] `allout-show-current-entry'
1746 \\[allout-show-all] `allout-show-all'
1748 Navigation:
1749 ----------
1750 \\[allout-next-visible-heading] `allout-next-visible-heading'
1751 \\[allout-previous-visible-heading] `allout-previous-visible-heading'
1752 \\[allout-up-current-level] `allout-up-current-level'
1753 \\[allout-forward-current-level] `allout-forward-current-level'
1754 \\[allout-backward-current-level] `allout-backward-current-level'
1755 \\[allout-end-of-entry] `allout-end-of-entry'
1756 \\[allout-beginning-of-current-entry] `allout-beginning-of-current-entry' (alternately, goes to hot-spot)
1757 \\[allout-beginning-of-line] `allout-beginning-of-line' -- like regular beginning-of-line, but
1758 if immediately repeated cycles to the beginning of the current item
1759 and then to the hot-spot (if `allout-beginning-of-line-cycles' is set).
1762 Topic Header Production:
1763 -----------------------
1764 \\[allout-open-sibtopic] `allout-open-sibtopic' Create a new sibling after current topic.
1765 \\[allout-open-subtopic] `allout-open-subtopic' ... an offspring of current topic.
1766 \\[allout-open-supertopic] `allout-open-supertopic' ... a sibling of the current topic's parent.
1768 Topic Level and Prefix Adjustment:
1769 ---------------------------------
1770 \\[allout-shift-in] `allout-shift-in' Shift current topic and all offspring deeper
1771 \\[allout-shift-out] `allout-shift-out' ... less deep
1772 \\[allout-rebullet-current-heading] `allout-rebullet-current-heading' Prompt for alternate bullet for
1773 current topic
1774 \\[allout-rebullet-topic] `allout-rebullet-topic' Reconcile bullets of topic and
1775 its' offspring -- distinctive bullets are not changed, others
1776 are alternated according to nesting depth.
1777 \\[allout-number-siblings] `allout-number-siblings' Number bullets of topic and siblings --
1778 the offspring are not affected.
1779 With repeat count, revoke numbering.
1781 Topic-oriented Killing and Yanking:
1782 ----------------------------------
1783 \\[allout-kill-topic] `allout-kill-topic' Kill current topic, including offspring.
1784 \\[allout-copy-topic-as-kill] `allout-copy-topic-as-kill' Copy current topic, including offspring.
1785 \\[allout-kill-line] `allout-kill-line' kill-line, attending to outline structure.
1786 \\[allout-copy-line-as-kill] `allout-copy-line-as-kill' Copy line but don't delete it.
1787 \\[allout-yank] `allout-yank' Yank, adjusting depth of yanked topic to
1788 depth of heading if yanking into bare topic
1789 heading (ie, prefix sans text).
1790 \\[allout-yank-pop] `allout-yank-pop' Is to allout-yank as yank-pop is to yank
1792 Topic-oriented Encryption:
1793 -------------------------
1794 \\[allout-toggle-current-subtree-encryption] `allout-toggle-current-subtree-encryption'
1795 Encrypt/Decrypt topic content
1797 Misc commands:
1798 -------------
1799 M-x outlineify-sticky Activate outline mode for current buffer,
1800 and establish a default file-var setting
1801 for `allout-layout'.
1802 \\[allout-mark-topic] `allout-mark-topic'
1803 \\[allout-copy-exposed-to-buffer] `allout-copy-exposed-to-buffer'
1804 Duplicate outline, sans concealed text, to
1805 buffer with name derived from derived from that
1806 of current buffer -- \"*BUFFERNAME exposed*\".
1807 \\[allout-flatten-exposed-to-buffer] `allout-flatten-exposed-to-buffer'
1808 Like above 'copy-exposed', but convert topic
1809 prefixes to section.subsection... numeric
1810 format.
1811 \\[customize-variable] allout-auto-activation
1812 Prepare Emacs session for allout outline mode
1813 auto-activation.
1815 Topic Encryption
1817 Outline mode supports gpg encryption of topics, with support for
1818 symmetric and key-pair modes, and auto-encryption of topics
1819 pending encryption on save.
1821 Topics pending encryption are, by default, automatically
1822 encrypted during file saves, including checkpoint saves, to avoid
1823 exposing the plain text of encrypted topics in the file system.
1824 If the content of the topic containing the cursor was encrypted
1825 for a save, it is automatically decrypted for continued editing.
1827 NOTE: A few GnuPG v2 versions improperly preserve incorrect
1828 symmetric decryption keys, preventing entry of the correct key on
1829 subsequent decryption attempts until the cache times-out. That
1830 can take several minutes. \(Decryption of other entries is not
1831 affected.) Upgrade your EasyPG version, if you can, and you can
1832 deliberately clear your gpg-agent's cache by sending it a '-HUP'
1833 signal.
1835 See `allout-toggle-current-subtree-encryption' function docstring
1836 and `allout-encrypt-unencrypted-on-saves' customization variable
1837 for details.
1839 HOT-SPOT Operation
1841 Hot-spot operation provides a means for easy, single-keystroke outline
1842 navigation and exposure control.
1844 When the text cursor is positioned directly on the bullet character of
1845 a topic, regular characters (a to z) invoke the commands of the
1846 corresponding allout-mode keymap control chars. For example, \"f\"
1847 would invoke the command typically bound to \"C-c<space>C-f\"
1848 \(\\[allout-forward-current-level] `allout-forward-current-level').
1850 Thus, by positioning the cursor on a topic bullet, you can
1851 execute the outline navigation and manipulation commands with a
1852 single keystroke. Regular navigation keys (eg, \\[forward-char], \\[next-line]) don't get
1853 this special translation, so you can use them to get out of the
1854 hot-spot and back to normal editing operation.
1856 In allout-mode, the normal beginning-of-line command (\\[allout-beginning-of-line]) is
1857 replaced with one that makes it easy to get to the hot-spot. If you
1858 repeat it immediately it cycles (if `allout-beginning-of-line-cycles'
1859 is set) to the beginning of the item and then, if you hit it again
1860 immediately, to the hot-spot. Similarly, `allout-beginning-of-current-entry'
1861 \(\\[allout-beginning-of-current-entry]) moves to the hot-spot when the cursor is already located
1862 at the beginning of the current entry.
1864 Extending Allout
1866 Allout exposure and authoring activites all have associated
1867 hooks, by which independent code can cooperate with allout
1868 without changes to the allout core. Here are key ones:
1870 `allout-mode-hook'
1871 `allout-mode-deactivate-hook' \(deprecated)
1872 `allout-mode-off-hook'
1873 `allout-exposure-change-hook'
1874 `allout-structure-added-hook'
1875 `allout-structure-deleted-hook'
1876 `allout-structure-shifted-hook'
1877 `allout-after-copy-or-kill-hook'
1879 Terminology
1881 Topic hierarchy constituents -- TOPICS and SUBTOPICS:
1883 ITEM: A unitary outline element, including the HEADER and ENTRY text.
1884 TOPIC: An ITEM and any ITEMs contained within it, ie having greater DEPTH
1885 and with no intervening items of lower DEPTH than the container.
1886 CURRENT ITEM:
1887 The visible ITEM most immediately containing the cursor.
1888 DEPTH: The degree of nesting of an ITEM; it increases with containment.
1889 The DEPTH is determined by the HEADER PREFIX. The DEPTH is also
1890 called the:
1891 LEVEL: The same as DEPTH.
1893 ANCESTORS:
1894 Those ITEMs whose TOPICs contain an ITEM.
1895 PARENT: An ITEM's immediate ANCESTOR. It has a DEPTH one less than that
1896 of the ITEM.
1897 OFFSPRING:
1898 The ITEMs contained within an ITEM's TOPIC.
1899 SUBTOPIC:
1900 An OFFSPRING of its ANCESTOR TOPICs.
1901 CHILD:
1902 An immediate SUBTOPIC of its PARENT.
1903 SIBLINGS:
1904 TOPICs having the same PARENT and DEPTH.
1906 Topic text constituents:
1908 HEADER: The first line of an ITEM, include the ITEM PREFIX and HEADER
1909 text.
1910 ENTRY: The text content of an ITEM, before any OFFSPRING, but including
1911 the HEADER text and distinct from the ITEM PREFIX.
1912 BODY: Same as ENTRY.
1913 PREFIX: The leading text of an ITEM which distinguishes it from normal
1914 ENTRY text. Allout recognizes the outline structure according
1915 to the strict PREFIX format. It consists of a PREFIX-LEAD string,
1916 PREFIX-PADDING, and a BULLET. The BULLET might be followed by a
1917 number, indicating the ordinal number of the topic among its
1918 siblings, or an asterisk indicating encryption, plus an optional
1919 space. After that is the ITEM HEADER text, which is not part of
1920 the PREFIX.
1922 The relative length of the PREFIX determines the nesting DEPTH
1923 of the ITEM.
1924 PREFIX-LEAD:
1925 The string at the beginning of a HEADER PREFIX, by default a `.'.
1926 It can be customized by changing the setting of
1927 `allout-header-prefix' and then reinitializing `allout-mode'.
1929 When the PREFIX-LEAD is set to the comment-string of a
1930 programming language, outline structuring can be embedded in
1931 program code without interfering with processing of the text
1932 (by emacs or the language processor) as program code. This
1933 setting happens automatically when allout mode is used in
1934 programming-mode buffers. See `allout-use-mode-specific-leader'
1935 docstring for more detail.
1936 PREFIX-PADDING:
1937 Spaces or asterisks which separate the PREFIX-LEAD and the
1938 bullet, determining the ITEM's DEPTH.
1939 BULLET: A character at the end of the ITEM PREFIX, it must be one of
1940 the characters listed on `allout-plain-bullets-string' or
1941 `allout-distinctive-bullets-string'. When creating a TOPIC,
1942 plain BULLETs are by default used, according to the DEPTH of the
1943 TOPIC. Choice among the distinctive BULLETs is offered when you
1944 provide a universal argugment \(\\[universal-argument]) to the
1945 TOPIC creation command, or when explictly rebulleting a TOPIC. The
1946 significance of the various distinctive bullets is purely by
1947 convention. See the documentation for the above bullet strings for
1948 more details.
1949 EXPOSURE:
1950 The state of a TOPIC which determines the on-screen visibility
1951 of its OFFSPRING and contained ENTRY text.
1952 CONCEALED:
1953 TOPICs and ENTRY text whose EXPOSURE is inhibited. Concealed
1954 text is represented by \"...\" ellipses.
1956 CONCEALED TOPICs are effectively collapsed within an ANCESTOR.
1957 CLOSED: A TOPIC whose immediate OFFSPRING and body-text is CONCEALED.
1958 OPEN: A TOPIC that is not CLOSED, though its OFFSPRING or BODY may be."
1959 ;;;_ . Code
1960 :lighter " Allout"
1961 :keymap 'allout-mode-map
1963 (let ((write-file-hook-var-name (cond ((boundp 'write-file-functions)
1964 'write-file-functions)
1965 ((boundp 'write-file-hooks)
1966 'write-file-hooks)
1967 (t 'local-write-file-hooks)))
1968 (use-layout (if (listp allout-layout)
1969 allout-layout
1970 allout-default-layout)))
1972 (if (not (allout-mode-p))
1973 (progn
1974 ;; Deactivation:
1976 ; Activation not explicitly
1977 ; requested, and either in
1978 ; active state or *de*activation
1979 ; specifically requested:
1980 (allout-do-resumptions)
1982 (remove-from-invisibility-spec '(allout . t))
1983 (remove-hook 'pre-command-hook 'allout-pre-command-business t)
1984 (remove-hook 'post-command-hook 'allout-post-command-business t)
1985 (remove-hook 'before-change-functions 'allout-before-change-handler t)
1986 (remove-hook 'isearch-mode-end-hook 'allout-isearch-end-handler t)
1987 (remove-hook write-file-hook-var-name
1988 'allout-write-file-hook-handler t)
1989 (remove-hook 'auto-save-hook 'allout-auto-save-hook-handler t)
1991 (remove-overlays (point-min) (point-max)
1992 'category 'allout-exposure-category))
1994 ;; Activating:
1995 (if allout-old-style-prefixes
1996 ;; Inhibit all the fancy formatting:
1997 (allout-add-resumptions '(allout-primary-bullet "*")))
1999 (allout-overlay-preparations) ; Doesn't hurt to redo this.
2001 (allout-infer-header-lead-and-primary-bullet)
2002 (allout-infer-body-reindent)
2004 (set-allout-regexp)
2005 (allout-add-resumptions '(allout-encryption-ciphertext-rejection-regexps
2006 allout-line-boundary-regexp
2007 extend)
2008 '(allout-encryption-ciphertext-rejection-regexps
2009 allout-bob-regexp
2010 extend))
2012 (allout-compose-and-institute-keymap)
2013 (produce-allout-mode-menubar-entries)
2015 (add-to-invisibility-spec '(allout . t))
2017 (allout-add-resumptions '(line-move-ignore-invisible t))
2018 (add-hook 'pre-command-hook 'allout-pre-command-business nil t)
2019 (add-hook 'post-command-hook 'allout-post-command-business nil t)
2020 (add-hook 'before-change-functions 'allout-before-change-handler nil t)
2021 (add-hook 'isearch-mode-end-hook 'allout-isearch-end-handler nil t)
2022 (add-hook write-file-hook-var-name 'allout-write-file-hook-handler
2023 nil t)
2024 (add-hook 'auto-save-hook 'allout-auto-save-hook-handler nil t)
2026 ;; Stash auto-fill settings and adjust so custom allout auto-fill
2027 ;; func will be used if auto-fill is active or activated. (The
2028 ;; custom func respects topic headline, maintains hanging-indents,
2029 ;; etc.)
2030 (allout-add-resumptions (list 'allout-former-auto-filler
2031 auto-fill-function)
2032 ;; Register allout-auto-fill to be used if
2033 ;; filling is active:
2034 (list 'allout-outside-normal-auto-fill-function
2035 normal-auto-fill-function)
2036 '(normal-auto-fill-function allout-auto-fill)
2037 ;; Paragraphs are broken by topic headlines.
2038 (list 'paragraph-start
2039 (concat paragraph-start "\\|^\\("
2040 allout-regexp "\\)"))
2041 (list 'paragraph-separate
2042 (concat paragraph-separate "\\|^\\("
2043 allout-regexp "\\)")))
2044 (if (and auto-fill-function (not allout-inhibit-auto-fill))
2045 ;; allout-auto-fill will use the stashed values and so forth.
2046 (allout-add-resumptions '(auto-fill-function allout-auto-fill)))
2048 (allout-setup-menubar)
2050 ;; Do auto layout if warranted:
2051 (when (and allout-layout
2052 allout-auto-activation
2053 use-layout
2054 (and (not (string= allout-auto-activation "activate"))
2055 (if (string= allout-auto-activation "ask")
2056 (if (y-or-n-p (format "Expose %s with layout '%s'? "
2057 (buffer-name)
2058 use-layout))
2060 (message "Skipped %s layout." (buffer-name))
2061 nil)
2062 t)))
2063 (save-excursion
2064 (message "Adjusting '%s' exposure..." (buffer-name))
2065 (goto-char 0)
2066 (allout-this-or-next-heading)
2067 (condition-case err
2068 (progn
2069 (apply 'allout-expose-topic (list use-layout))
2070 (message "Adjusting '%s' exposure... done."
2071 (buffer-name)))
2072 ;; Problem applying exposure -- notify user, but don't
2073 ;; interrupt, eg, file visit:
2074 (error (message "%s" (car (cdr err)))
2075 (sit-for 1))))
2076 ) ; when allout-layout
2077 ) ; if (allout-mode-p)
2078 ) ; let (())
2079 ) ; define-minor-mode
2080 ;;;_ > allout-minor-mode alias
2081 (defalias 'allout-minor-mode 'allout-mode)
2082 ;;;_ > allout-unload-function
2083 (defun allout-unload-function ()
2084 "Unload the allout outline library."
2085 (save-current-buffer
2086 (dolist (buffer (buffer-list))
2087 (set-buffer buffer)
2088 (when (allout-mode-p) (allout-mode -1))))
2089 ;; continue standard unloading
2090 nil)
2092 ;;;_ - Position Assessment
2093 ;;;_ > allout-hidden-p (&optional pos)
2094 (defsubst allout-hidden-p (&optional pos)
2095 "Non-nil if the character after point was made invisible by allout."
2096 (eq (get-char-property (or pos (point)) 'invisible) 'allout))
2098 ;;;_ > allout-overlay-insert-in-front-handler (ol after beg end
2099 ;;; &optional prelen)
2100 (defun allout-overlay-insert-in-front-handler (ol after beg end
2101 &optional prelen)
2102 "Shift the overlay so stuff inserted in front of it is excluded."
2103 (if after
2104 ;; ??? Shouldn't moving the overlay should be unnecessary, if overlay
2105 ;; front-advance on the overlay worked as expected?
2106 (move-overlay ol (1+ beg) (overlay-end ol))))
2107 ;;;_ > allout-overlay-interior-modification-handler (ol after beg end
2108 ;;; &optional prelen)
2109 (defun allout-overlay-interior-modification-handler (ol after beg end
2110 &optional prelen)
2111 "Get confirmation before making arbitrary changes to invisible text.
2113 We expose the invisible text and ask for confirmation. Refusal or
2114 `keyboard-quit' abandons the changes, with keyboard-quit additionally
2115 reclosing the opened text.
2117 No confirmation is necessary when `inhibit-read-only' is set -- eg, allout
2118 internal functions use this feature cohesively bunch changes."
2120 (when (and (not inhibit-read-only) (not after))
2121 (let ((start (point))
2122 (ol-start (overlay-start ol))
2123 (ol-end (overlay-end ol))
2124 first)
2125 (goto-char beg)
2126 (while (< (point) end)
2127 (when (allout-hidden-p)
2128 (allout-show-to-offshoot)
2129 (if (allout-hidden-p)
2130 (save-excursion (forward-char 1)
2131 (allout-show-to-offshoot)))
2132 (when (not first)
2133 (setq first (point))))
2134 (goto-char (if (featurep 'xemacs)
2135 (next-property-change (1+ (point)) nil end)
2136 (next-char-property-change (1+ (point)) end))))
2137 (when first
2138 (goto-char first)
2139 (condition-case nil
2140 (if (not
2141 (yes-or-no-p
2142 (substitute-command-keys
2143 (concat "Modify concealed text? (\"no\" just aborts,"
2144 " \\[keyboard-quit] also reconceals) "))))
2145 (progn (goto-char start)
2146 (error "Concealed-text change refused")))
2147 (quit (allout-flag-region ol-start ol-end nil)
2148 (allout-flag-region ol-start ol-end t)
2149 (error "Concealed-text change abandoned, text reconcealed"))))
2150 (goto-char start))))
2151 ;;;_ > allout-before-change-handler (beg end)
2152 (defun allout-before-change-handler (beg end)
2153 "Protect against changes to invisible text.
2155 See `allout-overlay-interior-modification-handler' for details."
2157 (when (and (allout-mode-p) undo-in-progress (allout-hidden-p))
2158 (allout-show-children))
2160 ;; allout-overlay-interior-modification-handler on an overlay handles
2161 ;; this in other emacs, via `allout-exposure-category's 'modification-hooks.
2162 (when (and (featurep 'xemacs) (allout-mode-p))
2163 ;; process all of the pending overlays:
2164 (save-excursion
2165 (goto-char beg)
2166 (let ((overlay (allout-get-invisibility-overlay)))
2167 (if overlay
2168 (allout-overlay-interior-modification-handler
2169 overlay nil beg end nil))))))
2170 ;;;_ > allout-isearch-end-handler (&optional overlay)
2171 (defun allout-isearch-end-handler (&optional overlay)
2172 "Reconcile allout outline exposure on arriving in hidden text after isearch.
2174 Optional OVERLAY parameter is for when this function is used by
2175 `isearch-open-invisible' overlay property. It is otherwise unused, so this
2176 function can also be used as an `isearch-mode-end-hook'."
2178 (if (and (allout-mode-p) (allout-hidden-p))
2179 (allout-show-to-offshoot)))
2181 ;;;_ #3 Internal Position State-Tracking -- "allout-recent-*" funcs
2182 ;; All the basic outline functions that directly do string matches to
2183 ;; evaluate heading prefix location set the variables
2184 ;; `allout-recent-prefix-beginning' and `allout-recent-prefix-end'
2185 ;; when successful. Functions starting with `allout-recent-' all
2186 ;; use this state, providing the means to avoid redundant searches
2187 ;; for just-established data. This optimization can provide
2188 ;; significant speed improvement, but it must be employed carefully.
2189 ;;;_ = allout-recent-prefix-beginning
2190 (defvar allout-recent-prefix-beginning 0
2191 "Buffer point of the start of the last topic prefix encountered.")
2192 (make-variable-buffer-local 'allout-recent-prefix-beginning)
2193 ;;;_ = allout-recent-prefix-end
2194 (defvar allout-recent-prefix-end 0
2195 "Buffer point of the end of the last topic prefix encountered.")
2196 (make-variable-buffer-local 'allout-recent-prefix-end)
2197 ;;;_ = allout-recent-depth
2198 (defvar allout-recent-depth 0
2199 "Depth of the last topic prefix encountered.")
2200 (make-variable-buffer-local 'allout-recent-depth)
2201 ;;;_ = allout-recent-end-of-subtree
2202 (defvar allout-recent-end-of-subtree 0
2203 "Buffer point last returned by `allout-end-of-current-subtree'.")
2204 (make-variable-buffer-local 'allout-recent-end-of-subtree)
2205 ;;;_ > allout-prefix-data ()
2206 (defsubst allout-prefix-data ()
2207 "Register allout-prefix state data.
2209 For reference by `allout-recent' funcs. Return
2210 the new value of `allout-recent-prefix-beginning'."
2211 (setq allout-recent-prefix-end (or (match-end 1) (match-end 2) (match-end 3))
2212 allout-recent-prefix-beginning (or (match-beginning 1)
2213 (match-beginning 2)
2214 (match-beginning 3))
2215 allout-recent-depth (max 1 (- allout-recent-prefix-end
2216 allout-recent-prefix-beginning
2217 allout-header-subtraction)))
2218 allout-recent-prefix-beginning)
2219 ;;;_ > nullify-allout-prefix-data ()
2220 (defsubst nullify-allout-prefix-data ()
2221 "Mark allout prefix data as being uninformative."
2222 (setq allout-recent-prefix-end (point)
2223 allout-recent-prefix-beginning (point)
2224 allout-recent-depth 0)
2225 allout-recent-prefix-beginning)
2226 ;;;_ > allout-recent-depth ()
2227 (defsubst allout-recent-depth ()
2228 "Return depth of last heading encountered by an outline maneuvering function.
2230 All outline functions which directly do string matches to assess
2231 headings set the variables `allout-recent-prefix-beginning' and
2232 `allout-recent-prefix-end' if successful. This function uses those settings
2233 to return the current depth."
2235 allout-recent-depth)
2236 ;;;_ > allout-recent-prefix ()
2237 (defsubst allout-recent-prefix ()
2238 "Like `allout-recent-depth', but returns text of last encountered prefix.
2240 All outline functions which directly do string matches to assess
2241 headings set the variables `allout-recent-prefix-beginning' and
2242 `allout-recent-prefix-end' if successful. This function uses those settings
2243 to return the current prefix."
2244 (buffer-substring-no-properties allout-recent-prefix-beginning
2245 allout-recent-prefix-end))
2246 ;;;_ > allout-recent-bullet ()
2247 (defmacro allout-recent-bullet ()
2248 "Like allout-recent-prefix, but returns bullet of last encountered prefix.
2250 All outline functions which directly do string matches to assess
2251 headings set the variables `allout-recent-prefix-beginning' and
2252 `allout-recent-prefix-end' if successful. This function uses those settings
2253 to return the current depth of the most recently matched topic."
2254 '(buffer-substring-no-properties (1- allout-recent-prefix-end)
2255 allout-recent-prefix-end))
2257 ;;;_ #4 Navigation
2259 ;;;_ - Position Assessment
2260 ;;;_ : Location Predicates
2261 ;;;_ > allout-do-doublecheck ()
2262 (defsubst allout-do-doublecheck ()
2263 "True if current item conditions qualify for checking on topic aberrance."
2264 (and
2265 ;; presume integrity of outline and yanked content during yank -- necessary
2266 ;; to allow for level disparity of yank location and yanked text:
2267 (not allout-inhibit-aberrance-doublecheck)
2268 ;; allout-doublecheck-at-and-shallower is ceiling for doublecheck:
2269 (<= allout-recent-depth allout-doublecheck-at-and-shallower)))
2270 ;;;_ > allout-aberrant-container-p ()
2271 (defun allout-aberrant-container-p ()
2272 "True if topic, or next sibling with children, contains them discontinuously.
2274 Discontinuous means an immediate offspring that is nested more
2275 than one level deeper than the topic.
2277 If topic has no offspring, then the next sibling with offspring will
2278 determine whether or not this one is determined to be aberrant.
2280 If true, then the allout-recent-* settings are calibrated on the
2281 offspring that qaulifies it as aberrant, ie with depth that
2282 exceeds the topic by more than one."
2284 ;; This is most clearly understood when considering standard-prefix-leader
2285 ;; low-level topics, which can all too easily match text not intended as
2286 ;; headers. For example, any line with a leading '.' or '*' and lacking a
2287 ;; following bullet qualifies without this protection. (A sequence of
2288 ;; them can occur naturally, eg a typical textual bullet list.) We
2289 ;; disqualify such low-level sequences when they are followed by a
2290 ;; discontinuously contained child, inferring that the sequences are not
2291 ;; actually connected with their prospective context.
2293 (let ((depth (allout-depth))
2294 (start-point (point))
2295 done aberrant)
2296 (save-match-data
2297 (save-excursion
2298 (while (and (not done)
2299 (re-search-forward allout-line-boundary-regexp nil 0))
2300 (allout-prefix-data)
2301 (goto-char allout-recent-prefix-beginning)
2302 (cond
2303 ;; sibling -- continue:
2304 ((eq allout-recent-depth depth))
2305 ;; first offspring is excessive -- aberrant:
2306 ((> allout-recent-depth (1+ depth))
2307 (setq done t aberrant t))
2308 ;; next non-sibling is lower-depth -- not aberrant:
2309 (t (setq done t))))))
2310 (if aberrant
2311 aberrant
2312 (goto-char start-point)
2313 ;; recalibrate allout-recent-*
2314 (allout-depth)
2315 nil)))
2316 ;;;_ > allout-on-current-heading-p ()
2317 (defun allout-on-current-heading-p ()
2318 "Return non-nil if point is on current visible topics' header line.
2320 Actually, returns prefix beginning point."
2321 (save-excursion
2322 (allout-beginning-of-current-line)
2323 (save-match-data
2324 (and (looking-at allout-regexp)
2325 (allout-prefix-data)
2326 (or (not (allout-do-doublecheck))
2327 (not (allout-aberrant-container-p)))))))
2328 ;;;_ > allout-on-heading-p ()
2329 (defalias 'allout-on-heading-p 'allout-on-current-heading-p)
2330 ;;;_ > allout-e-o-prefix-p ()
2331 (defun allout-e-o-prefix-p ()
2332 "True if point is located where current topic prefix ends, heading begins."
2333 (and (save-match-data
2334 (save-excursion (let ((inhibit-field-text-motion t))
2335 (beginning-of-line))
2336 (looking-at allout-regexp))
2337 (= (point) (save-excursion (allout-end-of-prefix)(point))))))
2338 ;;;_ : Location attributes
2339 ;;;_ > allout-depth ()
2340 (defun allout-depth ()
2341 "Return depth of topic most immediately containing point.
2343 Does not do doublecheck for aberrant topic header.
2345 Return zero if point is not within any topic.
2347 Like `allout-current-depth', but respects hidden as well as visible topics."
2348 (save-excursion
2349 (let ((start-point (point)))
2350 (if (and (allout-goto-prefix)
2351 (not (< start-point (point))))
2352 allout-recent-depth
2353 (progn
2354 ;; Oops, no prefix, nullify it:
2355 (nullify-allout-prefix-data)
2356 ;; ... and return 0:
2357 0)))))
2358 ;;;_ > allout-current-depth ()
2359 (defun allout-current-depth ()
2360 "Return depth of visible topic most immediately containing point.
2362 Return zero if point is not within any topic."
2363 (save-excursion
2364 (if (allout-back-to-current-heading)
2365 (max 1
2366 (- allout-recent-prefix-end
2367 allout-recent-prefix-beginning
2368 allout-header-subtraction))
2369 0)))
2370 ;;;_ > allout-get-current-prefix ()
2371 (defun allout-get-current-prefix ()
2372 "Topic prefix of the current topic."
2373 (save-excursion
2374 (if (allout-goto-prefix)
2375 (allout-recent-prefix))))
2376 ;;;_ > allout-get-bullet ()
2377 (defun allout-get-bullet ()
2378 "Return bullet of containing topic (visible or not)."
2379 (save-excursion
2380 (and (allout-goto-prefix)
2381 (allout-recent-bullet))))
2382 ;;;_ > allout-current-bullet ()
2383 (defun allout-current-bullet ()
2384 "Return bullet of current (visible) topic heading, or none if none found."
2385 (condition-case nil
2386 (save-excursion
2387 (allout-back-to-current-heading)
2388 (buffer-substring-no-properties (- allout-recent-prefix-end 1)
2389 allout-recent-prefix-end))
2390 ;; Quick and dirty provision, ostensibly for missing bullet:
2391 (args-out-of-range nil))
2393 ;;;_ > allout-get-prefix-bullet (prefix)
2394 (defun allout-get-prefix-bullet (prefix)
2395 "Return the bullet of the header prefix string PREFIX."
2396 ;; Doesn't make sense if we're old-style prefixes, but this just
2397 ;; oughtn't be called then, so forget about it...
2398 (if (string-match allout-regexp prefix)
2399 (substring prefix (1- (match-end 2)) (match-end 2))))
2400 ;;;_ > allout-sibling-index (&optional depth)
2401 (defun allout-sibling-index (&optional depth)
2402 "Item number of this prospective topic among its siblings.
2404 If optional arg DEPTH is greater than current depth, then we're
2405 opening a new level, and return 0.
2407 If less than this depth, ascend to that depth and count..."
2409 (save-excursion
2410 (cond ((and depth (<= depth 0) 0))
2411 ((or (null depth) (= depth (allout-depth)))
2412 (let ((index 1))
2413 (while (allout-previous-sibling allout-recent-depth nil)
2414 (setq index (1+ index)))
2415 index))
2416 ((< depth allout-recent-depth)
2417 (allout-ascend-to-depth depth)
2418 (allout-sibling-index))
2419 (0))))
2420 ;;;_ > allout-topic-flat-index ()
2421 (defun allout-topic-flat-index ()
2422 "Return a list indicating point's numeric section.subsect.subsubsect...
2423 Outermost is first."
2424 (let* ((depth (allout-depth))
2425 (next-index (allout-sibling-index depth))
2426 (rev-sibls nil))
2427 (while (> next-index 0)
2428 (setq rev-sibls (cons next-index rev-sibls))
2429 (setq depth (1- depth))
2430 (setq next-index (allout-sibling-index depth)))
2431 rev-sibls)
2434 ;;;_ - Navigation routines
2435 ;;;_ > allout-beginning-of-current-line ()
2436 (defun allout-beginning-of-current-line ()
2437 "Like beginning of line, but to visible text."
2439 ;; This combination of move-beginning-of-line and beginning-of-line is
2440 ;; deliberate, but the (beginning-of-line) may now be superfluous.
2441 (let ((inhibit-field-text-motion t))
2442 (move-beginning-of-line 1)
2443 (beginning-of-line)
2444 (while (and (not (bobp)) (or (not (bolp)) (allout-hidden-p)))
2445 (beginning-of-line)
2446 (if (or (allout-hidden-p) (not (bolp)))
2447 (forward-char -1)))))
2448 ;;;_ > allout-end-of-current-line ()
2449 (defun allout-end-of-current-line ()
2450 "Move to the end of line, past concealed text if any."
2451 ;; This is for symmetry with `allout-beginning-of-current-line' --
2452 ;; `move-end-of-line' doesn't suffer the same problem as
2453 ;; `move-beginning-of-line'.
2454 (let ((inhibit-field-text-motion t))
2455 (end-of-line)
2456 (while (allout-hidden-p)
2457 (end-of-line)
2458 (if (allout-hidden-p) (forward-char 1)))))
2459 ;;;_ > allout-beginning-of-line ()
2460 (defun allout-beginning-of-line ()
2461 "Beginning-of-line with `allout-beginning-of-line-cycles' behavior, if set."
2463 (interactive)
2465 (if (or (not allout-beginning-of-line-cycles)
2466 (not (equal last-command this-command)))
2467 (progn
2468 (if (and (not (bolp))
2469 (allout-hidden-p (1- (point))))
2470 (goto-char (allout-previous-single-char-property-change
2471 (1- (point)) 'invisible)))
2472 (move-beginning-of-line 1))
2473 (allout-depth)
2474 (let ((beginning-of-body
2475 (save-excursion
2476 (while (and (allout-do-doublecheck)
2477 (allout-aberrant-container-p)
2478 (allout-previous-visible-heading 1)))
2479 (allout-beginning-of-current-entry)
2480 (point))))
2481 (cond ((= (current-column) 0)
2482 (goto-char beginning-of-body))
2483 ((< (point) beginning-of-body)
2484 (allout-beginning-of-current-line))
2485 ((= (point) beginning-of-body)
2486 (goto-char (allout-current-bullet-pos)))
2487 (t (allout-beginning-of-current-line)
2488 (if (< (point) beginning-of-body)
2489 ;; we were on the headline after its start:
2490 (goto-char beginning-of-body)))))))
2491 ;;;_ > allout-end-of-line ()
2492 (defun allout-end-of-line ()
2493 "End-of-line with `allout-end-of-line-cycles' behavior, if set."
2495 (interactive)
2497 (if (or (not allout-end-of-line-cycles)
2498 (not (equal last-command this-command)))
2499 (allout-end-of-current-line)
2500 (let ((end-of-entry (save-excursion
2501 (allout-end-of-entry)
2502 (point))))
2503 (cond ((not (eolp))
2504 (allout-end-of-current-line))
2505 ((or (allout-hidden-p) (save-excursion
2506 (forward-char -1)
2507 (allout-hidden-p)))
2508 (allout-back-to-current-heading)
2509 (allout-show-current-entry)
2510 (allout-show-children)
2511 (allout-end-of-entry))
2512 ((>= (point) end-of-entry)
2513 (allout-back-to-current-heading)
2514 (allout-end-of-current-line))
2516 (if (not (allout-mark-active-p))
2517 (push-mark))
2518 (allout-end-of-entry))))))
2519 ;;;_ > allout-mark-active-p ()
2520 (defun allout-mark-active-p ()
2521 "True if the mark is currently or always active."
2522 ;; `(cond (boundp...))' (or `(if ...)') invokes special byte-compiler
2523 ;; provisions, at least in fsf emacs to prevent warnings about lack of,
2524 ;; eg, region-active-p.
2525 (cond ((boundp 'mark-active)
2526 mark-active)
2527 ((fboundp 'region-active-p)
2528 (region-active-p))
2529 (t)))
2530 ;;;_ > allout-next-heading ()
2531 (defsubst allout-next-heading ()
2532 "Move to the heading for the topic (possibly invisible) after this one.
2534 Returns the location of the heading, or nil if none found.
2536 We skip anomalous low-level topics, a la `allout-aberrant-container-p'."
2537 (save-match-data
2539 (if (looking-at allout-regexp)
2540 (forward-char 1))
2542 (when (re-search-forward allout-line-boundary-regexp nil 0)
2543 (allout-prefix-data)
2544 (goto-char allout-recent-prefix-beginning)
2545 (while (not (bolp))
2546 (forward-char -1))
2547 (and (allout-do-doublecheck)
2548 ;; this will set allout-recent-* on the first non-aberrant topic,
2549 ;; whether it's the current one or one that disqualifies it:
2550 (allout-aberrant-container-p))
2551 ;; this may or may not be the same as above depending on doublecheck:
2552 (goto-char allout-recent-prefix-beginning))))
2553 ;;;_ > allout-this-or-next-heading
2554 (defun allout-this-or-next-heading ()
2555 "Position cursor on current or next heading."
2556 ;; A throwaway non-macro that is defined after allout-next-heading
2557 ;; and usable by allout-mode.
2558 (if (not (allout-goto-prefix-doublechecked)) (allout-next-heading)))
2559 ;;;_ > allout-previous-heading ()
2560 (defun allout-previous-heading ()
2561 "Move to the prior (possibly invisible) heading line.
2563 Return the location of the beginning of the heading, or nil if not found.
2565 We skip anomalous low-level topics, a la `allout-aberrant-container-p'."
2567 (if (bobp)
2569 (let ((start-point (point)))
2570 ;; allout-goto-prefix-doublechecked calls us, so we can't use it here.
2571 (allout-goto-prefix)
2572 (save-match-data
2573 (when (or (re-search-backward allout-line-boundary-regexp nil 0)
2574 (looking-at allout-bob-regexp))
2575 (goto-char (allout-prefix-data))
2576 (if (and (allout-do-doublecheck)
2577 (allout-aberrant-container-p))
2578 (or (allout-previous-heading)
2579 (and (goto-char start-point)
2580 ;; recalibrate allout-recent-*:
2581 (allout-depth)
2582 nil))
2583 (point)))))))
2584 ;;;_ > allout-get-invisibility-overlay ()
2585 (defun allout-get-invisibility-overlay ()
2586 "Return the overlay at point that dictates allout invisibility."
2587 (let ((overlays (overlays-at (point)))
2588 got)
2589 (while (and overlays (not got))
2590 (if (equal (overlay-get (car overlays) 'invisible) 'allout)
2591 (setq got (car overlays))
2592 (pop overlays)))
2593 got))
2594 ;;;_ > allout-back-to-visible-text ()
2595 (defun allout-back-to-visible-text ()
2596 "Move to most recent prior character that is visible, and return point."
2597 (if (allout-hidden-p)
2598 (goto-char (overlay-start (allout-get-invisibility-overlay))))
2599 (point))
2601 ;;;_ - Subtree Charting
2602 ;;;_ " These routines either produce or assess charts, which are
2603 ;;; nested lists of the locations of topics within a subtree.
2605 ;;; Charts enable efficient subtree navigation by providing a reusable basis
2606 ;;; for elaborate, compound assessment and adjustment of a subtree.
2608 ;;;_ > allout-chart-subtree (&optional levels visible orig-depth prev-depth)
2609 (defun allout-chart-subtree (&optional levels visible orig-depth prev-depth)
2610 "Produce a location \"chart\" of subtopics of the containing topic.
2612 Optional argument LEVELS specifies a depth limit (relative to start
2613 depth) for the chart. Null LEVELS means no limit.
2615 When optional argument VISIBLE is non-nil, the chart includes
2616 only the visible subelements of the charted subjects.
2618 The remaining optional args are for internal use by the function.
2620 Point is left at the end of the subtree.
2622 Charts are used to capture outline structure, so that outline-altering
2623 routines need assess the structure only once, and then use the chart
2624 for their elaborate manipulations.
2626 The chart entries for the topics are in reverse order, so the
2627 last topic is listed first. The entry for each topic consists of
2628 an integer indicating the point at the beginning of the topic
2629 prefix. Charts for offspring consists of a list containing,
2630 recursively, the charts for the respective subtopics. The chart
2631 for a topics' offspring precedes the entry for the topic itself.
2633 The other function parameters are for internal recursion, and should
2634 not be specified by external callers. ORIG-DEPTH is depth of topic at
2635 starting point, and PREV-DEPTH is depth of prior topic."
2637 (let ((original (not orig-depth)) ; `orig-depth' set only in recursion.
2638 chart curr-depth)
2640 (if original ; Just starting?
2641 ; Register initial settings and
2642 ; position to first offspring:
2643 (progn (setq orig-depth (allout-depth))
2644 (or prev-depth (setq prev-depth (1+ orig-depth)))
2645 (if visible
2646 (allout-next-visible-heading 1)
2647 (allout-next-heading))))
2649 ;; Loop over the current levels' siblings. Besides being more
2650 ;; efficient than tail-recursing over a level, it avoids exceeding
2651 ;; the typically quite constrained Emacs max-lisp-eval-depth.
2653 ;; Probably would speed things up to implement loop-based stack
2654 ;; operation rather than recursing for lower levels. Bah.
2656 (while (and (not (eobp))
2657 ; Still within original topic?
2658 (< orig-depth (setq curr-depth allout-recent-depth))
2659 (cond ((= prev-depth curr-depth)
2660 ;; Register this one and move on:
2661 (setq chart (cons allout-recent-prefix-beginning chart))
2662 (if (and levels (<= levels 1))
2663 ;; At depth limit -- skip sublevels:
2664 (or (allout-next-sibling curr-depth)
2665 ;; or no more siblings -- proceed to
2666 ;; next heading at lesser depth:
2667 (while (and (<= curr-depth
2668 allout-recent-depth)
2669 (if visible
2670 (allout-next-visible-heading 1)
2671 (allout-next-heading)))))
2672 (if visible
2673 (allout-next-visible-heading 1)
2674 (allout-next-heading))))
2676 ((and (< prev-depth curr-depth)
2677 (or (not levels)
2678 (> levels 0)))
2679 ;; Recurse on deeper level of curr topic:
2680 (setq chart
2681 (cons (allout-chart-subtree (and levels
2682 (1- levels))
2683 visible
2684 orig-depth
2685 curr-depth)
2686 chart))
2687 ;; ... then continue with this one.
2690 ;; ... else nil if we've ascended back to prev-depth.
2694 (if original ; We're at the last sibling on
2695 ; the original level. Position
2696 ; to the end of it:
2697 (progn (and (not (eobp)) (forward-char -1))
2698 (and (= (preceding-char) ?\n)
2699 (= (aref (buffer-substring (max 1 (- (point) 3))
2700 (point))
2702 ?\n)
2703 (forward-char -1))
2704 (setq allout-recent-end-of-subtree (point))))
2706 chart ; (nreverse chart) not necessary,
2707 ; and maybe not preferable.
2709 ;;;_ > allout-chart-siblings (&optional start end)
2710 (defun allout-chart-siblings (&optional start end)
2711 "Produce a list of locations of this and succeeding sibling topics.
2712 Effectively a top-level chart of siblings. See `allout-chart-subtree'
2713 for an explanation of charts."
2714 (save-excursion
2715 (when (allout-goto-prefix-doublechecked)
2716 (let ((chart (list (point))))
2717 (while (allout-next-sibling)
2718 (setq chart (cons (point) chart)))
2719 (if chart (setq chart (nreverse chart)))))))
2720 ;;;_ > allout-chart-to-reveal (chart depth)
2721 (defun allout-chart-to-reveal (chart depth)
2723 "Return a flat list of hidden points in subtree CHART, up to DEPTH.
2725 If DEPTH is nil, include hidden points at any depth.
2727 Note that point can be left at any of the points on chart, or at the
2728 start point."
2730 (let (result here)
2731 (while (and (or (null depth) (> depth 0))
2732 chart)
2733 (setq here (car chart))
2734 (if (listp here)
2735 (let ((further (allout-chart-to-reveal here (if (null depth)
2736 depth
2737 (1- depth)))))
2738 ;; We're on the start of a subtree -- recurse with it, if there's
2739 ;; more depth to go:
2740 (if further (setq result (append further result)))
2741 (setq chart (cdr chart)))
2742 (goto-char here)
2743 (if (allout-hidden-p)
2744 (setq result (cons here result)))
2745 (setq chart (cdr chart))))
2746 result))
2747 ;;;_ X allout-chart-spec (chart spec &optional exposing)
2748 ;; (defun allout-chart-spec (chart spec &optional exposing)
2749 ;; "Not yet (if ever) implemented.
2751 ;; Produce exposure directives given topic/subtree CHART and an exposure SPEC.
2753 ;; Exposure spec indicates the locations to be exposed and the prescribed
2754 ;; exposure status. Optional arg EXPOSING is an integer, with 0
2755 ;; indicating pending concealment, anything higher indicating depth to
2756 ;; which subtopic headers should be exposed, and negative numbers
2757 ;; indicating (negative of) the depth to which subtopic headers and
2758 ;; bodies should be exposed.
2760 ;; The produced list can have two types of entries. Bare numbers
2761 ;; indicate points in the buffer where topic headers that should be
2762 ;; exposed reside.
2764 ;; - bare negative numbers indicates that the topic starting at the
2765 ;; point which is the negative of the number should be opened,
2766 ;; including their entries.
2767 ;; - bare positive values indicate that this topic header should be
2768 ;; opened.
2769 ;; - Lists signify the beginning and end points of regions that should
2770 ;; be flagged, and the flag to employ. (For concealment: `(\?r)', and
2771 ;; exposure:"
2772 ;; (while spec
2773 ;; (cond ((listp spec)
2774 ;; )
2775 ;; )
2776 ;; (setq spec (cdr spec)))
2777 ;; )
2779 ;;;_ - Within Topic
2780 ;;;_ > allout-goto-prefix ()
2781 (defun allout-goto-prefix ()
2782 "Put point at beginning of immediately containing outline topic.
2784 Goes to most immediate subsequent topic if none immediately containing.
2786 Not sensitive to topic visibility.
2788 Returns the point at the beginning of the prefix, or nil if none."
2790 (save-match-data
2791 (let (done)
2792 (while (and (not done)
2793 (search-backward "\n" nil 1))
2794 (forward-char 1)
2795 (if (looking-at allout-regexp)
2796 (setq done (allout-prefix-data))
2797 (forward-char -1)))
2798 (if (bobp)
2799 (cond ((looking-at allout-regexp)
2800 (allout-prefix-data))
2801 ((allout-next-heading))
2802 (done))
2803 done))))
2804 ;;;_ > allout-goto-prefix-doublechecked ()
2805 (defun allout-goto-prefix-doublechecked ()
2806 "Put point at beginning of immediately containing outline topic.
2808 Like `allout-goto-prefix', but shallow topics (according to
2809 `allout-doublecheck-at-and-shallower') are checked and
2810 disqualified for child containment discontinuity, according to
2811 `allout-aberrant-container-p'."
2812 (if (allout-goto-prefix)
2813 (if (and (allout-do-doublecheck)
2814 (allout-aberrant-container-p))
2815 (allout-previous-heading)
2816 (point))))
2818 ;;;_ > allout-end-of-prefix ()
2819 (defun allout-end-of-prefix (&optional ignore-decorations)
2820 "Position cursor at beginning of header text.
2822 If optional IGNORE-DECORATIONS is non-nil, put just after bullet,
2823 otherwise skip white space between bullet and ensuing text."
2825 (if (not (allout-goto-prefix-doublechecked))
2827 (goto-char allout-recent-prefix-end)
2828 (save-match-data
2829 (if ignore-decorations
2831 (while (looking-at "[0-9]") (forward-char 1))
2832 (if (and (not (eolp)) (looking-at "\\s-")) (forward-char 1))))
2833 ;; Reestablish where we are:
2834 (allout-current-depth)))
2835 ;;;_ > allout-current-bullet-pos ()
2836 (defun allout-current-bullet-pos ()
2837 "Return position of current (visible) topic's bullet."
2839 (if (not (allout-current-depth))
2841 (1- allout-recent-prefix-end)))
2842 ;;;_ > allout-back-to-current-heading (&optional interactive)
2843 (defun allout-back-to-current-heading (&optional interactive)
2844 "Move to heading line of current topic, or beginning if not in a topic.
2846 If interactive, we position at the end of the prefix.
2848 Return value of resulting point, unless we started outside
2849 of (before any) topics, in which case we return nil."
2851 (interactive "p")
2853 (allout-beginning-of-current-line)
2854 (let ((bol-point (point)))
2855 (when (allout-goto-prefix-doublechecked)
2856 (if (<= (point) bol-point)
2857 (progn
2858 (setq bol-point (point))
2859 (allout-beginning-of-current-line)
2860 (if (not (= bol-point (point)))
2861 (if (looking-at allout-regexp)
2862 (allout-prefix-data)))
2863 (if interactive
2864 (allout-end-of-prefix)
2865 (point)))
2866 (goto-char (point-min))
2867 nil))))
2868 ;;;_ > allout-back-to-heading ()
2869 (defalias 'allout-back-to-heading 'allout-back-to-current-heading)
2870 ;;;_ > allout-pre-next-prefix ()
2871 (defun allout-pre-next-prefix ()
2872 "Skip forward to just before the next heading line.
2874 Returns that character position."
2876 (if (allout-next-heading)
2877 (goto-char (1- allout-recent-prefix-beginning))))
2878 ;;;_ > allout-end-of-subtree (&optional current include-trailing-blank)
2879 (defun allout-end-of-subtree (&optional current include-trailing-blank)
2880 "Put point at the end of the last leaf in the containing topic.
2882 Optional CURRENT means put point at the end of the containing
2883 visible topic.
2885 Optional INCLUDE-TRAILING-BLANK means include a trailing blank line, if
2886 any, as part of the subtree. Otherwise, that trailing blank will be
2887 excluded as delimiting whitespace between topics.
2889 Returns the value of point."
2890 (interactive "P")
2891 (if current
2892 (allout-back-to-current-heading)
2893 (allout-goto-prefix-doublechecked))
2894 (let ((level allout-recent-depth))
2895 (allout-next-heading)
2896 (while (and (not (eobp))
2897 (> allout-recent-depth level))
2898 (allout-next-heading))
2899 (if (eobp)
2900 (allout-end-of-entry)
2901 (forward-char -1))
2902 (if (and (not include-trailing-blank) (= ?\n (preceding-char)))
2903 (forward-char -1))
2904 (setq allout-recent-end-of-subtree (point))))
2905 ;;;_ > allout-end-of-current-subtree (&optional include-trailing-blank)
2906 (defun allout-end-of-current-subtree (&optional include-trailing-blank)
2908 "Put point at end of last leaf in currently visible containing topic.
2910 Optional INCLUDE-TRAILING-BLANK means include a trailing blank line, if
2911 any, as part of the subtree. Otherwise, that trailing blank will be
2912 excluded as delimiting whitespace between topics.
2914 Returns the value of point."
2915 (interactive)
2916 (allout-end-of-subtree t include-trailing-blank))
2917 ;;;_ > allout-beginning-of-current-entry (&optional interactive)
2918 (defun allout-beginning-of-current-entry (&optional interactive)
2919 "When not already there, position point at beginning of current topic header.
2921 If already there, move cursor to bullet for hot-spot operation.
2922 \(See `allout-mode' doc string for details of hot-spot operation.)"
2923 (interactive "p")
2924 (let ((start-point (point)))
2925 (move-beginning-of-line 1)
2926 (if (< 0 (allout-current-depth))
2927 (goto-char allout-recent-prefix-end)
2928 (goto-char (point-min)))
2929 (allout-end-of-prefix)
2930 (if (and interactive
2931 (= (point) start-point))
2932 (goto-char (allout-current-bullet-pos)))))
2933 ;;;_ > allout-end-of-entry (&optional inclusive)
2934 (defun allout-end-of-entry (&optional inclusive)
2935 "Position the point at the end of the current topics' entry.
2937 Optional INCLUSIVE means also include trailing empty line, if any. When
2938 unset, whitespace between items separates them even when the items are
2939 collapsed."
2940 (interactive)
2941 (allout-pre-next-prefix)
2942 (if (and (not inclusive) (not (bobp)) (= ?\n (preceding-char)))
2943 (forward-char -1))
2944 (point))
2945 ;;;_ > allout-end-of-current-heading ()
2946 (defun allout-end-of-current-heading ()
2947 (interactive)
2948 (allout-beginning-of-current-entry)
2949 (search-forward "\n" nil t)
2950 (forward-char -1))
2951 (defalias 'allout-end-of-heading 'allout-end-of-current-heading)
2952 ;;;_ > allout-get-body-text ()
2953 (defun allout-get-body-text ()
2954 "Return the unmangled body text of the topic immediately containing point."
2955 (save-excursion
2956 (allout-end-of-prefix)
2957 (if (not (search-forward "\n" nil t))
2959 (backward-char 1)
2960 (let ((pre-body (point)))
2961 (if (not pre-body)
2963 (allout-end-of-entry t)
2964 (if (not (= pre-body (point)))
2965 (buffer-substring-no-properties (1+ pre-body) (point))))
2971 ;;;_ - Depth-wise
2972 ;;;_ > allout-ascend-to-depth (depth)
2973 (defun allout-ascend-to-depth (depth)
2974 "Ascend to depth DEPTH, returning depth if successful, nil if not."
2975 (if (and (> depth 0)(<= depth (allout-depth)))
2976 (let (last-ascended)
2977 (while (and (< depth allout-recent-depth)
2978 (setq last-ascended (allout-ascend))))
2979 (goto-char allout-recent-prefix-beginning)
2980 (if (allout-called-interactively-p) (allout-end-of-prefix))
2981 (and last-ascended allout-recent-depth))))
2982 ;;;_ > allout-ascend (&optional dont-move-if-unsuccessful)
2983 (defun allout-ascend (&optional dont-move-if-unsuccessful)
2984 "Ascend one level, returning resulting depth if successful, nil if not.
2986 Point is left at the beginning of the level whether or not
2987 successful, unless optional DONT-MOVE-IF-UNSUCCESSFUL is set, in
2988 which case point is returned to its original starting location."
2989 (if dont-move-if-unsuccessful
2990 (setq dont-move-if-unsuccessful (point)))
2991 (prog1
2992 (if (allout-beginning-of-level)
2993 (let ((bolevel (point))
2994 (bolevel-depth allout-recent-depth))
2995 (allout-previous-heading)
2996 (cond ((< allout-recent-depth bolevel-depth)
2997 allout-recent-depth)
2998 ((= allout-recent-depth bolevel-depth)
2999 (if dont-move-if-unsuccessful
3000 (goto-char dont-move-if-unsuccessful))
3001 (allout-depth)
3002 nil)
3004 ;; some topic after very first is lower depth than first:
3005 (goto-char bolevel)
3006 (allout-depth)
3007 nil))))
3008 (if (allout-called-interactively-p) (allout-end-of-prefix))))
3009 ;;;_ > allout-descend-to-depth (depth)
3010 (defun allout-descend-to-depth (depth)
3011 "Descend to depth DEPTH within current topic.
3013 Returning depth if successful, nil if not."
3014 (let ((start-point (point))
3015 (start-depth (allout-depth)))
3016 (while
3017 (and (> (allout-depth) 0)
3018 (not (= depth allout-recent-depth)) ; ... not there yet
3019 (allout-next-heading) ; ... go further
3020 (< start-depth allout-recent-depth))) ; ... still in topic
3021 (if (and (> (allout-depth) 0)
3022 (= allout-recent-depth depth))
3023 depth
3024 (goto-char start-point)
3025 nil))
3027 ;;;_ > allout-up-current-level (arg)
3028 (defun allout-up-current-level (arg)
3029 "Move out ARG levels from current visible topic."
3030 (interactive "p")
3031 (let ((start-point (point)))
3032 (allout-back-to-current-heading)
3033 (if (not (allout-ascend))
3034 (progn (goto-char start-point)
3035 (error "Can't ascend past outermost level"))
3036 (if (allout-called-interactively-p) (allout-end-of-prefix))
3037 allout-recent-prefix-beginning)))
3039 ;;;_ - Linear
3040 ;;;_ > allout-next-sibling (&optional depth backward)
3041 (defun allout-next-sibling (&optional depth backward)
3042 "Like `allout-forward-current-level', but respects invisible topics.
3044 Traverse at optional DEPTH, or current depth if none specified.
3046 Go backward if optional arg BACKWARD is non-nil.
3048 Return the start point of the new topic if successful, nil otherwise."
3050 (if (if backward (bobp) (eobp))
3052 (let ((target-depth (or depth (allout-depth)))
3053 (start-point (point))
3054 (start-prefix-beginning allout-recent-prefix-beginning)
3055 (count 0)
3056 leaping
3057 last-depth)
3058 (while (and
3059 ;; done too few single steps to resort to the leap routine:
3060 (not leaping)
3061 ;; not at limit:
3062 (not (if backward (bobp) (eobp)))
3063 ;; still traversable:
3064 (if backward (allout-previous-heading) (allout-next-heading))
3065 ;; we're below the target depth
3066 (> (setq last-depth allout-recent-depth) target-depth))
3067 (setq count (1+ count))
3068 (if (> count 7) ; lists are commonly 7 +- 2, right?-)
3069 (setq leaping t)))
3070 (cond (leaping
3071 (or (allout-next-sibling-leap target-depth backward)
3072 (progn
3073 (goto-char start-point)
3074 (if depth (allout-depth) target-depth)
3075 nil)))
3076 ((and (not (eobp))
3077 (and (> (or last-depth (allout-depth)) 0)
3078 (= allout-recent-depth target-depth))
3079 (not (= start-prefix-beginning
3080 allout-recent-prefix-beginning)))
3081 allout-recent-prefix-beginning)
3083 (goto-char start-point)
3084 (if depth (allout-depth) target-depth)
3085 nil)))))
3086 ;;;_ > allout-next-sibling-leap (&optional depth backward)
3087 (defun allout-next-sibling-leap (&optional depth backward)
3088 "Like `allout-next-sibling', but by direct search for topic at depth.
3090 Traverse at optional DEPTH, or current depth if none specified.
3092 Go backward if optional arg BACKWARD is non-nil.
3094 Return the start point of the new topic if successful, nil otherwise.
3096 Costs more than regular `allout-next-sibling' for short traversals:
3098 - we have to check the prior (next, if travelling backwards)
3099 item to confirm connectivity with the prior topic, and
3100 - if confirmed, we have to reestablish the allout-recent-* settings with
3101 some extra navigation
3102 - if confirmation fails, we have to do more work to recover
3104 It is an increasingly big win when there are many intervening
3105 offspring before the next sibling, however, so
3106 `allout-next-sibling' resorts to this if it finds itself in that
3107 situation."
3109 (if (if backward (bobp) (eobp))
3111 (let* ((start-point (point))
3112 (target-depth (or depth (allout-depth)))
3113 (search-whitespace-regexp nil)
3114 (depth-biased (- target-depth 2))
3115 (expression (if (<= target-depth 1)
3116 allout-depth-one-regexp
3117 (format allout-depth-specific-regexp
3118 depth-biased depth-biased)))
3119 found
3120 done)
3121 (while (not done)
3122 (setq found (save-match-data
3123 (if backward
3124 (re-search-backward expression nil 'to-limit)
3125 (forward-char 1)
3126 (re-search-forward expression nil 'to-limit))))
3127 (if (and found (allout-aberrant-container-p))
3128 (setq found nil))
3129 (setq done (or found (if backward (bobp) (eobp)))))
3130 (if (not found)
3131 (progn (goto-char start-point)
3132 nil)
3133 ;; rationale: if any intervening items were at a lower depth, we
3134 ;; would now be on the first offspring at the target depth -- ie,
3135 ;; the preceding item (per the search direction) must be at a
3136 ;; lesser depth. that's all we need to check.
3137 (if backward (allout-next-heading) (allout-previous-heading))
3138 (if (< allout-recent-depth target-depth)
3139 ;; return to start and reestablish allout-recent-*:
3140 (progn
3141 (goto-char start-point)
3142 (allout-depth)
3143 nil)
3144 (goto-char found)
3145 ;; locate cursor and set allout-recent-*:
3146 (allout-goto-prefix))))))
3147 ;;;_ > allout-previous-sibling (&optional depth backward)
3148 (defun allout-previous-sibling (&optional depth backward)
3149 "Like `allout-forward-current-level' backwards, respecting invisible topics.
3151 Optional DEPTH specifies depth to traverse, default current depth.
3153 Optional BACKWARD reverses direction.
3155 Return depth if successful, nil otherwise."
3156 (allout-next-sibling depth (not backward))
3158 ;;;_ > allout-snug-back ()
3159 (defun allout-snug-back ()
3160 "Position cursor at end of previous topic.
3162 Presumes point is at the start of a topic prefix."
3163 (if (or (bobp) (eobp))
3165 (forward-char -1))
3166 (if (or (bobp) (not (= ?\n (preceding-char))))
3168 (forward-char -1))
3169 (point))
3170 ;;;_ > allout-beginning-of-level ()
3171 (defun allout-beginning-of-level ()
3172 "Go back to the first sibling at this level, visible or not."
3173 (allout-end-of-level 'backward))
3174 ;;;_ > allout-end-of-level (&optional backward)
3175 (defun allout-end-of-level (&optional backward)
3176 "Go to the last sibling at this level, visible or not."
3178 (let ((depth (allout-depth)))
3179 (while (allout-previous-sibling depth nil))
3180 (prog1 allout-recent-depth
3181 (if (allout-called-interactively-p) (allout-end-of-prefix)))))
3182 ;;;_ > allout-next-visible-heading (arg)
3183 (defun allout-next-visible-heading (arg)
3184 "Move to the next ARG'th visible heading line, backward if arg is negative.
3186 Move to buffer limit in indicated direction if headings are exhausted."
3188 (interactive "p")
3189 (let* ((inhibit-field-text-motion t)
3190 (backward (if (< arg 0) (setq arg (* -1 arg))))
3191 (step (if backward -1 1))
3192 (progress (allout-current-bullet-pos))
3193 prev got)
3195 (while (> arg 0)
3196 (while (and
3197 ;; Boundary condition:
3198 (not (if backward (bobp)(eobp)))
3199 ;; Move, skipping over all concealed lines in one fell swoop:
3200 (prog1 (condition-case nil (or (line-move step) t)
3201 (error nil))
3202 (allout-beginning-of-current-line)
3203 ;; line-move can wind up on the same line if long.
3204 ;; when moving forward, that would yield no-progress
3205 (when (and (not backward)
3206 (<= (point) progress))
3207 ;; ensure progress by doing line-move from end-of-line:
3208 (end-of-line)
3209 (condition-case nil (or (line-move step) t)
3210 (error nil))
3211 (allout-beginning-of-current-line)
3212 (setq progress (point))))
3213 ;; Deal with apparent header line:
3214 (save-match-data
3215 (if (not (looking-at allout-regexp))
3216 ;; not a header line, keep looking:
3218 (allout-prefix-data)
3219 (if (and (allout-do-doublecheck)
3220 (allout-aberrant-container-p))
3221 ;; skip this aberrant prospective header line:
3223 ;; this prospective headerline qualifies -- register:
3224 (setq got allout-recent-prefix-beginning)
3225 ;; and break the loop:
3226 nil)))))
3227 ;; Register this got, it may be the last:
3228 (if got (setq prev got))
3229 (setq arg (1- arg)))
3230 (cond (got ; Last move was to a prefix:
3231 (allout-end-of-prefix))
3232 (prev ; Last move wasn't, but prev was:
3233 (goto-char prev)
3234 (allout-end-of-prefix))
3235 ((not backward) (end-of-line) nil))))
3236 ;;;_ > allout-previous-visible-heading (arg)
3237 (defun allout-previous-visible-heading (arg)
3238 "Move to the previous heading line.
3240 With argument, repeats or can move forward if negative.
3241 A heading line is one that starts with a `*' (or that `allout-regexp'
3242 matches)."
3243 (interactive "p")
3244 (prog1 (allout-next-visible-heading (- arg))
3245 (if (allout-called-interactively-p) (allout-end-of-prefix))))
3246 ;;;_ > allout-forward-current-level (arg)
3247 (defun allout-forward-current-level (arg)
3248 "Position point at the next heading of the same level.
3250 Takes optional repeat-count, goes backward if count is negative.
3252 Returns resulting position, else nil if none found."
3253 (interactive "p")
3254 (let ((start-depth (allout-current-depth))
3255 (start-arg arg)
3256 (backward (> 0 arg)))
3257 (if (= 0 start-depth)
3258 (error "No siblings, not in a topic..."))
3259 (if backward (setq arg (* -1 arg)))
3260 (allout-back-to-current-heading)
3261 (while (and (not (zerop arg))
3262 (if backward
3263 (allout-previous-sibling)
3264 (allout-next-sibling)))
3265 (setq arg (1- arg)))
3266 (if (not (allout-called-interactively-p))
3268 (allout-end-of-prefix)
3269 (if (not (zerop arg))
3270 (error "Hit %s level %d topic, traversed %d of %d requested"
3271 (if backward "first" "last")
3272 allout-recent-depth
3273 (- (abs start-arg) arg)
3274 (abs start-arg))))))
3275 ;;;_ > allout-backward-current-level (arg)
3276 (defun allout-backward-current-level (arg)
3277 "Inverse of `allout-forward-current-level'."
3278 (interactive "p")
3279 (if (allout-called-interactively-p)
3280 (let ((current-prefix-arg (* -1 arg)))
3281 (call-interactively 'allout-forward-current-level))
3282 (allout-forward-current-level (* -1 arg))))
3284 ;;;_ #5 Alteration
3286 ;;;_ - Fundamental
3287 ;;;_ = allout-post-goto-bullet
3288 (defvar allout-post-goto-bullet nil
3289 "Outline internal var, for `allout-pre-command-business' hot-spot operation.
3291 When set, tells post-processing to reposition on topic bullet, and
3292 then unset it. Set by `allout-pre-command-business' when implementing
3293 hot-spot operation, where literal characters typed over a topic bullet
3294 are mapped to the command of the corresponding control-key on the
3295 `allout-mode-map-value'.")
3296 (make-variable-buffer-local 'allout-post-goto-bullet)
3297 ;;;_ = allout-command-counter
3298 (defvar allout-command-counter 0
3299 "Counter that monotonically increases in allout-mode buffers.
3301 Set by `allout-pre-command-business', to support allout addons in
3302 coordinating with allout activity.")
3303 (make-variable-buffer-local 'allout-command-counter)
3304 ;;;_ > allout-post-command-business ()
3305 (defun allout-post-command-business ()
3306 "Outline `post-command-hook' function.
3308 - Implement (and clear) `allout-post-goto-bullet', for hot-spot
3309 outline commands.
3311 - Decrypt topic currently being edited if it was encrypted for a save."
3313 ; Apply any external change func:
3314 (if (not (allout-mode-p)) ; In allout-mode.
3317 (if (and (boundp 'allout-after-save-decrypt)
3318 allout-after-save-decrypt)
3319 (allout-after-saves-handler))
3321 ;; Implement allout-post-goto-bullet, if set:
3322 (if (and allout-post-goto-bullet
3323 (allout-current-bullet-pos))
3324 (progn (goto-char (allout-current-bullet-pos))
3325 (setq allout-post-goto-bullet nil)))
3327 ;;;_ > allout-pre-command-business ()
3328 (defun allout-pre-command-business ()
3329 "Outline `pre-command-hook' function for outline buffers.
3331 Among other things, implements special behavior when the cursor is on the
3332 topic bullet character.
3334 When the cursor is on the bullet character, self-insert
3335 characters are reinterpreted as the corresponding
3336 control-character in the `allout-mode-map-value'. The
3337 `allout-mode' `post-command-hook' insures that the cursor which
3338 has moved as a result of such reinterpretation is positioned on
3339 the bullet character of the destination topic.
3341 The upshot is that you can get easy, single (ie, unmodified) key
3342 outline maneuvering operations by positioning the cursor on the bullet
3343 char. When in this mode you can use regular cursor-positioning
3344 command/keystrokes to relocate the cursor off of a bullet character to
3345 return to regular interpretation of self-insert characters."
3347 (if (not (allout-mode-p))
3349 ;; Increment allout-command-counter
3350 (setq allout-command-counter (1+ allout-command-counter))
3351 ;; Do hot-spot navigation.
3352 (if (and (eq this-command 'self-insert-command)
3353 (eq (point)(allout-current-bullet-pos)))
3354 (allout-hotspot-key-handler))))
3355 ;;;_ > allout-hotspot-key-handler ()
3356 (defun allout-hotspot-key-handler ()
3357 "Catchall handling of key bindings in hot-spots.
3359 Translates unmodified keystrokes to corresponding allout commands, when
3360 they would qualify if prefixed with the allout-command-prefix, and sets
3361 this-command accordingly.
3363 Returns the qualifying command, if any, else nil."
3364 (interactive)
3365 (let* ((modified (event-modifiers last-command-event))
3366 (key-num (cond ((numberp last-command-event) last-command-event)
3367 ;; for XEmacs character type:
3368 ((and (fboundp 'characterp)
3369 (apply 'characterp (list last-command-event)))
3370 (apply 'char-to-int (list last-command-event)))
3371 (t 0)))
3372 mapped-binding)
3374 (if (zerop key-num)
3377 (if (and
3378 ;; exclude control chars and escape:
3379 (not modified)
3380 (<= 33 key-num)
3381 (setq mapped-binding
3383 ;; try control-modified versions of keys:
3384 (key-binding (vconcat allout-command-prefix
3385 (vector
3386 (if (and (<= 97 key-num) ; "a"
3387 (>= 122 key-num)) ; "z"
3388 (- key-num 96) key-num)))
3390 ;; try non-modified versions of keys:
3391 (key-binding (vconcat allout-command-prefix
3392 (vector key-num))
3393 t))))
3394 ;; Qualified as an allout command -- do hot-spot operation.
3395 (setq allout-post-goto-bullet t)
3396 ;; accept-defaults nil, or else we get allout-item-icon-key-handler.
3397 (setq mapped-binding (key-binding (vector key-num))))
3399 (while (keymapp mapped-binding)
3400 (setq mapped-binding
3401 (lookup-key mapped-binding (vector (read-char)))))
3403 (when mapped-binding
3404 (setq this-command mapped-binding)))))
3406 ;;;_ > allout-find-file-hook ()
3407 (defun allout-find-file-hook ()
3408 "Activate `allout-mode' on non-nil `allout-auto-activation', `allout-layout'.
3410 See `allout-auto-activation' for setup instructions."
3411 (if (and allout-auto-activation
3412 (not (allout-mode-p))
3413 allout-layout)
3414 (allout-mode)))
3416 ;;;_ - Topic Format Assessment
3417 ;;;_ > allout-solicit-alternate-bullet (depth &optional current-bullet)
3418 (defun allout-solicit-alternate-bullet (depth &optional current-bullet)
3420 "Prompt for and return a bullet char as an alternative to the current one.
3422 Offer one suitable for current depth DEPTH as default."
3424 (let* ((default-bullet (or (and (stringp current-bullet) current-bullet)
3425 (allout-bullet-for-depth depth)))
3426 (sans-escapes (regexp-sans-escapes allout-bullets-string))
3427 choice)
3428 (save-excursion
3429 (goto-char (allout-current-bullet-pos))
3430 (setq choice (solicit-char-in-string
3431 (format "Select bullet: %s ('%s' default): "
3432 sans-escapes
3433 (allout-substring-no-properties default-bullet))
3434 sans-escapes
3435 t)))
3436 (message "")
3437 (if (string= choice "") default-bullet choice))
3439 ;;;_ > allout-distinctive-bullet (bullet)
3440 (defun allout-distinctive-bullet (bullet)
3441 "True if BULLET is one of those on `allout-distinctive-bullets-string'."
3442 (string-match (regexp-quote bullet) allout-distinctive-bullets-string))
3443 ;;;_ > allout-numbered-type-prefix (&optional prefix)
3444 (defun allout-numbered-type-prefix (&optional prefix)
3445 "True if current header prefix bullet is numbered bullet."
3446 (and allout-numbered-bullet
3447 (string= allout-numbered-bullet
3448 (if prefix
3449 (allout-get-prefix-bullet prefix)
3450 (allout-get-bullet)))))
3451 ;;;_ > allout-encrypted-type-prefix (&optional prefix)
3452 (defun allout-encrypted-type-prefix (&optional prefix)
3453 "True if current header prefix bullet is for an encrypted entry (body)."
3454 (and allout-topic-encryption-bullet
3455 (string= allout-topic-encryption-bullet
3456 (if prefix
3457 (allout-get-prefix-bullet prefix)
3458 (allout-get-bullet)))))
3459 ;;;_ > allout-bullet-for-depth (&optional depth)
3460 (defun allout-bullet-for-depth (&optional depth)
3461 "Return outline topic bullet suited to optional DEPTH, or current depth."
3462 ;; Find bullet in plain-bullets-string modulo DEPTH.
3463 (if allout-stylish-prefixes
3464 (char-to-string (aref allout-plain-bullets-string
3465 (% (max 0 (- depth 2))
3466 allout-plain-bullets-string-len)))
3467 allout-primary-bullet)
3470 ;;;_ - Topic Production
3471 ;;;_ > allout-make-topic-prefix (&optional prior-bullet
3472 (defun allout-make-topic-prefix (&optional prior-bullet
3474 depth
3475 instead
3476 number-control
3477 index)
3478 ;; Depth null means use current depth, non-null means we're either
3479 ;; opening a new topic after current topic, lower or higher, or we're
3480 ;; changing level of current topic.
3481 ;; Instead dominates specified bullet-char.
3482 ;;;_ . Doc string:
3483 "Generate a topic prefix suitable for optional arg DEPTH, or current depth.
3485 All the arguments are optional.
3487 PRIOR-BULLET indicates the bullet of the prefix being changed, or
3488 nil if none. This bullet may be preserved (other options
3489 notwithstanding) if it is on the `allout-distinctive-bullets-string',
3490 for instance.
3492 Second arg NEW indicates that a new topic is being opened after the
3493 topic at point, if non-nil. Default bullet for new topics, eg, may
3494 be set (contingent to other args) to numbered bullets if previous
3495 sibling is one. The implication otherwise is that the current topic
3496 is being adjusted -- shifted or rebulleted -- and we don't consider
3497 bullet or previous sibling.
3499 Third arg DEPTH forces the topic prefix to that depth, regardless of
3500 the current topics' depth.
3502 If INSTEAD is:
3504 - nil, then the bullet char for the context is used, per distinction or depth
3505 - a \(numeric) character, then character's string representation is used
3506 - a string, then the user is asked for bullet with the first char as default
3507 - anything else, the user is solicited with bullet char per context as default
3509 \(INSTEAD overrides other options, including, eg, a distinctive
3510 PRIOR-BULLET.)
3512 Fifth arg, NUMBER-CONTROL, matters only if `allout-numbered-bullet'
3513 is non-nil *and* no specific INSTEAD was specified. Then
3514 NUMBER-CONTROL non-nil forces prefix to either numbered or
3515 denumbered format, depending on the value of the sixth arg, INDEX.
3517 \(Note that NUMBER-CONTROL does *not* apply to level 1 topics. Sorry...)
3519 If NUMBER-CONTROL is non-nil and sixth arg INDEX is non-nil then
3520 the prefix of the topic is forced to be numbered. Non-nil
3521 NUMBER-CONTROL and nil INDEX forces non-numbered format on the
3522 bullet. Non-nil NUMBER-CONTROL and non-nil, non-number INDEX means
3523 that the index for the numbered prefix will be derived, by counting
3524 siblings back to start of level. If INDEX is a number, then that
3525 number is used as the index for the numbered prefix (allowing, eg,
3526 sequential renumbering to not require this function counting back the
3527 index for each successive sibling)."
3528 ;;;_ . Code:
3529 ;; The options are ordered in likely frequence of use, most common
3530 ;; highest, least lowest. Ie, more likely to be doing prefix
3531 ;; adjustments than soliciting, and yet more than numbering.
3532 ;; Current prefix is least dominant, but most likely to be commonly
3533 ;; specified...
3535 (let* (body
3536 numbering
3537 denumbering
3538 (depth (or depth (allout-depth)))
3539 (header-lead allout-header-prefix)
3540 (bullet-char
3542 ;; Getting value for bullet char is practically the whole job:
3544 (cond
3545 ; Simplest situation -- level 1:
3546 ((<= depth 1) (setq header-lead "") allout-primary-bullet)
3547 ; Simple, too: all asterisks:
3548 (allout-old-style-prefixes
3549 ;; Cheat -- make body the whole thing, null out header-lead and
3550 ;; bullet-char:
3551 (setq body (make-string depth
3552 (string-to-char allout-primary-bullet)))
3553 (setq header-lead "")
3556 ;; (Neither level 1 nor old-style, so we're space padding.
3557 ;; Sneak it in the condition of the next case, whatever it is.)
3559 ;; Solicitation overrides numbering and other cases:
3560 ((progn (setq body (make-string (- depth 2) ?\ ))
3561 ;; The actual condition:
3562 instead)
3563 (let ((got (cond ((stringp instead)
3564 (if (> (length instead) 0)
3565 (allout-solicit-alternate-bullet
3566 depth (substring instead 0 1))))
3567 ((characterp instead) (char-to-string instead))
3568 (t (allout-solicit-alternate-bullet depth)))))
3569 ;; Gotta check whether we're numbering and got a numbered bullet:
3570 (setq numbering (and allout-numbered-bullet
3571 (not (and number-control (not index)))
3572 (string= got allout-numbered-bullet)))
3573 ;; Now return what we got, regardless:
3574 got))
3576 ;; Numbering invoked through args:
3577 ((and allout-numbered-bullet number-control)
3578 (if (setq numbering (not (setq denumbering (not index))))
3579 allout-numbered-bullet
3580 (if (and prior-bullet
3581 (not (string= allout-numbered-bullet
3582 prior-bullet)))
3583 prior-bullet
3584 (allout-bullet-for-depth depth))))
3586 ;;; Neither soliciting nor controlled numbering ;;;
3587 ;;; (may be controlled denumbering, tho) ;;;
3589 ;; Check wrt previous sibling:
3590 ((and new ; only check for new prefixes
3591 (<= depth (allout-depth))
3592 allout-numbered-bullet ; ... & numbering enabled
3593 (not denumbering)
3594 (let ((sibling-bullet
3595 (save-excursion
3596 ;; Locate correct sibling:
3597 (or (>= depth (allout-depth))
3598 (allout-ascend-to-depth depth))
3599 (allout-get-bullet))))
3600 (if (and sibling-bullet
3601 (string= allout-numbered-bullet sibling-bullet))
3602 (setq numbering sibling-bullet)))))
3604 ;; Distinctive prior bullet?
3605 ((and prior-bullet
3606 (allout-distinctive-bullet prior-bullet)
3607 ;; Either non-numbered:
3608 (or (not (and allout-numbered-bullet
3609 (string= prior-bullet allout-numbered-bullet)))
3610 ;; or numbered, and not denumbering:
3611 (setq numbering (not denumbering)))
3612 ;; Here 'tis:
3613 prior-bullet))
3615 ;; Else, standard bullet per depth:
3616 ((allout-bullet-for-depth depth)))))
3618 (concat header-lead
3619 body
3620 bullet-char
3621 (if numbering
3622 (format "%d" (cond ((and index (numberp index)) index)
3623 (new (1+ (allout-sibling-index depth)))
3624 ((allout-sibling-index))))))
3627 ;;;_ > allout-open-topic (relative-depth &optional before offer-recent-bullet)
3628 (defun allout-open-topic (relative-depth &optional before offer-recent-bullet)
3629 "Open a new topic at depth DEPTH.
3631 New topic is situated after current one, unless optional flag BEFORE
3632 is non-nil, or unless current line is completely empty -- lacking even
3633 whitespace -- in which case open is done on the current line.
3635 When adding an offspring, it will be added immediately after the parent if
3636 the other offspring are exposed, or after the last child if the offspring
3637 are hidden. (The intervening offspring will be exposed in the latter
3638 case.)
3640 If OFFER-RECENT-BULLET is true, offer to use the bullet of the prior sibling.
3642 Nuances:
3644 - Creation of new topics is with respect to the visible topic
3645 containing the cursor, regardless of intervening concealed ones.
3647 - New headers are generally created after/before the body of a
3648 topic. However, they are created right at cursor location if the
3649 cursor is on a blank line, even if that breaks the current topic
3650 body. This is intentional, to provide a simple means for
3651 deliberately dividing topic bodies.
3653 - Double spacing of topic lists is preserved. Also, the first
3654 level two topic is created double-spaced (and so would be
3655 subsequent siblings, if that's left intact). Otherwise,
3656 single-spacing is used.
3658 - Creation of sibling or nested topics is with respect to the topic
3659 you're starting from, even when creating backwards. This way you
3660 can easily create a sibling in front of the current topic without
3661 having to go to its preceding sibling, and then open forward
3662 from there."
3664 (allout-beginning-of-current-line)
3665 (save-match-data
3666 (let* ((inhibit-field-text-motion t)
3667 (depth (+ (allout-current-depth) relative-depth))
3668 (opening-on-blank (if (looking-at "^\$")
3669 (not (setq before nil))))
3670 ;; bunch o vars set while computing ref-topic
3671 opening-numbered
3672 ref-depth
3673 ref-bullet
3674 (ref-topic (save-excursion
3675 (cond ((< relative-depth 0)
3676 (allout-ascend-to-depth depth))
3677 ((>= relative-depth 1) nil)
3678 (t (allout-back-to-current-heading)))
3679 (setq ref-depth allout-recent-depth)
3680 (setq ref-bullet
3681 (if (> allout-recent-prefix-end 1)
3682 (allout-recent-bullet)
3683 ""))
3684 (setq opening-numbered
3685 (save-excursion
3686 (and allout-numbered-bullet
3687 (or (<= relative-depth 0)
3688 (allout-descend-to-depth depth))
3689 (if (allout-numbered-type-prefix)
3690 allout-numbered-bullet))))
3691 (point)))
3692 dbl-space
3693 doing-beginning
3694 start end)
3696 (if (not opening-on-blank)
3697 ; Positioning and vertical
3698 ; padding -- only if not
3699 ; opening-on-blank:
3700 (progn
3701 (goto-char ref-topic)
3702 (setq dbl-space ; Determine double space action:
3703 (or (and (<= relative-depth 0) ; not descending;
3704 (save-excursion
3705 ;; at b-o-b or preceded by a blank line?
3706 (or (> 0 (forward-line -1))
3707 (looking-at "^\\s-*$")
3708 (bobp)))
3709 (save-excursion
3710 ;; succeeded by a blank line?
3711 (allout-end-of-current-subtree)
3712 (looking-at "\n\n")))
3713 (and (= ref-depth 1)
3714 (or before
3715 (= depth 1)
3716 (save-excursion
3717 ;; Don't already have following
3718 ;; vertical padding:
3719 (not (allout-pre-next-prefix)))))))
3721 ;; Position to prior heading, if inserting backwards, and not
3722 ;; going outwards:
3723 (if (and before (>= relative-depth 0))
3724 (progn (allout-back-to-current-heading)
3725 (setq doing-beginning (bobp))
3726 (if (not (bobp))
3727 (allout-previous-heading)))
3728 (if (and before (bobp))
3729 (open-line 1)))
3731 (if (<= relative-depth 0)
3732 ;; Not going inwards, don't snug up:
3733 (if doing-beginning
3734 (if (not dbl-space)
3735 (open-line 1)
3736 (open-line 2))
3737 (if before
3738 (progn (end-of-line)
3739 (allout-pre-next-prefix)
3740 (while (and (= ?\n (following-char))
3741 (save-excursion
3742 (forward-char 1)
3743 (allout-hidden-p)))
3744 (forward-char 1))
3745 (if (not (looking-at "^$"))
3746 (open-line 1)))
3747 (allout-end-of-current-subtree)
3748 (if (looking-at "\n\n") (forward-char 1))))
3749 ;; Going inwards -- double-space if first offspring is
3750 ;; double-spaced, otherwise snug up.
3751 (allout-end-of-entry)
3752 (if (eobp)
3753 (newline 1)
3754 (line-move 1))
3755 (allout-beginning-of-current-line)
3756 (backward-char 1)
3757 (if (bolp)
3758 ;; Blank lines between current header body and next
3759 ;; header -- get to last substantive (non-white-space)
3760 ;; line in body:
3761 (progn (setq dbl-space t)
3762 (re-search-backward "[^ \t\n]" nil t)))
3763 (if (looking-at "\n\n")
3764 (setq dbl-space t))
3765 (if (save-excursion
3766 (allout-next-heading)
3767 (when (> allout-recent-depth ref-depth)
3768 ;; This is an offspring.
3769 (forward-line -1)
3770 (looking-at "^\\s-*$")))
3771 (progn (forward-line 1)
3772 (open-line 1)
3773 (forward-line 1)))
3774 (allout-end-of-current-line))
3776 ;;(if doing-beginning (goto-char doing-beginning))
3777 (if (not (bobp))
3778 ;; We insert a newline char rather than using open-line to
3779 ;; avoid rear-stickiness inheritence of read-only property.
3780 (progn (if (and (not (> depth ref-depth))
3781 (not before))
3782 (open-line 1)
3783 (if (and (not dbl-space) (> depth ref-depth))
3784 (newline 1)
3785 (if dbl-space
3786 (open-line 1)
3787 (if (not before)
3788 (newline 1)))))
3789 (if (and dbl-space (not (> relative-depth 0)))
3790 (newline 1))
3791 (if (and (not (eobp))
3792 (or (not (bolp))
3793 (and (not (bobp))
3794 ;; bolp doesnt detect concealed
3795 ;; trailing newlines, compensate:
3796 (save-excursion
3797 (forward-char -1)
3798 (allout-hidden-p)))))
3799 (forward-char 1))))
3801 (setq start (point))
3802 (insert (concat (allout-make-topic-prefix opening-numbered t depth)
3803 " "))
3804 (setq end (1+ (point)))
3806 (allout-rebullet-heading (and offer-recent-bullet ref-bullet)
3807 depth nil nil t)
3808 (if (> relative-depth 0)
3809 (save-excursion (goto-char ref-topic)
3810 (allout-show-children)))
3811 (end-of-line)
3813 (run-hook-with-args 'allout-structure-added-hook start end)
3817 ;;;_ > allout-open-subtopic (arg)
3818 (defun allout-open-subtopic (arg)
3819 "Open new topic header at deeper level than the current one.
3821 Negative universal arg means to open deeper, but place the new topic
3822 prior to the current one."
3823 (interactive "p")
3824 (allout-open-topic 1 (> 0 arg) (< 1 arg)))
3825 ;;;_ > allout-open-sibtopic (arg)
3826 (defun allout-open-sibtopic (arg)
3827 "Open new topic header at same level as the current one.
3829 Positive universal arg means to use the bullet of the prior sibling.
3831 Negative universal arg means to place the new topic prior to the current
3832 one."
3833 (interactive "p")
3834 (allout-open-topic 0 (> 0 arg) (not (= 1 arg))))
3835 ;;;_ > allout-open-supertopic (arg)
3836 (defun allout-open-supertopic (arg)
3837 "Open new topic header at shallower level than the current one.
3839 Negative universal arg means to open shallower, but place the new
3840 topic prior to the current one."
3842 (interactive "p")
3843 (allout-open-topic -1 (> 0 arg) (< 1 arg)))
3845 ;;;_ - Outline Alteration
3846 ;;;_ : Topic Modification
3847 ;;;_ = allout-former-auto-filler
3848 (defvar allout-former-auto-filler nil
3849 "Name of modal fill function being wrapped by `allout-auto-fill'.")
3850 ;;;_ > allout-auto-fill ()
3851 (defun allout-auto-fill ()
3852 "`allout-mode' autofill function.
3854 Maintains outline hanging topic indentation if
3855 `allout-use-hanging-indents' is set."
3857 (when (and (not allout-inhibit-auto-fill)
3858 (or (not allout-inhibit-auto-fill-on-headline)
3859 (not (allout-on-current-heading-p))))
3860 (let ((fill-prefix (if allout-use-hanging-indents
3861 ;; Check for topic header indentation:
3862 (save-match-data
3863 (save-excursion
3864 (beginning-of-line)
3865 (if (looking-at allout-regexp)
3866 ;; ... construct indentation to account for
3867 ;; length of topic prefix:
3868 (make-string (progn (allout-end-of-prefix)
3869 (current-column))
3870 ?\ ))))))
3871 (use-auto-fill-function
3872 (if (and (eq allout-outside-normal-auto-fill-function
3873 'allout-auto-fill)
3874 (eq auto-fill-function 'allout-auto-fill))
3875 'do-auto-fill
3876 (or allout-outside-normal-auto-fill-function
3877 auto-fill-function))))
3878 (if (or allout-former-auto-filler allout-use-hanging-indents)
3879 (funcall use-auto-fill-function)))))
3880 ;;;_ > allout-reindent-body (old-depth new-depth &optional number)
3881 (defun allout-reindent-body (old-depth new-depth &optional number)
3882 "Reindent body lines which were indented at OLD-DEPTH to NEW-DEPTH.
3884 Optional arg NUMBER indicates numbering is being added, and it must
3885 be accommodated.
3887 Note that refill of indented paragraphs is not done."
3889 (save-excursion
3890 (allout-end-of-prefix)
3891 (let* ((new-margin (current-column))
3892 excess old-indent-begin old-indent-end
3893 ;; We want the column where the header-prefix text started
3894 ;; *before* the prefix was changed, so we infer it relative
3895 ;; to the new margin and the shift in depth:
3896 (old-margin (+ old-depth (- new-margin new-depth))))
3898 ;; Process lines up to (but excluding) next topic header:
3899 (allout-unprotected
3900 (save-match-data
3901 (while
3902 (and (re-search-forward "\n\\(\\s-*\\)"
3905 ;; Register the indent data, before we reset the
3906 ;; match data with a subsequent `looking-at':
3907 (setq old-indent-begin (match-beginning 1)
3908 old-indent-end (match-end 1))
3909 (not (looking-at allout-regexp)))
3910 (if (> 0 (setq excess (- (- old-indent-end old-indent-begin)
3911 old-margin)))
3912 ;; Text starts left of old margin -- don't adjust:
3914 ;; Text was hanging at or right of old left margin --
3915 ;; reindent it, preserving its existing indentation
3916 ;; beyond the old margin:
3917 (delete-region old-indent-begin old-indent-end)
3918 (indent-to (+ new-margin excess (current-column))))))))))
3919 ;;;_ > allout-rebullet-current-heading (arg)
3920 (defun allout-rebullet-current-heading (arg)
3921 "Solicit new bullet for current visible heading."
3922 (interactive "p")
3923 (let ((initial-col (current-column))
3924 (on-bullet (eq (point)(allout-current-bullet-pos)))
3925 from to
3926 (backwards (if (< arg 0)
3927 (setq arg (* arg -1)))))
3928 (while (> arg 0)
3929 (save-excursion (allout-back-to-current-heading)
3930 (allout-end-of-prefix)
3931 (setq from allout-recent-prefix-beginning
3932 to allout-recent-prefix-end)
3933 (allout-rebullet-heading t ;;; instead
3934 nil ;;; depth
3935 nil ;;; number-control
3936 nil ;;; index
3937 t) ;;; do-successors
3938 (run-hook-with-args 'allout-exposure-change-hook
3939 from to t))
3940 (setq arg (1- arg))
3941 (if (<= arg 0)
3943 (setq initial-col nil) ; Override positioning back to init col
3944 (if (not backwards)
3945 (allout-next-visible-heading 1)
3946 (allout-goto-prefix-doublechecked)
3947 (allout-next-visible-heading -1))))
3948 (message "Done.")
3949 (cond (on-bullet (goto-char (allout-current-bullet-pos)))
3950 (initial-col (move-to-column initial-col)))))
3951 ;;;_ > allout-rebullet-heading (&optional instead ...)
3952 (defun allout-rebullet-heading (&optional instead
3953 new-depth
3954 number-control
3955 index
3956 do-successors)
3958 "Adjust bullet of current topic prefix.
3960 All args are optional.
3962 If INSTEAD is:
3963 - nil, then the bullet char for the context is used, per distinction or depth
3964 - a \(numeric) character, then character's string representation is used
3965 - a string, then the user is asked for bullet with the first char as default
3966 - anything else, the user is solicited with bullet char per context as default
3968 Second arg DEPTH forces the topic prefix to that depth, regardless
3969 of the topic's current depth.
3971 Third arg NUMBER-CONTROL can force the prefix to or away from
3972 numbered form. It has effect only if `allout-numbered-bullet' is
3973 non-nil and soliciting was not explicitly invoked (via first arg).
3974 Its effect, numbering or denumbering, then depends on the setting
3975 of the fourth arg, INDEX.
3977 If NUMBER-CONTROL is non-nil and fourth arg INDEX is nil, then the
3978 prefix of the topic is forced to be non-numbered. Null index and
3979 non-nil NUMBER-CONTROL forces denumbering. Non-nil INDEX (and
3980 non-nil NUMBER-CONTROL) forces a numbered-prefix form. If non-nil
3981 INDEX is a number, then that number is used for the numbered
3982 prefix. Non-nil and non-number means that the index for the
3983 numbered prefix will be derived by allout-make-topic-prefix.
3985 Fifth arg DO-SUCCESSORS t means re-resolve count on succeeding
3986 siblings.
3988 Cf vars `allout-stylish-prefixes', `allout-old-style-prefixes',
3989 and `allout-numbered-bullet', which all affect the behavior of
3990 this function."
3992 (let* ((current-depth (allout-depth))
3993 (new-depth (or new-depth current-depth))
3994 (mb allout-recent-prefix-beginning)
3995 (me allout-recent-prefix-end)
3996 (current-bullet (buffer-substring-no-properties (- me 1) me))
3997 (has-annotation (get-text-property mb 'allout-was-hidden))
3998 (new-prefix (allout-make-topic-prefix current-bullet
4000 new-depth
4001 instead
4002 number-control
4003 index)))
4005 ;; Is new one is identical to old?
4006 (if (and (= current-depth new-depth)
4007 (string= current-bullet
4008 (substring new-prefix (1- (length new-prefix)))))
4009 ;; Nothing to do:
4012 ;; New prefix probably different from old:
4013 ; get rid of old one:
4014 (allout-unprotected (delete-region mb me))
4015 (goto-char mb)
4016 ; Dispense with number if
4017 ; numbered-bullet prefix:
4018 (save-match-data
4019 (if (and allout-numbered-bullet
4020 (string= allout-numbered-bullet current-bullet)
4021 (looking-at "[0-9]+"))
4022 (allout-unprotected
4023 (delete-region (match-beginning 0)(match-end 0)))))
4025 ;; convey 'allout-was-hidden annotation, if original had it:
4026 (if has-annotation
4027 (put-text-property 0 (length new-prefix) 'allout-was-hidden t
4028 new-prefix))
4030 ; Put in new prefix:
4031 (allout-unprotected (insert new-prefix))
4033 ;; Reindent the body if elected, margin changed, and not encrypted body:
4034 (if (and allout-reindent-bodies
4035 (not (= new-depth current-depth))
4036 (not (allout-encrypted-topic-p)))
4037 (allout-reindent-body current-depth new-depth))
4039 (run-hook-with-args 'allout-exposure-change-hook mb me nil)
4041 ;; Recursively rectify successive siblings of orig topic if
4042 ;; caller elected for it:
4043 (if do-successors
4044 (save-excursion
4045 (while (allout-next-sibling new-depth nil)
4046 (setq index
4047 (cond ((numberp index) (1+ index))
4048 ((not number-control) (allout-sibling-index))))
4049 (if (allout-numbered-type-prefix)
4050 (allout-rebullet-heading nil ;;; instead
4051 new-depth ;;; new-depth
4052 number-control;;; number-control
4053 index ;;; index
4054 nil))))) ;;;(dont!)do-successors
4055 ) ; (if (and (= current-depth new-depth)...))
4056 ) ; let* ((current-depth (allout-depth))...)
4057 ) ; defun
4058 ;;;_ > allout-rebullet-topic (arg)
4059 (defun allout-rebullet-topic (arg &optional sans-offspring)
4060 "Rebullet the visible topic containing point and all contained subtopics.
4062 Descends into invisible as well as visible topics, however.
4064 When optional SANS-OFFSPRING is non-nil, subtopics are not
4065 shifted. (Shifting a topic outwards without shifting its
4066 offspring is disallowed, since this would create a \"containment
4067 discontinuity\", where the depth difference between a topic and
4068 its immediate offspring is greater than one.)
4070 With repeat count, shift topic depth by that amount."
4071 (interactive "P")
4072 (let ((start-col (current-column)))
4073 (save-excursion
4074 ;; Normalize arg:
4075 (cond ((null arg) (setq arg 0))
4076 ((listp arg) (setq arg (car arg))))
4077 ;; Fill the user in, in case we're shifting a big topic:
4078 (if (not (zerop arg)) (message "Shifting..."))
4079 (allout-back-to-current-heading)
4080 (if (<= (+ allout-recent-depth arg) 0)
4081 (error "Attempt to shift topic below level 1"))
4082 (allout-rebullet-topic-grunt arg nil nil nil nil sans-offspring)
4083 (if (not (zerop arg)) (message "Shifting... done.")))
4084 (move-to-column (max 0 (+ start-col arg)))))
4085 ;;;_ > allout-rebullet-topic-grunt (&optional relative-depth ...)
4086 (defun allout-rebullet-topic-grunt (&optional relative-depth
4087 starting-depth
4088 starting-point
4089 index
4090 do-successors
4091 sans-offspring)
4092 "Like `allout-rebullet-topic', but on nearest containing topic
4093 \(visible or not).
4095 See `allout-rebullet-heading' for rebulleting behavior.
4097 All arguments are optional.
4099 First arg RELATIVE-DEPTH means to shift the depth of the entire
4100 topic that amount.
4102 Several subsequent args are for internal recursive use by the function
4103 itself: STARTING-DEPTH, STARTING-POINT, and INDEX.
4105 Finally, if optional SANS-OFFSPRING is non-nil then the offspring
4106 are not shifted. (Shifting a topic outwards without shifting
4107 its offspring is disallowed, since this would create a
4108 \"containment discontinuity\", where the depth difference between
4109 a topic and its immediate offspring is greater than one.)"
4111 ;; XXX the recursion here is peculiar, and in general the routine may
4112 ;; need simplification with refactoring.
4114 (if (and sans-offspring
4115 relative-depth
4116 (< relative-depth 0))
4117 (error (concat "Attempt to shift topic outwards without offspring,"
4118 " would cause containment discontinuity.")))
4120 (let* ((relative-depth (or relative-depth 0))
4121 (new-depth (allout-depth))
4122 (starting-depth (or starting-depth new-depth))
4123 (on-starting-call (null starting-point))
4124 (index (or index
4125 ;; Leave index null on starting call, so rebullet-heading
4126 ;; calculates it at what might be new depth:
4127 (and (or (zerop relative-depth)
4128 (not on-starting-call))
4129 (allout-sibling-index))))
4130 (starting-index index)
4131 (moving-outwards (< 0 relative-depth))
4132 (starting-point (or starting-point (point)))
4133 (local-point (point)))
4135 ;; Sanity check for excessive promotion done only on starting call:
4136 (and on-starting-call
4137 moving-outwards
4138 (> 0 (+ starting-depth relative-depth))
4139 (error "Attempt to shift topic out beyond level 1"))
4141 (cond ((= starting-depth new-depth)
4142 ;; We're at depth to work on this one.
4144 ;; When shifting out we work on the children before working on
4145 ;; the parent to avoid interim `allout-aberrant-container-p'
4146 ;; aberrancy, and vice-versa when shifting in:
4147 (if (>= relative-depth 0)
4148 (allout-rebullet-heading nil
4149 (+ starting-depth relative-depth)
4150 nil ;;; number
4151 index
4152 nil)) ;;; do-successors
4153 (when (not sans-offspring)
4154 ;; ... and work on subsequent ones which are at greater depth:
4155 (setq index 0)
4156 (allout-next-heading)
4157 (while (and (not (eobp))
4158 (< starting-depth (allout-depth)))
4159 (setq index (1+ index))
4160 (allout-rebullet-topic-grunt relative-depth
4161 (1+ starting-depth)
4162 starting-point
4163 index)))
4164 (when (< relative-depth 0)
4165 (save-excursion
4166 (goto-char local-point)
4167 (allout-rebullet-heading nil ;;; instead
4168 (+ starting-depth relative-depth)
4169 nil ;;; number
4170 starting-index
4171 nil)))) ;;; do-successors
4173 ((< starting-depth new-depth)
4174 ;; Rare case -- subtopic more than one level deeper than parent.
4175 ;; Treat this one at an even deeper level:
4176 (allout-rebullet-topic-grunt relative-depth
4177 new-depth
4178 starting-point
4179 index
4180 sans-offspring)))
4182 (if on-starting-call
4183 (progn
4184 ;; Rectify numbering of former siblings of the adjusted topic,
4185 ;; if topic has changed depth
4186 (if (or do-successors
4187 (and (not (zerop relative-depth))
4188 (or (= allout-recent-depth starting-depth)
4189 (= allout-recent-depth (+ starting-depth
4190 relative-depth)))))
4191 (allout-rebullet-heading nil nil nil nil t))
4192 ;; Now rectify numbering of new siblings of the adjusted topic,
4193 ;; if depth has been changed:
4194 (progn (goto-char starting-point)
4195 (if (not (zerop relative-depth))
4196 (allout-rebullet-heading nil nil nil nil t)))))
4199 ;;;_ > allout-renumber-to-depth (&optional depth)
4200 (defun allout-renumber-to-depth (&optional depth)
4201 "Renumber siblings at current depth.
4203 Affects superior topics if optional arg DEPTH is less than current depth.
4205 Returns final depth."
4207 ;; Proceed by level, processing subsequent siblings on each,
4208 ;; ascending until we get shallower than the start depth:
4210 (let ((ascender (allout-depth))
4211 was-eobp)
4212 (while (and (not (eobp))
4213 (allout-depth)
4214 (>= allout-recent-depth depth)
4215 (>= ascender depth))
4216 ; Skip over all topics at
4217 ; lesser depths, which can not
4218 ; have been disturbed:
4219 (while (and (not (setq was-eobp (eobp)))
4220 (> allout-recent-depth ascender))
4221 (allout-next-heading))
4222 ; Prime ascender for ascension:
4223 (setq ascender (1- allout-recent-depth))
4224 (if (>= allout-recent-depth depth)
4225 (allout-rebullet-heading nil ;;; instead
4226 nil ;;; depth
4227 nil ;;; number-control
4228 nil ;;; index
4229 t)) ;;; do-successors
4230 (if was-eobp (goto-char (point-max)))))
4231 allout-recent-depth)
4232 ;;;_ > allout-number-siblings (&optional denumber)
4233 (defun allout-number-siblings (&optional denumber)
4234 "Assign numbered topic prefix to this topic and its siblings.
4236 With universal argument, denumber -- assign default bullet to this
4237 topic and its siblings.
4239 With repeated universal argument (`^U^U'), solicit bullet for each
4240 rebulleting each topic at this level."
4242 (interactive "P")
4244 (save-excursion
4245 (allout-back-to-current-heading)
4246 (allout-beginning-of-level)
4247 (let ((depth allout-recent-depth)
4248 (index (if (not denumber) 1))
4249 (use-bullet (equal '(16) denumber))
4250 (more t))
4251 (while more
4252 (allout-rebullet-heading use-bullet ;;; instead
4253 depth ;;; depth
4254 t ;;; number-control
4255 index ;;; index
4256 nil) ;;; do-successors
4257 (if index (setq index (1+ index)))
4258 (setq more (allout-next-sibling depth nil))))))
4259 ;;;_ > allout-shift-in (arg)
4260 (defun allout-shift-in (arg)
4261 "Increase depth of current heading and any items collapsed within it.
4263 With a negative argument, the item is shifted out using
4264 `allout-shift-out', instead.
4266 With an argument greater than one, shift-in the item but not its
4267 offspring, making the item into a sibling of its former children,
4268 and a child of sibling that formerly preceded it.
4270 You are not allowed to shift the first offspring of a topic
4271 inwards, because that would yield a \"containment
4272 discontinuity\", where the depth difference between a topic and
4273 its immediate offspring is greater than one. The first topic in
4274 the file can be adjusted to any positive depth, however."
4276 (interactive "p")
4277 (if (< arg 0)
4278 (allout-shift-out (* arg -1))
4279 ;; refuse to create a containment discontinuity:
4280 (save-excursion
4281 (allout-back-to-current-heading)
4282 (if (not (bobp))
4283 (let* ((current-depth allout-recent-depth)
4284 (start-point (point))
4285 (predecessor-depth (progn
4286 (forward-char -1)
4287 (allout-goto-prefix-doublechecked)
4288 (if (< (point) start-point)
4289 allout-recent-depth
4290 0))))
4291 (if (and (> predecessor-depth 0)
4292 (> (1+ current-depth)
4293 (1+ predecessor-depth)))
4294 (error (concat "Disallowed shift deeper than"
4295 " containing topic's children."))
4296 (allout-back-to-current-heading)
4297 (if (< allout-recent-depth (1+ current-depth))
4298 (allout-show-children))))))
4299 (let ((where (point)))
4300 (allout-rebullet-topic 1 (and (> arg 1) 'sans-offspring))
4301 (run-hook-with-args 'allout-structure-shifted-hook arg where))))
4302 ;;;_ > allout-shift-out (arg)
4303 (defun allout-shift-out (arg)
4304 "Decrease depth of current heading and any topics collapsed within it.
4305 This will make the item a sibling of its former container.
4307 With a negative argument, the item is shifted in using
4308 `allout-shift-in', instead.
4310 With an argument greater than one, shift-out the item's offspring
4311 but not the item itself, making the former children siblings of
4312 the item.
4314 With an argument greater than 1, the item's offspring are shifted
4315 out without shifting the item. This will make the immediate
4316 subtopics into siblings of the item."
4317 (interactive "p")
4318 (if (< arg 0)
4319 (allout-shift-in (* arg -1))
4320 ;; Get proper exposure in this area:
4321 (save-excursion (if (allout-ascend)
4322 (allout-show-children)))
4323 ;; Show collapsed children if there's a successor which will become
4324 ;; their sibling:
4325 (if (and (allout-current-topic-collapsed-p)
4326 (save-excursion (allout-next-sibling)))
4327 (allout-show-children))
4328 (let ((where (and (allout-depth) allout-recent-prefix-beginning)))
4329 (save-excursion
4330 (if (> arg 1)
4331 ;; Shift the offspring but not the topic:
4332 (let ((children-chart (allout-chart-subtree 1)))
4333 (if (listp (car children-chart))
4334 ;; whoops:
4335 (setq children-chart (allout-flatten children-chart)))
4336 (save-excursion
4337 (dolist (child-point children-chart)
4338 (goto-char child-point)
4339 (allout-shift-out 1))))
4340 (allout-rebullet-topic (* arg -1))))
4341 (run-hook-with-args 'allout-structure-shifted-hook (* arg -1) where))))
4342 ;;;_ : Surgery (kill-ring) functions with special provisions for outlines:
4343 ;;;_ > allout-kill-line (&optional arg)
4344 (defun allout-kill-line (&optional arg)
4345 "Kill line, adjusting subsequent lines suitably for outline mode."
4347 (interactive "*P")
4349 (if (or (not (allout-mode-p))
4350 (not (bolp))
4351 (not (save-match-data (looking-at allout-regexp))))
4352 ;; Just do a regular kill:
4353 (kill-line arg)
4354 ;; Ah, have to watch out for adjustments:
4355 (let* ((beg (point))
4357 (beg-hidden (allout-hidden-p))
4358 (end-hidden (save-excursion (allout-end-of-current-line)
4359 (setq end (point))
4360 (allout-hidden-p)))
4361 (depth (allout-depth)))
4363 (allout-annotate-hidden beg end)
4364 (unwind-protect
4365 (if (and (not beg-hidden) (not end-hidden))
4366 (allout-unprotected (kill-line arg))
4367 (kill-line arg))
4368 (run-hooks 'allout-after-copy-or-kill-hook)
4369 (allout-deannotate-hidden beg end)
4371 (if allout-numbered-bullet
4372 (save-excursion ; Renumber subsequent topics if needed:
4373 (if (not (save-match-data (looking-at allout-regexp)))
4374 (allout-next-heading))
4375 (allout-renumber-to-depth depth)))
4376 (run-hook-with-args 'allout-structure-deleted-hook depth (point))))))
4377 ;;;_ > allout-copy-line-as-kill ()
4378 (defun allout-copy-line-as-kill ()
4379 "Like allout-kill-topic, but save to kill ring instead of deleting."
4380 (interactive)
4381 (let ((buffer-read-only t))
4382 (condition-case nil
4383 (allout-kill-line)
4384 (buffer-read-only nil))))
4385 ;;;_ > allout-kill-topic ()
4386 (defun allout-kill-topic ()
4387 "Kill topic together with subtopics.
4389 Trailing whitespace is killed with a topic if that whitespace:
4391 - would separate the topic from a subsequent sibling
4392 - would separate the topic from the end of buffer
4393 - would not be added to whitespace already separating the topic from the
4394 previous one.
4396 Topic exposure is marked with text-properties, to be used by
4397 `allout-yank-processing' for exposure recovery."
4399 (interactive)
4400 (let* ((inhibit-field-text-motion t)
4401 (beg (prog1 (allout-back-to-current-heading) (beginning-of-line)))
4403 (depth allout-recent-depth))
4404 (allout-end-of-current-subtree)
4405 (if (and (/= (current-column) 0) (not (eobp)))
4406 (forward-char 1))
4407 (if (not (eobp))
4408 (if (and (save-match-data (looking-at "\n"))
4409 (or (save-excursion
4410 (or (not (allout-next-heading))
4411 (= depth allout-recent-depth)))
4412 (and (> (- beg (point-min)) 3)
4413 (string= (buffer-substring (- beg 2) beg) "\n\n"))))
4414 (forward-char 1)))
4416 (allout-annotate-hidden beg (setq end (point)))
4417 (unwind-protect ; for possible barf-if-buffer-read-only.
4418 (allout-unprotected (kill-region beg end))
4419 (allout-deannotate-hidden beg end)
4420 (run-hooks 'allout-after-copy-or-kill-hook)
4422 (save-excursion
4423 (allout-renumber-to-depth depth))
4424 (run-hook-with-args 'allout-structure-deleted-hook depth (point)))))
4425 ;;;_ > allout-copy-topic-as-kill ()
4426 (defun allout-copy-topic-as-kill ()
4427 "Like `allout-kill-topic', but save to kill ring instead of deleting."
4428 (interactive)
4429 (let ((buffer-read-only t))
4430 (condition-case nil
4431 (allout-kill-topic)
4432 (buffer-read-only (message "Topic copied...")))))
4433 ;;;_ > allout-annotate-hidden (begin end)
4434 (defun allout-annotate-hidden (begin end)
4435 "Qualify text with properties to indicate exposure status."
4437 (let ((was-modified (buffer-modified-p))
4438 (buffer-read-only nil))
4439 (allout-deannotate-hidden begin end)
4440 (save-excursion
4441 (goto-char begin)
4442 (let (done next prev overlay)
4443 (while (not done)
4444 ;; at or advance to start of next hidden region:
4445 (if (not (allout-hidden-p))
4446 (setq next
4447 (max (1+ (point))
4448 (allout-next-single-char-property-change (point)
4449 'invisible
4450 nil end))))
4451 (if (or (not next) (eq prev next))
4452 ;; still not at start of hidden area -- must not be any left.
4453 (setq done t)
4454 (goto-char next)
4455 (setq prev next)
4456 (if (not (allout-hidden-p))
4457 ;; still not at start of hidden area.
4458 (setq done t)
4459 (setq overlay (allout-get-invisibility-overlay))
4460 (setq next (overlay-end overlay)
4461 prev next)
4462 ;; advance to end of this hidden area:
4463 (when next
4464 (goto-char next)
4465 (allout-unprotected
4466 (let ((buffer-undo-list t))
4467 (put-text-property (overlay-start overlay) next
4468 'allout-was-hidden t)))))))))
4469 (set-buffer-modified-p was-modified)))
4470 ;;;_ > allout-deannotate-hidden (begin end)
4471 (defun allout-deannotate-hidden (begin end)
4472 "Remove allout hidden-text annotation between BEGIN and END."
4474 (allout-unprotected
4475 (let ((inhibit-read-only t)
4476 (buffer-undo-list t))
4477 (remove-text-properties begin (min end (point-max))
4478 '(allout-was-hidden t)))))
4479 ;;;_ > allout-hide-by-annotation (begin end)
4480 (defun allout-hide-by-annotation (begin end)
4481 "Translate text properties indicating exposure status into actual exposure."
4482 (save-excursion
4483 (goto-char begin)
4484 (let ((was-modified (buffer-modified-p))
4485 done next prev)
4486 (while (not done)
4487 ;; at or advance to start of next annotation:
4488 (if (not (get-text-property (point) 'allout-was-hidden))
4489 (setq next (allout-next-single-char-property-change
4490 (point) 'allout-was-hidden nil end)))
4491 (if (or (not next) (eq prev next))
4492 ;; no more or not advancing -- must not be any left.
4493 (setq done t)
4494 (goto-char next)
4495 (setq prev next)
4496 (if (not (get-text-property (point) 'allout-was-hidden))
4497 ;; still not at start of annotation.
4498 (setq done t)
4499 ;; advance to just after end of this annotation:
4500 (setq next (allout-next-single-char-property-change
4501 (point) 'allout-was-hidden nil end))
4502 (let ((o (make-overlay prev next nil 'front-advance)))
4503 (overlay-put o 'category 'allout-exposure-category)
4504 (overlay-put o 'evaporate t))
4505 (allout-deannotate-hidden prev next)
4506 (setq prev next)
4507 (if next (goto-char next)))))
4508 (set-buffer-modified-p was-modified))))
4509 ;;;_ > allout-yank-processing ()
4510 (defun allout-yank-processing (&optional arg)
4512 "Incidental allout-specific business to be done just after text yanks.
4514 Does depth adjustment of yanked topics, when:
4516 1 the stuff being yanked starts with a valid outline header prefix, and
4517 2 it is being yanked at the end of a line which consists of only a valid
4518 topic prefix.
4520 Also, adjusts numbering of subsequent siblings when appropriate.
4522 Depth adjustment alters the depth of all the topics being yanked
4523 the amount it takes to make the first topic have the depth of the
4524 header into which it's being yanked.
4526 The point is left in front of yanked, adjusted topics, rather than
4527 at the end (and vice-versa with the mark). Non-adjusted yanks,
4528 however, are left exactly like normal, non-allout-specific yanks."
4530 (interactive "*P")
4531 ; Get to beginning, leaving
4532 ; region around subject:
4533 (if (< (allout-mark-marker t) (point))
4534 (exchange-point-and-mark))
4535 (save-match-data
4536 (let* ((subj-beg (point))
4537 (into-bol (bolp))
4538 (subj-end (allout-mark-marker t))
4539 ;; 'resituate' if yanking an entire topic into topic header:
4540 (resituate (and (let ((allout-inhibit-aberrance-doublecheck t))
4541 (allout-e-o-prefix-p))
4542 (looking-at allout-regexp)
4543 (allout-prefix-data)))
4544 ;; `rectify-numbering' if resituating (where several topics may
4545 ;; be resituating) or yanking a topic into a topic slot (bol):
4546 (rectify-numbering (or resituate
4547 (and into-bol (looking-at allout-regexp)))))
4548 (if resituate
4549 ;; Yanking a topic into the start of a topic -- reconcile to fit:
4550 (let* ((inhibit-field-text-motion t)
4551 (prefix-len (if (not (match-end 1))
4553 (- (match-end 1) subj-beg)))
4554 (subj-depth allout-recent-depth)
4555 (prefix-bullet (allout-recent-bullet))
4556 (adjust-to-depth
4557 ;; Nil if adjustment unnecessary, otherwise depth to which
4558 ;; adjustment should be made:
4559 (save-excursion
4560 (and (goto-char subj-end)
4561 (eolp)
4562 (goto-char subj-beg)
4563 (and (looking-at allout-regexp)
4564 (progn
4565 (beginning-of-line)
4566 (not (= (point) subj-beg)))
4567 (looking-at allout-regexp)
4568 (allout-prefix-data))
4569 allout-recent-depth)))
4570 (more t))
4571 (setq rectify-numbering allout-numbered-bullet)
4572 (if adjust-to-depth
4573 ; Do the adjustment:
4574 (progn
4575 (save-restriction
4576 (narrow-to-region subj-beg subj-end)
4577 ; Trim off excessive blank
4578 ; line at end, if any:
4579 (goto-char (point-max))
4580 (if (looking-at "^$")
4581 (allout-unprotected (delete-char -1)))
4582 ; Work backwards, with each
4583 ; shallowest level,
4584 ; successively excluding the
4585 ; last processed topic from
4586 ; the narrow region:
4587 (while more
4588 (allout-back-to-current-heading)
4589 ; go as high as we can in each bunch:
4590 (while (allout-ascend t))
4591 (save-excursion
4592 (allout-unprotected
4593 (allout-rebullet-topic-grunt (- adjust-to-depth
4594 subj-depth)))
4595 (allout-depth))
4596 (if (setq more (not (bobp)))
4597 (progn (widen)
4598 (forward-char -1)
4599 (narrow-to-region subj-beg (point))))))
4600 ;; Remove new heading prefix:
4601 (allout-unprotected
4602 (progn
4603 (delete-region (point) (+ (point)
4604 prefix-len
4605 (- adjust-to-depth
4606 subj-depth)))
4607 ; and delete residual subj
4608 ; prefix digits and space:
4609 (while (looking-at "[0-9]") (delete-char 1))
4610 (delete-char -1)
4611 (if (not (eolp))
4612 (forward-char))))
4613 ;; Assert new topic's bullet - minimal effort if unchanged:
4614 (allout-rebullet-heading (string-to-char prefix-bullet)))
4615 (exchange-point-and-mark))))
4616 (if rectify-numbering
4617 (progn
4618 (save-excursion
4619 ; Give some preliminary feedback:
4620 (message "... reconciling numbers")
4621 ; ... and renumber, in case necessary:
4622 (goto-char subj-beg)
4623 (if (allout-goto-prefix-doublechecked)
4624 (allout-unprotected
4625 (allout-rebullet-heading nil ;;; instead
4626 (allout-depth) ;;; depth
4627 nil ;;; number-control
4628 nil ;;; index
4629 t)))
4630 (message ""))))
4631 (if (or into-bol resituate)
4632 (allout-hide-by-annotation (point) (allout-mark-marker t))
4633 (allout-deannotate-hidden (allout-mark-marker t) (point)))
4634 (if (not resituate)
4635 (exchange-point-and-mark))
4636 (run-hook-with-args 'allout-structure-added-hook subj-beg subj-end))))
4637 ;;;_ > allout-yank (&optional arg)
4638 (defun allout-yank (&optional arg)
4639 "`allout-mode' yank, with depth and numbering adjustment of yanked topics.
4641 Non-topic yanks work no differently than normal yanks.
4643 If a topic is being yanked into a bare topic prefix, the depth of the
4644 yanked topic is adjusted to the depth of the topic prefix.
4646 1 we're yanking in an `allout-mode' buffer
4647 2 the stuff being yanked starts with a valid outline header prefix, and
4648 3 it is being yanked at the end of a line which consists of only a valid
4649 topic prefix.
4651 If these conditions hold then the depth of the yanked topics are all
4652 adjusted the amount it takes to make the first one at the depth of the
4653 header into which it's being yanked.
4655 The point is left in front of yanked, adjusted topics, rather than
4656 at the end (and vice-versa with the mark). Non-adjusted yanks,
4657 however, (ones that don't qualify for adjustment) are handled
4658 exactly like normal yanks.
4660 Numbering of yanked topics, and the successive siblings at the depth
4661 into which they're being yanked, is adjusted.
4663 `allout-yank-pop' works with `allout-yank' just like normal `yank-pop'
4664 works with normal `yank' in non-outline buffers."
4666 (interactive "*P")
4667 (setq this-command 'yank)
4668 (allout-unprotected
4669 (yank arg))
4670 (if (allout-mode-p)
4671 (allout-yank-processing)))
4672 ;;;_ > allout-yank-pop (&optional arg)
4673 (defun allout-yank-pop (&optional arg)
4674 "Yank-pop like `allout-yank' when popping to bare outline prefixes.
4676 Adapts level of popped topics to level of fresh prefix.
4678 Note -- prefix changes to distinctive bullets will stick, if followed
4679 by pops to non-distinctive yanks. Bug..."
4681 (interactive "*p")
4682 (setq this-command 'yank)
4683 (yank-pop arg)
4684 (if (allout-mode-p)
4685 (allout-yank-processing)))
4687 ;;;_ - Specialty bullet functions
4688 ;;;_ : File Cross references
4689 ;;;_ > allout-resolve-xref ()
4690 (defun allout-resolve-xref ()
4691 "Pop to file associated with current heading, if it has an xref bullet.
4693 \(Works according to setting of `allout-file-xref-bullet')."
4694 (interactive)
4695 (if (not allout-file-xref-bullet)
4696 (error
4697 "Outline cross references disabled -- no `allout-file-xref-bullet'")
4698 (if (not (string= (allout-current-bullet) allout-file-xref-bullet))
4699 (error "Current heading lacks cross-reference bullet `%s'"
4700 allout-file-xref-bullet)
4701 (let ((inhibit-field-text-motion t)
4702 file-name)
4703 (save-match-data
4704 (save-excursion
4705 (let* ((text-start allout-recent-prefix-end)
4706 (heading-end (point-at-eol)))
4707 (goto-char text-start)
4708 (setq file-name
4709 (if (re-search-forward "\\s-\\(\\S-*\\)" heading-end t)
4710 (buffer-substring (match-beginning 1)
4711 (match-end 1)))))))
4712 (setq file-name (expand-file-name file-name))
4713 (if (or (file-exists-p file-name)
4714 (if (file-writable-p file-name)
4715 (y-or-n-p (format "%s not there, create one? "
4716 file-name))
4717 (error "%s not found and can't be created" file-name)))
4718 (condition-case failure
4719 (find-file-other-window file-name)
4720 (error failure))
4721 (error "%s not found" file-name))
4727 ;;;_ #6 Exposure Control
4729 ;;;_ - Fundamental
4730 ;;;_ > allout-flag-region (from to flag)
4731 (defun allout-flag-region (from to flag)
4732 "Conceal text between FROM and TO if FLAG is non-nil, else reveal it.
4734 Exposure-change hook `allout-exposure-change-hook' is run with the same
4735 arguments as this function, after the exposure changes are made."
4737 ;; We use outline invisibility spec.
4738 (remove-overlays from to 'category 'allout-exposure-category)
4739 (when flag
4740 (let ((o (make-overlay from to nil 'front-advance)))
4741 (overlay-put o 'category 'allout-exposure-category)
4742 (overlay-put o 'evaporate t)
4743 (when (featurep 'xemacs)
4744 (let ((props (symbol-plist 'allout-exposure-category)))
4745 (while props
4746 (condition-case nil
4747 ;; as of 2008-02-27, xemacs lacks modification-hooks
4748 (overlay-put o (pop props) (pop props))
4749 (error nil)))))))
4750 (run-hook-with-args 'allout-exposure-change-hook from to flag))
4751 ;;;_ > allout-flag-current-subtree (flag)
4752 (defun allout-flag-current-subtree (flag)
4753 "Conceal currently-visible topic's subtree if FLAG non-nil, else reveal it."
4755 (save-excursion
4756 (allout-back-to-current-heading)
4757 (let ((inhibit-field-text-motion t))
4758 (end-of-line))
4759 (allout-flag-region (point)
4760 ;; Exposing must not leave trailing blanks hidden,
4761 ;; but can leave them exposed when hiding, so we
4762 ;; can use flag's inverse as the
4763 ;; include-trailing-blank cue:
4764 (allout-end-of-current-subtree (not flag))
4765 flag)))
4767 ;;;_ - Topic-specific
4768 ;;;_ > allout-show-entry ()
4769 (defun allout-show-entry ()
4770 "Like `allout-show-current-entry', but reveals entries in hidden topics.
4772 This is a way to give restricted peek at a concealed locality without the
4773 expense of exposing its context, but can leave the outline with aberrant
4774 exposure. `allout-show-offshoot' should be used after the peek to rectify
4775 the exposure."
4777 (interactive)
4778 (save-excursion
4779 (let (beg end)
4780 (allout-goto-prefix-doublechecked)
4781 (setq beg (if (allout-hidden-p) (1- (point)) (point)))
4782 (setq end (allout-pre-next-prefix))
4783 (allout-flag-region beg end nil)
4784 (list beg end))))
4785 ;;;_ > allout-show-children (&optional level strict)
4786 (defun allout-show-children (&optional level strict)
4788 "If point is visible, show all direct subheadings of this heading.
4790 Otherwise, do `allout-show-to-offshoot', and then show subheadings.
4792 Optional LEVEL specifies how many levels below the current level
4793 should be shown, or all levels if t. Default is 1.
4795 Optional STRICT means don't resort to -show-to-offshoot, no matter
4796 what. This is basically so -show-to-offshoot, which is called by
4797 this function, can employ the pure offspring-revealing capabilities of
4800 Returns point at end of subtree that was opened, if any. (May get a
4801 point of non-opened subtree?)"
4803 (interactive "p")
4804 (let ((start-point (point)))
4805 (if (and (not strict)
4806 (allout-hidden-p))
4808 (progn (allout-show-to-offshoot) ; Point's concealed, open to
4809 ; expose it.
4810 ;; Then recurse, but with "strict" set so we don't
4811 ;; infinite regress:
4812 (allout-show-children level t))
4814 (save-excursion
4815 (allout-beginning-of-current-line)
4816 (save-restriction
4817 (let* (depth
4818 ;; translate the level spec for this routine to the ones
4819 ;; used by -chart-subtree and -chart-to-reveal:
4820 (chart-level (cond ((not level) 1)
4821 ((eq level t) nil)
4822 (t level)))
4823 (chart (allout-chart-subtree chart-level))
4824 (to-reveal (or (allout-chart-to-reveal chart chart-level)
4825 ;; interactive, show discontinuous children:
4826 (and chart
4827 (allout-called-interactively-p)
4828 (save-excursion
4829 (allout-back-to-current-heading)
4830 (setq depth (allout-current-depth))
4831 (and (allout-next-heading)
4832 (> allout-recent-depth
4833 (1+ depth))))
4834 (message
4835 "Discontinuous offspring; use `%s %s'%s."
4836 (substitute-command-keys
4837 "\\[universal-argument]")
4838 (substitute-command-keys
4839 "\\[allout-shift-out]")
4840 " to elevate them.")
4841 (allout-chart-to-reveal
4842 chart (- allout-recent-depth depth))))))
4843 (goto-char start-point)
4844 (when (and strict (allout-hidden-p))
4845 ;; Concealed root would already have been taken care of,
4846 ;; unless strict was set.
4847 (allout-flag-region (point) (allout-snug-back) nil)
4848 (when allout-show-bodies
4849 (goto-char (car to-reveal))
4850 (allout-show-current-entry)))
4851 (while to-reveal
4852 (goto-char (car to-reveal))
4853 (allout-flag-region (save-excursion (allout-snug-back) (point))
4854 (progn (search-forward "\n" nil t)
4855 (1- (point)))
4856 nil)
4857 (when allout-show-bodies
4858 (goto-char (car to-reveal))
4859 (allout-show-current-entry))
4860 (setq to-reveal (cdr to-reveal)))))))
4861 ;; Compensate for `save-excursion's maintenance of point
4862 ;; within invisible text:
4863 (goto-char start-point)))
4864 ;;;_ > allout-show-to-offshoot ()
4865 (defun allout-show-to-offshoot ()
4866 "Like `allout-show-entry', but reveals all concealed ancestors, as well.
4868 Useful for coherently exposing to a random point in a hidden region."
4869 (interactive)
4870 (save-excursion
4871 (let ((inhibit-field-text-motion t)
4872 (orig-pt (point))
4873 (orig-pref (allout-goto-prefix-doublechecked))
4874 (last-at (point))
4875 (bag-it 0))
4876 (while (or (> bag-it 1) (allout-hidden-p))
4877 (while (allout-hidden-p)
4878 (move-beginning-of-line 1)
4879 (if (allout-hidden-p) (forward-char -1)))
4880 (if (= last-at (setq last-at (point)))
4881 ;; Oops, we're not making any progress! Show the current topic
4882 ;; completely, and try one more time here, if we haven't already.
4883 (progn (beginning-of-line)
4884 (allout-show-current-subtree)
4885 (goto-char orig-pt)
4886 (setq bag-it (1+ bag-it))
4887 (if (> bag-it 1)
4888 (error "allout-show-to-offshoot: %s"
4889 "Stumped by aberrant nesting.")))
4890 (if (> bag-it 0) (setq bag-it 0))
4891 (allout-show-children)
4892 (goto-char orig-pref)))
4893 (goto-char orig-pt)))
4894 (if (allout-hidden-p)
4895 (allout-show-entry)))
4896 ;;;_ > allout-hide-current-entry ()
4897 (defun allout-hide-current-entry ()
4898 "Hide the body directly following this heading."
4899 (interactive)
4900 (allout-back-to-current-heading)
4901 (save-excursion
4902 (let ((inhibit-field-text-motion t))
4903 (end-of-line))
4904 (allout-flag-region (point)
4905 (progn (allout-end-of-entry) (point))
4906 t)))
4907 ;;;_ > allout-show-current-entry (&optional arg)
4908 (defun allout-show-current-entry (&optional arg)
4909 "Show body following current heading, or hide entry with universal argument."
4911 (interactive "P")
4912 (if arg
4913 (allout-hide-current-entry)
4914 (save-excursion (allout-show-to-offshoot))
4915 (save-excursion
4916 (allout-flag-region (point)
4917 (progn (allout-end-of-entry t) (point))
4918 nil)
4920 ;;;_ > allout-show-current-subtree (&optional arg)
4921 (defun allout-show-current-subtree (&optional arg)
4922 "Show everything within the current topic.
4923 With a repeat-count, expose this topic and its siblings."
4924 (interactive "P")
4925 (save-excursion
4926 (if (<= (allout-current-depth) 0)
4927 ;; Outside any topics -- try to get to the first:
4928 (if (not (allout-next-heading))
4929 (error "No topics")
4930 ;; got to first, outermost topic -- set to expose it and siblings:
4931 (message "Above outermost topic -- exposing all.")
4932 (allout-flag-region (point-min)(point-max) nil))
4933 (allout-beginning-of-current-line)
4934 (if (not arg)
4935 (allout-flag-current-subtree nil)
4936 (allout-beginning-of-level)
4937 (allout-expose-topic '(* :))))))
4938 ;;;_ > allout-current-topic-collapsed-p (&optional include-single-liners)
4939 (defun allout-current-topic-collapsed-p (&optional include-single-liners)
4940 "True if the currently visible containing topic is already collapsed.
4942 Single line topics intrinsically can be considered as being both
4943 collapsed and uncollapsed. If optional INCLUDE-SINGLE-LINERS is
4944 true, then single-line topics are considered to be collapsed. By
4945 default, they are treated as being uncollapsed."
4946 (save-match-data
4947 (save-excursion
4948 (and
4949 ;; Is the topic all on one line (allowing for trailing blank line)?
4950 (>= (progn (allout-back-to-current-heading)
4951 (let ((inhibit-field-text-motion t))
4952 (move-end-of-line 1))
4953 (point))
4954 (allout-end-of-current-subtree (not (looking-at "\n\n"))))
4956 (or include-single-liners
4957 (progn (backward-char 1) (allout-hidden-p)))))))
4958 ;;;_ > allout-hide-current-subtree (&optional just-close)
4959 (defun allout-hide-current-subtree (&optional just-close)
4960 "Close the current topic, or containing topic if this one is already closed.
4962 If this topic is closed and it's a top level topic, close this topic
4963 and its siblings.
4965 If optional arg JUST-CLOSE is non-nil, do not close the parent or
4966 siblings, even if the target topic is already closed."
4968 (interactive)
4969 (let* ((from (point))
4970 (sibs-msg "Top-level topic already closed -- closing siblings...")
4971 (current-exposed (not (allout-current-topic-collapsed-p t))))
4972 (cond (current-exposed (allout-flag-current-subtree t))
4973 (just-close nil)
4974 ((allout-ascend) (allout-hide-current-subtree))
4975 (t (goto-char 0)
4976 (message sibs-msg)
4977 (allout-goto-prefix-doublechecked)
4978 (allout-expose-topic '(0 :))
4979 (message (concat sibs-msg " Done."))))
4980 (goto-char from)))
4981 ;;;_ > allout-toggle-current-subtree-exposure
4982 (defun allout-toggle-current-subtree-exposure ()
4983 "Show or hide the current subtree depending on its current state."
4984 ;; thanks to tassilo for suggesting this.
4985 (interactive)
4986 (save-excursion
4987 (allout-back-to-heading)
4988 (if (allout-hidden-p (point-at-eol))
4989 (allout-show-current-subtree)
4990 (allout-hide-current-subtree))))
4991 ;;;_ > allout-show-current-branches ()
4992 (defun allout-show-current-branches ()
4993 "Show all subheadings of this heading, but not their bodies."
4994 (interactive)
4995 (let ((inhibit-field-text-motion t))
4996 (beginning-of-line))
4997 (allout-show-children t))
4998 ;;;_ > allout-hide-current-leaves ()
4999 (defun allout-hide-current-leaves ()
5000 "Hide the bodies of the current topic and all its offspring."
5001 (interactive)
5002 (allout-back-to-current-heading)
5003 (allout-hide-region-body (point) (progn (allout-end-of-current-subtree)
5004 (point))))
5006 ;;;_ - Region and beyond
5007 ;;;_ > allout-show-all ()
5008 (defun allout-show-all ()
5009 "Show all of the text in the buffer."
5010 (interactive)
5011 (message "Exposing entire buffer...")
5012 (allout-flag-region (point-min) (point-max) nil)
5013 (message "Exposing entire buffer... Done."))
5014 ;;;_ > allout-hide-bodies ()
5015 (defun allout-hide-bodies ()
5016 "Hide all of buffer except headings."
5017 (interactive)
5018 (allout-hide-region-body (point-min) (point-max)))
5019 ;;;_ > allout-hide-region-body (start end)
5020 (defun allout-hide-region-body (start end)
5021 "Hide all body lines in the region, but not headings."
5022 (save-match-data
5023 (save-excursion
5024 (save-restriction
5025 (narrow-to-region start end)
5026 (goto-char (point-min))
5027 (let ((inhibit-field-text-motion t))
5028 (while (not (eobp))
5029 (end-of-line)
5030 (allout-flag-region (point) (allout-end-of-entry) t)
5031 (if (not (eobp))
5032 (forward-char
5033 (if (looking-at "\n\n")
5034 2 1)))))))))
5036 ;;;_ > allout-expose-topic (spec)
5037 (defun allout-expose-topic (spec)
5038 "Apply exposure specs to successive outline topic items.
5040 Use the more convenient frontend, `allout-new-exposure', if you don't
5041 need evaluation of the arguments, or even better, the `allout-layout'
5042 variable-keyed mode-activation/auto-exposure feature of allout outline
5043 mode. See the respective documentation strings for more details.
5045 Cursor is left at start position.
5047 SPEC is either a number or a list.
5049 Successive specs on a list are applied to successive sibling topics.
5051 A simple spec (either a number, one of a few symbols, or the null
5052 list) dictates the exposure for the corresponding topic.
5054 Non-null lists recursively designate exposure specs for respective
5055 subtopics of the current topic.
5057 The `:' repeat spec is used to specify exposure for any number of
5058 successive siblings, up to the trailing ones for which there are
5059 explicit specs following the `:'.
5061 Simple (numeric and null-list) specs are interpreted as follows:
5063 Numbers indicate the relative depth to open the corresponding topic.
5064 - negative numbers force the topic to be closed before opening to the
5065 absolute value of the number, so all siblings are open only to
5066 that level.
5067 - positive numbers open to the relative depth indicated by the
5068 number, but do not force already opened subtopics to be closed.
5069 - 0 means to close topic -- hide all offspring.
5070 : - `repeat'
5071 apply prior element to all siblings at current level, *up to*
5072 those siblings that would be covered by specs following the `:'
5073 on the list. Ie, apply to all topics at level but the last
5074 ones. (Only first of multiple colons at same level is
5075 respected -- subsequent ones are discarded.)
5076 * - completely opens the topic, including bodies.
5077 + - shows all the sub headers, but not the bodies
5078 - - exposes the body of the corresponding topic.
5080 Examples:
5081 \(allout-expose-topic '(-1 : 0))
5082 Close this and all following topics at current level, exposing
5083 only their immediate children, but close down the last topic
5084 at this current level completely.
5085 \(allout-expose-topic '(-1 () : 1 0))
5086 Close current topic so only the immediate subtopics are shown;
5087 show the children in the second to last topic, and completely
5088 close the last one.
5089 \(allout-expose-topic '(-2 : -1 *))
5090 Expose children and grandchildren of all topics at current
5091 level except the last two; expose children of the second to
5092 last and completely open the last one."
5094 (interactive "xExposure spec: ")
5095 (if (not (listp spec))
5097 (let ((depth (allout-depth))
5098 (max-pos 0)
5099 prev-elem curr-elem
5100 stay)
5101 (while spec
5102 (setq prev-elem curr-elem
5103 curr-elem (car spec)
5104 spec (cdr spec))
5105 (cond ; Do current element:
5106 ((null curr-elem) nil)
5107 ((symbolp curr-elem)
5108 (cond ((eq curr-elem '*) (allout-show-current-subtree)
5109 (if (> allout-recent-end-of-subtree max-pos)
5110 (setq max-pos allout-recent-end-of-subtree)))
5111 ((eq curr-elem '+)
5112 (if (not (allout-hidden-p))
5113 (save-excursion (allout-hide-current-subtree t)))
5114 (allout-show-current-branches)
5115 (if (> allout-recent-end-of-subtree max-pos)
5116 (setq max-pos allout-recent-end-of-subtree)))
5117 ((eq curr-elem '-) (allout-show-current-entry))
5118 ((eq curr-elem ':)
5119 (setq stay t)
5120 ;; Expand the `repeat' spec to an explicit version,
5121 ;; w.r.t. remaining siblings:
5122 (let ((residue ; = # of sibs not covered by remaining spec
5123 ;; Dang, could be nice to make use of the chart, sigh:
5124 (- (length (allout-chart-siblings))
5125 (length spec))))
5126 (if (< 0 residue)
5127 ;; Some residue -- cover it with prev-elem:
5128 (setq spec (append (make-list residue prev-elem)
5129 spec)))))))
5130 ((numberp curr-elem)
5131 (if (and (>= 0 curr-elem) (not (allout-hidden-p)))
5132 (save-excursion (allout-hide-current-subtree t)
5133 (if (> 0 curr-elem)
5135 (if (> allout-recent-end-of-subtree max-pos)
5136 (setq max-pos
5137 allout-recent-end-of-subtree)))))
5138 (if (> (abs curr-elem) 0)
5139 (progn (allout-show-children (abs curr-elem))
5140 (if (> allout-recent-end-of-subtree max-pos)
5141 (setq max-pos allout-recent-end-of-subtree)))))
5142 ((listp curr-elem)
5143 (if (allout-descend-to-depth (1+ depth))
5144 (let ((got (allout-expose-topic curr-elem)))
5145 (if (and got (> got max-pos)) (setq max-pos got))))))
5146 (cond (stay (setq stay nil))
5147 ((listp (car spec)) nil)
5148 ((> max-pos (point))
5149 ;; Capitalize on max-pos state to get us nearer next sibling:
5150 (progn (goto-char (min (point-max) max-pos))
5151 (allout-next-heading)))
5152 ((allout-next-sibling depth))))
5153 max-pos)))
5154 ;;;_ > allout-old-expose-topic (spec &rest followers)
5155 (defun allout-old-expose-topic (spec &rest followers)
5157 "Deprecated. Use `allout-expose-topic' (with different schema
5158 format) instead.
5160 Dictate wholesale exposure scheme for current topic, according to SPEC.
5162 SPEC is either a number or a list. Optional successive args
5163 dictate exposure for subsequent siblings of current topic.
5165 A simple spec (either a number, a special symbol, or the null list)
5166 dictates the overall exposure for a topic. Non null lists are
5167 composite specs whose first element dictates the overall exposure for
5168 a topic, with the subsequent elements in the list interpreted as specs
5169 that dictate the exposure for the successive offspring of the topic.
5171 Simple (numeric and null-list) specs are interpreted as follows:
5173 - Numbers indicate the relative depth to open the corresponding topic:
5174 - negative numbers force the topic to be close before opening to the
5175 absolute value of the number.
5176 - positive numbers just open to the relative depth indicated by the number.
5177 - 0 just closes
5178 - `*' completely opens the topic, including bodies.
5179 - `+' shows all the sub headers, but not the bodies
5180 - `-' exposes the body and immediate offspring of the corresponding topic.
5182 If the spec is a list, the first element must be a number, which
5183 dictates the exposure depth of the topic as a whole. Subsequent
5184 elements of the list are nested SPECs, dictating the specific exposure
5185 for the corresponding offspring of the topic.
5187 Optional FOLLOWERS arguments dictate exposure for succeeding siblings."
5189 (interactive "xExposure spec: ")
5190 (let ((inhibit-field-text-motion t)
5191 (depth (allout-current-depth))
5192 max-pos)
5193 (cond ((null spec) nil)
5194 ((symbolp spec)
5195 (if (eq spec '*) (allout-show-current-subtree))
5196 (if (eq spec '+) (allout-show-current-branches))
5197 (if (eq spec '-) (allout-show-current-entry)))
5198 ((numberp spec)
5199 (if (>= 0 spec)
5200 (save-excursion (allout-hide-current-subtree t)
5201 (end-of-line)
5202 (if (or (not max-pos)
5203 (> (point) max-pos))
5204 (setq max-pos (point)))
5205 (if (> 0 spec)
5206 (setq spec (* -1 spec)))))
5207 (if (> spec 0)
5208 (allout-show-children spec)))
5209 ((listp spec)
5210 ;(let ((got (allout-old-expose-topic (car spec))))
5211 ; (if (and got (or (not max-pos) (> got max-pos)))
5212 ; (setq max-pos got)))
5213 (let ((new-depth (+ (allout-current-depth) 1))
5214 got)
5215 (setq max-pos (allout-old-expose-topic (car spec)))
5216 (setq spec (cdr spec))
5217 (if (and spec
5218 (allout-descend-to-depth new-depth)
5219 (not (allout-hidden-p)))
5220 (progn (setq got (apply 'allout-old-expose-topic spec))
5221 (if (and got (or (not max-pos) (> got max-pos)))
5222 (setq max-pos got)))))))
5223 (while (and followers
5224 (progn (if (and max-pos (< (point) max-pos))
5225 (progn (goto-char max-pos)
5226 (setq max-pos nil)))
5227 (end-of-line)
5228 (allout-next-sibling depth)))
5229 (allout-old-expose-topic (car followers))
5230 (setq followers (cdr followers)))
5231 max-pos))
5232 ;;;_ > allout-new-exposure '()
5233 (defmacro allout-new-exposure (&rest spec)
5234 "Literal frontend for `allout-expose-topic', doesn't evaluate arguments.
5235 Some arguments that would need to be quoted in `allout-expose-topic'
5236 need not be quoted in `allout-new-exposure'.
5238 Cursor is left at start position.
5240 Use this instead of obsolete `allout-exposure'.
5242 Examples:
5243 \(allout-new-exposure (-1 () () () 1) 0)
5244 Close current topic at current level so only the immediate
5245 subtopics are shown, except also show the children of the
5246 third subtopic; and close the next topic at the current level.
5247 \(allout-new-exposure : -1 0)
5248 Close all topics at current level to expose only their
5249 immediate children, except for the last topic at the current
5250 level, in which even its immediate children are hidden.
5251 \(allout-new-exposure -2 : -1 *)
5252 Expose children and grandchildren of first topic at current
5253 level, and expose children of subsequent topics at current
5254 level *except* for the last, which should be opened completely."
5255 (list 'save-excursion
5256 '(if (not (or (allout-goto-prefix-doublechecked)
5257 (allout-next-heading)))
5258 (error "allout-new-exposure: Can't find any outline topics"))
5259 (list 'allout-expose-topic (list 'quote spec))))
5261 ;;;_ #7 Systematic outline presentation -- copying, printing, flattening
5263 ;;;_ - Mapping and processing of topics
5264 ;;;_ ( See also Subtree Charting, in Navigation code.)
5265 ;;;_ > allout-stringify-flat-index (flat-index)
5266 (defun allout-stringify-flat-index (flat-index &optional context)
5267 "Convert list representing section/subsection/... to document string.
5269 Optional arg CONTEXT indicates interior levels to include."
5270 (let ((delim ".")
5271 result
5272 numstr
5273 (context-depth (or (and context 2) 1)))
5274 ;; Take care of the explicit context:
5275 (while (> context-depth 0)
5276 (setq numstr (int-to-string (car flat-index))
5277 flat-index (cdr flat-index)
5278 result (if flat-index
5279 (cons delim (cons numstr result))
5280 (cons numstr result))
5281 context-depth (if flat-index (1- context-depth) 0)))
5282 (setq delim " ")
5283 ;; Take care of the indentation:
5284 (if flat-index
5285 (progn
5286 (while flat-index
5287 (setq result
5288 (cons delim
5289 (cons (make-string
5290 (1+ (truncate (if (zerop (car flat-index))
5292 (log10 (car flat-index)))))
5294 result)))
5295 (setq flat-index (cdr flat-index)))
5296 ;; Dispose of single extra delim:
5297 (setq result (cdr result))))
5298 (apply 'concat result)))
5299 ;;;_ > allout-stringify-flat-index-plain (flat-index)
5300 (defun allout-stringify-flat-index-plain (flat-index)
5301 "Convert list representing section/subsection/... to document string."
5302 (let ((delim ".")
5303 result)
5304 (while flat-index
5305 (setq result (cons (int-to-string (car flat-index))
5306 (if result
5307 (cons delim result))))
5308 (setq flat-index (cdr flat-index)))
5309 (apply 'concat result)))
5310 ;;;_ > allout-stringify-flat-index-indented (flat-index)
5311 (defun allout-stringify-flat-index-indented (flat-index)
5312 "Convert list representing section/subsection/... to document string."
5313 (let ((delim ".")
5314 result
5315 numstr)
5316 ;; Take care of the explicit context:
5317 (setq numstr (int-to-string (car flat-index))
5318 flat-index (cdr flat-index)
5319 result (if flat-index
5320 (cons delim (cons numstr result))
5321 (cons numstr result)))
5322 (setq delim " ")
5323 ;; Take care of the indentation:
5324 (if flat-index
5325 (progn
5326 (while flat-index
5327 (setq result
5328 (cons delim
5329 (cons (make-string
5330 (1+ (truncate (if (zerop (car flat-index))
5332 (log10 (car flat-index)))))
5334 result)))
5335 (setq flat-index (cdr flat-index)))
5336 ;; Dispose of single extra delim:
5337 (setq result (cdr result))))
5338 (apply 'concat result)))
5339 ;;;_ > allout-listify-exposed (&optional start end format)
5340 (defun allout-listify-exposed (&optional start end format)
5342 "Produce a list representing exposed topics in current region.
5344 This list can then be used by `allout-process-exposed' to manipulate
5345 the subject region.
5347 Optional START and END indicate bounds of region.
5349 Optional arg, FORMAT, designates an alternate presentation form for
5350 the prefix:
5352 list -- Present prefix as numeric section.subsection..., starting with
5353 section indicated by the list, innermost nesting first.
5354 `indent' (symbol) -- Convert header prefixes to all white space,
5355 except for distinctive bullets.
5357 The elements of the list produced are lists that represents a topic
5358 header and body. The elements of that list are:
5360 - a number representing the depth of the topic,
5361 - a string representing the header-prefix, including trailing whitespace and
5362 bullet.
5363 - a string representing the bullet character,
5364 - and a series of strings, each containing one line of the exposed
5365 portion of the topic entry."
5367 (interactive "r")
5368 (save-excursion
5369 (let*
5370 ((inhibit-field-text-motion t)
5371 ;; state vars:
5372 strings prefix result depth new-depth out gone-out bullet beg
5373 next done)
5375 (goto-char start)
5376 (beginning-of-line)
5377 ;; Goto initial topic, and register preceding stuff, if any:
5378 (if (> (allout-goto-prefix-doublechecked) start)
5379 ;; First topic follows beginning point -- register preliminary stuff:
5380 (setq result
5381 (list (list 0 "" nil
5382 (buffer-substring-no-properties start
5383 (1- (point)))))))
5384 (while (and (not done)
5385 (not (eobp)) ; Loop until we've covered the region.
5386 (not (> (point) end)))
5387 (setq depth allout-recent-depth ; Current topics depth,
5388 bullet (allout-recent-bullet) ; ... bullet,
5389 prefix (allout-recent-prefix)
5390 beg (progn (allout-end-of-prefix t) (point))) ; and beginning.
5391 (setq done ; The boundary for the current topic:
5392 (not (allout-next-visible-heading 1)))
5393 (setq new-depth allout-recent-depth)
5394 (setq gone-out out
5395 out (< new-depth depth))
5396 (beginning-of-line)
5397 (setq next (point))
5398 (goto-char beg)
5399 (setq strings nil)
5400 (while (> next (point)) ; Get all the exposed text in
5401 (setq strings
5402 (cons (buffer-substring-no-properties
5404 ;To hidden text or end of line:
5405 (progn
5406 (end-of-line)
5407 (allout-back-to-visible-text)))
5408 strings))
5409 (when (< (point) next) ; Resume from after hid text, if any.
5410 (line-move 1)
5411 (beginning-of-line))
5412 (setq beg (point)))
5413 ;; Accumulate list for this topic:
5414 (setq strings (nreverse strings))
5415 (setq result
5416 (cons
5417 (if format
5418 (let ((special (if (string-match
5419 (regexp-quote bullet)
5420 allout-distinctive-bullets-string)
5421 bullet)))
5422 (cond ((listp format)
5423 (list depth
5424 (if allout-flattened-numbering-abbreviation
5425 (allout-stringify-flat-index format
5426 gone-out)
5427 (allout-stringify-flat-index-plain
5428 format))
5429 strings
5430 special))
5431 ((eq format 'indent)
5432 (if special
5433 (list depth
5434 (concat (make-string (1+ depth) ? )
5435 (substring prefix -1))
5436 strings)
5437 (list depth
5438 (make-string depth ? )
5439 strings)))
5440 (t (error "allout-listify-exposed: %s %s"
5441 "invalid format" format))))
5442 (list depth prefix strings))
5443 result))
5444 ;; Reasses format, if any:
5445 (if (and format (listp format))
5446 (cond ((= new-depth depth)
5447 (setq format (cons (1+ (car format))
5448 (cdr format))))
5449 ((> new-depth depth) ; descending -- assume by 1:
5450 (setq format (cons 1 format)))
5452 ; Pop the residue:
5453 (while (< new-depth depth)
5454 (setq format (cdr format))
5455 (setq depth (1- depth)))
5456 ; And increment the current one:
5457 (setq format
5458 (cons (1+ (or (car format)
5459 -1))
5460 (cdr format)))))))
5461 ;; Put the list with first at front, to last at back:
5462 (nreverse result))))
5463 ;;;_ > allout-region-active-p ()
5464 (defmacro allout-region-active-p ()
5465 (cond ((fboundp 'use-region-p) '(use-region-p))
5466 ((fboundp 'region-active-p) '(region-active-p))
5467 (t 'mark-active)))
5468 ;;_ > allout-process-exposed (&optional func from to frombuf
5469 ;;; tobuf format)
5470 (defun allout-process-exposed (&optional func from to frombuf tobuf
5471 format start-num)
5472 "Map function on exposed parts of current topic; results to another buffer.
5474 All args are options; default values itemized below.
5476 Apply FUNCTION to exposed portions FROM position TO position in buffer
5477 FROMBUF to buffer TOBUF. Sixth optional arg, FORMAT, designates an
5478 alternate presentation form:
5480 `flat' -- Present prefix as numeric section.subsection..., starting with
5481 section indicated by the START-NUM, innermost nesting first.
5482 X`flat-indented' -- Prefix is like `flat' for first topic at each
5483 X level, but subsequent topics have only leaf topic
5484 X number, padded with blanks to line up with first.
5485 `indent' (symbol) -- Convert header prefixes to all white space,
5486 except for distinctive bullets.
5488 Defaults:
5489 FUNCTION: `allout-insert-listified'
5490 FROM: region start, if region active, else start of buffer
5491 TO: region end, if region active, else end of buffer
5492 FROMBUF: current buffer
5493 TOBUF: buffer name derived: \"*current-buffer-name exposed*\"
5494 FORMAT: nil"
5496 ; Resolve arguments,
5497 ; defaulting if necessary:
5498 (if (not func) (setq func 'allout-insert-listified))
5499 (if (not (and from to))
5500 (if (allout-region-active-p)
5501 (setq from (region-beginning) to (region-end))
5502 (setq from (point-min) to (point-max))))
5503 (if frombuf
5504 (if (not (bufferp frombuf))
5505 ;; Specified but not a buffer -- get it:
5506 (let ((got (get-buffer frombuf)))
5507 (if (not got)
5508 (error (concat "allout-process-exposed: source buffer "
5509 frombuf
5510 " not found."))
5511 (setq frombuf got))))
5512 ;; not specified -- default it:
5513 (setq frombuf (current-buffer)))
5514 (if tobuf
5515 (if (not (bufferp tobuf))
5516 (setq tobuf (get-buffer-create tobuf)))
5517 ;; not specified -- default it:
5518 (setq tobuf (concat "*" (buffer-name frombuf) " exposed*")))
5519 (if (listp format)
5520 (nreverse format))
5522 (let* ((listified
5523 (progn (set-buffer frombuf)
5524 (allout-listify-exposed from to format))))
5525 (set-buffer tobuf)
5526 (mapc func listified)
5527 (pop-to-buffer tobuf)))
5529 ;;;_ - Copy exposed
5530 ;;;_ > allout-insert-listified (listified)
5531 (defun allout-insert-listified (listified)
5532 "Insert contents of listified outline portion in current buffer.
5534 LISTIFIED is a list representing each topic header and body:
5536 \`(depth prefix text)'
5538 or \`(depth prefix text bullet-plus)'
5540 If `bullet-plus' is specified, it is inserted just after the entire prefix."
5541 (setq listified (cdr listified))
5542 (let ((prefix (prog1
5543 (car listified)
5544 (setq listified (cdr listified))))
5545 (text (prog1
5546 (car listified)
5547 (setq listified (cdr listified))))
5548 (bullet-plus (car listified)))
5549 (insert prefix)
5550 (if bullet-plus (insert (concat " " bullet-plus)))
5551 (while text
5552 (insert (car text))
5553 (if (setq text (cdr text))
5554 (insert "\n")))
5555 (insert "\n")))
5556 ;;;_ > allout-copy-exposed-to-buffer (&optional arg tobuf format)
5557 (defun allout-copy-exposed-to-buffer (&optional arg tobuf format)
5558 "Duplicate exposed portions of current outline to another buffer.
5560 Other buffer has current buffers name with \" exposed\" appended to it.
5562 With repeat count, copy the exposed parts of only the current topic.
5564 Optional second arg TOBUF is target buffer name.
5566 Optional third arg FORMAT, if non-nil, symbolically designates an
5567 alternate presentation format for the outline:
5569 `flat' - Convert topic header prefixes to numeric
5570 section.subsection... identifiers.
5571 `indent' - Convert header prefixes to all white space, except for
5572 distinctive bullets.
5573 `indent-flat' - The best of both - only the first of each level has
5574 the full path, the rest have only the section number
5575 of the leaf, preceded by the right amount of indentation."
5577 (interactive "P")
5578 (if (not tobuf)
5579 (setq tobuf (get-buffer-create (concat "*" (buffer-name) " exposed*"))))
5580 (let* ((start-pt (point))
5581 (beg (if arg (allout-back-to-current-heading) (point-min)))
5582 (end (if arg (allout-end-of-current-subtree) (point-max)))
5583 (buf (current-buffer))
5584 (start-list ()))
5585 (if (eq format 'flat)
5586 (setq format (if arg (save-excursion
5587 (goto-char beg)
5588 (allout-topic-flat-index))
5589 '(1))))
5590 (with-current-buffer tobuf (erase-buffer))
5591 (allout-process-exposed 'allout-insert-listified
5594 (current-buffer)
5595 tobuf
5596 format start-list)
5597 (goto-char (point-min))
5598 (pop-to-buffer buf)
5599 (goto-char start-pt)))
5600 ;;;_ > allout-flatten-exposed-to-buffer (&optional arg tobuf)
5601 (defun allout-flatten-exposed-to-buffer (&optional arg tobuf)
5602 "Present numeric outline of outline's exposed portions in another buffer.
5604 The resulting outline is not compatible with outline mode -- use
5605 `allout-copy-exposed-to-buffer' if you want that.
5607 Use `allout-indented-exposed-to-buffer' for indented presentation.
5609 With repeat count, copy the exposed portions of only current topic.
5611 Other buffer has current buffer's name with \" exposed\" appended to
5612 it, unless optional second arg TOBUF is specified, in which case it is
5613 used verbatim."
5614 (interactive "P")
5615 (allout-copy-exposed-to-buffer arg tobuf 'flat))
5616 ;;;_ > allout-indented-exposed-to-buffer (&optional arg tobuf)
5617 (defun allout-indented-exposed-to-buffer (&optional arg tobuf)
5618 "Present indented outline of outline's exposed portions in another buffer.
5620 The resulting outline is not compatible with outline mode -- use
5621 `allout-copy-exposed-to-buffer' if you want that.
5623 Use `allout-flatten-exposed-to-buffer' for numeric sectional presentation.
5625 With repeat count, copy the exposed portions of only current topic.
5627 Other buffer has current buffer's name with \" exposed\" appended to
5628 it, unless optional second arg TOBUF is specified, in which case it is
5629 used verbatim."
5630 (interactive "P")
5631 (allout-copy-exposed-to-buffer arg tobuf 'indent))
5633 ;;;_ - LaTeX formatting
5634 ;;;_ > allout-latex-verb-quote (string &optional flow)
5635 (defun allout-latex-verb-quote (string &optional flow)
5636 "Return copy of STRING for literal reproduction across LaTeX processing.
5637 Expresses the original characters (including carriage returns) of the
5638 string across LaTeX processing."
5639 (mapconcat (function
5640 (lambda (char)
5641 (cond ((memq char '(?\\ ?$ ?% ?# ?& ?{ ?} ?_ ?^ ?- ?*))
5642 (concat "\\char" (number-to-string char) "{}"))
5643 ((= char ?\n) "\\\\")
5644 (t (char-to-string char)))))
5645 string
5646 ""))
5647 ;;;_ > allout-latex-verbatim-quote-curr-line ()
5648 (defun allout-latex-verbatim-quote-curr-line ()
5649 "Express line for exact (literal) representation across LaTeX processing.
5651 Adjust line contents so it is unaltered (from the original line)
5652 across LaTeX processing, within the context of a `verbatim'
5653 environment. Leaves point at the end of the line."
5654 (let ((inhibit-field-text-motion t))
5655 (beginning-of-line)
5656 (let ((beg (point))
5657 (end (point-at-eol)))
5658 (save-match-data
5659 (while (re-search-forward "\\\\"
5660 ;;"\\\\\\|\\{\\|\\}\\|\\_\\|\\$\\|\\\"\\|\\&\\|\\^\\|\\-\\|\\*\\|#"
5661 end ; bounded by end-of-line
5662 1) ; no matches, move to end & return nil
5663 (goto-char (match-beginning 2))
5664 (insert "\\")
5665 (setq end (1+ end))
5666 (goto-char (1+ (match-end 2))))))))
5667 ;;;_ > allout-insert-latex-header (buffer)
5668 (defun allout-insert-latex-header (buffer)
5669 "Insert initial LaTeX commands at point in BUFFER."
5670 ;; Much of this is being derived from the stuff in appendix of E in
5671 ;; the TeXBook, pg 421.
5672 (set-buffer buffer)
5673 (let ((doc-style (format "\n\\documentstyle{%s}\n"
5674 "report"))
5675 (page-numbering (if allout-number-pages
5676 "\\pagestyle{empty}\n"
5677 ""))
5678 (titlecmd (format "\\newcommand{\\titlecmd}[1]{{%s #1}}\n"
5679 allout-title-style))
5680 (labelcmd (format "\\newcommand{\\labelcmd}[1]{{%s #1}}\n"
5681 allout-label-style))
5682 (headlinecmd (format "\\newcommand{\\headlinecmd}[1]{{%s #1}}\n"
5683 allout-head-line-style))
5684 (bodylinecmd (format "\\newcommand{\\bodylinecmd}[1]{{%s #1}}\n"
5685 allout-body-line-style))
5686 (setlength (format "%s%s%s%s"
5687 "\\newlength{\\stepsize}\n"
5688 "\\setlength{\\stepsize}{"
5689 allout-indent
5690 "}\n"))
5691 (oneheadline (format "%s%s%s%s%s%s%s"
5692 "\\newcommand{\\OneHeadLine}[3]{%\n"
5693 "\\noindent%\n"
5694 "\\hspace*{#2\\stepsize}%\n"
5695 "\\labelcmd{#1}\\hspace*{.2cm}"
5696 "\\headlinecmd{#3}\\\\["
5697 allout-line-skip
5698 "]\n}\n"))
5699 (onebodyline (format "%s%s%s%s%s%s"
5700 "\\newcommand{\\OneBodyLine}[2]{%\n"
5701 "\\noindent%\n"
5702 "\\hspace*{#1\\stepsize}%\n"
5703 "\\bodylinecmd{#2}\\\\["
5704 allout-line-skip
5705 "]\n}\n"))
5706 (begindoc "\\begin{document}\n\\begin{center}\n")
5707 (title (format "%s%s%s%s"
5708 "\\titlecmd{"
5709 (allout-latex-verb-quote (if allout-title
5710 (condition-case nil
5711 (eval allout-title)
5712 (error "<unnamed buffer>"))
5713 "Unnamed Outline"))
5714 "}\n"
5715 "\\end{center}\n\n"))
5716 (hsize "\\hsize = 7.5 true in\n")
5717 (hoffset "\\hoffset = -1.5 true in\n")
5718 (vspace "\\vspace{.1cm}\n\n"))
5719 (insert (concat doc-style
5720 page-numbering
5721 titlecmd
5722 labelcmd
5723 headlinecmd
5724 bodylinecmd
5725 setlength
5726 oneheadline
5727 onebodyline
5728 begindoc
5729 title
5730 hsize
5731 hoffset
5732 vspace)
5734 ;;;_ > allout-insert-latex-trailer (buffer)
5735 (defun allout-insert-latex-trailer (buffer)
5736 "Insert concluding LaTeX commands at point in BUFFER."
5737 (set-buffer buffer)
5738 (insert "\n\\end{document}\n"))
5739 ;;;_ > allout-latexify-one-item (depth prefix bullet text)
5740 (defun allout-latexify-one-item (depth prefix bullet text)
5741 "Insert LaTeX commands for formatting one outline item.
5743 Args are the topics numeric DEPTH, the header PREFIX lead string, the
5744 BULLET string, and a list of TEXT strings for the body."
5745 (let* ((head-line (if text (car text)))
5746 (body-lines (cdr text))
5747 (curr-line)
5748 body-content bop)
5749 ; Do the head line:
5750 (insert (concat "\\OneHeadLine{\\verb\1 "
5751 (allout-latex-verb-quote bullet)
5752 "\1}{"
5753 depth
5754 "}{\\verb\1 "
5755 (if head-line
5756 (allout-latex-verb-quote head-line)
5758 "\1}\n"))
5759 (if (not body-lines)
5761 ;;(insert "\\beginlines\n")
5762 (insert "\\begin{verbatim}\n")
5763 (while body-lines
5764 (setq curr-line (car body-lines))
5765 (if (and (not body-content)
5766 (not (string-match "^\\s-*$" curr-line)))
5767 (setq body-content t))
5768 ; Mangle any occurrences of
5769 ; "\end{verbatim}" in text,
5770 ; it's special:
5771 (if (and body-content
5772 (setq bop (string-match "\\end{verbatim}" curr-line)))
5773 (setq curr-line (concat (substring curr-line 0 bop)
5775 (substring curr-line bop))))
5776 ;;(insert "|" (car body-lines) "|")
5777 (insert curr-line)
5778 (allout-latex-verbatim-quote-curr-line)
5779 (insert "\n")
5780 (setq body-lines (cdr body-lines)))
5781 (if body-content
5782 (setq body-content nil)
5783 (forward-char -1)
5784 (insert "\\ ")
5785 (forward-char 1))
5786 ;;(insert "\\endlines\n")
5787 (insert "\\end{verbatim}\n")
5789 ;;;_ > allout-latexify-exposed (arg &optional tobuf)
5790 (defun allout-latexify-exposed (arg &optional tobuf)
5791 "Format current topics exposed portions to TOBUF for LaTeX processing.
5792 TOBUF defaults to a buffer named the same as the current buffer, but
5793 with \"*\" prepended and \" latex-formed*\" appended.
5795 With repeat count, copy the exposed portions of entire buffer."
5797 (interactive "P")
5798 (if (not tobuf)
5799 (setq tobuf
5800 (get-buffer-create (concat "*" (buffer-name) " latexified*"))))
5801 (let* ((start-pt (point))
5802 (beg (if arg (point-min) (allout-back-to-current-heading)))
5803 (end (if arg (point-max) (allout-end-of-current-subtree)))
5804 (buf (current-buffer)))
5805 (set-buffer tobuf)
5806 (erase-buffer)
5807 (allout-insert-latex-header tobuf)
5808 (goto-char (point-max))
5809 (allout-process-exposed 'allout-latexify-one-item
5813 tobuf)
5814 (goto-char (point-max))
5815 (allout-insert-latex-trailer tobuf)
5816 (goto-char (point-min))
5817 (pop-to-buffer buf)
5818 (goto-char start-pt)))
5820 ;;;_ #8 Encryption
5821 ;;;_ > allout-toggle-current-subtree-encryption (&optional keymode-cue)
5822 (defun allout-toggle-current-subtree-encryption (&optional keymode-cue)
5823 "Encrypt clear or decrypt encoded topic text.
5825 Allout uses emacs 'epg' libary to perform encryption. Symmetric
5826 and keypair encryption are supported. All encryption is ascii
5827 armored.
5829 Entry encryption defaults to symmetric key mode unless keypair
5830 recipients are associated with the file \(see
5831 `epa-file-encrypt-to') or the function is invoked with a
5832 \(KEYMODE-CUE) universal argument greater than 1.
5834 When encrypting, KEYMODE-CUE universal argument greater than 1
5835 causes prompting for recipients for public-key keypair
5836 encryption. Selecting no recipients results in symmetric key
5837 encryption.
5839 Further, encrypting with a KEYMODE-CUE universal argument greater
5840 than 4 - eg, preceded by a doubled Ctrl-U - causes association of
5841 the specified recipients with the file, replacing those currently
5842 associated with it. This can be used to deassociate any
5843 recipients with the file, by selecting no recipients in the
5844 dialog.
5846 Encrypted topic's bullets are set to a `~' to signal that the
5847 contents of the topic (body and subtopics, but not heading) is
5848 pending encryption or encrypted. `*' asterisk immediately after
5849 the bullet signals that the body is encrypted, its absence means
5850 the topic is meant to be encrypted but is not currently. When a
5851 file with topics pending encryption is saved, topics pending
5852 encryption are encrypted. See allout-encrypt-unencrypted-on-saves
5853 for auto-encryption specifics.
5855 \*NOTE WELL* that automatic encryption that happens during saves will
5856 default to symmetric encryption -- you must deliberately (re)encrypt key-pair
5857 encrypted topics if you want them to continue to use the key-pair cipher.
5859 Level-one topics, with prefix consisting solely of an `*' asterisk, cannot be
5860 encrypted. If you want to encrypt the contents of a top-level topic, use
5861 \\[allout-shift-in] to increase its depth."
5862 (interactive "P")
5863 (save-excursion
5864 (allout-back-to-current-heading)
5865 (allout-toggle-subtree-encryption keymode-cue)))
5866 ;;;_ > allout-toggle-subtree-encryption (&optional keymode-cue)
5867 (defun allout-toggle-subtree-encryption (&optional keymode-cue)
5868 "Encrypt clear text or decrypt encoded topic contents (body and subtopics.)
5870 Entry encryption defaults to symmetric key mode unless keypair
5871 recipients are associated with the file \(see
5872 `epa-file-encrypt-to') or the function is invoked with a
5873 \(KEYMODE-CUE) universal argument greater than 1.
5875 When encrypting, KEYMODE-CUE universal argument greater than 1
5876 causes prompting for recipients for public-key keypair
5877 encryption. Selecting no recipients results in symmetric key
5878 encryption.
5880 Further, encrypting with a KEYMODE-CUE universal argument greater
5881 than 4 - eg, preceded by a doubled Ctrl-U - causes association of
5882 the specified recipients with the file, replacing those currently
5883 associated with it. This can be used to deassociate any
5884 recipients with the file, by selecting no recipients in the
5885 dialog.
5887 Encryption and decryption uses the emacs epg library.
5889 Encrypted text will be ascii-armored.
5891 See `allout-toggle-current-subtree-encryption' for more details."
5893 (interactive "P")
5894 (save-excursion
5895 (allout-end-of-prefix t)
5897 (if (= allout-recent-depth 1)
5898 (error (concat "Cannot encrypt or decrypt level 1 topics -"
5899 " shift it in to make it encryptable")))
5901 (let* ((allout-buffer (current-buffer))
5902 ;; Assess location:
5903 (bullet-pos allout-recent-prefix-beginning)
5904 (after-bullet-pos (point))
5905 (was-encrypted
5906 (progn (if (= (point-max) after-bullet-pos)
5907 (error "no body to encrypt"))
5908 (allout-encrypted-topic-p)))
5909 (was-collapsed (if (not (search-forward "\n" nil t))
5911 (backward-char 1)
5912 (allout-hidden-p)))
5913 (subtree-beg (1+ (point)))
5914 (subtree-end (allout-end-of-subtree))
5915 (subject-text (buffer-substring-no-properties subtree-beg
5916 subtree-end))
5917 (subtree-end-char (char-after (1- subtree-end)))
5918 (subtree-trailing-char (char-after subtree-end))
5919 ;; kluge -- result-text needs to be nil, but we also want to
5920 ;; check for the error condition
5921 (result-text (if (or (string= "" subject-text)
5922 (string= "\n" subject-text))
5923 (error "No topic contents to %scrypt"
5924 (if was-encrypted "de" "en"))
5925 nil))
5926 ;; Assess key parameters:
5927 (was-coding-system buffer-file-coding-system))
5929 (when (not was-encrypted)
5930 ;; ensure that non-ascii chars pending encryption are noticed before
5931 ;; they're encrypted, so the coding system is set to accommodate
5932 ;; them.
5933 (setq buffer-file-coding-system
5934 (allout-select-safe-coding-system subtree-beg subtree-end))
5935 ;; if the coding system for the text being encrypted is different
5936 ;; than that prevailing, then there a real risk that the coding
5937 ;; system can't be noticed by emacs when the file is visited. to
5938 ;; mitigate that, offer to preserve the coding system using a file
5939 ;; local variable.
5940 (if (and (not (equal buffer-file-coding-system
5941 was-coding-system))
5942 (yes-or-no-p
5943 (format (concat "Register coding system %s as file local"
5944 " var? Necessary when only encrypted text"
5945 " is in that coding system. ")
5946 buffer-file-coding-system)))
5947 (allout-adjust-file-variable "buffer-file-coding-system"
5948 buffer-file-coding-system)))
5950 (setq result-text
5951 (allout-encrypt-string subject-text was-encrypted
5952 (current-buffer) keymode-cue))
5954 ;; Replace the subtree with the processed product.
5955 (allout-unprotected
5956 (progn
5957 (set-buffer allout-buffer)
5958 (delete-region subtree-beg subtree-end)
5959 (insert result-text)
5960 (if was-collapsed
5961 (allout-flag-region (1- subtree-beg) (point) t))
5962 ;; adjust trailing-blank-lines to preserve topic spacing:
5963 (if (not was-encrypted)
5964 (if (and (= subtree-end-char ?\n)
5965 (= subtree-trailing-char ?\n))
5966 (insert subtree-trailing-char)))
5967 ;; Ensure that the item has an encrypted-entry bullet:
5968 (if (not (string= (buffer-substring-no-properties
5969 (1- after-bullet-pos) after-bullet-pos)
5970 allout-topic-encryption-bullet))
5971 (progn (goto-char (1- after-bullet-pos))
5972 (delete-char 1)
5973 (insert allout-topic-encryption-bullet)))
5974 (if was-encrypted
5975 ;; Remove the is-encrypted bullet qualifier:
5976 (progn (goto-char after-bullet-pos)
5977 (delete-char 1))
5978 ;; Add the is-encrypted bullet qualifier:
5979 (goto-char after-bullet-pos)
5980 (insert "*"))))
5981 (run-hook-with-args 'allout-structure-added-hook
5982 bullet-pos subtree-end))))
5983 ;;;_ > allout-encrypt-string (text decrypt allout-buffer keymode-cue
5984 ;;; &optional rejected)
5985 (defun allout-encrypt-string (text decrypt allout-buffer keymode-cue
5986 &optional rejected)
5987 "Encrypt or decrypt message TEXT.
5989 Returns the resulting string, or nil if the transformation fails.
5991 If DECRYPT is true (default false), then decrypt instead of encrypt.
5993 ALLOUT-BUFFER identifies the buffer containing the text.
5995 Entry encryption defaults to symmetric key mode unless keypair
5996 recipients are associated with the file \(see
5997 `epa-file-encrypt-to') or the function is invoked with a
5998 \(KEYMODE-CUE) universal argument greater than 1.
6000 When encrypting, KEYMODE-CUE universal argument greater than 1
6001 causes prompting for recipients for public-key keypair
6002 encryption. Selecting no recipients results in symmetric key
6003 encryption.
6005 Further, encrypting with a KEYMODE-CUE universal argument greater
6006 than 4 - eg, preceded by a doubled Ctrl-U - causes association of
6007 the specified recipients with the file, replacing those currently
6008 associated with it. This can be used to deassociate any
6009 recipients with the file, by selecting no recipients in the
6010 dialog.
6012 Optional REJECTED is for internal use, to convey the number of
6013 rejections due to matches against
6014 `allout-encryption-ciphertext-rejection-regexps', as limited by
6015 `allout-encryption-ciphertext-rejection-ceiling'.
6017 NOTE: A few GnuPG v2 versions improperly preserve incorrect
6018 symmetric decryption keys, preventing entry of the correct key on
6019 subsequent decryption attempts until the cache times-out. That
6020 can take several minutes. \(Decryption of other entries is not
6021 affected.) Upgrade your EasyPG version, if you can, and you can
6022 deliberately clear your gpg-agent's cache by sending it a '-HUP'
6023 signal."
6025 (require 'epg)
6026 (require 'epa)
6028 (let* ((epg-context (let* ((context (epg-make-context nil t)))
6029 (epg-context-set-passphrase-callback
6030 context #'epa-passphrase-callback-function)
6031 context))
6032 (encoding (with-current-buffer allout-buffer
6033 buffer-file-coding-system))
6034 (multibyte (with-current-buffer allout-buffer
6035 enable-multibyte-characters))
6036 ;; "sanitization" avoids encryption results that are outline structure.
6037 (sani-regexps 'allout-encryption-plaintext-sanitization-regexps)
6038 (strip-plaintext-regexps (if (not decrypt)
6039 (allout-get-configvar-values
6040 sani-regexps)))
6041 (rejection-regexps 'allout-encryption-ciphertext-rejection-regexps)
6042 (reject-ciphertext-regexps (if (not decrypt)
6043 (allout-get-configvar-values
6044 rejection-regexps)))
6045 (rejected (or rejected 0))
6046 (rejections-left (- allout-encryption-ciphertext-rejection-ceiling
6047 rejected))
6048 (keypair-mode (cond (decrypt 'decrypting)
6049 ((<= (prefix-numeric-value keymode-cue) 1)
6050 'default)
6051 ((<= (prefix-numeric-value keymode-cue) 4)
6052 'prompt)
6053 ((> (prefix-numeric-value keymode-cue) 4)
6054 'prompt-save)))
6055 (keypair-message (concat "Select encryption recipients.\n"
6056 "Symmetric encryption is done if no"
6057 " recipients are selected. "))
6058 (encrypt-to (and (boundp 'epa-file-encrypt-to) epa-file-encrypt-to))
6059 recipients
6060 massaged-text
6061 result-text
6064 ;; Massage the subject text for encoding and filtering.
6065 (with-temp-buffer
6066 (insert text)
6067 ;; convey the text characteristics of the original buffer:
6068 (set-buffer-multibyte multibyte)
6069 (when encoding
6070 (set-buffer-file-coding-system encoding)
6071 (if (not decrypt)
6072 (encode-coding-region (point-min) (point-max) encoding)))
6074 ;; remove sanitization regexps matches before encrypting:
6075 (when (and strip-plaintext-regexps (not decrypt))
6076 (dolist (re strip-plaintext-regexps)
6077 (let ((re (if (listp re) (car re) re))
6078 (replacement (if (listp re) (cadr re) "")))
6079 (goto-char (point-min))
6080 (save-match-data
6081 (while (re-search-forward re nil t)
6082 (replace-match replacement nil nil))))))
6083 (setq massaged-text (buffer-substring-no-properties (point-min)
6084 (point-max))))
6085 ;; determine key mode and, if keypair, recipients:
6086 (setq recipients
6087 (case keypair-mode
6089 (decrypting nil)
6091 (default (if encrypt-to (epg-list-keys epg-context encrypt-to)))
6093 ((prompt prompt-save)
6094 (save-window-excursion
6095 (epa-select-keys epg-context keypair-message)))))
6097 (setq result-text
6098 (if decrypt
6099 (condition-case err
6100 (epg-decrypt-string epg-context
6101 (encode-coding-string massaged-text
6102 (or encoding 'utf-8)))
6103 (epg-error
6104 (signal 'egp-error
6105 (cons (concat (cadr err) " - gpg version problem?")
6106 (cddr err)))))
6107 (replace-regexp-in-string "\n$" ""
6108 (epg-encrypt-string epg-context
6109 (encode-coding-string massaged-text
6110 (or encoding 'utf-8))
6111 recipients))))
6113 ;; validate result -- non-empty
6114 (if (not result-text)
6115 (error "%scryption failed." (if decrypt "De" "En")))
6118 (when (eq keypair-mode 'prompt-save)
6119 ;; set epa-file-encrypt-to in the buffer:
6120 (setq epa-file-encrypt-to (mapcar (lambda (key)
6121 (epg-user-id-string
6122 (car (epg-key-user-id-list key))))
6123 recipients))
6124 ;; change the file variable:
6125 (allout-adjust-file-variable "epa-file-encrypt-to" epa-file-encrypt-to))
6127 (cond
6128 ;; Retry (within limit) if ciphertext contains rejections:
6129 ((and (not decrypt)
6130 ;; Check for disqualification of this ciphertext:
6131 (let ((regexps reject-ciphertext-regexps)
6132 reject-it)
6133 (while (and regexps (not reject-it))
6134 (setq reject-it (string-match (car regexps) result-text))
6135 (pop regexps))
6136 reject-it))
6137 (setq rejections-left (1- rejections-left))
6138 (if (<= rejections-left 0)
6139 (error (concat "Ciphertext rejected too many times"
6140 " (%s), per `%s'")
6141 allout-encryption-ciphertext-rejection-ceiling
6142 'allout-encryption-ciphertext-rejection-regexps)
6143 ;; try again (gpg-agent may have the key cached):
6144 (allout-encrypt-string text decrypt allout-buffer keypair-mode
6145 (1+ rejected))))
6147 ;; Barf if encryption yields extraordinary control chars:
6148 ((and (not decrypt)
6149 (string-match "[\C-a\C-k\C-o-\C-z\C-@]"
6150 result-text))
6151 (error (concat "Encryption produced non-armored text, which"
6152 "conflicts with allout mode -- reconfigure!")))
6154 (t result-text))))
6155 ;;;_ > allout-encrypted-topic-p ()
6156 (defun allout-encrypted-topic-p ()
6157 "True if the current topic is encryptable and encrypted."
6158 (save-excursion
6159 (allout-end-of-prefix t)
6160 (and (string= (buffer-substring-no-properties (1- (point)) (point))
6161 allout-topic-encryption-bullet)
6162 (save-match-data (looking-at "\\*")))
6165 ;;;_ > allout-next-topic-pending-encryption (&optional except-mark)
6166 (defun allout-next-topic-pending-encryption (&optional except-mark)
6167 "Return the point of the next topic pending encryption, or nil if none.
6169 EXCEPT-MARK identifies a point whose containing topics should be excluded
6170 from encryption. This supports 'except-current mode of
6171 `allout-encrypt-unencrypted-on-saves'.
6173 Such a topic has the `allout-topic-encryption-bullet' without an
6174 immediately following '*' that would mark the topic as being encrypted. It
6175 must also have content."
6176 (let (done got content-beg)
6177 (save-match-data
6178 (while (not done)
6180 (if (not (re-search-forward
6181 (format "\\(\\`\\|\n\\)%s *%s[^*]"
6182 (regexp-quote allout-header-prefix)
6183 (regexp-quote allout-topic-encryption-bullet))
6184 nil t))
6185 (setq got nil
6186 done t)
6187 (goto-char (setq got (match-beginning 0)))
6188 (if (save-match-data (looking-at "\n"))
6189 (forward-char 1))
6190 (setq got (point)))
6192 (cond ((not got)
6193 (setq done t))
6195 ((not (search-forward "\n"))
6196 (setq got nil
6197 done t))
6199 ((eobp)
6200 (setq got nil
6201 done t))
6204 (setq content-beg (point))
6205 (backward-char 1)
6206 (allout-end-of-subtree)
6207 (if (or (<= (point) content-beg)
6208 (and except-mark
6209 (<= content-beg except-mark)
6210 (>= (point) except-mark)))
6211 ;; Continue looking
6212 (setq got nil)
6213 ;; Got it!
6214 (setq done t)))
6217 (if got
6218 (goto-char got))
6222 ;;;_ > allout-encrypt-decrypted (&optional except-mark)
6223 (defun allout-encrypt-decrypted (&optional except-mark)
6224 "Encrypt topics pending encryption except those containing exemption point.
6226 EXCEPT-MARK identifies a point whose containing topics should be excluded
6227 from encryption. This supports the `except-current' mode of
6228 `allout-encrypt-unencrypted-on-saves'.
6230 If a topic that is currently being edited was encrypted, we return a list
6231 containing the location of the topic and the location of the cursor just
6232 before the topic was encrypted. This can be used, eg, to decrypt the topic
6233 and exactly resituate the cursor if this is being done as part of a file
6234 save. See `allout-encrypt-unencrypted-on-saves' for more info."
6236 (interactive "p")
6237 (save-match-data
6238 (save-excursion
6239 (let* ((current-mark (point-marker))
6240 (current-mark-position (marker-position current-mark))
6241 was-modified
6242 bo-subtree
6243 editing-topic editing-point)
6244 (goto-char (point-min))
6245 (while (allout-next-topic-pending-encryption except-mark)
6246 (setq was-modified (buffer-modified-p))
6247 (when (save-excursion
6248 (and (boundp 'allout-encrypt-unencrypted-on-saves)
6249 allout-encrypt-unencrypted-on-saves
6250 (setq bo-subtree (re-search-forward "$"))
6251 (not (allout-hidden-p))
6252 (>= current-mark (point))
6253 (allout-end-of-current-subtree)
6254 (<= current-mark (point))))
6255 (setq editing-topic (point)
6256 ;; we had to wait for this 'til now so prior topics are
6257 ;; encrypted, any relevant text shifts are in place:
6258 editing-point (- current-mark-position
6259 (count-trailing-whitespace-region
6260 bo-subtree current-mark-position))))
6261 (allout-toggle-subtree-encryption)
6262 (if (not was-modified)
6263 (set-buffer-modified-p nil))
6265 (if (not was-modified)
6266 (set-buffer-modified-p nil))
6267 (if editing-topic (list editing-topic editing-point))
6273 ;;;_ #9 miscellaneous
6274 ;;;_ : Mode:
6275 ;;;_ > outlineify-sticky ()
6276 ;; outlinify-sticky is correct spelling; provide this alias for sticklers:
6277 ;;;###autoload
6278 (defalias 'outlinify-sticky 'outlineify-sticky)
6279 ;;;###autoload
6280 (defun outlineify-sticky (&optional arg)
6281 "Activate outline mode and establish file var so it is started subsequently.
6283 See `allout-layout' and customization of `allout-auto-activation'
6284 for details on preparing emacs for automatic allout activation."
6286 (interactive "P")
6288 (if (allout-mode-p) (allout-mode)) ; deactivate so we can re-activate...
6289 (allout-mode)
6291 (save-excursion
6292 (goto-char (point-min))
6293 (if (allout-goto-prefix)
6295 (allout-open-topic 2)
6296 (insert (concat "Dummy outline topic header -- see"
6297 "`allout-mode' docstring: `^Hm'."))
6298 (allout-adjust-file-variable
6299 "allout-layout" (or allout-layout '(-1 : 0))))))
6300 ;;;_ > allout-file-vars-section-data ()
6301 (defun allout-file-vars-section-data ()
6302 "Return data identifying the file-vars section, or nil if none.
6304 Returns a list of the form (BEGINNING-POINT PREFIX-STRING SUFFIX-STRING)."
6305 ;; minimally gleaned from emacs 21.4 files.el hack-local-variables function.
6306 (let (beg prefix suffix)
6307 (save-excursion
6308 (goto-char (point-max))
6309 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
6310 (if (let ((case-fold-search t))
6311 (not (search-forward "Local Variables:" nil t)))
6313 (setq beg (- (point) 16))
6314 (setq suffix (buffer-substring-no-properties
6315 (point)
6316 (progn (if (search-forward "\n" nil t)
6317 (forward-char -1))
6318 (point))))
6319 (setq prefix (buffer-substring-no-properties
6320 (progn (if (search-backward "\n" nil t)
6321 (forward-char 1))
6322 (point))
6323 beg))
6324 (list beg prefix suffix))
6328 ;;;_ > allout-adjust-file-variable (varname value)
6329 (defun allout-adjust-file-variable (varname value)
6330 "Adjust the setting of an Emacs file variable named VARNAME to VALUE.
6332 This activity is inhibited if either `enable-local-variables'
6333 `allout-enable-file-variable-adjustment' are nil.
6335 When enabled, an entry for the variable is created if not already present,
6336 or changed if established with a different value. The section for the file
6337 variables, itself, is created if not already present. When created, the
6338 section lines (including the section line) exist as second-level topics in
6339 a top-level topic at the end of the file.
6341 `enable-local-variables' must be true for any of this to happen."
6342 (if (not (and enable-local-variables
6343 allout-enable-file-variable-adjustment))
6345 (save-excursion
6346 (let ((inhibit-field-text-motion t)
6347 (section-data (allout-file-vars-section-data))
6348 beg prefix suffix)
6349 (if section-data
6350 (setq beg (car section-data)
6351 prefix (cadr section-data)
6352 suffix (car (cddr section-data)))
6353 ;; create the section
6354 (goto-char (point-max))
6355 (open-line 1)
6356 (allout-open-topic 0)
6357 (end-of-line)
6358 (insert "Local emacs vars.\n")
6359 (allout-open-topic 1)
6360 (setq beg (point)
6361 suffix ""
6362 prefix (buffer-substring-no-properties (progn
6363 (beginning-of-line)
6364 (point))
6365 beg))
6366 (goto-char beg)
6367 (insert "Local variables:\n")
6368 (allout-open-topic 0)
6369 (insert "End:\n")
6371 ;; look for existing entry or create one, leaving point for insertion
6372 ;; of new value:
6373 (goto-char beg)
6374 (allout-show-to-offshoot)
6375 (if (search-forward (concat "\n" prefix varname ":") nil t)
6376 (let* ((value-beg (point))
6377 (line-end (progn (if (search-forward "\n" nil t)
6378 (forward-char -1))
6379 (point)))
6380 (value-end (- line-end (length suffix))))
6381 (if (> value-end value-beg)
6382 (delete-region value-beg value-end)))
6383 (end-of-line)
6384 (open-line 1)
6385 (forward-line 1)
6386 (insert (concat prefix varname ":")))
6387 (insert (format " %S%s" value suffix))
6392 ;;;_ > allout-get-configvar-values (varname)
6393 (defun allout-get-configvar-values (configvar-name)
6394 "Return a list of values of the symbols in list bound to CONFIGVAR-NAME.
6396 The user is prompted for removal of symbols that are unbound, and they
6397 otherwise are ignored.
6399 CONFIGVAR-NAME should be the name of the configuration variable,
6400 not its value."
6402 (let ((configvar-value (symbol-value configvar-name))
6403 got)
6404 (dolist (sym configvar-value)
6405 (if (not (boundp sym))
6406 (if (yes-or-no-p (format "%s entry `%s' is unbound -- remove it? "
6407 configvar-name sym))
6408 (delq sym (symbol-value configvar-name)))
6409 (push (symbol-value sym) got)))
6410 (reverse got)))
6411 ;;;_ : Topics:
6412 ;;;_ > allout-mark-topic ()
6413 (defun allout-mark-topic ()
6414 "Put the region around topic currently containing point."
6415 (interactive)
6416 (let ((inhibit-field-text-motion t))
6417 (beginning-of-line))
6418 (allout-goto-prefix-doublechecked)
6419 (push-mark (point))
6420 (allout-end-of-current-subtree)
6421 (exchange-point-and-mark))
6422 ;;;_ : UI:
6423 ;;;_ > solicit-char-in-string (prompt string &optional do-defaulting)
6424 (defun solicit-char-in-string (prompt string &optional do-defaulting)
6425 "Solicit (with first arg PROMPT) choice of a character from string STRING.
6427 Optional arg DO-DEFAULTING indicates to accept empty input (CR)."
6429 (let ((new-prompt prompt)
6430 got)
6432 (while (not got)
6433 (message "%s" new-prompt)
6435 ;; We do our own reading here, so we can circumvent, eg, special
6436 ;; treatment for `?' character. (Oughta use minibuffer keymap instead.)
6437 (setq got
6438 (char-to-string (let ((cursor-in-echo-area nil)) (read-char))))
6440 (setq got
6441 (cond ((string-match (regexp-quote got) string) got)
6442 ((and do-defaulting (string= got "\r"))
6443 ;; Return empty string to default:
6445 ((string= got "\C-g") (signal 'quit nil))
6447 (setq new-prompt (concat prompt
6449 " ...pick from: "
6450 string
6451 ""))
6452 nil))))
6453 ;; got something out of loop -- return it:
6454 got)
6456 ;;;_ : Strings:
6457 ;;;_ > regexp-sans-escapes (string)
6458 (defun regexp-sans-escapes (regexp &optional successive-backslashes)
6459 "Return a copy of REGEXP with all character escapes stripped out.
6461 Representations of actual backslashes -- '\\\\\\\\' -- are left as a
6462 single backslash.
6464 Optional arg SUCCESSIVE-BACKSLASHES is used internally for recursion."
6466 (if (string= regexp "")
6468 ;; Set successive-backslashes to number if current char is
6469 ;; backslash, or else to nil:
6470 (setq successive-backslashes
6471 (if (= (aref regexp 0) ?\\)
6472 (if successive-backslashes (1+ successive-backslashes) 1)
6473 nil))
6474 (if (or (not successive-backslashes) (= 2 successive-backslashes))
6475 ;; Include first char:
6476 (concat (substring regexp 0 1)
6477 (regexp-sans-escapes (substring regexp 1)))
6478 ;; Exclude first char, but maintain count:
6479 (regexp-sans-escapes (substring regexp 1) successive-backslashes))))
6480 ;;;_ > count-trailing-whitespace-region (beg end)
6481 (defun count-trailing-whitespace-region (beg end)
6482 "Return number of trailing whitespace chars between BEG and END.
6484 If BEG is bigger than END we return 0."
6485 (if (> beg end)
6487 (save-match-data
6488 (save-excursion
6489 (goto-char beg)
6490 (let ((count 0))
6491 (while (re-search-forward "[ ][ ]*$" end t)
6492 (goto-char (1+ (match-beginning 2)))
6493 (setq count (1+ count)))
6494 count)))))
6495 ;;;_ > allout-format-quote (string)
6496 (defun allout-format-quote (string)
6497 "Return a copy of string with all \"%\" characters doubled."
6498 (apply 'concat
6499 (mapcar (lambda (char) (if (= char ?%) "%%" (char-to-string char)))
6500 string)))
6501 ;;;_ : lists
6502 ;;;_ > allout-flatten (list)
6503 (defun allout-flatten (list)
6504 "Return a list of all atoms in list."
6505 ;; classic.
6506 (cond ((null list) nil)
6507 ((atom (car list)) (cons (car list) (allout-flatten (cdr list))))
6508 (t (append (allout-flatten (car list)) (allout-flatten (cdr list))))))
6509 ;;;_ : Compatibility:
6510 ;;;_ : xemacs undo-in-progress provision:
6511 (unless (boundp 'undo-in-progress)
6512 (defvar undo-in-progress nil
6513 "Placeholder defvar for XEmacs compatibility from allout.el.")
6514 (defadvice undo-more (around allout activate)
6515 ;; This defadvice used only in emacs that lack undo-in-progress, eg xemacs.
6516 (let ((undo-in-progress t)) ad-do-it)))
6518 ;;;_ > allout-mark-marker to accommodate divergent emacsen:
6519 (defun allout-mark-marker (&optional force buffer)
6520 "Accommodate the different signature for `mark-marker' across Emacsen.
6522 XEmacs takes two optional args, while Emacs does not,
6523 so pass them along when appropriate."
6524 (if (featurep 'xemacs)
6525 (apply 'mark-marker force buffer)
6526 (mark-marker)))
6527 ;;;_ > subst-char-in-string if necessary
6528 (if (not (fboundp 'subst-char-in-string))
6529 (defun subst-char-in-string (fromchar tochar string &optional inplace)
6530 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
6531 Unless optional argument INPLACE is non-nil, return a new string."
6532 (let ((i (length string))
6533 (newstr (if inplace string (copy-sequence string))))
6534 (while (> i 0)
6535 (setq i (1- i))
6536 (if (eq (aref newstr i) fromchar)
6537 (aset newstr i tochar)))
6538 newstr)))
6539 ;;;_ > wholenump if necessary
6540 (if (not (fboundp 'wholenump))
6541 (defalias 'wholenump 'natnump))
6542 ;;;_ > remove-overlays if necessary
6543 (if (not (fboundp 'remove-overlays))
6544 (defun remove-overlays (&optional beg end name val)
6545 "Clear BEG and END of overlays whose property NAME has value VAL.
6546 Overlays might be moved and/or split.
6547 BEG and END default respectively to the beginning and end of buffer."
6548 (unless beg (setq beg (point-min)))
6549 (unless end (setq end (point-max)))
6550 (if (< end beg)
6551 (setq beg (prog1 end (setq end beg))))
6552 (save-excursion
6553 (dolist (o (overlays-in beg end))
6554 (when (eq (overlay-get o name) val)
6555 ;; Either push this overlay outside beg...end
6556 ;; or split it to exclude beg...end
6557 ;; or delete it entirely (if it is contained in beg...end).
6558 (if (< (overlay-start o) beg)
6559 (if (> (overlay-end o) end)
6560 (progn
6561 (move-overlay (copy-overlay o)
6562 (overlay-start o) beg)
6563 (move-overlay o end (overlay-end o)))
6564 (move-overlay o (overlay-start o) beg))
6565 (if (> (overlay-end o) end)
6566 (move-overlay o end (overlay-end o))
6567 (delete-overlay o)))))))
6569 ;;;_ > copy-overlay if necessary -- xemacs ~ 21.4
6570 (if (not (fboundp 'copy-overlay))
6571 (defun copy-overlay (o)
6572 "Return a copy of overlay O."
6573 (let ((o1 (make-overlay (overlay-start o) (overlay-end o)
6574 ;; FIXME: there's no easy way to find the
6575 ;; insertion-type of the two markers.
6576 (overlay-buffer o)))
6577 (props (overlay-properties o)))
6578 (while props
6579 (overlay-put o1 (pop props) (pop props)))
6580 o1)))
6581 ;;;_ > add-to-invisibility-spec if necessary -- xemacs ~ 21.4
6582 (if (not (fboundp 'add-to-invisibility-spec))
6583 (defun add-to-invisibility-spec (element)
6584 "Add ELEMENT to `buffer-invisibility-spec'.
6585 See documentation for `buffer-invisibility-spec' for the kind of elements
6586 that can be added."
6587 (if (eq buffer-invisibility-spec t)
6588 (setq buffer-invisibility-spec (list t)))
6589 (setq buffer-invisibility-spec
6590 (cons element buffer-invisibility-spec))))
6591 ;;;_ > remove-from-invisibility-spec if necessary -- xemacs ~ 21.4
6592 (if (not (fboundp 'remove-from-invisibility-spec))
6593 (defun remove-from-invisibility-spec (element)
6594 "Remove ELEMENT from `buffer-invisibility-spec'."
6595 (if (consp buffer-invisibility-spec)
6596 (setq buffer-invisibility-spec (delete element
6597 buffer-invisibility-spec)))))
6598 ;;;_ > move-beginning-of-line if necessary -- older emacs, xemacs
6599 (if (not (fboundp 'move-beginning-of-line))
6600 (defun move-beginning-of-line (arg)
6601 "Move point to beginning of current line as displayed.
6602 \(This disregards invisible newlines such as those
6603 which are part of the text that an image rests on.)
6605 With argument ARG not nil or 1, move forward ARG - 1 lines first.
6606 If point reaches the beginning or end of buffer, it stops there.
6607 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
6608 (interactive "p")
6609 (or arg (setq arg 1))
6610 (if (/= arg 1)
6611 (condition-case nil (line-move (1- arg)) (error nil)))
6613 ;; Move to beginning-of-line, ignoring fields and invisibles.
6614 (skip-chars-backward "^\n")
6615 (while (and (not (bobp))
6616 (let ((prop
6617 (get-char-property (1- (point)) 'invisible)))
6618 (if (eq buffer-invisibility-spec t)
6619 prop
6620 (or (memq prop buffer-invisibility-spec)
6621 (assq prop buffer-invisibility-spec)))))
6622 (goto-char (if (featurep 'xemacs)
6623 (previous-property-change (point))
6624 (previous-char-property-change (point))))
6625 (skip-chars-backward "^\n"))
6626 (vertical-motion 0))
6628 ;;;_ > move-end-of-line if necessary -- Emacs < 22.1, xemacs
6629 (if (not (fboundp 'move-end-of-line))
6630 (defun move-end-of-line (arg)
6631 "Move point to end of current line as displayed.
6632 \(This disregards invisible newlines such as those
6633 which are part of the text that an image rests on.)
6635 With argument ARG not nil or 1, move forward ARG - 1 lines first.
6636 If point reaches the beginning or end of buffer, it stops there.
6637 To ignore intangibility, bind `inhibit-point-motion-hooks' to t."
6638 (interactive "p")
6639 (or arg (setq arg 1))
6640 (let (done)
6641 (while (not done)
6642 (let ((newpos
6643 (save-excursion
6644 (let ((goal-column 0))
6645 (and (condition-case nil
6646 (or (line-move arg) t)
6647 (error nil))
6648 (not (bobp))
6649 (progn
6650 (while
6651 (and
6652 (not (bobp))
6653 (let ((prop
6654 (get-char-property (1- (point))
6655 'invisible)))
6656 (if (eq buffer-invisibility-spec t)
6657 prop
6658 (or (memq prop
6659 buffer-invisibility-spec)
6660 (assq prop
6661 buffer-invisibility-spec)))))
6662 (goto-char
6663 (previous-char-property-change (point))))
6664 (backward-char 1)))
6665 (point)))))
6666 (goto-char newpos)
6667 (if (and (> (point) newpos)
6668 (eq (preceding-char) ?\n))
6669 (backward-char 1)
6670 (if (and (> (point) newpos) (not (eobp))
6671 (not (eq (following-char) ?\n)))
6672 ;; If we skipped something intangible
6673 ;; and now we're not really at eol,
6674 ;; keep going.
6675 (setq arg 1)
6676 (setq done t)))))))
6678 ;;;_ > allout-next-single-char-property-change -- alias unless lacking
6679 (defalias 'allout-next-single-char-property-change
6680 (if (fboundp 'next-single-char-property-change)
6681 'next-single-char-property-change
6682 'next-single-property-change)
6683 ;; No docstring because xemacs defalias doesn't support it.
6685 ;;;_ > allout-previous-single-char-property-change -- alias unless lacking
6686 (defalias 'allout-previous-single-char-property-change
6687 (if (fboundp 'previous-single-char-property-change)
6688 'previous-single-char-property-change
6689 'previous-single-property-change)
6690 ;; No docstring because xemacs defalias doesn't support it.
6692 ;;;_ > allout-select-safe-coding-system
6693 (defalias 'allout-select-safe-coding-system
6694 (if (fboundp 'select-safe-coding-system)
6695 'select-safe-coding-system
6696 'detect-coding-region)
6698 ;;;_ > allout-substring-no-properties
6699 ;; define as alias first, so byte compiler is happy.
6700 (defalias 'allout-substring-no-properties 'substring-no-properties)
6701 ;; then supplant with definition if underlying alias absent.
6702 (if (not (fboundp 'substring-no-properties))
6703 (defun allout-substring-no-properties (string &optional start end)
6704 (substring string (or start 0) end))
6707 ;;;_ #10 Unfinished
6708 ;;;_ > allout-bullet-isearch (&optional bullet)
6709 (defun allout-bullet-isearch (&optional bullet)
6710 "Isearch (regexp) for topic with bullet BULLET."
6711 (interactive)
6712 (if (not bullet)
6713 (setq bullet (solicit-char-in-string
6714 "ISearch for topic with bullet: "
6715 (regexp-sans-escapes allout-bullets-string))))
6717 (let ((isearch-regexp t)
6718 (isearch-string (concat "^"
6719 allout-header-prefix
6720 "[ \t]*"
6721 bullet)))
6722 (isearch-repeat 'forward)
6723 (isearch-mode t)))
6725 ;;;_ #11 Unit tests -- this should be last item before "Provide"
6726 ;;;_ > allout-run-unit-tests ()
6727 (defun allout-run-unit-tests ()
6728 "Run the various allout unit tests."
6729 (message "Running allout tests...")
6730 (allout-test-resumptions)
6731 (message "Running allout tests... Done.")
6732 (sit-for .5))
6733 ;;;_ : test resumptions:
6734 ;;;_ > allout-tests-obliterate-variable (name)
6735 (defun allout-tests-obliterate-variable (name)
6736 "Completely unbind variable with NAME."
6737 (if (local-variable-p name (current-buffer)) (kill-local-variable name))
6738 (while (boundp name) (makunbound name)))
6739 ;;;_ > allout-test-resumptions ()
6740 (defvar allout-tests-globally-unbound nil
6741 "Fodder for allout resumptions tests -- defvar just for byte compiler.")
6742 (defvar allout-tests-globally-true nil
6743 "Fodder for allout resumptions tests -- defvar just for byte compiler.")
6744 (defvar allout-tests-locally-true nil
6745 "Fodder for allout resumptions tests -- defvar just for byte compiler.")
6746 (defun allout-test-resumptions ()
6747 "Exercise allout resumptions."
6748 ;; for each resumption case, we also test that the right local/global
6749 ;; scopes are affected during resumption effects:
6751 ;; ensure that previously unbound variables return to the unbound state.
6752 (with-temp-buffer
6753 (allout-tests-obliterate-variable 'allout-tests-globally-unbound)
6754 (allout-add-resumptions '(allout-tests-globally-unbound t))
6755 (assert (not (default-boundp 'allout-tests-globally-unbound)))
6756 (assert (local-variable-p 'allout-tests-globally-unbound (current-buffer)))
6757 (assert (boundp 'allout-tests-globally-unbound))
6758 (assert (equal allout-tests-globally-unbound t))
6759 (allout-do-resumptions)
6760 (assert (not (local-variable-p 'allout-tests-globally-unbound
6761 (current-buffer))))
6762 (assert (not (boundp 'allout-tests-globally-unbound))))
6764 ;; ensure that variable with prior global value is resumed
6765 (with-temp-buffer
6766 (allout-tests-obliterate-variable 'allout-tests-globally-true)
6767 (setq allout-tests-globally-true t)
6768 (allout-add-resumptions '(allout-tests-globally-true nil))
6769 (assert (equal (default-value 'allout-tests-globally-true) t))
6770 (assert (local-variable-p 'allout-tests-globally-true (current-buffer)))
6771 (assert (equal allout-tests-globally-true nil))
6772 (allout-do-resumptions)
6773 (assert (not (local-variable-p 'allout-tests-globally-true
6774 (current-buffer))))
6775 (assert (boundp 'allout-tests-globally-true))
6776 (assert (equal allout-tests-globally-true t)))
6778 ;; ensure that prior local value is resumed
6779 (with-temp-buffer
6780 (allout-tests-obliterate-variable 'allout-tests-locally-true)
6781 (set (make-local-variable 'allout-tests-locally-true) t)
6782 (assert (not (default-boundp 'allout-tests-locally-true))
6783 nil (concat "Test setup mistake -- variable supposed to"
6784 " not have global binding, but it does."))
6785 (assert (local-variable-p 'allout-tests-locally-true (current-buffer))
6786 nil (concat "Test setup mistake -- variable supposed to have"
6787 " local binding, but it lacks one."))
6788 (allout-add-resumptions '(allout-tests-locally-true nil))
6789 (assert (not (default-boundp 'allout-tests-locally-true)))
6790 (assert (local-variable-p 'allout-tests-locally-true (current-buffer)))
6791 (assert (equal allout-tests-locally-true nil))
6792 (allout-do-resumptions)
6793 (assert (boundp 'allout-tests-locally-true))
6794 (assert (local-variable-p 'allout-tests-locally-true (current-buffer)))
6795 (assert (equal allout-tests-locally-true t))
6796 (assert (not (default-boundp 'allout-tests-locally-true))))
6798 ;; ensure that last of multiple resumptions holds, for various scopes.
6799 (with-temp-buffer
6800 (allout-tests-obliterate-variable 'allout-tests-globally-unbound)
6801 (allout-tests-obliterate-variable 'allout-tests-globally-true)
6802 (setq allout-tests-globally-true t)
6803 (allout-tests-obliterate-variable 'allout-tests-locally-true)
6804 (set (make-local-variable 'allout-tests-locally-true) t)
6805 (allout-add-resumptions '(allout-tests-globally-unbound t)
6806 '(allout-tests-globally-true nil)
6807 '(allout-tests-locally-true nil))
6808 (allout-add-resumptions '(allout-tests-globally-unbound 2)
6809 '(allout-tests-globally-true 3)
6810 '(allout-tests-locally-true 4))
6811 ;; reestablish many of the basic conditions are maintained after re-add:
6812 (assert (not (default-boundp 'allout-tests-globally-unbound)))
6813 (assert (local-variable-p 'allout-tests-globally-unbound (current-buffer)))
6814 (assert (equal allout-tests-globally-unbound 2))
6815 (assert (default-boundp 'allout-tests-globally-true))
6816 (assert (local-variable-p 'allout-tests-globally-true (current-buffer)))
6817 (assert (equal allout-tests-globally-true 3))
6818 (assert (not (default-boundp 'allout-tests-locally-true)))
6819 (assert (local-variable-p 'allout-tests-locally-true (current-buffer)))
6820 (assert (equal allout-tests-locally-true 4))
6821 (allout-do-resumptions)
6822 (assert (not (local-variable-p 'allout-tests-globally-unbound
6823 (current-buffer))))
6824 (assert (not (boundp 'allout-tests-globally-unbound)))
6825 (assert (not (local-variable-p 'allout-tests-globally-true
6826 (current-buffer))))
6827 (assert (boundp 'allout-tests-globally-true))
6828 (assert (equal allout-tests-globally-true t))
6829 (assert (boundp 'allout-tests-locally-true))
6830 (assert (local-variable-p 'allout-tests-locally-true (current-buffer)))
6831 (assert (equal allout-tests-locally-true t))
6832 (assert (not (default-boundp 'allout-tests-locally-true))))
6834 ;; ensure that deliberately unbinding registered variables doesn't foul things
6835 (with-temp-buffer
6836 (allout-tests-obliterate-variable 'allout-tests-globally-unbound)
6837 (allout-tests-obliterate-variable 'allout-tests-globally-true)
6838 (setq allout-tests-globally-true t)
6839 (allout-tests-obliterate-variable 'allout-tests-locally-true)
6840 (set (make-local-variable 'allout-tests-locally-true) t)
6841 (allout-add-resumptions '(allout-tests-globally-unbound t)
6842 '(allout-tests-globally-true nil)
6843 '(allout-tests-locally-true nil))
6844 (allout-tests-obliterate-variable 'allout-tests-globally-unbound)
6845 (allout-tests-obliterate-variable 'allout-tests-globally-true)
6846 (allout-tests-obliterate-variable 'allout-tests-locally-true)
6847 (allout-do-resumptions))
6849 ;;;_ % Run unit tests if `allout-run-unit-tests-after-load' is true:
6850 (when allout-run-unit-tests-on-load
6851 (allout-run-unit-tests))
6853 ;;;_ #12 Provide
6854 (provide 'allout)
6856 ;;;_* Local emacs vars.
6857 ;; The following `allout-layout' local variable setting:
6858 ;; - closes all topics from the first topic to just before the third-to-last,
6859 ;; - shows the children of the third to last (config vars)
6860 ;; - and the second to last (code section),
6861 ;; - and closes the last topic (this local-variables section).
6862 ;;Local variables:
6863 ;;allout-layout: (0 : -1 -1 0)
6864 ;;End:
6866 ;;; allout.el ends here