*** empty log message ***
[emacs.git] / lisp / allout.el
blob4280258d7805985196706717784c92bf8080f1d9
1 ;;;_* allout.el --- Extensive outline mode for use alone and with other modes.
3 ;; Copyright (C) 1992, 1993, 1994, 2001 Free Software Foundation, Inc.
5 ;; Author: Ken Manheimer <klm@python.org>
6 ;; Maintainer: Ken Manheimer <klm@python.org>
7 ;; Created: Dec 1991 - first release to usenet
8 ;; Version: $Id: allout.el,v 1.26 2001/02/26 12:01:50 gerd Exp $||
9 ;; Keywords: outline mode wp languages
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
28 ;;;_* Commentary:
30 ;; Allout outline mode provides extensive outline formatting and
31 ;; and manipulation beyond standard emacs outline mode. It provides
32 ;; for structured editing of outlines, as well as navigation and
33 ;; exposure. It also provides for syntax-sensitive text like
34 ;; programming languages. (For an example, see the allout code
35 ;; itself, which is organized in ;; an outline framework.)
36 ;;
37 ;; In addition to outline navigation and exposure, allout includes:
38 ;;
39 ;; - topic-oriented repositioning, cut, and paste
40 ;; - integral outline exposure-layout
41 ;; - incremental search with dynamic exposure and reconcealment of hidden text
42 ;; - automatic topic-number maintenance
43 ;; - "Hot-spot" operation, for single-keystroke maneuvering and
44 ;; exposure control. (See the outline-mode docstring.)
45 ;;
46 ;; and many other features.
47 ;;
48 ;; The outline menubar additions provide quick reference to many of
49 ;; the features, and see the docstring of the variable `outline-init'
50 ;; for instructions on priming your emacs session for automatic
51 ;; activation of outline-mode.
52 ;;
53 ;; See the docstring of the variables `outline-layout' and
54 ;; `outline-auto-activation' for details on automatic activation of
55 ;; allout outline-mode as a minor mode. (It has changed since allout
56 ;; 3.x, for those of you that depend on the old method.)
58 ;; Note - the lines beginning with `;;;_' are outline topic headers.
59 ;; Just `ESC-x eval-current-buffer' to give it a whirl.
61 ;; Ken Manheimer klm@python.org
63 ;;;_* Provide
64 (provide 'outline)
65 (provide 'allout)
67 ;;;_* USER CUSTOMIZATION VARIABLES:
68 (defgroup allout nil
69 "Extensive outline mode for use alone and with other modes."
70 :prefix "outline-"
71 :group 'outlines)
73 ;;;_ + Layout, Mode, and Topic Header Configuration
75 ;;;_ = outline-auto-activation
76 (defcustom outline-auto-activation nil
77 "*Regulates auto-activation modality of allout outlines - see `outline-init'.
79 Setq-default by `outline-init' to regulate whether or not allout
80 outline mode is automatically activated when the buffer-specific
81 variable `outline-layout' is non-nil, and whether or not the layout
82 dictated by `outline-layout' should be imposed on mode activation.
84 With value `t', auto-mode-activation and auto-layout are enabled.
85 \(This also depends on `outline-find-file-hooks' being installed in
86 `find-file-hooks', which is also done by `outline-init'.)
88 With value `ask', auto-mode-activation is enabled, and endorsement for
89 performing auto-layout is asked of the user each time.
91 With value `activate', only auto-mode-activation is enabled,
92 auto-layout is not.
94 With value `nil', neither auto-mode-activation nor auto-layout are
95 enabled.
97 See the docstring for `outline-init' for the proper interface to
98 this variable."
99 :type '(choice (const :tag "On" t)
100 (const :tag "Ask about layout" "ask")
101 (const :tag "Mode only" "activate")
102 (const :tag "Off" nil))
103 :group 'allout)
104 ;;;_ = outline-layout
105 (defvar outline-layout nil
106 "*Layout specification and provisional mode trigger for allout outlines.
108 Buffer-specific.
110 A list value specifies a default layout for the current buffer, to be
111 applied upon activation of allout outline-mode. Any non-nil value will
112 automatically trigger allout outline-mode, provided `outline-init'
113 has been called to enable it.
115 See the docstring for `outline-init' for details on setting up for
116 auto-mode-activation, and for `outline-expose-topic' for the format of
117 the layout specification.
119 You can associate a particular outline layout with a file by setting
120 this var via the file's local variables. For example, the following
121 lines at the bottom of an Emacs Lisp file:
123 ;;;Local variables:
124 ;;;outline-layout: \(0 : -1 -1 0)
125 ;;;End:
127 will, modulo the above-mentioned conditions, cause the mode to be
128 activated when the file is visited, followed by the equivalent of
129 `\(outline-expose-topic 0 : -1 -1 0)'. \(This is the layout used for
130 the allout.el, itself.)
132 Also, allout's mode-specific provisions will make topic prefixes default
133 to the comment-start string, if any, of the language of the file. This
134 is modulo the setting of `outline-use-mode-specific-leader', which see.")
135 (make-variable-buffer-local 'outline-layout)
136 ;;;_ = outline-show-bodies
137 (defcustom outline-show-bodies nil
138 "*If non-nil, show entire body when exposing a topic, rather than
139 just the header."
140 :type 'boolean
141 :group 'allout)
142 (make-variable-buffer-local 'outline-show-bodies)
144 ;;;_ = outline-header-prefix
145 (defcustom outline-header-prefix "."
146 "*Leading string which helps distinguish topic headers.
148 Outline topic header lines are identified by a leading topic
149 header prefix, which mostly have the value of this var at their front.
150 \(Level 1 topics are exceptions. They consist of only a single
151 character, which is typically set to the outline-primary-bullet. Many
152 outlines start at level 2 to avoid this discrepancy."
153 :type 'string
154 :group 'allout)
155 (make-variable-buffer-local 'outline-header-prefix)
156 ;;;_ = outline-primary-bullet
157 (defcustom outline-primary-bullet "*"
158 "Bullet used for top-level outline topics.
160 Outline topic header lines are identified by a leading topic header
161 prefix, which is concluded by bullets that includes the value of this
162 var and the respective outline-*-bullets-string vars.
164 The value of an asterisk (`*') provides for backwards compatibility
165 with the original emacs outline mode. See outline-plain-bullets-string
166 and outline-distinctive-bullets-string for the range of available
167 bullets."
168 :type 'string
169 :group 'allout)
170 (make-variable-buffer-local 'outline-primary-bullet)
171 ;;;_ = outline-plain-bullets-string
172 (defcustom outline-plain-bullets-string ".:,;"
173 "*The bullets normally used in outline topic prefixes.
175 See `outline-distinctive-bullets-string' for the other kind of
176 bullets.
178 DO NOT include the close-square-bracket, `]', as a bullet.
180 Outline mode has to be reactivated in order for changes to the value
181 of this var to take effect."
182 :type 'string
183 :group 'allout)
184 (make-variable-buffer-local 'outline-plain-bullets-string)
185 ;;;_ = outline-distinctive-bullets-string
186 (defcustom outline-distinctive-bullets-string "*+-=>([{}&!?#%\"X@$~_\\"
187 "*Persistent outline header bullets used to distinguish special topics.
189 These bullets are used to distinguish topics from the run-of-the-mill
190 ones. They are not used in the standard topic headers created by
191 the topic-opening, shifting, and rebulleting \(eg, on topic shift,
192 topic paste, blanket rebulleting) routines, but are offered among the
193 choices for rebulleting. They are not altered by the above automatic
194 rebulleting, so they can be used to characterize topics, eg:
196 `?' question topics
197 `\(' parenthetic comment \(with a matching close paren inside)
198 `[' meta-note \(with a matching close ] inside)
199 `\"' a quote
200 `=' value settings
201 `~' \"more or less\"
203 ... just for example. (`#' typically has a special meaning to the
204 software, according to the value of `outline-numbered-bullet'.)
206 See `outline-plain-bullets-string' for the selection of
207 alternating bullets.
209 You must run `set-outline-regexp' in order for outline mode to
210 reconcile to changes of this value.
212 DO NOT include the close-square-bracket, `]', on either of the bullet
213 strings."
214 :type 'string
215 :group 'allout)
216 (make-variable-buffer-local 'outline-distinctive-bullets-string)
218 ;;;_ = outline-use-mode-specific-leader
219 (defcustom outline-use-mode-specific-leader t
220 "*When non-nil, use mode-specific topic-header prefixes.
222 Allout outline mode will use the mode-specific `outline-mode-leaders'
223 and/or comment-start string, if any, to lead the topic prefix string,
224 so topic headers look like comments in the programming language.
226 String values are used as they stand.
228 Value `t' means to first check for assoc value in `outline-mode-leaders'
229 alist, then use comment-start string, if any, then use default \(`.').
230 \(See note about use of comment-start strings, below.)
232 Set to the symbol for either of `outline-mode-leaders' or
233 `comment-start' to use only one of them, respectively.
235 Value `nil' means to always use the default \(`.').
237 comment-start strings that do not end in spaces are tripled, and an
238 `_' underscore is tacked on the end, to distinguish them from regular
239 comment strings. comment-start strings that do end in spaces are not
240 tripled, but an underscore is substituted for the space. [This
241 presumes that the space is for appearance, not comment syntax. You
242 can use `outline-mode-leaders' to override this behavior, when
243 incorrect.]"
244 :type '(choice (const t) (const nil) string
245 (const outline-mode-leaders)
246 (const comment-start))
247 :group 'allout)
248 ;;;_ = outline-mode-leaders
249 (defvar outline-mode-leaders '()
250 "Specific outline-prefix leading strings per major modes.
252 Entries will be used instead or in lieu of mode-specific
253 comment-start strings. See also `outline-use-mode-specific-leader'.
255 If you're constructing a string that will comment-out outline
256 structuring so it can be included in program code, append an extra
257 character, like an \"_\" underscore, to distinguish the lead string
258 from regular comments that start at bol.")
260 ;;;_ = outline-old-style-prefixes
261 (defcustom outline-old-style-prefixes nil
262 "*When non-nil, use only old-and-crusty outline-mode `*' topic prefixes.
264 Non-nil restricts the topic creation and modification
265 functions to asterix-padded prefixes, so they look exactly
266 like the original emacs-outline style prefixes.
268 Whatever the setting of this variable, both old and new style prefixes
269 are always respected by the topic maneuvering functions."
270 :type 'boolean
271 :group 'allout)
272 (make-variable-buffer-local 'outline-old-style-prefixes)
273 ;;;_ = outline-stylish-prefixes - alternating bullets
274 (defcustom outline-stylish-prefixes t
275 "*Do fancy stuff with topic prefix bullets according to level, etc.
277 Non-nil enables topic creation, modification, and repositioning
278 functions to vary the topic bullet char (the char that marks the topic
279 depth) just preceding the start of the topic text) according to level.
280 Otherwise, only asterisks (`*') and distinctive bullets are used.
282 This is how an outline can look (but sans indentation) with stylish
283 prefixes:
285 * Top level
286 .* A topic
287 . + One level 3 subtopic
288 . . One level 4 subtopic
289 . . A second 4 subtopic
290 . + Another level 3 subtopic
291 . #1 A numbered level 4 subtopic
292 . #2 Another
293 . ! Another level 4 subtopic with a different distinctive bullet
294 . #4 And another numbered level 4 subtopic
296 This would be an outline with stylish prefixes inhibited (but the
297 numbered and other distinctive bullets retained):
299 * Top level
300 .* A topic
301 . * One level 3 subtopic
302 . * One level 4 subtopic
303 . * A second 4 subtopic
304 . * Another level 3 subtopic
305 . #1 A numbered level 4 subtopic
306 . #2 Another
307 . ! Another level 4 subtopic with a different distinctive bullet
308 . #4 And another numbered level 4 subtopic
310 Stylish and constant prefixes (as well as old-style prefixes) are
311 always respected by the topic maneuvering functions, regardless of
312 this variable setting.
314 The setting of this var is not relevant when outline-old-style-prefixes
315 is non-nil."
316 :type 'boolean
317 :group 'allout)
318 (make-variable-buffer-local 'outline-stylish-prefixes)
320 ;;;_ = outline-numbered-bullet
321 (defcustom outline-numbered-bullet "#"
322 "*String designating bullet of topics that have auto-numbering; nil for none.
324 Topics having this bullet have automatic maintenance of a sibling
325 sequence-number tacked on, just after the bullet. Conventionally set
326 to \"#\", you can set it to a bullet of your choice. A nil value
327 disables numbering maintenance."
328 :type '(choice (const nil) string)
329 :group 'allout)
330 (make-variable-buffer-local 'outline-numbered-bullet)
331 ;;;_ = outline-file-xref-bullet
332 (defcustom outline-file-xref-bullet "@"
333 "*Bullet signifying file cross-references, for `outline-resolve-xref'.
335 Set this var to the bullet you want to use for file cross-references."
336 :type '(choice (const nil) string)
337 :group 'allout)
339 ;;;_ = outline-presentation-padding
340 (defcustom outline-presentation-padding 2
341 "*Presentation-format white-space padding factor, for greater indent."
342 :type 'integer
343 :group 'allout)
345 (make-variable-buffer-local 'outline-presentation-padding)
347 ;;;_ = outline-abbreviate-flattened-numbering
348 (defcustom outline-abbreviate-flattened-numbering nil
349 "*If non-nil, `outline-flatten-exposed-to-buffer' abbreviates topic
350 numbers to minimal amount with some context. Otherwise, entire
351 numbers are always used."
352 :type 'boolean
353 :group 'allout)
355 ;;;_ + LaTeX formatting
356 ;;;_ - outline-number-pages
357 (defcustom outline-number-pages nil
358 "*Non-nil turns on page numbering for LaTeX formatting of an outline."
359 :type 'boolean
360 :group 'allout)
361 ;;;_ - outline-label-style
362 (defcustom outline-label-style "\\large\\bf"
363 "*Font and size of labels for LaTeX formatting of an outline."
364 :type 'string
365 :group 'allout)
366 ;;;_ - outline-head-line-style
367 (defcustom outline-head-line-style "\\large\\sl "
368 "*Font and size of entries for LaTeX formatting of an outline."
369 :type 'string
370 :group 'allout)
371 ;;;_ - outline-body-line-style
372 (defcustom outline-body-line-style " "
373 "*Font and size of entries for LaTeX formatting of an outline."
374 :type 'string
375 :group 'allout)
376 ;;;_ - outline-title-style
377 (defcustom outline-title-style "\\Large\\bf"
378 "*Font and size of titles for LaTeX formatting of an outline."
379 :type 'string
380 :group 'allout)
381 ;;;_ - outline-title
382 (defcustom outline-title '(or buffer-file-name (current-buffer-name))
383 "*Expression to be evaluated to determine the title for LaTeX
384 formatted copy."
385 :type 'sexp
386 :group 'allout)
387 ;;;_ - outline-line-skip
388 (defcustom outline-line-skip ".05cm"
389 "*Space between lines for LaTeX formatting of an outline."
390 :type 'string
391 :group 'allout)
392 ;;;_ - outline-indent
393 (defcustom outline-indent ".3cm"
394 "*LaTeX formatted depth-indent spacing."
395 :type 'string
396 :group 'allout)
398 ;;;_ + Miscellaneous customization
400 ;;;_ = outline-command-prefix
401 (defcustom outline-command-prefix "\C-c"
402 "*Key sequence to be used as prefix for outline mode command key bindings."
403 :type 'string
404 :group 'allout)
406 ;;;_ = outline-keybindings-list
407 ;;; You have to reactivate outline-mode - `(outline-mode t)' - to
408 ;;; institute changes to this var.
409 (defvar outline-keybindings-list ()
410 "*List of outline-mode key / function bindings, for outline-mode-map.
412 String or vector key will be prefaced with outline-command-prefix,
413 unless optional third, non-nil element is present.")
414 (setq outline-keybindings-list
416 ; Motion commands:
417 ("\C-n" outline-next-visible-heading)
418 ("\C-p" outline-previous-visible-heading)
419 ("\C-u" outline-up-current-level)
420 ("\C-f" outline-forward-current-level)
421 ("\C-b" outline-backward-current-level)
422 ("\C-a" outline-beginning-of-current-entry)
423 ("\C-e" outline-end-of-current-entry)
424 ; Exposure commands:
425 ("\C-i" outline-show-children)
426 ("\C-s" outline-show-current-subtree)
427 ("\C-h" outline-hide-current-subtree)
428 ("\C-o" outline-show-current-entry)
429 ("!" outline-show-all)
430 ; Alteration commands:
431 (" " outline-open-sibtopic)
432 ("." outline-open-subtopic)
433 ("," outline-open-supertopic)
434 ("'" outline-shift-in)
435 (">" outline-shift-in)
436 ("<" outline-shift-out)
437 ("\C-m" outline-rebullet-topic)
438 ("*" outline-rebullet-current-heading)
439 ("#" outline-number-siblings)
440 ("\C-k" outline-kill-line t)
441 ("\C-y" outline-yank t)
442 ("\M-y" outline-yank-pop t)
443 ("\C-k" outline-kill-topic)
444 ; Miscellaneous commands:
445 ;([?\C-\ ] outline-mark-topic)
446 ("@" outline-resolve-xref)
447 ("=c" outline-copy-exposed-to-buffer)
448 ("=i" outline-indented-exposed-to-buffer)
449 ("=t" outline-latexify-exposed)
450 ("=p" outline-flatten-exposed-to-buffer)))
452 ;;;_ = outline-isearch-dynamic-expose
453 (defcustom outline-isearch-dynamic-expose t
454 "*Non-nil enable dynamic exposure of hidden incremental-search
455 targets as they're encountered."
456 :type 'boolean
457 :group 'allout)
458 (make-variable-buffer-local 'outline-isearch-dynamic-expose)
460 ;;;_ = outline-use-hanging-indents
461 (defcustom outline-use-hanging-indents t
462 "*If non-nil, topic body text auto-indent defaults to indent of the header.
463 Ie, it is indented to be just past the header prefix. This is
464 relevant mostly for use with indented-text-mode, or other situations
465 where auto-fill occurs.
467 \[This feature no longer depends in any way on the `filladapt.el'
468 lisp-archive package.\]"
469 :type 'boolean
470 :group 'allout)
471 (make-variable-buffer-local 'outline-use-hanging-indents)
473 ;;;_ = outline-reindent-bodies
474 (defcustom outline-reindent-bodies (if outline-use-hanging-indents
475 'text)
476 "*Non-nil enables auto-adjust of topic body hanging indent with depth shifts.
478 When active, topic body lines that are indented even with or beyond
479 their topic header are reindented to correspond with depth shifts of
480 the header.
482 A value of `t' enables reindent in non-programming-code buffers, ie
483 those that do not have the variable `comment-start' set. A value of
484 `force' enables reindent whether or not `comment-start' is set."
485 :type '(choice (const nil) (const t) (const text) (const force))
486 :group 'allout)
488 (make-variable-buffer-local 'outline-reindent-bodies)
490 ;;;_ = outline-inhibit-protection
491 (defcustom outline-inhibit-protection nil
492 "*Non-nil disables warnings and confirmation-checks for concealed-text edits.
494 Outline mode uses emacs change-triggered functions to detect unruly
495 changes to concealed regions. Set this var non-nil to disable the
496 protection, potentially increasing text-entry responsiveness a bit.
498 This var takes effect at outline-mode activation, so you may have to
499 deactivate and then reactivate the mode if you want to toggle the
500 behavior."
501 :type 'boolean
502 :group 'allout)
504 ;;;_* CODE - no user customizations below.
506 ;;;_ #1 Internal Outline Formatting and Configuration
507 ;;;_ : Version
508 ;;;_ = outline-version
509 (defvar outline-version
510 (let ((rcs-rev "$Revision: 1.26 $"))
511 (condition-case err
512 (save-match-data
513 (string-match "Revision: \\([0-9]+\\.[0-9]+\\)" rcs-rev)
514 (substring rcs-rev (match-beginning 1) (match-end 1)))
515 ('error rcs-rev)))
516 "Revision number of currently loaded outline package. \(allout.el)")
517 ;;;_ > outline-version
518 (defun outline-version (&optional here)
519 "Return string describing the loaded outline version."
520 (interactive "P")
521 (let ((msg (concat "Allout Outline Mode v " outline-version)))
522 (if here (insert-string msg))
523 (message "%s" msg)
524 msg))
525 ;;;_ : Topic header format
526 ;;;_ = outline-regexp
527 (defvar outline-regexp ""
528 "*Regular expression to match the beginning of a heading line.
530 Any line whose beginning matches this regexp is considered a
531 heading. This var is set according to the user configuration vars
532 by set-outline-regexp.")
533 (make-variable-buffer-local 'outline-regexp)
534 ;;;_ = outline-bullets-string
535 (defvar outline-bullets-string ""
536 "A string dictating the valid set of outline topic bullets.
538 This var should *not* be set by the user - it is set by `set-outline-regexp',
539 and is produced from the elements of `outline-plain-bullets-string'
540 and `outline-distinctive-bullets-string'.")
541 (make-variable-buffer-local 'outline-bullets-string)
542 ;;;_ = outline-bullets-string-len
543 (defvar outline-bullets-string-len 0
544 "Length of current buffers' outline-plain-bullets-string.")
545 (make-variable-buffer-local 'outline-bullets-string-len)
546 ;;;_ = outline-line-boundary-regexp
547 (defvar outline-line-boundary-regexp ()
548 "Outline-regexp with outline-style beginning-of-line anchor.
550 \(Ie, C-j, *or* C-m, for prefixes of hidden topics). This is properly
551 set when outline-regexp is produced by `set-outline-regexp', so
552 that (match-beginning 2) and (match-end 2) delimit the prefix.")
553 (make-variable-buffer-local 'outline-line-boundary-regexp)
554 ;;;_ = outline-bob-regexp
555 (defvar outline-bob-regexp ()
556 "Like outline-line-boundary-regexp, for headers at beginning of buffer.
557 \(match-beginning 2) and \(match-end 2) delimit the prefix.")
558 (make-variable-buffer-local 'outline-bob-regexp)
559 ;;;_ = outline-header-subtraction
560 (defvar outline-header-subtraction (1- (length outline-header-prefix))
561 "Outline-header prefix length to subtract when computing topic depth.")
562 (make-variable-buffer-local 'outline-header-subtraction)
563 ;;;_ = outline-plain-bullets-string-len
564 (defvar outline-plain-bullets-string-len (length outline-plain-bullets-string)
565 "Length of outline-plain-bullets-string, updated by set-outline-regexp.")
566 (make-variable-buffer-local 'outline-plain-bullets-string-len)
569 ;;;_ X outline-reset-header-lead (header-lead)
570 (defun outline-reset-header-lead (header-lead)
571 "*Reset the leading string used to identify topic headers."
572 (interactive "sNew lead string: ")
573 (setq outline-header-prefix header-lead)
574 (setq outline-header-subtraction (1- (length outline-header-prefix)))
575 (set-outline-regexp))
576 ;;;_ X outline-lead-with-comment-string (header-lead)
577 (defun outline-lead-with-comment-string (&optional header-lead)
578 "*Set the topic-header leading string to specified string.
580 Useful when for encapsulating outline structure in programming
581 language comments. Returns the leading string."
583 (interactive "P")
584 (if (not (stringp header-lead))
585 (setq header-lead (read-string
586 "String prefix for topic headers: ")))
587 (setq outline-reindent-bodies nil)
588 (outline-reset-header-lead header-lead)
589 header-lead)
590 ;;;_ > outline-infer-header-lead ()
591 (defun outline-infer-header-lead ()
592 "Determine appropriate `outline-header-prefix'.
594 Works according to settings of:
596 `comment-start'
597 `outline-header-prefix' (default)
598 `outline-use-mode-specific-leader'
599 and `outline-mode-leaders'.
601 Apply this via \(re)activation of `outline-mode', rather than
602 invoking it directly."
603 (let* ((use-leader (and (boundp 'outline-use-mode-specific-leader)
604 (if (or (stringp outline-use-mode-specific-leader)
605 (memq outline-use-mode-specific-leader
606 '(outline-mode-leaders
607 comment-start
608 t)))
609 outline-use-mode-specific-leader
610 ;; Oops - garbled value, equate with effect of 't:
611 t)))
612 (leader
613 (cond
614 ((not use-leader) nil)
615 ;; Use the explicitly designated leader:
616 ((stringp use-leader) use-leader)
617 (t (or (and (memq use-leader '(t outline-mode-leaders))
618 ;; Get it from outline mode leaders?
619 (cdr (assq major-mode outline-mode-leaders)))
620 ;; ... didn't get from outline-mode-leaders...
621 (and (memq use-leader '(t comment-start))
622 comment-start
623 ;; Use comment-start, maybe tripled, and with
624 ;; underscore:
625 (concat
626 (if (string= " "
627 (substring comment-start
628 (1- (length comment-start))))
629 ;; Use comment-start, sans trailing space:
630 (substring comment-start 0 -1)
631 (concat comment-start comment-start comment-start))
632 ;; ... and append underscore, whichever:
633 "_")))))))
634 (if (not leader)
636 (if (string= leader outline-header-prefix)
637 nil ; no change, nothing to do.
638 (setq outline-header-prefix leader)
639 outline-header-prefix))))
640 ;;;_ > outline-infer-body-reindent ()
641 (defun outline-infer-body-reindent ()
642 "Determine proper setting for `outline-reindent-bodies'.
644 Depends on default setting of `outline-reindent-bodies' \(which see)
645 and presence of setting for `comment-start', to tell whether the
646 file is programming code."
647 (if (and outline-reindent-bodies
648 comment-start
649 (not (eq 'force outline-reindent-bodies)))
650 (setq outline-reindent-bodies nil)))
651 ;;;_ > set-outline-regexp ()
652 (defun set-outline-regexp ()
653 "Generate proper topic-header regexp form for outline functions.
655 Works with respect to `outline-plain-bullets-string' and
656 `outline-distinctive-bullets-string'."
658 (interactive)
659 ;; Derive outline-bullets-string from user configured components:
660 (setq outline-bullets-string "")
661 (let ((strings (list 'outline-plain-bullets-string
662 'outline-distinctive-bullets-string
663 'outline-primary-bullet))
664 cur-string
665 cur-len
666 cur-char
667 cur-char-string
668 index
669 new-string)
670 (while strings
671 (setq new-string "") (setq index 0)
672 (setq cur-len (length (setq cur-string (symbol-value (car strings)))))
673 (while (< index cur-len)
674 (setq cur-char (aref cur-string index))
675 (setq outline-bullets-string
676 (concat outline-bullets-string
677 (cond
678 ; Single dash would denote a
679 ; sequence, repeated denotes
680 ; a dash:
681 ((eq cur-char ?-) "--")
682 ; literal close-square-bracket
683 ; doesn't work right in the
684 ; expr, exclude it:
685 ((eq cur-char ?\]) "")
686 (t (regexp-quote (char-to-string cur-char))))))
687 (setq index (1+ index)))
688 (setq strings (cdr strings)))
690 ;; Derive next for repeated use in outline-pending-bullet:
691 (setq outline-plain-bullets-string-len (length outline-plain-bullets-string))
692 (setq outline-header-subtraction (1- (length outline-header-prefix)))
693 ;; Produce the new outline-regexp:
694 (setq outline-regexp (concat "\\(\\"
695 outline-header-prefix
696 "[ \t]*["
697 outline-bullets-string
698 "]\\)\\|\\"
699 outline-primary-bullet
700 "+\\|\^l"))
701 (setq outline-line-boundary-regexp
702 (concat "\\([\n\r]\\)\\(" outline-regexp "\\)"))
703 (setq outline-bob-regexp
704 (concat "\\(\\`\\)\\(" outline-regexp "\\)"))
706 ;;;_ : Key bindings
707 ;;;_ = outline-mode-map
708 (defvar outline-mode-map nil "Keybindings for (allout) outline minor mode.")
709 ;;;_ > produce-outline-mode-map (keymap-alist &optional base-map)
710 (defun produce-outline-mode-map (keymap-list &optional base-map)
711 "Produce keymap for use as outline-mode-map, from keymap-list.
713 Built on top of optional BASE-MAP, or empty sparse map if none specified.
714 See doc string for outline-keybindings-list for format of binding list."
715 (let ((map (or base-map (make-sparse-keymap)))
716 (pref (list outline-command-prefix)))
717 (mapcar (function
718 (lambda (cell)
719 (let ((add-pref (null (cdr (cdr cell))))
720 (key-suff (list (car cell))))
721 (apply 'define-key
722 (list map
723 (apply 'concat (if add-pref
724 (append pref key-suff)
725 key-suff))
726 (car (cdr cell)))))))
727 keymap-list)
728 map))
729 ;;;_ = outline-prior-bindings - being deprecated.
730 (defvar outline-prior-bindings nil
731 "Variable for use in V18, with outline-added-bindings, for
732 resurrecting, on mode deactivation, bindings that existed before
733 activation. Being deprecated.")
734 ;;;_ = outline-added-bindings - being deprecated
735 (defvar outline-added-bindings nil
736 "Variable for use in V18, with outline-prior-bindings, for
737 resurrecting, on mode deactivation, bindings that existed before
738 activation. Being deprecated.")
739 ;;;_ : Menu bar
740 (defun produce-outline-mode-menubar-entries ()
741 (require 'easymenu)
742 (easy-menu-define outline-mode-exposure-menu
743 outline-mode-map
744 "Allout outline exposure menu."
745 '("Exposure"
746 ["Show Entry" outline-show-current-entry t]
747 ["Show Children" outline-show-children t]
748 ["Show Subtree" outline-show-current-subtree t]
749 ["Hide Subtree" outline-hide-current-subtree t]
750 ["Hide Leaves" outline-hide-current-leaves t]
751 "----"
752 ["Show All" outline-show-all t]))
753 (easy-menu-define outline-mode-editing-menu
754 outline-mode-map
755 "Allout outline editing menu."
756 '("Headings"
757 ["Open Sibling" outline-open-sibtopic t]
758 ["Open Subtopic" outline-open-subtopic t]
759 ["Open Supertopic" outline-open-supertopic t]
760 "----"
761 ["Shift Topic In" outline-shift-in t]
762 ["Shift Topic Out" outline-shift-out t]
763 ["Rebullet Topic" outline-rebullet-topic t]
764 ["Rebullet Heading" outline-rebullet-current-heading t]
765 ["Number Siblings" outline-number-siblings t]))
766 (easy-menu-define outline-mode-navigation-menu
767 outline-mode-map
768 "Allout outline navigation menu."
769 '("Navigation"
770 ["Next Visible Heading" outline-next-visible-heading t]
771 ["Previous Visible Heading"
772 outline-previous-visible-heading t]
773 "----"
774 ["Up Level" outline-up-current-level t]
775 ["Forward Current Level" outline-forward-current-level t]
776 ["Backward Current Level"
777 outline-backward-current-level t]
778 "----"
779 ["Beginning of Entry"
780 outline-beginning-of-current-entry t]
781 ["End of Entry" outline-end-of-current-entry t]
782 ["End of Subtree" outline-end-of-current-subtree t]))
783 (easy-menu-define outline-mode-misc-menu
784 outline-mode-map
785 "Allout outlines miscellaneous bindings."
786 '("Misc"
787 ["Version" outline-version t]
788 "----"
789 ["Duplicate Exposed" outline-copy-exposed-to-buffer t]
790 ["Duplicate Exposed, numbered"
791 outline-flatten-exposed-to-buffer t]
792 ["Duplicate Exposed, indented"
793 outline-indented-exposed-to-buffer t]
794 "----"
795 ["Set Header Lead" outline-reset-header-lead t]
796 ["Set New Exposure" outline-expose-topic t])))
797 ;;;_ : Mode-Specific Variable Maintenance Utilities
798 ;;;_ = outline-mode-prior-settings
799 (defvar outline-mode-prior-settings nil
800 "Internal outline mode use; settings to be resumed on mode deactivation.")
801 (make-variable-buffer-local 'outline-mode-prior-settings)
802 ;;;_ > outline-resumptions (name &optional value)
803 (defun outline-resumptions (name &optional value)
805 "Registers or resumes settings over outline-mode activation/deactivation.
807 First arg is NAME of variable affected. Optional second arg is list
808 containing outline-mode-specific VALUE to be imposed on named
809 variable, and to be registered. (It's a list so you can specify
810 registrations of null values.) If no value is specified, the
811 registered value is returned (encapsulated in the list, so the caller
812 can distinguish nil vs no value), and the registration is popped
813 from the list."
815 (let ((on-list (assq name outline-mode-prior-settings))
816 prior-capsule ; By `capsule' i mean a list
817 ; containing a value, so we can
818 ; distinguish nil from no value.
821 (if value
823 ;; Registering:
824 (progn
825 (if on-list
826 nil ; Already preserved prior value - don't mess with it.
827 ;; Register the old value, or nil if previously unbound:
828 (setq outline-mode-prior-settings
829 (cons (list name
830 (if (boundp name) (list (symbol-value name))))
831 outline-mode-prior-settings)))
832 ; And impose the new value, locally:
833 (progn (make-local-variable name)
834 (set name (car value))))
836 ;; Relinquishing:
837 (if (not on-list)
839 ;; Oops, not registered - leave it be:
842 ;; Some registration:
843 ; reestablish it:
844 (setq prior-capsule (car (cdr on-list)))
845 (if prior-capsule
846 (set name (car prior-capsule)) ; Some prior value - reestablish it.
847 (makunbound name)) ; Previously unbound - demolish var.
848 ; Remove registration:
849 (let (rebuild)
850 (while outline-mode-prior-settings
851 (if (not (eq (car outline-mode-prior-settings)
852 on-list))
853 (setq rebuild
854 (cons (car outline-mode-prior-settings)
855 rebuild)))
856 (setq outline-mode-prior-settings
857 (cdr outline-mode-prior-settings)))
858 (setq outline-mode-prior-settings rebuild)))))
860 ;;;_ : Mode-specific incidentals
861 ;;;_ = outline-during-write-cue nil
862 (defvar outline-during-write-cue nil
863 "Used to inhibit outline change-protection during file write.
865 See also `outline-post-command-business', `outline-write-file-hook',
866 `outline-before-change-protect', and `outline-post-command-business'
867 functions.")
868 ;;;_ = outline-pre-was-isearching nil
869 (defvar outline-pre-was-isearching nil
870 "Cue for isearch-dynamic-exposure mechanism, implemented in
871 outline-pre- and -post-command-hooks.")
872 (make-variable-buffer-local 'outline-pre-was-isearching)
873 ;;;_ = outline-isearch-prior-pos nil
874 (defvar outline-isearch-prior-pos nil
875 "Cue for isearch-dynamic-exposure tracking, used by outline-isearch-expose.")
876 (make-variable-buffer-local 'outline-isearch-prior-pos)
877 ;;;_ = outline-isearch-did-quit
878 (defvar outline-isearch-did-quit nil
879 "Distinguishes isearch conclusion and cancellation.
881 Maintained by outline-isearch-abort \(which is wrapped around the real
882 isearch-abort), and monitored by outline-isearch-expose for action.")
883 (make-variable-buffer-local 'outline-isearch-did-quit)
884 ;;;_ = outline-override-protect nil
885 (defvar outline-override-protect nil
886 "Used in outline-mode for regulate of concealed-text protection mechanism.
888 Allout outline mode regulates alteration of concealed text to protect
889 against inadvertent, unnoticed changes. This is for use by specific,
890 native outline functions to temporarily override that protection.
891 It's automatically reset to nil after every buffer modification.")
892 (make-variable-buffer-local 'outline-override-protect)
893 ;;;_ > outline-unprotected (expr)
894 (defmacro outline-unprotected (expr)
895 "Evaluate EXPRESSION with `outline-override-protect' let-bound `t'."
896 `(let ((outline-override-protect t))
897 ,expr))
898 ;;;_ = outline-undo-aggregation
899 (defvar outline-undo-aggregation 30
900 "Amount of successive self-insert actions to bunch together per undo.
902 This is purely a kludge variable, regulating the compensation for a bug in
903 the way that before-change-functions and undo interact.")
904 (make-variable-buffer-local 'outline-undo-aggregation)
905 ;;;_ = file-var-bug hack
906 (defvar outline-v18/19-file-var-hack nil
907 "Horrible hack used to prevent invalid multiple triggering of outline
908 mode from prop-line file-var activation. Used by outline-mode function
909 to track repeats.")
910 ;;;_ > outline-write-file-hook ()
911 (defun outline-write-file-hook ()
912 "In outline mode, run as a local-write-file-hooks activity.
914 Currently just sets `outline-during-write-cue', so outline-change-protection
915 knows to keep inactive during file write."
916 (setq outline-during-write-cue t)
917 nil)
919 ;;;_ #2 Mode activation
920 ;;;_ = outline-mode
921 (defvar outline-mode () "Allout outline mode minor-mode flag.")
922 (make-variable-buffer-local 'outline-mode)
923 ;;;_ > outline-mode-p ()
924 (defmacro outline-mode-p ()
925 "Return t if outline-mode is active in current buffer."
926 'outline-mode)
927 ;;;_ = outline-explicitly-deactivated
928 (defvar outline-explicitly-deactivated nil
929 "Outline-mode was last deliberately deactivated.
930 So outline-post-command-business should not reactivate it...")
931 (make-variable-buffer-local 'outline-explicitly-deactivated)
932 ;;;_ > outline-init (&optional mode)
933 (defun outline-init (&optional mode)
934 "Prime outline-mode to enable/disable auto-activation, wrt `outline-layout'.
936 MODE is one of the following symbols:
938 - nil \(or no argument) deactivate auto-activation/layout;
939 - `activate', enable auto-activation only;
940 - `ask', enable auto-activation, and enable auto-layout but with
941 confirmation for layout operation solicited from user each time;
942 - `report', just report and return the current auto-activation state;
943 - anything else \(eg, t) for auto-activation and auto-layout, without
944 any confirmation check.
946 Use this function to setup your emacs session for automatic activation
947 of allout outline mode, contingent to the buffer-specific setting of
948 the `outline-layout' variable. (See `outline-layout' and
949 `outline-expose-topic' docstrings for more details on auto layout).
951 `outline-init' works by setting up (or removing) the outline-mode
952 find-file-hook, and giving `outline-auto-activation' a suitable
953 setting.
955 To prime your emacs session for full auto-outline operation, include
956 the following two lines in your emacs init file:
958 \(require 'allout)
959 \(outline-init t)"
961 (interactive)
962 (if (interactive-p)
963 (progn
964 (setq mode
965 (completing-read
966 (concat "Select outline auto setup mode "
967 "(empty for report, ? for options) ")
968 '(("nil")("full")("activate")("deactivate")
969 ("ask") ("report") (""))
972 (if (string= mode "")
973 (setq mode 'report)
974 (setq mode (intern-soft mode)))))
975 (let
976 ;; convenience aliases, for consistent ref to respective vars:
977 ((hook 'outline-find-file-hook)
978 (curr-mode 'outline-auto-activation))
980 (cond ((not mode)
981 (setq find-file-hooks (delq hook find-file-hooks))
982 (if (interactive-p)
983 (message "Allout outline mode auto-activation inhibited.")))
984 ((eq mode 'report)
985 (if (not (memq hook find-file-hooks))
986 (outline-init nil)
987 ;; Just punt and use the reports from each of the modes:
988 (outline-init (symbol-value curr-mode))))
989 (t (add-hook 'find-file-hooks hook)
990 (set curr-mode ; `set', not `setq'!
991 (cond ((eq mode 'activate)
992 (message
993 "Outline mode auto-activation enabled.")
994 'activate)
995 ((eq mode 'report)
996 ;; Return the current mode setting:
997 (outline-init mode))
998 ((eq mode 'ask)
999 (message
1000 (concat "Outline mode auto-activation and "
1001 "-layout \(upon confirmation) enabled."))
1002 'ask)
1003 ((message
1004 "Outline mode auto-activation and -layout enabled.")
1005 'full)))))))
1007 ;;;_ > outline-setup-menubar ()
1008 (defun outline-setup-menubar ()
1009 "Populate the current buffer's menubar with allout outline-mode stuff."
1010 (let ((menus (list outline-mode-exposure-menu
1011 outline-mode-editing-menu
1012 outline-mode-navigation-menu
1013 outline-mode-misc-menu))
1014 cur)
1015 (while menus
1016 (setq cur (car menus)
1017 menus (cdr menus))
1018 (easy-menu-add cur))))
1019 ;;;_ > outline-mode (&optional toggle)
1020 ;;;_ : Defun:
1021 (defun outline-mode (&optional toggle)
1022 ;;;_ . Doc string:
1023 "Toggle minor mode for controlling exposure and editing of text outlines.
1025 Optional arg forces mode to re-initialize iff arg is positive num or
1026 symbol. Allout outline mode always runs as a minor mode.
1028 Allout outline mode provides extensive outline-oriented formatting and
1029 manipulation. It enables structural editing of outlines, as well as
1030 navigation and exposure. It also is specifically aimed at
1031 accommodating syntax-sensitive text like programming languages. \(For
1032 an example, see the allout code itself, which is organized as an allout
1033 outline.)
1035 In addition to outline navigation and exposure, allout includes:
1037 - topic-oriented repositioning, cut, and paste
1038 - integral outline exposure-layout
1039 - incremental search with dynamic exposure and reconcealment of hidden text
1040 - automatic topic-number maintenance
1041 - \"Hot-spot\" operation, for single-keystroke maneuvering and
1042 exposure control. \(See the outline-mode docstring.)
1044 and many other features.
1046 Below is a description of the bindings, and then explanation of
1047 special outline-mode features and terminology. See also the outline
1048 menubar additions for quick reference to many of the features, and see
1049 the docstring of the variable `outline-init' for instructions on
1050 priming your emacs session for automatic activation of outline-mode.
1053 The bindings are dictated by the `outline-keybindings-list' and
1054 `outline-command-prefix' variables.
1056 Navigation: Exposure Control:
1057 ---------- ----------------
1058 C-c C-n outline-next-visible-heading | C-c C-h outline-hide-current-subtree
1059 C-c C-p outline-previous-visible-heading | C-c C-i outline-show-children
1060 C-c C-u outline-up-current-level | C-c C-s outline-show-current-subtree
1061 C-c C-f outline-forward-current-level | C-c C-o outline-show-current-entry
1062 C-c C-b outline-backward-current-level | ^U C-c C-s outline-show-all
1063 C-c C-e outline-end-of-current-entry | outline-hide-current-leaves
1064 C-c C-a outline-beginning-of-current-entry, alternately, goes to hot-spot
1066 Topic Header Production:
1067 -----------------------
1068 C-c<SP> outline-open-sibtopic Create a new sibling after current topic.
1069 C-c . outline-open-subtopic ... an offspring of current topic.
1070 C-c , outline-open-supertopic ... a sibling of the current topic's parent.
1072 Topic Level and Prefix Adjustment:
1073 ---------------------------------
1074 C-c > outline-shift-in Shift current topic and all offspring deeper.
1075 C-c < outline-shift-out ... less deep.
1076 C-c<CR> outline-rebullet-topic Reconcile bullets of topic and its offspring
1077 - distinctive bullets are not changed, others
1078 alternated according to nesting depth.
1079 C-c b outline-rebullet-current-heading Prompt for alternate bullet for
1080 current topic.
1081 C-c # outline-number-siblings Number bullets of topic and siblings - the
1082 offspring are not affected. With repeat
1083 count, revoke numbering.
1085 Topic-oriented Killing and Yanking:
1086 ----------------------------------
1087 C-c C-k outline-kill-topic Kill current topic, including offspring.
1088 C-k outline-kill-line Like kill-line, but reconciles numbering, etc.
1089 C-y outline-yank Yank, adjusting depth of yanked topic to
1090 depth of heading if yanking into bare topic
1091 heading (ie, prefix sans text).
1092 M-y outline-yank-pop Is to outline-yank as yank-pop is to yank
1094 Misc commands:
1095 -------------
1096 M-x outlineify-sticky Activate outline mode for current buffer,
1097 and establish a default file-var setting
1098 for `outline-layout'.
1099 C-c C-SPC outline-mark-topic
1100 C-c = c outline-copy-exposed-to-buffer
1101 Duplicate outline, sans concealed text, to
1102 buffer with name derived from derived from
1103 that of current buffer - \"*XXX exposed*\".
1104 C-c = p outline-flatten-exposed-to-buffer
1105 Like above 'copy-exposed', but convert topic
1106 prefixes to section.subsection... numeric
1107 format.
1108 ESC ESC (outline-init t) Setup emacs session for outline mode
1109 auto-activation.
1111 HOT-SPOT Operation
1113 Hot-spot operation provides a means for easy, single-keystroke outline
1114 navigation and exposure control.
1116 \\<outline-mode-map>
1117 When the text cursor is positioned directly on the bullet character of
1118 a topic, regular characters (a to z) invoke the commands of the
1119 corresponding outline-mode keymap control chars. For example, \"f\"
1120 would invoke the command typically bound to \"C-c C-f\"
1121 \(\\[outline-forward-current-level] `outline-forward-current-level').
1123 Thus, by positioning the cursor on a topic bullet, you can execute
1124 the outline navigation and manipulation commands with a single
1125 keystroke. Non-literal chars never get this special translation, so
1126 you can use them to get away from the hot-spot, and back to normal
1127 operation.
1129 Note that the command `outline-beginning-of-current-entry' \(\\[outline-beginning-of-current-entry]\)
1130 will move to the hot-spot when the cursor is already located at the
1131 beginning of the current entry, so you can simply hit \\[outline-beginning-of-current-entry]
1132 twice in a row to get to the hot-spot.
1134 Terminology
1136 Topic hierarchy constituents - TOPICS and SUBTOPICS:
1138 TOPIC: A basic, coherent component of an emacs outline. It can
1139 contain other topics, and it can be subsumed by other topics,
1140 CURRENT topic:
1141 The visible topic most immediately containing the cursor.
1142 DEPTH: The degree of nesting of a topic; it increases with
1143 containment. Also called the:
1144 LEVEL: The same as DEPTH.
1146 ANCESTORS:
1147 The topics that contain a topic.
1148 PARENT: A topic's immediate ancestor. It has a depth one less than
1149 the topic.
1150 OFFSPRING:
1151 The topics contained by a topic;
1152 SUBTOPIC:
1153 An immediate offspring of a topic;
1154 CHILDREN:
1155 The immediate offspring of a topic.
1156 SIBLINGS:
1157 Topics having the same parent and depth.
1159 Topic text constituents:
1161 HEADER: The first line of a topic, include the topic PREFIX and header
1162 text.
1163 PREFIX: The leading text of a topic which which distinguishes it from
1164 normal text. It has a strict form, which consists of a
1165 prefix-lead string, padding, and a bullet. The bullet may be
1166 followed by a number, indicating the ordinal number of the
1167 topic among its siblings, a space, and then the header text.
1169 The relative length of the PREFIX determines the nesting depth
1170 of the topic.
1171 PREFIX-LEAD:
1172 The string at the beginning of a topic prefix, normally a `.'.
1173 It can be customized by changing the setting of
1174 `outline-header-prefix' and then reinitializing outline-mode.
1176 By setting the prefix-lead to the comment-string of a
1177 programming language, you can embed outline-structuring in
1178 program code without interfering with the language processing
1179 of that code. See `outline-use-mode-specific-leader'
1180 docstring for more detail.
1181 PREFIX-PADDING:
1182 Spaces or asterisks which separate the prefix-lead and the
1183 bullet, according to the depth of the topic.
1184 BULLET: A character at the end of the topic prefix, it must be one of
1185 the characters listed on `outline-plain-bullets-string' or
1186 `outline-distinctive-bullets-string'. (See the documentation
1187 for these variables for more details.) The default choice of
1188 bullet when generating varies in a cycle with the depth of the
1189 topic.
1190 ENTRY: The text contained in a topic before any offspring.
1191 BODY: Same as ENTRY.
1194 EXPOSURE:
1195 The state of a topic which determines the on-screen visibility
1196 of its offspring and contained text.
1197 CONCEALED:
1198 Topics and entry text whose display is inhibited. Contiguous
1199 units of concealed text is represented by `...' ellipses.
1200 (Ref the `selective-display' var.)
1202 Concealed topics are effectively collapsed within an ancestor.
1203 CLOSED: A topic whose immediate offspring and body-text is concealed.
1204 OPEN: A topic that is not closed, though its offspring or body may be."
1205 ;;;_ . Code
1206 (interactive "P")
1208 (let* ((active (and (not (equal major-mode 'outline))
1209 (outline-mode-p)))
1210 ; Massage universal-arg `toggle' val:
1211 (toggle (and toggle
1212 (or (and (listp toggle)(car toggle))
1213 toggle)))
1214 ; Activation specifically demanded?
1215 (explicit-activation (or
1217 (and toggle
1218 (or (symbolp toggle)
1219 (and (natnump toggle)
1220 (not (zerop toggle)))))))
1221 ;; outline-mode already called once during this complex command?
1222 (same-complex-command (eq outline-v18/19-file-var-hack
1223 (car command-history)))
1224 do-layout
1227 ; See comments below re v19.18,.19 bug.
1228 (setq outline-v18/19-file-var-hack (car command-history))
1230 (cond
1232 ;; Provision for v19.18, 19.19 bug -
1233 ;; Emacs v 19.18, 19.19 file-var code invokes prop-line-designated
1234 ;; modes twice when file is visited. We have to avoid toggling mode
1235 ;; off on second invocation, so we detect it as best we can, and
1236 ;; skip everything.
1237 ((and same-complex-command ; Still in same complex command
1238 ; as last time outline-mode invoked.
1239 active ; Already activated.
1240 (not explicit-activation) ; Prop-line file-vars don't have args.
1241 (string-match "^19.1[89]" ; Bug only known to be in v19.18 and
1242 emacs-version)); 19.19.
1245 ;; Deactivation:
1246 ((and (not explicit-activation)
1247 (or active toggle))
1248 ; Activation not explicitly
1249 ; requested, and either in
1250 ; active state or *de*activation
1251 ; specifically requested:
1252 (setq outline-explicitly-deactivated t)
1253 (if (string-match "^18\." emacs-version)
1254 ; Revoke those keys that remain
1255 ; as we set them:
1256 (let ((curr-loc (current-local-map)))
1257 (mapcar (function
1258 (lambda (cell)
1259 (if (eq (lookup-key curr-loc (car cell))
1260 (car (cdr cell)))
1261 (define-key curr-loc (car cell)
1262 (assq (car cell) outline-prior-bindings)))))
1263 outline-added-bindings)
1264 (outline-resumptions 'outline-added-bindings)
1265 (outline-resumptions 'outline-prior-bindings)))
1267 (if outline-old-style-prefixes
1268 (progn
1269 (outline-resumptions 'outline-primary-bullet)
1270 (outline-resumptions 'outline-old-style-prefixes)))
1271 (outline-resumptions 'selective-display)
1272 (if (and (boundp 'before-change-functions) before-change-functions)
1273 (outline-resumptions 'before-change-functions))
1274 (setq local-write-file-hooks
1275 (delq 'outline-write-file-hook
1276 local-write-file-hooks))
1277 (outline-resumptions 'paragraph-start)
1278 (outline-resumptions 'paragraph-separate)
1279 (outline-resumptions (if (string-match "^18" emacs-version)
1280 'auto-fill-hook
1281 'auto-fill-function))
1282 (outline-resumptions 'outline-former-auto-filler)
1283 (setq outline-mode nil))
1285 ;; Activation:
1286 ((not active)
1287 (setq outline-explicitly-deactivated nil)
1288 (if outline-old-style-prefixes
1289 (progn ; Inhibit all the fancy formatting:
1290 (outline-resumptions 'outline-primary-bullet '("*"))
1291 (outline-resumptions 'outline-old-style-prefixes '(()))))
1293 (outline-infer-header-lead)
1294 (outline-infer-body-reindent)
1296 (set-outline-regexp)
1298 ; Produce map from current version
1299 ; of outline-keybindings-list:
1300 (if (boundp 'minor-mode-map-alist)
1302 (progn ; V19, and maybe lucid and
1303 ; epoch, minor-mode key bindings:
1304 (setq outline-mode-map
1305 (produce-outline-mode-map outline-keybindings-list))
1306 (produce-outline-mode-menubar-entries)
1307 (fset 'outline-mode-map outline-mode-map)
1308 ; Include on minor-mode-map-alist,
1309 ; if not already there:
1310 (if (not (member '(outline-mode . outline-mode-map)
1311 minor-mode-map-alist))
1312 (setq minor-mode-map-alist
1313 (cons '(outline-mode . outline-mode-map)
1314 minor-mode-map-alist))))
1316 ; V18 minor-mode key bindings:
1317 ; Stash record of added bindings
1318 ; for later revocation:
1319 (outline-resumptions 'outline-added-bindings
1320 (list outline-keybindings-list))
1321 (outline-resumptions 'outline-prior-bindings
1322 (list (current-local-map)))
1323 ; and add them:
1324 (use-local-map (produce-outline-mode-map outline-keybindings-list
1325 (current-local-map)))
1328 ; selective-display is the
1329 ; emacs conditional exposure
1330 ; mechanism:
1331 (outline-resumptions 'selective-display '(t))
1332 (if outline-inhibit-protection
1334 (outline-resumptions 'before-change-functions
1335 '(outline-before-change-protect)))
1336 (add-hook 'pre-command-hook 'outline-pre-command-business)
1337 (add-hook 'post-command-hook 'outline-post-command-business)
1338 ; Temporarily set by any outline
1339 ; functions that can be trusted to
1340 ; deal properly with concealed text.
1341 (add-hook 'local-write-file-hooks 'outline-write-file-hook)
1342 ; Custom auto-fill func, to support
1343 ; respect for topic headline,
1344 ; hanging-indents, etc:
1345 (let* ((fill-func-var (if (string-match "^18" emacs-version)
1346 'auto-fill-hook
1347 'auto-fill-function))
1348 (fill-func (symbol-value fill-func-var)))
1349 ;; Register prevailing fill func for use by outline-auto-fill:
1350 (outline-resumptions 'outline-former-auto-filler (list fill-func))
1351 ;; Register outline-auto-fill to be used if filling is active:
1352 (outline-resumptions fill-func-var '(outline-auto-fill)))
1353 ;; Paragraphs are broken by topic headlines.
1354 (make-local-variable 'paragraph-start)
1355 (outline-resumptions 'paragraph-start
1356 (list (concat paragraph-start "\\|^\\("
1357 outline-regexp "\\)")))
1358 (make-local-variable 'paragraph-separate)
1359 (outline-resumptions 'paragraph-separate
1360 (list (concat paragraph-separate "\\|^\\("
1361 outline-regexp "\\)")))
1363 (or (assq 'outline-mode minor-mode-alist)
1364 (setq minor-mode-alist
1365 (cons '(outline-mode " Outl") minor-mode-alist)))
1367 (outline-setup-menubar)
1369 (if outline-layout
1370 (setq do-layout t))
1372 (if (and outline-isearch-dynamic-expose
1373 (not (fboundp 'outline-real-isearch-abort)))
1374 (outline-enwrap-isearch))
1376 (run-hooks 'outline-mode-hook)
1377 (setq outline-mode t))
1379 ;; Reactivation:
1380 ((setq do-layout t)
1381 (outline-infer-body-reindent))
1382 ) ; cond
1384 (if (and do-layout
1385 outline-auto-activation
1386 (listp outline-layout)
1387 (and (not (eq outline-auto-activation 'activate))
1388 (if (eq outline-auto-activation 'ask)
1389 (if (y-or-n-p (format "Expose %s with layout '%s'? "
1390 (buffer-name)
1391 outline-layout))
1393 (message "Skipped %s layout." (buffer-name))
1394 nil)
1395 t)))
1396 (save-excursion
1397 (message "Adjusting '%s' exposure..." (buffer-name))
1398 (goto-char 0)
1399 (outline-this-or-next-heading)
1400 (condition-case err
1401 (progn
1402 (apply 'outline-expose-topic (list outline-layout))
1403 (message "Adjusting '%s' exposure... done." (buffer-name)))
1404 ;; Problem applying exposure - notify user, but don't
1405 ;; interrupt, eg, file visit:
1406 (error (message "%s" (car (cdr err)))
1407 (sit-for 1)))))
1408 outline-mode
1409 ) ; let*
1410 ) ; defun
1411 ;;;_ > outline-minor-mode
1412 ;;; XXX released verion doesn't do this?
1413 (defalias 'outline-minor-mode 'outline-mode)
1415 ;;;_ #3 Internal Position State-Tracking - "outline-recent-*" funcs
1416 ;;; All the basic outline functions that directly do string matches to
1417 ;;; evaluate heading prefix location set the variables
1418 ;;; `outline-recent-prefix-beginning' and `outline-recent-prefix-end'
1419 ;;; when successful. Functions starting with `outline-recent-' all
1420 ;;; use this state, providing the means to avoid redundant searches
1421 ;;; for just-established data. This optimization can provide
1422 ;;; significant speed improvement, but it must be employed carefully.
1423 ;;;_ = outline-recent-prefix-beginning
1424 (defvar outline-recent-prefix-beginning 0
1425 "Buffer point of the start of the last topic prefix encountered.")
1426 (make-variable-buffer-local 'outline-recent-prefix-beginning)
1427 ;;;_ = outline-recent-prefix-end
1428 (defvar outline-recent-prefix-end 0
1429 "Buffer point of the end of the last topic prefix encountered.")
1430 (make-variable-buffer-local 'outline-recent-prefix-end)
1431 ;;;_ = outline-recent-end-of-subtree
1432 (defvar outline-recent-end-of-subtree 0
1433 "Buffer point last returned by outline-end-of-current-subtree.")
1434 (make-variable-buffer-local 'outline-recent-end-of-subtree)
1435 ;;;_ > outline-prefix-data (beg end)
1436 (defmacro outline-prefix-data (beg end)
1437 "Register outline-prefix state data - BEGINNING and END of prefix.
1439 For reference by `outline-recent' funcs. Returns BEGINNING."
1440 `(setq outline-recent-prefix-end ,end
1441 outline-recent-prefix-beginning ,beg))
1442 ;;;_ > outline-recent-depth ()
1443 (defmacro outline-recent-depth ()
1444 "Return depth of last heading encountered by an outline maneuvering function.
1446 All outline functions which directly do string matches to assess
1447 headings set the variables outline-recent-prefix-beginning and
1448 outline-recent-prefix-end if successful. This function uses those settings
1449 to return the current depth."
1451 '(max 1 (- outline-recent-prefix-end
1452 outline-recent-prefix-beginning
1453 outline-header-subtraction)))
1454 ;;;_ > outline-recent-prefix ()
1455 (defmacro outline-recent-prefix ()
1456 "Like outline-recent-depth, but returns text of last encountered prefix.
1458 All outline functions which directly do string matches to assess
1459 headings set the variables outline-recent-prefix-beginning and
1460 outline-recent-prefix-end if successful. This function uses those settings
1461 to return the current depth."
1462 '(buffer-substring outline-recent-prefix-beginning
1463 outline-recent-prefix-end))
1464 ;;;_ > outline-recent-bullet ()
1465 (defmacro outline-recent-bullet ()
1466 "Like outline-recent-prefix, but returns bullet of last encountered prefix.
1468 All outline functions which directly do string matches to assess
1469 headings set the variables outline-recent-prefix-beginning and
1470 outline-recent-prefix-end if successful. This function uses those settings
1471 to return the current depth of the most recently matched topic."
1472 '(buffer-substring (1- outline-recent-prefix-end)
1473 outline-recent-prefix-end))
1475 ;;;_ #4 Navigation
1477 ;;;_ - Position Assessment
1478 ;;;_ : Location Predicates
1479 ;;;_ > outline-on-current-heading-p ()
1480 (defun outline-on-current-heading-p ()
1481 "Return non-nil if point is on current visible topics' header line.
1483 Actually, returns prefix beginning point."
1484 (save-excursion
1485 (beginning-of-line)
1486 (and (looking-at outline-regexp)
1487 (outline-prefix-data (match-beginning 0) (match-end 0)))))
1488 ;;;_ > outline-on-heading-p ()
1489 (defalias 'outline-on-heading-p 'outline-on-current-heading-p)
1490 ;;;_ > outline-e-o-prefix-p ()
1491 (defun outline-e-o-prefix-p ()
1492 "True if point is located where current topic prefix ends, heading begins."
1493 (and (save-excursion (beginning-of-line)
1494 (looking-at outline-regexp))
1495 (= (point)(save-excursion (outline-end-of-prefix)(point)))))
1496 ;;;_ > outline-hidden-p ()
1497 (defmacro outline-hidden-p ()
1498 "True if point is in hidden text."
1499 '(save-excursion
1500 (and (re-search-backward "[\n\r]" () t)
1501 (= ?\r (following-char)))))
1502 ;;;_ > outline-visible-p ()
1503 (defmacro outline-visible-p ()
1504 "True if point is not in hidden text."
1505 (interactive)
1506 '(not (outline-hidden-p)))
1507 ;;;_ : Location attributes
1508 ;;;_ > outline-depth ()
1509 (defsubst outline-depth ()
1510 "Like outline-current-depth, but respects hidden as well as visible topics."
1511 (save-excursion
1512 (if (outline-goto-prefix)
1513 (outline-recent-depth)
1514 (progn
1515 ;; Oops, no prefix, zero prefix data:
1516 (outline-prefix-data (point)(point))
1517 ;; ... and return 0:
1518 0))))
1519 ;;;_ > outline-current-depth ()
1520 (defmacro outline-current-depth ()
1521 "Return nesting depth of visible topic most immediately containing point."
1522 '(save-excursion
1523 (if (outline-back-to-current-heading)
1524 (max 1
1525 (- outline-recent-prefix-end
1526 outline-recent-prefix-beginning
1527 outline-header-subtraction))
1528 0)))
1529 ;;;_ > outline-get-current-prefix ()
1530 (defun outline-get-current-prefix ()
1531 "Topic prefix of the current topic."
1532 (save-excursion
1533 (if (outline-goto-prefix)
1534 (outline-recent-prefix))))
1535 ;;;_ > outline-get-bullet ()
1536 (defun outline-get-bullet ()
1537 "Return bullet of containing topic (visible or not)."
1538 (save-excursion
1539 (and (outline-goto-prefix)
1540 (outline-recent-bullet))))
1541 ;;;_ > outline-current-bullet ()
1542 (defun outline-current-bullet ()
1543 "Return bullet of current (visible) topic heading, or none if none found."
1544 (condition-case err
1545 (save-excursion
1546 (outline-back-to-current-heading)
1547 (buffer-substring (- outline-recent-prefix-end 1)
1548 outline-recent-prefix-end))
1549 ;; Quick and dirty provision, ostensibly for missing bullet:
1550 ('args-out-of-range nil))
1552 ;;;_ > outline-get-prefix-bullet (prefix)
1553 (defun outline-get-prefix-bullet (prefix)
1554 "Return the bullet of the header prefix string PREFIX."
1555 ;; Doesn't make sense if we're old-style prefixes, but this just
1556 ;; oughtn't be called then, so forget about it...
1557 (if (string-match outline-regexp prefix)
1558 (substring prefix (1- (match-end 0)) (match-end 0))))
1559 ;;;_ > outline-sibling-index (&optional depth)
1560 (defun outline-sibling-index (&optional depth)
1561 "Item number of this prospective topic among its siblings.
1563 If optional arg depth is greater than current depth, then we're
1564 opening a new level, and return 0.
1566 If less than this depth, ascend to that depth and count..."
1568 (save-excursion
1569 (cond ((and depth (<= depth 0) 0))
1570 ((or (not depth) (= depth (outline-depth)))
1571 (let ((index 1))
1572 (while (outline-previous-sibling (outline-recent-depth) nil)
1573 (setq index (1+ index)))
1574 index))
1575 ((< depth (outline-recent-depth))
1576 (outline-ascend-to-depth depth)
1577 (outline-sibling-index))
1578 (0))))
1579 ;;;_ > outline-topic-flat-index ()
1580 (defun outline-topic-flat-index ()
1581 "Return a list indicating point's numeric section.subsect.subsubsect...
1582 Outermost is first."
1583 (let* ((depth (outline-depth))
1584 (next-index (outline-sibling-index depth))
1585 (rev-sibls nil))
1586 (while (> next-index 0)
1587 (setq rev-sibls (cons next-index rev-sibls))
1588 (setq depth (1- depth))
1589 (setq next-index (outline-sibling-index depth)))
1590 rev-sibls)
1593 ;;;_ - Navigation macros
1594 ;;;_ > outline-next-heading ()
1595 (defsubst outline-next-heading ()
1596 "Move to the heading for the topic \(possibly invisible) before this one.
1598 Returns the location of the heading, or nil if none found."
1600 (if (and (bobp) (not (eobp)))
1601 (forward-char 1))
1603 (if (re-search-forward outline-line-boundary-regexp nil 0)
1604 (outline-prefix-data ; Got valid location state - set vars:
1605 (goto-char (or (match-beginning 2)
1606 outline-recent-prefix-beginning))
1607 (or (match-end 2) outline-recent-prefix-end))))
1608 ;;;_ : outline-this-or-next-heading
1609 (defun outline-this-or-next-heading ()
1610 "Position cursor on current or next heading."
1611 ;; A throwaway non-macro that is defined after outline-next-heading
1612 ;; and usable by outline-mode.
1613 (if (not (outline-goto-prefix)) (outline-next-heading)))
1614 ;;;_ > outline-previous-heading ()
1615 (defmacro outline-previous-heading ()
1616 "Move to the prior \(possibly invisible) heading line.
1618 Return the location of the beginning of the heading, or nil if not found."
1620 '(if (bobp)
1622 (outline-goto-prefix)
1624 ;; searches are unbounded and return nil if failed:
1625 (or (re-search-backward outline-line-boundary-regexp nil 0)
1626 (looking-at outline-bob-regexp))
1627 (progn ; Got valid location state - set vars:
1628 (outline-prefix-data
1629 (goto-char (or (match-beginning 2)
1630 outline-recent-prefix-beginning))
1631 (or (match-end 2) outline-recent-prefix-end))))))
1633 ;;;_ - Subtree Charting
1634 ;;;_ " These routines either produce or assess charts, which are
1635 ;;; nested lists of the locations of topics within a subtree.
1637 ;;; Use of charts enables efficient navigation of subtrees, by
1638 ;;; requiring only a single regexp-search based traversal, to scope
1639 ;;; out the subtopic locations. The chart then serves as the basis
1640 ;;; for assessment or adjustment of the subtree, without redundant
1641 ;;; traversal of the structure.
1643 ;;;_ > outline-chart-subtree (&optional levels orig-depth prev-depth)
1644 (defun outline-chart-subtree (&optional levels orig-depth prev-depth)
1645 "Produce a location \"chart\" of subtopics of the containing topic.
1647 Optional argument LEVELS specifies the depth \(relative to start
1648 depth) for the chart. Subsequent optional args are not for public
1649 use.
1651 Charts are used to capture outline structure, so that outline-altering
1652 routines need assess the structure only once, and then use the chart
1653 for their elaborate manipulations.
1655 Topics are entered in the chart so the last one is at the car.
1656 The entry for each topic consists of an integer indicating the point
1657 at the beginning of the topic. Charts for offspring consists of a
1658 list containing, recursively, the charts for the respective subtopics.
1659 The chart for a topics' offspring precedes the entry for the topic
1660 itself.
1662 The other function parameters are for internal recursion, and should
1663 not be specified by external callers. ORIG-DEPTH is depth of topic at
1664 starting point, and PREV-DEPTH is depth of prior topic."
1666 (let ((original (not orig-depth)) ; `orig-depth' set only in recursion.
1667 chart curr-depth)
1669 (if original ; Just starting?
1670 ; Register initial settings and
1671 ; position to first offspring:
1672 (progn (setq orig-depth (outline-depth))
1673 (or prev-depth (setq prev-depth (1+ orig-depth)))
1674 (outline-next-heading)))
1676 ;; Loop over the current levels' siblings. Besides being more
1677 ;; efficient than tail-recursing over a level, it avoids exceeding
1678 ;; the typically quite constrained emacs max-lisp-eval-depth.
1680 ;; Probably would speed things up to implement loop-based stack
1681 ;; operation rather than recursing for lower levels. Bah.
1683 (while (and (not (eobp))
1684 ; Still within original topic?
1685 (< orig-depth (setq curr-depth (outline-recent-depth)))
1686 (cond ((= prev-depth curr-depth)
1687 ;; Register this one and move on:
1688 (setq chart (cons (point) chart))
1689 (if (and levels (<= levels 1))
1690 ;; At depth limit - skip sublevels:
1691 (or (outline-next-sibling curr-depth)
1692 ;; or no more siblings - proceed to
1693 ;; next heading at lesser depth:
1694 (while (and (<= curr-depth
1695 (outline-recent-depth))
1696 (outline-next-heading))))
1697 (outline-next-heading)))
1699 ((and (< prev-depth curr-depth)
1700 (or (not levels)
1701 (> levels 0)))
1702 ;; Recurse on deeper level of curr topic:
1703 (setq chart
1704 (cons (outline-chart-subtree (and levels
1705 (1- levels))
1706 orig-depth
1707 curr-depth)
1708 chart))
1709 ;; ... then continue with this one.
1712 ;; ... else nil if we've ascended back to prev-depth.
1716 (if original ; We're at the last sibling on
1717 ; the original level. Position
1718 ; to the end of it:
1719 (progn (and (not (eobp)) (forward-char -1))
1720 (and (memq (preceding-char) '(?\n ?\r))
1721 (memq (aref (buffer-substring (max 1 (- (point) 3))
1722 (point))
1724 '(?\n ?\r))
1725 (forward-char -1))
1726 (setq outline-recent-end-of-subtree (point))))
1728 chart ; (nreverse chart) not necessary,
1729 ; and maybe not preferable.
1731 ;;;_ > outline-chart-siblings (&optional start end)
1732 (defun outline-chart-siblings (&optional start end)
1733 "Produce a list of locations of this and succeeding sibling topics.
1734 Effectively a top-level chart of siblings. See `outline-chart-subtree'
1735 for an explanation of charts."
1736 (save-excursion
1737 (if (outline-goto-prefix)
1738 (let ((chart (list (point))))
1739 (while (outline-next-sibling)
1740 (setq chart (cons (point) chart)))
1741 (if chart (setq chart (nreverse chart)))))))
1742 ;;;_ > outline-chart-to-reveal (chart depth)
1743 (defun outline-chart-to-reveal (chart depth)
1745 "Return a flat list of hidden points in subtree CHART, up to DEPTH.
1747 Note that point can be left at any of the points on chart, or at the
1748 start point."
1750 (let (result here)
1751 (while (and (or (eq depth t) (> depth 0))
1752 chart)
1753 (setq here (car chart))
1754 (if (listp here)
1755 (let ((further (outline-chart-to-reveal here (or (eq depth t)
1756 (1- depth)))))
1757 ;; We're on the start of a subtree - recurse with it, if there's
1758 ;; more depth to go:
1759 (if further (setq result (append further result)))
1760 (setq chart (cdr chart)))
1761 (goto-char here)
1762 (if (= (preceding-char) ?\r)
1763 (setq result (cons here result)))
1764 (setq chart (cdr chart))))
1765 result))
1766 ;;;_ X outline-chart-spec (chart spec &optional exposing)
1767 (defun outline-chart-spec (chart spec &optional exposing)
1768 "Not yet \(if ever) implemented.
1770 Produce exposure directives given topic/subtree CHART and an exposure SPEC.
1772 Exposure spec indicates the locations to be exposed and the prescribed
1773 exposure status. Optional arg EXPOSING is an integer, with 0
1774 indicating pending concealment, anything higher indicating depth to
1775 which subtopic headers should be exposed, and negative numbers
1776 indicating (negative of) the depth to which subtopic headers and
1777 bodies should be exposed.
1779 The produced list can have two types of entries. Bare numbers
1780 indicate points in the buffer where topic headers that should be
1781 exposed reside.
1783 - bare negative numbers indicates that the topic starting at the
1784 point which is the negative of the number should be opened,
1785 including their entries.
1786 - bare positive values indicate that this topic header should be
1787 opened.
1788 - Lists signify the beginning and end points of regions that should
1789 be flagged, and the flag to employ. (For concealment: `\(\?r\)', and
1790 exposure:"
1791 (while spec
1792 (cond ((listp spec)
1795 (setq spec (cdr spec)))
1798 ;;;_ - Within Topic
1799 ;;;_ > outline-goto-prefix ()
1800 (defun outline-goto-prefix ()
1801 "Put point at beginning of immediately containing outline topic.
1803 Goes to most immediate subsequent topic if none immediately containing.
1805 Not sensitive to topic visibility.
1807 Returns a the point at the beginning of the prefix, or nil if none."
1809 (let (done)
1810 (while (and (not done)
1811 (re-search-backward "[\n\r]" nil 1))
1812 (forward-char 1)
1813 (if (looking-at outline-regexp)
1814 (setq done (outline-prefix-data (match-beginning 0)
1815 (match-end 0)))
1816 (forward-char -1)))
1817 (if (bobp)
1818 (cond ((looking-at outline-regexp)
1819 (outline-prefix-data (match-beginning 0)(match-end 0)))
1820 ((outline-next-heading))
1821 (done))
1822 done)))
1823 ;;;_ > outline-end-of-prefix ()
1824 (defun outline-end-of-prefix (&optional ignore-decorations)
1825 "Position cursor at beginning of header text.
1827 If optional IGNORE-DECORATIONS is non-nil, put just after bullet,
1828 otherwise skip white space between bullet and ensuing text."
1830 (if (not (outline-goto-prefix))
1832 (let ((match-data (match-data)))
1833 (goto-char (match-end 0))
1834 (if ignore-decorations
1836 (while (looking-at "[0-9]") (forward-char 1))
1837 (if (and (not (eolp)) (looking-at "\\s-")) (forward-char 1)))
1838 (store-match-data match-data))
1839 ;; Reestablish where we are:
1840 (outline-current-depth)))
1841 ;;;_ > outline-current-bullet-pos ()
1842 (defun outline-current-bullet-pos ()
1843 "Return position of current \(visible) topic's bullet."
1845 (if (not (outline-current-depth))
1847 (1- (match-end 0))))
1848 ;;;_ > outline-back-to-current-heading ()
1849 (defun outline-back-to-current-heading ()
1850 "Move to heading line of current topic, or beginning if already on the line."
1852 (beginning-of-line)
1853 (prog1 (or (outline-on-current-heading-p)
1854 (and (re-search-backward (concat "^\\(" outline-regexp "\\)")
1856 'move)
1857 (outline-prefix-data (match-beginning 1)(match-end 1))))
1858 (if (interactive-p) (outline-end-of-prefix))))
1859 ;;;_ > outline-back-to-heading ()
1860 (defalias 'outline-back-to-heading 'outline-back-to-current-heading)
1861 ;;;_ > outline-pre-next-preface ()
1862 (defun outline-pre-next-preface ()
1863 "Skip forward to just before the next heading line.
1865 Returns that character position."
1867 (if (re-search-forward outline-line-boundary-regexp nil 'move)
1868 (prog1 (goto-char (match-beginning 0))
1869 (outline-prefix-data (match-beginning 2)(match-end 2)))))
1870 ;;;_ > outline-end-of-current-subtree ()
1871 (defun outline-end-of-current-subtree ()
1872 "Put point at the end of the last leaf in the currently visible topic."
1873 (interactive)
1874 (outline-back-to-current-heading)
1875 (let ((level (outline-recent-depth)))
1876 (outline-next-heading)
1877 (while (and (not (eobp))
1878 (> (outline-recent-depth) level))
1879 (outline-next-heading))
1880 (and (not (eobp)) (forward-char -1))
1881 (and (memq (preceding-char) '(?\n ?\r))
1882 (memq (aref (buffer-substring (max 1 (- (point) 3)) (point)) 1)
1883 '(?\n ?\r))
1884 (forward-char -1))
1885 (setq outline-recent-end-of-subtree (point))))
1886 ;;;_ > outline-beginning-of-current-entry ()
1887 (defun outline-beginning-of-current-entry ()
1888 "When not already there, position point at beginning of current topic's body.
1890 If already there, move cursor to bullet for hot-spot operation.
1891 \(See outline-mode doc string for details on hot-spot operation.)"
1892 (interactive)
1893 (let ((start-point (point)))
1894 (outline-end-of-prefix)
1895 (if (and (interactive-p)
1896 (= (point) start-point))
1897 (goto-char (outline-current-bullet-pos)))))
1898 ;;;_ > outline-end-of-current-entry ()
1899 (defun outline-end-of-current-entry ()
1900 "Position the point at the end of the current topics' entry."
1901 (interactive)
1902 (outline-show-entry)
1903 (prog1 (outline-pre-next-preface)
1904 (if (and (not (bobp))(looking-at "^$"))
1905 (forward-char -1))))
1906 ;;;_ > outline-end-of-current-heading ()
1907 (defun outline-end-of-current-heading ()
1908 (interactive)
1909 (outline-beginning-of-current-entry)
1910 (forward-line -1)
1911 (end-of-line))
1912 (defalias 'outline-end-of-heading 'outline-end-of-current-heading)
1914 ;;;_ - Depth-wise
1915 ;;;_ > outline-ascend-to-depth (depth)
1916 (defun outline-ascend-to-depth (depth)
1917 "Ascend to depth DEPTH, returning depth if successful, nil if not."
1918 (if (and (> depth 0)(<= depth (outline-depth)))
1919 (let ((last-good (point)))
1920 (while (and (< depth (outline-depth))
1921 (setq last-good (point))
1922 (outline-beginning-of-level)
1923 (outline-previous-heading)))
1924 (if (= (outline-recent-depth) depth)
1925 (progn (goto-char outline-recent-prefix-beginning)
1926 depth)
1927 (goto-char last-good)
1928 nil))
1929 (if (interactive-p) (outline-end-of-prefix))))
1930 ;;;_ > outline-ascend ()
1931 (defun outline-ascend ()
1932 "Ascend one level, returning t if successful, nil if not."
1933 (prog1
1934 (if (outline-beginning-of-level)
1935 (outline-previous-heading))
1936 (if (interactive-p) (outline-end-of-prefix))))
1937 ;;;_ > outline-descend-to-depth (depth)
1938 (defun outline-descend-to-depth (depth)
1939 "Descend to depth DEPTH within current topic.
1941 Returning depth if successful, nil if not."
1942 (let ((start-point (point))
1943 (start-depth (outline-depth)))
1944 (while
1945 (and (> (outline-depth) 0)
1946 (not (= depth (outline-recent-depth))) ; ... not there yet
1947 (outline-next-heading) ; ... go further
1948 (< start-depth (outline-recent-depth)))) ; ... still in topic
1949 (if (and (> (outline-depth) 0)
1950 (= (outline-recent-depth) depth))
1951 depth
1952 (goto-char start-point)
1953 nil))
1955 ;;;_ > outline-up-current-level (arg &optional dont-complain)
1956 (defun outline-up-current-level (arg &optional dont-complain)
1957 "Move out ARG levels from current visible topic.
1959 Positions on heading line of containing topic. Error if unable to
1960 ascend that far, or nil if unable to ascend but optional arg
1961 DONT-COMPLAIN is non-nil."
1962 (interactive "p")
1963 (outline-back-to-current-heading)
1964 (let ((present-level (outline-recent-depth))
1965 (last-good (point))
1966 failed
1967 return)
1968 ;; Loop for iterating arg:
1969 (while (and (> (outline-recent-depth) 1)
1970 (> arg 0)
1971 (not (bobp))
1972 (not failed))
1973 (setq last-good (point))
1974 ;; Loop for going back over current or greater depth:
1975 (while (and (not (< (outline-recent-depth) present-level))
1976 (or (outline-previous-visible-heading 1)
1977 (not (setq failed present-level)))))
1978 (setq present-level (outline-current-depth))
1979 (setq arg (- arg 1)))
1980 (if (or failed
1981 (> arg 0))
1982 (progn (goto-char last-good)
1983 (if (interactive-p) (outline-end-of-prefix))
1984 (if (not dont-complain)
1985 (error "Can't ascend past outermost level.")
1986 (if (interactive-p) (outline-end-of-prefix))
1987 nil))
1988 (if (interactive-p) (outline-end-of-prefix))
1989 outline-recent-prefix-beginning)))
1991 ;;;_ - Linear
1992 ;;;_ > outline-next-sibling (&optional depth backward)
1993 (defun outline-next-sibling (&optional depth backward)
1994 "Like outline-forward-current-level, but respects invisible topics.
1996 Traverse at optional DEPTH, or current depth if none specified.
1998 Go backward if optional arg BACKWARD is non-nil.
2000 Return depth if successful, nil otherwise."
2002 (if (and backward (bobp))
2004 (let ((start-depth (or depth (outline-depth)))
2005 (start-point (point))
2006 last-depth)
2007 (while (and (not (if backward (bobp) (eobp)))
2008 (if backward (outline-previous-heading)
2009 (outline-next-heading))
2010 (> (setq last-depth (outline-recent-depth)) start-depth)))
2011 (if (and (not (eobp))
2012 (and (> (or last-depth (outline-depth)) 0)
2013 (= (outline-recent-depth) start-depth)))
2014 outline-recent-prefix-beginning
2015 (goto-char start-point)
2016 (if depth (outline-depth) start-depth)
2017 nil))))
2018 ;;;_ > outline-previous-sibling (&optional depth backward)
2019 (defun outline-previous-sibling (&optional depth backward)
2020 "Like outline-forward-current-level,but backwards & respect invisible topics.
2022 Optional DEPTH specifies depth to traverse, default current depth.
2024 Optional BACKWARD reverses direction.
2026 Return depth if successful, nil otherwise."
2027 (outline-next-sibling depth (not backward))
2029 ;;;_ > outline-snug-back ()
2030 (defun outline-snug-back ()
2031 "Position cursor at end of previous topic
2033 Presumes point is at the start of a topic prefix."
2034 (if (or (bobp) (eobp))
2036 (forward-char -1))
2037 (if (or (bobp) (not (memq (preceding-char) '(?\n ?\r))))
2039 (forward-char -1)
2040 (if (or (bobp) (not (memq (preceding-char) '(?\n ?\r))))
2041 (forward-char -1)))
2042 (point))
2043 ;;;_ > outline-beginning-of-level ()
2044 (defun outline-beginning-of-level ()
2045 "Go back to the first sibling at this level, visible or not."
2046 (outline-end-of-level 'backward))
2047 ;;;_ > outline-end-of-level (&optional backward)
2048 (defun outline-end-of-level (&optional backward)
2049 "Go to the last sibling at this level, visible or not."
2051 (let ((depth (outline-depth)))
2052 (while (outline-previous-sibling depth nil))
2053 (prog1 (outline-recent-depth)
2054 (if (interactive-p) (outline-end-of-prefix)))))
2055 ;;;_ > outline-next-visible-heading (arg)
2056 (defun outline-next-visible-heading (arg)
2057 "Move to the next ARG'th visible heading line, backward if arg is negative.
2059 Move as far as possible in indicated direction \(beginning or end of
2060 buffer) if headings are exhausted."
2062 (interactive "p")
2063 (let* ((backward (if (< arg 0) (setq arg (* -1 arg))))
2064 (step (if backward -1 1))
2065 (start-point (point))
2066 prev got)
2068 (while (> arg 0) ; limit condition
2069 (while (and (not (if backward (bobp)(eobp))) ; boundary condition
2070 ;; Move, skipping over all those concealed lines:
2071 (< -1 (forward-line step))
2072 (not (setq got (looking-at outline-regexp)))))
2073 ;; Register this got, it may be the last:
2074 (if got (setq prev got))
2075 (setq arg (1- arg)))
2076 (cond (got ; Last move was to a prefix:
2077 (outline-prefix-data (match-beginning 0) (match-end 0))
2078 (outline-end-of-prefix))
2079 (prev ; Last move wasn't, but prev was:
2080 (outline-prefix-data (match-beginning 0) (match-end 0)))
2081 ((not backward) (end-of-line) nil))))
2082 ;;;_ > outline-previous-visible-heading (arg)
2083 (defun outline-previous-visible-heading (arg)
2084 "Move to the previous heading line.
2086 With argument, repeats or can move forward if negative.
2087 A heading line is one that starts with a `*' (or that outline-regexp
2088 matches)."
2089 (interactive "p")
2090 (outline-next-visible-heading (- arg)))
2091 ;;;_ > outline-forward-current-level (arg)
2092 (defun outline-forward-current-level (arg)
2093 "Position point at the next heading of the same level.
2095 Takes optional repeat-count, goes backward if count is negative.
2097 Returns resulting position, else nil if none found."
2098 (interactive "p")
2099 (let ((start-depth (outline-current-depth))
2100 (start-point (point))
2101 (start-arg arg)
2102 (backward (> 0 arg))
2103 last-depth
2104 (last-good (point))
2105 at-boundary)
2106 (if (= 0 start-depth)
2107 (error "No siblings, not in a topic..."))
2108 (if backward (setq arg (* -1 arg)))
2109 (while (not (or (zerop arg)
2110 at-boundary))
2111 (while (and (not (if backward (bobp) (eobp)))
2112 (if backward (outline-previous-visible-heading 1)
2113 (outline-next-visible-heading 1))
2114 (> (setq last-depth (outline-recent-depth)) start-depth)))
2115 (if (and last-depth (= last-depth start-depth)
2116 (not (if backward (bobp) (eobp))))
2117 (setq last-good (point)
2118 arg (1- arg))
2119 (setq at-boundary t)))
2120 (if (and (not (eobp))
2121 (= arg 0)
2122 (and (> (or last-depth (outline-depth)) 0)
2123 (= (outline-recent-depth) start-depth)))
2124 outline-recent-prefix-beginning
2125 (goto-char last-good)
2126 (if (not (interactive-p))
2128 (outline-end-of-prefix)
2129 (error "Hit %s level %d topic, traversed %d of %d requested."
2130 (if backward "first" "last")
2131 (outline-recent-depth)
2132 (- (abs start-arg) arg)
2133 (abs start-arg))))))
2134 ;;;_ > outline-backward-current-level (arg)
2135 (defun outline-backward-current-level (arg)
2136 "Inverse of `outline-forward-current-level'."
2137 (interactive "p")
2138 (if (interactive-p)
2139 (let ((current-prefix-arg (* -1 arg)))
2140 (call-interactively 'outline-forward-current-level))
2141 (outline-forward-current-level (* -1 arg))))
2143 ;;;_ #5 Alteration
2145 ;;;_ - Fundamental
2146 ;;;_ > outline-before-change-protect (beg end)
2147 (defun outline-before-change-protect (beg end)
2148 "Outline before-change hook, regulates changes to concealed text.
2150 Reveal concealed text that would be changed by current command, and
2151 offer user choice to commit or forego the change. Unchanged text is
2152 reconcealed. User has option to have changed text reconcealed.
2154 Undo commands are specially treated - the user is not prompted for
2155 choice, the undoes are always committed (based on presumption that the
2156 things being undone were already subject to this regulation routine),
2157 and undoes always leave the changed stuff exposed.
2159 Changes to concealed regions are ignored while file is being written.
2160 \(This is for the sake of functions that do change the file during
2161 writes, like crypt and zip modes.)
2163 Locally bound in outline buffers to `before-change-functions', which
2164 in emacs 19 is run before any change to the buffer.
2166 Any functions which set [`this-command' to `undo', or which set]
2167 `outline-override-protect' non-nil (as does, eg, outline-flag-chars)
2168 are exempt from this restriction."
2169 (if (and (outline-mode-p)
2170 ; outline-override-protect
2171 ; set by functions that know what
2172 ; they're doing, eg outline internals:
2173 (not outline-override-protect)
2174 (not outline-during-write-cue)
2175 (save-match-data ; Preserve operation position state.
2176 ; Both beginning and end chars must
2177 ; be exposed:
2178 (save-excursion (if (memq this-command '(newline open-line))
2179 ;; Compensate for stupid emacs {new,
2180 ;; open-}line display optimization:
2181 (setq beg (1+ beg)
2182 end (1+ end)))
2183 (goto-char beg)
2184 (or (outline-hidden-p)
2185 (and (not (= beg end))
2186 (goto-char end)
2187 (outline-hidden-p))))))
2188 (save-match-data
2189 (if (equal this-command 'undo)
2190 ;; Allow undo without inhibition.
2191 ;; - Undoing new and open-line hits stupid emacs redisplay
2192 ;; optimization (em 19 cmds.c, ~ line 200).
2193 ;; - Presumably, undoing what was properly protected when
2194 ;; done.
2195 ;; - Undo may be users' only recourse in protection faults.
2196 ;; So, expose what getting changed:
2197 (progn (message "Undo! - exposing concealed target...")
2198 (if (outline-hidden-p)
2199 (outline-show-children))
2200 (message "Undo!"))
2201 (let (response
2202 (rehide-completely (save-excursion (outline-goto-prefix)
2203 (outline-hidden-p)))
2204 rehide-place)
2206 (save-excursion
2207 (if (condition-case err
2208 ;; Condition case to catch keyboard quits during reads.
2209 (progn
2210 ; Give them a peek where
2211 (save-excursion
2212 (if (eolp) (setq rehide-place
2213 (outline-goto-prefix)))
2214 (outline-show-entry))
2215 ; Present the message, but...
2216 ; leave the cursor at the location
2217 ; until they respond:
2218 ; Then interpret the response:
2219 (while
2220 (progn
2221 (message (concat "Change inside concealed"
2222 " region - do it? "
2223 "(n or 'y'/'r'eclose)"))
2224 (setq response (read-char))
2225 (not
2226 (cond ((memq response '(?r ?R))
2227 (setq response 'reclose))
2228 ((memq response '(?y ?Y ? ))
2229 (setq response t))
2230 ((memq response '(?n ?N 127))
2231 (setq response nil)
2233 ((eq response ??)
2234 (message
2235 "`r' means `yes, then reclose'")
2236 nil)
2237 (t (message "Please answer y, n, or r")
2238 (sit-for 1)
2239 nil)))))
2240 response)
2241 ('quit nil))
2242 ; Continue:
2243 (if (eq response 'reclose)
2244 (save-excursion
2245 (if rehide-place (goto-char rehide-place))
2246 (if rehide-completely
2247 (outline-hide-current-entry-completely)
2248 (outline-hide-current-entry)))
2249 (if (outline-ascend-to-depth (1- (outline-recent-depth)))
2250 (outline-show-children)
2251 (outline-show-to-offshoot)))
2252 ; Prevent:
2253 (if rehide-completely
2254 (save-excursion
2255 (if rehide-place (goto-char rehide-place))
2256 (outline-hide-current-entry-completely))
2257 (outline-hide-current-entry))
2258 (error (concat
2259 "Change within concealed region prevented.")))))))
2260 ) ; if
2261 ) ; defun
2262 ;;;_ = outline-post-goto-bullet
2263 (defvar outline-post-goto-bullet nil
2264 "Outline internal var, for `outline-pre-command-business' hot-spot operation.
2266 When set, tells post-processing to reposition on topic bullet, and
2267 then unset it. Set by outline-pre-command-business when implementing
2268 hot-spot operation, where literal characters typed over a topic bullet
2269 are mapped to the command of the corresponding control-key on the
2270 outline-mode-map.")
2271 (make-variable-buffer-local 'outline-post-goto-bullet)
2272 ;;;_ > outline-post-command-business ()
2273 (defun outline-post-command-business ()
2274 "Outline post-command-hook function.
2276 - Null outline-override-protect, so it's not left open.
2278 - Implement (and clear) outline-post-goto-bullet, for hot-spot
2279 outline commands.
2281 - Massages buffer-undo-list so successive, standard character self-inserts are
2282 aggregated. This kludge compensates for lack of undo bunching when
2283 before-change-functions is used."
2285 ; Apply any external change func:
2286 (if (not (outline-mode-p)) ; In outline-mode.
2288 (setq outline-override-protect nil)
2289 (if outline-isearch-dynamic-expose
2290 (outline-isearch-rectification))
2291 (if outline-during-write-cue
2292 ;; Was used by outline-before-change-protect, done with it now:
2293 (setq outline-during-write-cue nil))
2294 ;; Undo bunching business:
2295 (if (and (listp buffer-undo-list) ; Undo history being kept.
2296 (equal this-command 'self-insert-command)
2297 (equal last-command 'self-insert-command))
2298 (let* ((prev-stuff (cdr buffer-undo-list))
2299 (before-prev-stuff (cdr (cdr prev-stuff)))
2300 cur-cell cur-from cur-to
2301 prev-cell prev-from prev-to)
2302 (if (and before-prev-stuff ; Goes back far enough to bother,
2303 (not (car prev-stuff)) ; and break before current,
2304 (not (car before-prev-stuff)) ; !and break before prev!
2305 (setq prev-cell (car (cdr prev-stuff))) ; contents now,
2306 (setq cur-cell (car buffer-undo-list)) ; contents prev.
2308 ;; cur contents denote a single char insertion:
2309 (numberp (setq cur-from (car cur-cell)))
2310 (numberp (setq cur-to (cdr cur-cell)))
2311 (= 1 (- cur-to cur-from))
2313 ;; prev contents denote fewer than aggregate-limit
2314 ;; insertions:
2315 (numberp (setq prev-from (car prev-cell)))
2316 (numberp (setq prev-to (cdr prev-cell)))
2317 ; Below threshold:
2318 (> outline-undo-aggregation (- prev-to prev-from)))
2319 (setq buffer-undo-list
2320 (cons (cons prev-from cur-to)
2321 (cdr (cdr (cdr buffer-undo-list))))))))
2322 ;; Implement -post-goto-bullet, if set: (must be after undo business)
2323 (if (and outline-post-goto-bullet
2324 (outline-current-bullet-pos))
2325 (progn (goto-char (outline-current-bullet-pos))
2326 (setq outline-post-goto-bullet nil)))
2328 ;;;_ > outline-pre-command-business ()
2329 (defun outline-pre-command-business ()
2330 "Outline pre-command-hook function for outline buffers.
2331 Implements special behavior when cursor is on bullet char.
2333 Self-insert characters are reinterpreted control-character references
2334 into the outline-mode-map. The outline-mode post-command hook will
2335 position a cursor that has moved as a result of such reinterpretation,
2336 on the destination topic's bullet, when the cursor wound up in the
2338 The upshot is that you can get easy, single (ie, unmodified) key
2339 outline maneuvering operations by positioning the cursor on the bullet
2340 char. You stay in this mode until you use some regular
2341 cursor-positioning command to relocate the cursor off of a bullet
2342 char."
2344 (if (not (outline-mode-p))
2345 ;; Shouldn't be invoked if not in allout outline-mode, but just in case:
2347 ;; Register isearch status:
2348 (if (and (boundp 'isearch-mode) isearch-mode)
2349 (setq outline-pre-was-isearching t)
2350 (setq outline-pre-was-isearching nil))
2351 ;; Hot-spot navigation provisions:
2352 (if (and (eq this-command 'self-insert-command)
2353 (eq (point)(outline-current-bullet-pos)))
2354 (let* ((this-key-num (cond
2355 ((numberp last-command-char)
2356 last-command-char)
2357 ;; XXX Only xemacs has characterp.
2358 ((and (fboundp 'characterp)
2359 (characterp last-command-char))
2360 (char-to-int last-command-char))
2361 (t 0)))
2362 mapped-binding)
2363 (if (zerop this-key-num)
2365 ; Map upper-register literals
2366 ; to lower register:
2367 (if (<= 96 this-key-num)
2368 (setq this-key-num (- this-key-num 32)))
2369 ; Check if we have a literal:
2370 (if (and (<= 64 this-key-num)
2371 (>= 96 this-key-num))
2372 (setq mapped-binding
2373 (lookup-key 'outline-mode-map
2374 (concat outline-command-prefix
2375 (char-to-string (- this-key-num
2376 64))))))
2377 (if mapped-binding
2378 (setq outline-post-goto-bullet t
2379 this-command mapped-binding)))))))
2380 ;;;_ > outline-find-file-hook ()
2381 (defun outline-find-file-hook ()
2382 "Activate outline-mode when `outline-auto-activation' & `outline-layout' are non-nil.
2384 See `outline-init' for setup instructions."
2385 (if (and outline-auto-activation
2386 (not (outline-mode-p))
2387 outline-layout)
2388 (outline-mode t)))
2389 ;;;_ > outline-isearch-rectification
2390 (defun outline-isearch-rectification ()
2391 "Rectify outline exposure before, during, or after isearch.
2393 Called as part of outline-post-command-business."
2395 (let ((isearching (and (boundp 'isearch-mode) isearch-mode)))
2396 (cond ((and isearching (not outline-pre-was-isearching))
2397 (outline-isearch-expose 'start))
2398 ((and isearching outline-pre-was-isearching)
2399 (outline-isearch-expose 'continue))
2400 ((and (not isearching) outline-pre-was-isearching)
2401 (outline-isearch-expose 'final))
2402 ;; Not and wasn't isearching:
2403 (t (setq outline-isearch-prior-pos nil)
2404 (setq outline-isearch-did-quit nil)))))
2405 ;;;_ = outline-isearch-was-font-lock
2406 (defvar outline-isearch-was-font-lock
2407 (and (boundp 'font-lock-mode) font-lock-mode))
2409 ;;;_ > outline-flag-region (from to flag)
2410 (defmacro outline-flag-region (from to flag)
2411 "Hide or show lines from FROM to TO, via emacs selective-display FLAG char.
2412 Ie, text following flag C-m \(carriage-return) is hidden until the
2413 next C-j (newline) char.
2415 Returns the endpoint of the region."
2416 `(let ((buffer-read-only nil)
2417 (outline-override-protect t))
2418 (subst-char-in-region ,from ,to
2419 (if (= ,flag ?\n) ?\r ?\n)
2420 ,flag t)))
2422 ;;;_ > outline-isearch-expose (mode)
2423 (defun outline-isearch-expose (mode)
2424 "Mode is either 'clear, 'start, 'continue, or 'final."
2425 ;; outline-isearch-prior-pos encodes exposure status of prior pos:
2426 ;; (pos was-vis header-pos end-pos)
2427 ;; pos - point of concern
2428 ;; was-vis - t, else 'topic if entire topic was exposed, 'entry otherwise
2429 ;; Do reclosure or prior pos, as necessary:
2430 (if (eq mode 'start)
2431 (setq outline-isearch-was-font-lock (and (boundp 'font-lock-mode)
2432 font-lock-mode)
2433 font-lock-mode nil)
2434 (if (eq mode 'final)
2435 (setq font-lock-mode outline-isearch-was-font-lock))
2436 (if (and outline-isearch-prior-pos
2437 (listp outline-isearch-prior-pos))
2438 ;; Conceal prior peek:
2439 (outline-flag-region (car (cdr outline-isearch-prior-pos))
2440 (car (cdr (cdr outline-isearch-prior-pos)))
2441 ?\r)))
2442 (if (outline-visible-p)
2443 (setq outline-isearch-prior-pos nil)
2444 (if (not (eq mode 'final))
2445 (setq outline-isearch-prior-pos (cons (point) (outline-show-entry)))
2446 (if outline-isearch-did-quit
2448 (setq outline-isearch-prior-pos nil)
2449 (outline-show-children))))
2450 (setq outline-isearch-did-quit nil))
2451 ;;;_ > outline-enwrap-isearch ()
2452 (defun outline-enwrap-isearch ()
2453 "Impose outline-mode isearch-abort wrapper for dynamic exposure in isearch.
2455 The function checks to ensure that the rebinding is done only once."
2457 (add-hook 'isearch-mode-end-hook 'outline-isearch-rectification)
2458 (if (fboundp 'outline-real-isearch-abort)
2461 ; Ensure load of isearch-mode:
2462 (if (or (and (fboundp 'isearch-mode)
2463 (fboundp 'isearch-abort))
2464 (condition-case error
2465 (load-library "isearch-mode")
2466 ('file-error (message
2467 "Skipping isearch-mode provisions - %s '%s'"
2468 (car (cdr error))
2469 (car (cdr (cdr error))))
2470 (sit-for 1)
2471 ;; Inhibit subsequent tries and return nil:
2472 (setq outline-isearch-dynamic-expose nil))))
2473 ;; Isearch-mode loaded, encapsulate specific entry points for
2474 ;; outline dynamic-exposure business:
2475 (progn
2476 ;; stash crucial isearch-mode funcs under known, private
2477 ;; names, then register wrapper functions under the old
2478 ;; names, in their stead:
2479 (fset 'outline-real-isearch-abort (symbol-function 'isearch-abort))
2480 (fset 'isearch-abort 'outline-isearch-abort)))))
2481 ;;;_ > outline-isearch-abort ()
2482 (defun outline-isearch-abort ()
2483 "Wrapper for outline-real-isearch-abort \(which see), to register
2484 actual quits."
2485 (interactive)
2486 (setq outline-isearch-did-quit nil)
2487 (condition-case what
2488 (outline-real-isearch-abort)
2489 ('quit (setq outline-isearch-did-quit t)
2490 (signal 'quit nil))))
2492 ;;; Prevent unnecessary font-lock while isearching!
2493 (defvar isearch-was-font-locking nil)
2494 (defun isearch-inhibit-font-lock ()
2495 "Inhibit font-lock while isearching - for use on isearch-mode-hook."
2496 (if (and (outline-mode-p) (boundp 'font-lock-mode) font-lock-mode)
2497 (setq isearch-was-font-locking t
2498 font-lock-mode nil)))
2499 (add-hook 'isearch-mode-hook 'isearch-inhibit-font-lock)
2500 (defun isearch-reenable-font-lock ()
2501 "Reenable font-lock after isearching - for use on isearch-mode-end-hook."
2502 (if (and (boundp 'font-lock-mode) font-lock-mode)
2503 (if (and (outline-mode-p) isearch-was-font-locking)
2504 (setq isearch-was-font-locking nil
2505 font-lock-mode t))))
2506 (add-hook 'isearch-mode-end-hook 'isearch-reenable-font-lock)
2508 ;;;_ - Topic Format Assessment
2509 ;;;_ > outline-solicit-alternate-bullet (depth &optional current-bullet)
2510 (defun outline-solicit-alternate-bullet (depth &optional current-bullet)
2512 "Prompt for and return a bullet char as an alternative to the current one.
2514 Offer one suitable for current depth DEPTH as default."
2516 (let* ((default-bullet (or (and (stringp current-bullet) current-bullet)
2517 (outline-bullet-for-depth depth)))
2518 (sans-escapes (regexp-sans-escapes outline-bullets-string))
2519 choice)
2520 (save-excursion
2521 (goto-char (outline-current-bullet-pos))
2522 (setq choice (solicit-char-in-string
2523 (format "Select bullet: %s ('%s' default): "
2524 sans-escapes
2525 default-bullet)
2526 sans-escapes
2527 t)))
2528 (message "")
2529 (if (string= choice "") default-bullet choice))
2531 ;;;_ > outline-distinctive-bullet (bullet)
2532 (defun outline-distinctive-bullet (bullet)
2533 "True if bullet is one of those on outline-distinctive-bullets-string."
2534 (string-match (regexp-quote bullet) outline-distinctive-bullets-string))
2535 ;;;_ > outline-numbered-type-prefix (&optional prefix)
2536 (defun outline-numbered-type-prefix (&optional prefix)
2537 "True if current header prefix bullet is numbered bullet."
2538 (and outline-numbered-bullet
2539 (string= outline-numbered-bullet
2540 (if prefix
2541 (outline-get-prefix-bullet prefix)
2542 (outline-get-bullet)))))
2543 ;;;_ > outline-bullet-for-depth (&optional depth)
2544 (defun outline-bullet-for-depth (&optional depth)
2545 "Return outline topic bullet suited to optional DEPTH, or current depth."
2546 ;; Find bullet in plain-bullets-string modulo DEPTH.
2547 (if outline-stylish-prefixes
2548 (char-to-string (aref outline-plain-bullets-string
2549 (% (max 0 (- depth 2))
2550 outline-plain-bullets-string-len)))
2551 outline-primary-bullet)
2554 ;;;_ - Topic Production
2555 ;;;_ > outline-make-topic-prefix (&optional prior-bullet
2556 (defun outline-make-topic-prefix (&optional prior-bullet
2558 depth
2559 solicit
2560 number-control
2561 index)
2562 ;; Depth null means use current depth, non-null means we're either
2563 ;; opening a new topic after current topic, lower or higher, or we're
2564 ;; changing level of current topic.
2565 ;; Solicit dominates specified bullet-char.
2566 ;;;_ . Doc string:
2567 "Generate a topic prefix suitable for optional arg DEPTH, or current depth.
2569 All the arguments are optional.
2571 PRIOR-BULLET indicates the bullet of the prefix being changed, or
2572 nil if none. This bullet may be preserved (other options
2573 notwithstanding) if it is on the outline-distinctive-bullets-string,
2574 for instance.
2576 Second arg NEW indicates that a new topic is being opened after the
2577 topic at point, if non-nil. Default bullet for new topics, eg, may
2578 be set (contingent to other args) to numbered bullets if previous
2579 sibling is one. The implication otherwise is that the current topic
2580 is being adjusted - shifted or rebulleted - and we don't consider
2581 bullet or previous sibling.
2583 Third arg DEPTH forces the topic prefix to that depth, regardless of
2584 the current topics' depth.
2586 If SOLICIT is non-nil, then the choice of bullet is solicited from
2587 user. If it's a character, then that character is offered as the
2588 default, otherwise the one suited to the context \(according to
2589 distinction or depth) is offered. \(This overrides other options,
2590 including, eg, a distinctive PRIOR-BULLET.) If non-nil, then the
2591 context-specific bullet is used.
2593 Fifth arg, NUMBER-CONTROL, matters only if `outline-numbered-bullet'
2594 is non-nil *and* soliciting was not explicitly invoked. Then
2595 NUMBER-CONTROL non-nil forces prefix to either numbered or
2596 denumbered format, depending on the value of the sixth arg, INDEX.
2598 \(Note that NUMBER-CONTROL does *not* apply to level 1 topics. Sorry...)
2600 If NUMBER-CONTROL is non-nil and sixth arg INDEX is non-nil then
2601 the prefix of the topic is forced to be numbered. Non-nil
2602 NUMBER-CONTROL and nil INDEX forces non-numbered format on the
2603 bullet. Non-nil NUMBER-CONTROL and non-nil, non-number INDEX means
2604 that the index for the numbered prefix will be derived, by counting
2605 siblings back to start of level. If INDEX is a number, then that
2606 number is used as the index for the numbered prefix (allowing, eg,
2607 sequential renumbering to not require this function counting back the
2608 index for each successive sibling)."
2609 ;;;_ . Code:
2610 ;; The options are ordered in likely frequence of use, most common
2611 ;; highest, least lowest. Ie, more likely to be doing prefix
2612 ;; adjustments than soliciting, and yet more than numbering.
2613 ;; Current prefix is least dominant, but most likely to be commonly
2614 ;; specified...
2616 (let* (body
2617 numbering
2618 denumbering
2619 (depth (or depth (outline-depth)))
2620 (header-lead outline-header-prefix)
2621 (bullet-char
2623 ;; Getting value for bullet char is practically the whole job:
2625 (cond
2626 ; Simplest situation - level 1:
2627 ((<= depth 1) (setq header-lead "") outline-primary-bullet)
2628 ; Simple, too: all asterisks:
2629 (outline-old-style-prefixes
2630 ;; Cheat - make body the whole thing, null out header-lead and
2631 ;; bullet-char:
2632 (setq body (make-string depth
2633 (string-to-char outline-primary-bullet)))
2634 (setq header-lead "")
2637 ;; (Neither level 1 nor old-style, so we're space padding.
2638 ;; Sneak it in the condition of the next case, whatever it is.)
2640 ;; Solicitation overrides numbering and other cases:
2641 ((progn (setq body (make-string (- depth 2) ?\ ))
2642 ;; The actual condition:
2643 solicit)
2644 (let* ((got (outline-solicit-alternate-bullet depth solicit)))
2645 ;; Gotta check whether we're numbering and got a numbered bullet:
2646 (setq numbering (and outline-numbered-bullet
2647 (not (and number-control (not index)))
2648 (string= got outline-numbered-bullet)))
2649 ;; Now return what we got, regardless:
2650 got))
2652 ;; Numbering invoked through args:
2653 ((and outline-numbered-bullet number-control)
2654 (if (setq numbering (not (setq denumbering (not index))))
2655 outline-numbered-bullet
2656 (if (and prior-bullet
2657 (not (string= outline-numbered-bullet
2658 prior-bullet)))
2659 prior-bullet
2660 (outline-bullet-for-depth depth))))
2662 ;;; Neither soliciting nor controlled numbering ;;;
2663 ;;; (may be controlled denumbering, tho) ;;;
2665 ;; Check wrt previous sibling:
2666 ((and new ; only check for new prefixes
2667 (<= depth (outline-depth))
2668 outline-numbered-bullet ; ... & numbering enabled
2669 (not denumbering)
2670 (let ((sibling-bullet
2671 (save-excursion
2672 ;; Locate correct sibling:
2673 (or (>= depth (outline-depth))
2674 (outline-ascend-to-depth depth))
2675 (outline-get-bullet))))
2676 (if (and sibling-bullet
2677 (string= outline-numbered-bullet sibling-bullet))
2678 (setq numbering sibling-bullet)))))
2680 ;; Distinctive prior bullet?
2681 ((and prior-bullet
2682 (outline-distinctive-bullet prior-bullet)
2683 ;; Either non-numbered:
2684 (or (not (and outline-numbered-bullet
2685 (string= prior-bullet outline-numbered-bullet)))
2686 ;; or numbered, and not denumbering:
2687 (setq numbering (not denumbering)))
2688 ;; Here 'tis:
2689 prior-bullet))
2691 ;; Else, standard bullet per depth:
2692 ((outline-bullet-for-depth depth)))))
2694 (concat header-lead
2695 body
2696 bullet-char
2697 (if numbering
2698 (format "%d" (cond ((and index (numberp index)) index)
2699 (new (1+ (outline-sibling-index depth)))
2700 ((outline-sibling-index))))))
2703 ;;;_ > outline-open-topic (relative-depth &optional before use_sib_bullet)
2704 (defun outline-open-topic (relative-depth &optional before use_sib_bullet)
2705 "Open a new topic at depth DEPTH.
2707 New topic is situated after current one, unless optional flag BEFORE
2708 is non-nil, or unless current line is complete empty (not even
2709 whitespace), in which case open is done on current line.
2711 If USE_SIB_BULLET is true, use the bullet of the prior sibling.
2713 Nuances:
2715 - Creation of new topics is with respect to the visible topic
2716 containing the cursor, regardless of intervening concealed ones.
2718 - New headers are generally created after/before the body of a
2719 topic. However, they are created right at cursor location if the
2720 cursor is on a blank line, even if that breaks the current topic
2721 body. This is intentional, to provide a simple means for
2722 deliberately dividing topic bodies.
2724 - Double spacing of topic lists is preserved. Also, the first
2725 level two topic is created double-spaced (and so would be
2726 subsequent siblings, if that's left intact). Otherwise,
2727 single-spacing is used.
2729 - Creation of sibling or nested topics is with respect to the topic
2730 you're starting from, even when creating backwards. This way you
2731 can easily create a sibling in front of the current topic without
2732 having to go to its preceding sibling, and then open forward
2733 from there."
2735 (let* ((depth (+ (outline-current-depth) relative-depth))
2736 (opening-on-blank (if (looking-at "^\$")
2737 (not (setq before nil))))
2738 opening-numbered ; Will get while computing ref-topic, below
2739 ref-depth ; Will get while computing ref-topic, below
2740 ref-bullet ; Will get while computing ref-topic, next
2741 (ref-topic (save-excursion
2742 (cond ((< relative-depth 0)
2743 (outline-ascend-to-depth depth))
2744 ((>= relative-depth 1) nil)
2745 (t (outline-back-to-current-heading)))
2746 (setq ref-depth (outline-recent-depth))
2747 (setq ref-bullet
2748 (if (> outline-recent-prefix-end 1)
2749 (outline-recent-bullet)
2750 ""))
2751 (setq opening-numbered
2752 (save-excursion
2753 (and outline-numbered-bullet
2754 (or (<= relative-depth 0)
2755 (outline-descend-to-depth depth))
2756 (if (outline-numbered-type-prefix)
2757 outline-numbered-bullet))))
2758 (point)))
2759 dbl-space
2760 doing-beginning)
2762 (if (not opening-on-blank)
2763 ; Positioning and vertical
2764 ; padding - only if not
2765 ; opening-on-blank:
2766 (progn
2767 (goto-char ref-topic)
2768 (setq dbl-space ; Determine double space action:
2769 (or (and (<= relative-depth 0) ; not descending;
2770 (save-excursion
2771 ;; at b-o-b or preceded by a blank line?
2772 (or (> 0 (forward-line -1))
2773 (looking-at "^\\s-*$")
2774 (bobp)))
2775 (save-excursion
2776 ;; succeeded by a blank line?
2777 (outline-end-of-current-subtree)
2778 (bolp)))
2779 (and (= ref-depth 1)
2780 (or before
2781 (= depth 1)
2782 (save-excursion
2783 ;; Don't already have following
2784 ;; vertical padding:
2785 (not (outline-pre-next-preface)))))))
2787 ; Position to prior heading,
2788 ; if inserting backwards, and
2789 ; not going outwards:
2790 (if (and before (>= relative-depth 0))
2791 (progn (outline-back-to-current-heading)
2792 (setq doing-beginning (bobp))
2793 (if (not (bobp))
2794 (outline-previous-heading)))
2795 (if (and before (bobp))
2796 (outline-unprotected (open-line 1))))
2798 (if (<= relative-depth 0)
2799 ;; Not going inwards, don't snug up:
2800 (if doing-beginning
2801 (outline-unprotected (open-line (if dbl-space 2 1)))
2802 (if before
2803 (progn (end-of-line)
2804 (outline-pre-next-preface)
2805 (while (= ?\r (following-char))
2806 (forward-char 1))
2807 (if (not (looking-at "^$"))
2808 (outline-unprotected (open-line 1))))
2809 (outline-end-of-current-subtree)))
2810 ;; Going inwards - double-space if first offspring is,
2811 ;; otherwise snug up.
2812 (end-of-line) ; So we skip any concealed progeny.
2813 (outline-pre-next-preface)
2814 (if (bolp)
2815 ;; Blank lines between current header body and next
2816 ;; header - get to last substantive (non-white-space)
2817 ;; line in body:
2818 (re-search-backward "[^ \t\n]" nil t))
2819 (if (save-excursion
2820 (outline-next-heading)
2821 (if (> (outline-recent-depth) ref-depth)
2822 ;; This is an offspring.
2823 (progn (forward-line -1)
2824 (looking-at "^\\s-*$"))))
2825 (progn (forward-line 1)
2826 (outline-unprotected (open-line 1))))
2827 (end-of-line))
2828 ;;(if doing-beginning (goto-char doing-beginning))
2829 (if (not (bobp))
2830 (progn (if (and (not (> depth ref-depth))
2831 (not before))
2832 (outline-unprotected (open-line 1))
2833 (if (> depth ref-depth)
2834 (outline-unprotected (newline 1))
2835 (if dbl-space
2836 (outline-unprotected (open-line 1))
2837 (if (not before)
2838 (outline-unprotected (newline 1))))))
2839 (if dbl-space
2840 (outline-unprotected (newline 1)))
2841 (if (and (not (eobp))
2842 (not (bolp)))
2843 (forward-char 1))))
2845 (insert-string (concat (outline-make-topic-prefix opening-numbered
2847 depth)
2848 " "))
2850 ;;(if doing-beginning (save-excursion (newline (if dbl-space 2 1))))
2853 (outline-rebullet-heading (and use_sib_bullet ref-bullet);;; solicit
2854 depth ;;; depth
2855 nil ;;; number-control
2856 nil ;;; index
2857 t) (end-of-line)
2860 ;;;_ . open-topic contingencies
2861 ;;;_ ; base topic - one from which open was issued
2862 ;;;_ , beginning char
2863 ;;;_ , amount of space before will be used, unless opening in place
2864 ;;;_ , end char will be used, unless opening before (and it still may)
2865 ;;;_ ; absolute depth of new topic
2866 ;;;_ ! insert in place - overrides most stuff
2867 ;;;_ ; relative depth of new re base
2868 ;;;_ ; before or after base topic
2869 ;;;_ ; spacing around topic, if any, prior to new topic and at same depth
2870 ;;;_ ; buffer boundaries - special provisions for beginning and end ob
2871 ;;;_ ; level 1 topics have special provisions also - double space.
2872 ;;;_ ; location of new topic
2873 ;;;_ > outline-open-subtopic (arg)
2874 (defun outline-open-subtopic (arg)
2875 "Open new topic header at deeper level than the current one.
2877 Negative universal arg means to open deeper, but place the new topic
2878 prior to the current one."
2879 (interactive "p")
2880 (outline-open-topic 1 (> 0 arg)))
2881 ;;;_ > outline-open-sibtopic (arg)
2882 (defun outline-open-sibtopic (arg)
2883 "Open new topic header at same level as the current one.
2885 Positive universal arg means to use the bullet of the prior sibling.
2887 Negative universal arg means to place the new topic prior to the current
2888 one."
2889 (interactive "p")
2890 (outline-open-topic 0 (> 0 arg) (< 1 arg)))
2891 ;;;_ > outline-open-supertopic (arg)
2892 (defun outline-open-supertopic (arg)
2893 "Open new topic header at shallower level than the current one.
2895 Negative universal arg means to open shallower, but place the new
2896 topic prior to the current one."
2898 (interactive "p")
2899 (outline-open-topic -1 (> 0 arg)))
2901 ;;;_ - Outline Alteration
2902 ;;;_ : Topic Modification
2903 ;;;_ = outline-former-auto-filler
2904 (defvar outline-former-auto-filler nil
2905 "Name of modal fill function being wrapped by outline-auto-fill.")
2906 ;;;_ > outline-auto-fill ()
2907 (defun outline-auto-fill ()
2908 "Outline-mode autofill function.
2910 Maintains outline hanging topic indentation if
2911 `outline-use-hanging-indents' is set."
2912 (let ((fill-prefix (if outline-use-hanging-indents
2913 ;; Check for topic header indentation:
2914 (save-excursion
2915 (beginning-of-line)
2916 (if (looking-at outline-regexp)
2917 ;; ... construct indentation to account for
2918 ;; length of topic prefix:
2919 (make-string (progn (outline-end-of-prefix)
2920 (current-column))
2921 ?\ ))))))
2922 (if (or outline-former-auto-filler outline-use-hanging-indents)
2923 (do-auto-fill))))
2924 ;;;_ > outline-reindent-body (old-depth new-depth &optional number)
2925 (defun outline-reindent-body (old-depth new-depth &optional number)
2926 "Reindent body lines which were indented at old-depth to new-depth.
2928 Optional arg NUMBER indicates numbering is being added, and it must
2929 be accommodated.
2931 Note that refill of indented paragraphs is not done."
2933 (save-excursion
2934 (outline-end-of-prefix)
2935 (let* ((new-margin (current-column))
2936 excess old-indent-begin old-indent-end
2937 curr-ind
2938 ;; We want the column where the header-prefix text started
2939 ;; *before* the prefix was changed, so we infer it relative
2940 ;; to the new margin and the shift in depth:
2941 (old-margin (+ old-depth (- new-margin new-depth))))
2943 ;; Process lines up to (but excluding) next topic header:
2944 (outline-unprotected
2945 (save-match-data
2946 (while
2947 (and (re-search-forward "[\n\r]\\(\\s-*\\)"
2950 ;; Register the indent data, before we reset the
2951 ;; match data with a subsequent `looking-at':
2952 (setq old-indent-begin (match-beginning 1)
2953 old-indent-end (match-end 1))
2954 (not (looking-at outline-regexp)))
2955 (if (> 0 (setq excess (- (current-column)
2956 old-margin)))
2957 ;; Text starts left of old margin - don't adjust:
2959 ;; Text was hanging at or right of old left margin -
2960 ;; reindent it, preserving its existing indentation
2961 ;; beyond the old margin:
2962 (delete-region old-indent-begin old-indent-end)
2963 (indent-to (+ new-margin excess)))))))))
2964 ;;;_ > outline-rebullet-current-heading (arg)
2965 (defun outline-rebullet-current-heading (arg)
2966 "Solicit new bullet for current visible heading."
2967 (interactive "p")
2968 (let ((initial-col (current-column))
2969 (on-bullet (eq (point)(outline-current-bullet-pos)))
2970 (backwards (if (< arg 0)
2971 (setq arg (* arg -1)))))
2972 (while (> arg 0)
2973 (save-excursion (outline-back-to-current-heading)
2974 (outline-end-of-prefix)
2975 (outline-rebullet-heading t ;;; solicit
2976 nil ;;; depth
2977 nil ;;; number-control
2978 nil ;;; index
2979 t)) ;;; do-successors
2980 (setq arg (1- arg))
2981 (if (<= arg 0)
2983 (setq initial-col nil) ; Override positioning back to init col
2984 (if (not backwards)
2985 (outline-next-visible-heading 1)
2986 (outline-goto-prefix)
2987 (outline-next-visible-heading -1))))
2988 (message "Done.")
2989 (cond (on-bullet (goto-char (outline-current-bullet-pos)))
2990 (initial-col (move-to-column initial-col)))))
2991 ;;;_ > outline-rebullet-heading (&optional solicit ...)
2992 (defun outline-rebullet-heading (&optional solicit
2993 new-depth
2994 number-control
2995 index
2996 do-successors)
2998 "Adjust bullet of current topic prefix.
3000 All args are optional.
3002 If SOLICIT is non-nil, then the choice of bullet is solicited from
3003 user. If it's a character, then that character is offered as the
3004 default, otherwise the one suited to the context \(according to
3005 distinction or depth) is offered. If non-nil, then the
3006 context-specific bullet is just used.
3008 Second arg DEPTH forces the topic prefix to that depth, regardless
3009 of the topic's current depth.
3011 Third arg NUMBER-CONTROL can force the prefix to or away from
3012 numbered form. It has effect only if `outline-numbered-bullet' is
3013 non-nil and soliciting was not explicitly invoked (via first arg).
3014 Its effect, numbering or denumbering, then depends on the setting
3015 of the forth arg, INDEX.
3017 If NUMBER-CONTROL is non-nil and forth arg INDEX is nil, then the
3018 prefix of the topic is forced to be non-numbered. Null index and
3019 non-nil NUMBER-CONTROL forces denumbering. Non-nil INDEX (and
3020 non-nil NUMBER-CONTROL) forces a numbered-prefix form. If non-nil
3021 INDEX is a number, then that number is used for the numbered
3022 prefix. Non-nil and non-number means that the index for the
3023 numbered prefix will be derived by outline-make-topic-prefix.
3025 Fifth arg DO-SUCCESSORS t means re-resolve count on succeeding
3026 siblings.
3028 Cf vars `outline-stylish-prefixes', `outline-old-style-prefixes',
3029 and `outline-numbered-bullet', which all affect the behavior of
3030 this function."
3032 (let* ((current-depth (outline-depth))
3033 (new-depth (or new-depth current-depth))
3034 (mb outline-recent-prefix-beginning)
3035 (me outline-recent-prefix-end)
3036 (current-bullet (buffer-substring (- me 1) me))
3037 (new-prefix (outline-make-topic-prefix current-bullet
3039 new-depth
3040 solicit
3041 number-control
3042 index)))
3044 ;; Is new one is identical to old?
3045 (if (and (= current-depth new-depth)
3046 (string= current-bullet
3047 (substring new-prefix (1- (length new-prefix)))))
3048 ;; Nothing to do:
3051 ;; New prefix probably different from old:
3052 ; get rid of old one:
3053 (outline-unprotected (delete-region mb me))
3054 (goto-char mb)
3055 ; Dispense with number if
3056 ; numbered-bullet prefix:
3057 (if (and outline-numbered-bullet
3058 (string= outline-numbered-bullet current-bullet)
3059 (looking-at "[0-9]+"))
3060 (outline-unprotected
3061 (delete-region (match-beginning 0)(match-end 0))))
3063 ; Put in new prefix:
3064 (outline-unprotected (insert-string new-prefix))
3066 ;; Reindent the body if elected and margin changed:
3067 (if (and outline-reindent-bodies
3068 (not (= new-depth current-depth)))
3069 (outline-reindent-body current-depth new-depth))
3071 ;; Recursively rectify successive siblings of orig topic if
3072 ;; caller elected for it:
3073 (if do-successors
3074 (save-excursion
3075 (while (outline-next-sibling new-depth nil)
3076 (setq index
3077 (cond ((numberp index) (1+ index))
3078 ((not number-control) (outline-sibling-index))))
3079 (if (outline-numbered-type-prefix)
3080 (outline-rebullet-heading nil ;;; solicit
3081 new-depth ;;; new-depth
3082 number-control;;; number-control
3083 index ;;; index
3084 nil))))) ;;;(dont!)do-successors
3085 ) ; (if (and (= current-depth new-depth)...))
3086 ) ; let* ((current-depth (outline-depth))...)
3087 ) ; defun
3088 ;;;_ > outline-rebullet-topic (arg)
3089 (defun outline-rebullet-topic (arg)
3090 "Like outline-rebullet-topic-grunt, but start from topic visible at point.
3092 Descends into invisible as well as visible topics, however.
3094 With repeat count, shift topic depth by that amount."
3095 (interactive "P")
3096 (let ((start-col (current-column))
3097 (was-eol (eolp)))
3098 (save-excursion
3099 ;; Normalize arg:
3100 (cond ((null arg) (setq arg 0))
3101 ((listp arg) (setq arg (car arg))))
3102 ;; Fill the user in, in case we're shifting a big topic:
3103 (if (not (zerop arg)) (message "Shifting..."))
3104 (outline-back-to-current-heading)
3105 (if (<= (+ (outline-recent-depth) arg) 0)
3106 (error "Attempt to shift topic below level 1"))
3107 (outline-rebullet-topic-grunt arg)
3108 (if (not (zerop arg)) (message "Shifting... done.")))
3109 (move-to-column (max 0 (+ start-col arg)))))
3110 ;;;_ > outline-rebullet-topic-grunt (&optional relative-depth ...)
3111 (defun outline-rebullet-topic-grunt (&optional relative-depth
3112 starting-depth
3113 starting-point
3114 index
3115 do-successors)
3117 "Rebullet the topic at point, visible or invisible, and all
3118 contained subtopics. See outline-rebullet-heading for rebulleting
3119 behavior.
3121 All arguments are optional.
3123 First arg RELATIVE-DEPTH means to shift the depth of the entire
3124 topic that amount.
3126 The rest of the args are for internal recursive use by the function
3127 itself. The are STARTING-DEPTH, STARTING-POINT, and INDEX."
3129 (let* ((relative-depth (or relative-depth 0))
3130 (new-depth (outline-depth))
3131 (starting-depth (or starting-depth new-depth))
3132 (on-starting-call (null starting-point))
3133 (index (or index
3134 ;; Leave index null on starting call, so rebullet-heading
3135 ;; calculates it at what might be new depth:
3136 (and (or (zerop relative-depth)
3137 (not on-starting-call))
3138 (outline-sibling-index))))
3139 (moving-outwards (< 0 relative-depth))
3140 (starting-point (or starting-point (point))))
3142 ;; Sanity check for excessive promotion done only on starting call:
3143 (and on-starting-call
3144 moving-outwards
3145 (> 0 (+ starting-depth relative-depth))
3146 (error "Attempt to shift topic out beyond level 1.")) ;;; ====>
3148 (cond ((= starting-depth new-depth)
3149 ;; We're at depth to work on this one:
3150 (outline-rebullet-heading nil ;;; solicit
3151 (+ starting-depth ;;; starting-depth
3152 relative-depth)
3153 nil ;;; number
3154 index ;;; index
3155 ;; Every contained topic will get hit,
3156 ;; and we have to get to outside ones
3157 ;; deliberately:
3158 nil) ;;; do-successors
3159 ;; ... and work on subsequent ones which are at greater depth:
3160 (setq index 0)
3161 (outline-next-heading)
3162 (while (and (not (eobp))
3163 (< starting-depth (outline-recent-depth)))
3164 (setq index (1+ index))
3165 (outline-rebullet-topic-grunt relative-depth ;;; relative-depth
3166 (1+ starting-depth);;;starting-depth
3167 starting-point ;;; starting-point
3168 index))) ;;; index
3170 ((< starting-depth new-depth)
3171 ;; Rare case - subtopic more than one level deeper than parent.
3172 ;; Treat this one at an even deeper level:
3173 (outline-rebullet-topic-grunt relative-depth ;;; relative-depth
3174 new-depth ;;; starting-depth
3175 starting-point ;;; starting-point
3176 index))) ;;; index
3178 (if on-starting-call
3179 (progn
3180 ;; Rectify numbering of former siblings of the adjusted topic,
3181 ;; if topic has changed depth
3182 (if (or do-successors
3183 (and (not (zerop relative-depth))
3184 (or (= (outline-recent-depth) starting-depth)
3185 (= (outline-recent-depth) (+ starting-depth
3186 relative-depth)))))
3187 (outline-rebullet-heading nil nil nil nil t))
3188 ;; Now rectify numbering of new siblings of the adjusted topic,
3189 ;; if depth has been changed:
3190 (progn (goto-char starting-point)
3191 (if (not (zerop relative-depth))
3192 (outline-rebullet-heading nil nil nil nil t)))))
3195 ;;;_ > outline-renumber-to-depth (&optional depth)
3196 (defun outline-renumber-to-depth (&optional depth)
3197 "Renumber siblings at current depth.
3199 Affects superior topics if optional arg DEPTH is less than current depth.
3201 Returns final depth."
3203 ;; Proceed by level, processing subsequent siblings on each,
3204 ;; ascending until we get shallower than the start depth:
3206 (let ((ascender (outline-depth))
3207 was-eobp)
3208 (while (and (not (eobp))
3209 (outline-depth)
3210 (>= (outline-recent-depth) depth)
3211 (>= ascender depth))
3212 ; Skip over all topics at
3213 ; lesser depths, which can not
3214 ; have been disturbed:
3215 (while (and (not (setq was-eobp (eobp)))
3216 (> (outline-recent-depth) ascender))
3217 (outline-next-heading))
3218 ; Prime ascender for ascension:
3219 (setq ascender (1- (outline-recent-depth)))
3220 (if (>= (outline-recent-depth) depth)
3221 (outline-rebullet-heading nil ;;; solicit
3222 nil ;;; depth
3223 nil ;;; number-control
3224 nil ;;; index
3225 t)) ;;; do-successors
3226 (if was-eobp (goto-char (point-max)))))
3227 (outline-recent-depth))
3228 ;;;_ > outline-number-siblings (&optional denumber)
3229 (defun outline-number-siblings (&optional denumber)
3230 "Assign numbered topic prefix to this topic and its siblings.
3232 With universal argument, denumber - assign default bullet to this
3233 topic and its siblings.
3235 With repeated universal argument (`^U^U'), solicit bullet for each
3236 rebulleting each topic at this level."
3238 (interactive "P")
3240 (save-excursion
3241 (outline-back-to-current-heading)
3242 (outline-beginning-of-level)
3243 (let ((depth (outline-recent-depth))
3244 (index (if (not denumber) 1))
3245 (use-bullet (equal '(16) denumber))
3246 (more t))
3247 (while more
3248 (outline-rebullet-heading use-bullet ;;; solicit
3249 depth ;;; depth
3250 t ;;; number-control
3251 index ;;; index
3252 nil) ;;; do-successors
3253 (if index (setq index (1+ index)))
3254 (setq more (outline-next-sibling depth nil))))))
3255 ;;;_ > outline-shift-in (arg)
3256 (defun outline-shift-in (arg)
3257 "Increase depth of current heading and any topics collapsed within it."
3258 (interactive "p")
3259 (outline-rebullet-topic arg))
3260 ;;;_ > outline-shift-out (arg)
3261 (defun outline-shift-out (arg)
3262 "Decrease depth of current heading and any topics collapsed within it."
3263 (interactive "p")
3264 (outline-rebullet-topic (* arg -1)))
3265 ;;;_ : Surgery (kill-ring) functions with special provisions for outlines:
3266 ;;;_ > outline-kill-line (&optional arg)
3267 (defun outline-kill-line (&optional arg)
3268 "Kill line, adjusting subsequent lines suitably for outline mode."
3270 (interactive "*P")
3271 (if (not (and (outline-mode-p) ; active outline mode,
3272 outline-numbered-bullet ; numbers may need adjustment,
3273 (bolp) ; may be clipping topic head,
3274 (looking-at outline-regexp))) ; are clipping topic head.
3275 ;; Above conditions do not obtain - just do a regular kill:
3276 (kill-line arg)
3277 ;; Ah, have to watch out for adjustments:
3278 (let* ((depth (outline-depth)))
3279 ; Do the kill:
3280 (kill-line arg)
3281 ; Provide some feedback:
3282 (sit-for 0)
3283 (save-excursion
3284 ; Start with the topic
3285 ; following killed line:
3286 (if (not (looking-at outline-regexp))
3287 (outline-next-heading))
3288 (outline-renumber-to-depth depth)))))
3289 ;;;_ > outline-kill-topic ()
3290 (defun outline-kill-topic ()
3291 "Kill topic together with subtopics.
3293 Leaves primary topic's trailing vertical whitespace, if any."
3295 ;; Some finagling is done to make complex topic kills appear faster
3296 ;; than they actually are. A redisplay is performed immediately
3297 ;; after the region is disposed of, though the renumbering process
3298 ;; has yet to be performed. This means that there may appear to be
3299 ;; a lag *after* the kill has been performed.
3301 (interactive)
3302 (let* ((beg (prog1 (outline-back-to-current-heading)(beginning-of-line)))
3303 (depth (outline-recent-depth)))
3304 (outline-end-of-current-subtree)
3305 (if (not (eobp))
3306 (if (or (not (looking-at "^$"))
3307 ;; A blank line - cut it with this topic *unless* this
3308 ;; is the last topic at this level, in which case
3309 ;; we'll leave the blank line as part of the
3310 ;; containing topic:
3311 (save-excursion
3312 (and (outline-next-heading)
3313 (>= (outline-recent-depth) depth))))
3314 (forward-char 1)))
3316 (kill-region beg (point))
3317 (sit-for 0)
3318 (save-excursion
3319 (outline-renumber-to-depth depth))))
3320 ;;;_ > outline-yank-processing ()
3321 (defun outline-yank-processing (&optional arg)
3323 "Incidental outline-specific business to be done just after text yanks.
3325 Does depth adjustment of yanked topics, when:
3327 1 the stuff being yanked starts with a valid outline header prefix, and
3328 2 it is being yanked at the end of a line which consists of only a valid
3329 topic prefix.
3331 Also, adjusts numbering of subsequent siblings when appropriate.
3333 Depth adjustment alters the depth of all the topics being yanked
3334 the amount it takes to make the first topic have the depth of the
3335 header into which it's being yanked.
3337 The point is left in front of yanked, adjusted topics, rather than
3338 at the end (and vice-versa with the mark). Non-adjusted yanks,
3339 however, are left exactly like normal, non-outline-specific yanks."
3341 (interactive "*P")
3342 ; Get to beginning, leaving
3343 ; region around subject:
3344 (if (< (my-mark-marker t) (point))
3345 (exchange-point-and-mark))
3346 (let* ((subj-beg (point))
3347 (subj-end (my-mark-marker t))
3348 ;; 'resituate' if yanking an entire topic into topic header:
3349 (resituate (and (outline-e-o-prefix-p)
3350 (looking-at (concat "\\(" outline-regexp "\\)"))
3351 (outline-prefix-data (match-beginning 1)
3352 (match-end 1))))
3353 ;; `rectify-numbering' if resituating (where several topics may
3354 ;; be resituating) or yanking a topic into a topic slot (bol):
3355 (rectify-numbering (or resituate
3356 (and (bolp) (looking-at outline-regexp)))))
3357 (if resituate
3358 ; The yanked stuff is a topic:
3359 (let* ((prefix-len (- (match-end 1) subj-beg))
3360 (subj-depth (outline-recent-depth))
3361 (prefix-bullet (outline-recent-bullet))
3362 (adjust-to-depth
3363 ;; Nil if adjustment unnecessary, otherwise depth to which
3364 ;; adjustment should be made:
3365 (save-excursion
3366 (and (goto-char subj-end)
3367 (eolp)
3368 (goto-char subj-beg)
3369 (and (looking-at outline-regexp)
3370 (progn
3371 (beginning-of-line)
3372 (not (= (point) subj-beg)))
3373 (looking-at outline-regexp)
3374 (outline-prefix-data (match-beginning 0)
3375 (match-end 0)))
3376 (outline-recent-depth))))
3377 done
3378 (more t))
3379 (setq rectify-numbering outline-numbered-bullet)
3380 (if adjust-to-depth
3381 ; Do the adjustment:
3382 (progn
3383 (message "... yanking") (sit-for 0)
3384 (save-restriction
3385 (narrow-to-region subj-beg subj-end)
3386 ; Trim off excessive blank
3387 ; line at end, if any:
3388 (goto-char (point-max))
3389 (if (looking-at "^$")
3390 (outline-unprotected (delete-char -1)))
3391 ; Work backwards, with each
3392 ; shallowest level,
3393 ; successively excluding the
3394 ; last processed topic from
3395 ; the narrow region:
3396 (while more
3397 (outline-back-to-current-heading)
3398 ; go as high as we can in each bunch:
3399 (while (outline-ascend-to-depth (1- (outline-depth))))
3400 (save-excursion
3401 (outline-rebullet-topic-grunt (- adjust-to-depth
3402 subj-depth))
3403 (outline-depth))
3404 (if (setq more (not (bobp)))
3405 (progn (widen)
3406 (forward-char -1)
3407 (narrow-to-region subj-beg (point))))))
3408 (message "")
3409 ;; Preserve new bullet if it's a distinctive one, otherwise
3410 ;; use old one:
3411 (if (string-match (regexp-quote prefix-bullet)
3412 outline-distinctive-bullets-string)
3413 ; Delete from bullet of old to
3414 ; before bullet of new:
3415 (progn
3416 (beginning-of-line)
3417 (delete-region (point) subj-beg)
3418 (set-marker (my-mark-marker t) subj-end)
3419 (goto-char subj-beg)
3420 (outline-end-of-prefix))
3421 ; Delete base subj prefix,
3422 ; leaving old one:
3423 (delete-region (point) (+ (point)
3424 prefix-len
3425 (- adjust-to-depth subj-depth)))
3426 ; and delete residual subj
3427 ; prefix digits and space:
3428 (while (looking-at "[0-9]") (delete-char 1))
3429 (if (looking-at " ") (delete-char 1))))
3430 (exchange-point-and-mark))))
3431 (if rectify-numbering
3432 (progn
3433 (save-excursion
3434 ; Give some preliminary feedback:
3435 (message "... reconciling numbers") (sit-for 0)
3436 ; ... and renumber, in case necessary:
3437 (goto-char subj-beg)
3438 (if (outline-goto-prefix)
3439 (outline-rebullet-heading nil ;;; solicit
3440 (outline-depth) ;;; depth
3441 nil ;;; number-control
3442 nil ;;; index
3444 (message ""))))
3445 (if (not resituate)
3446 (exchange-point-and-mark))))
3447 ;;;_ > outline-yank (&optional arg)
3448 (defun outline-yank (&optional arg)
3449 "Outline-mode yank, with depth and numbering adjustment of yanked topics.
3451 Non-topic yanks work no differently than normal yanks.
3453 If a topic is being yanked into a bare topic prefix, the depth of the
3454 yanked topic is adjusted to the depth of the topic prefix.
3456 1 we're yanking in an outline-mode buffer
3457 2 the stuff being yanked starts with a valid outline header prefix, and
3458 3 it is being yanked at the end of a line which consists of only a valid
3459 topic prefix.
3461 If these conditions hold then the depth of the yanked topics are all
3462 adjusted the amount it takes to make the first one at the depth of the
3463 header into which it's being yanked.
3465 The point is left in front of yanked, adjusted topics, rather than
3466 at the end (and vice-versa with the mark). Non-adjusted yanks,
3467 however, (ones that don't qualify for adjustment) are handled
3468 exactly like normal yanks.
3470 Numbering of yanked topics, and the successive siblings at the depth
3471 into which they're being yanked, is adjusted.
3473 Outline-yank-pop works with outline-yank just like normal yank-pop
3474 works with normal yank in non-outline buffers."
3476 (interactive "*P")
3477 (setq this-command 'yank)
3478 (yank arg)
3479 (if (outline-mode-p)
3480 (outline-yank-processing)))
3481 ;;;_ > outline-yank-pop (&optional arg)
3482 (defun outline-yank-pop (&optional arg)
3483 "Yank-pop like outline-yank when popping to bare outline prefixes.
3485 Adapts level of popped topics to level of fresh prefix.
3487 Note - prefix changes to distinctive bullets will stick, if followed
3488 by pops to non-distinctive yanks. Bug..."
3490 (interactive "*p")
3491 (setq this-command 'yank)
3492 (yank-pop arg)
3493 (if (outline-mode-p)
3494 (outline-yank-processing)))
3496 ;;;_ - Specialty bullet functions
3497 ;;;_ : File Cross references
3498 ;;;_ > outline-resolve-xref ()
3499 (defun outline-resolve-xref ()
3500 "Pop to file associated with current heading, if it has an xref bullet.
3502 \(Works according to setting of `outline-file-xref-bullet')."
3503 (interactive)
3504 (if (not outline-file-xref-bullet)
3505 (error
3506 "outline cross references disabled - no `outline-file-xref-bullet'")
3507 (if (not (string= (outline-current-bullet) outline-file-xref-bullet))
3508 (error "current heading lacks cross-reference bullet `%s'"
3509 outline-file-xref-bullet)
3510 (let (file-name)
3511 (save-excursion
3512 (let* ((text-start outline-recent-prefix-end)
3513 (heading-end (progn (end-of-line) (point))))
3514 (goto-char text-start)
3515 (setq file-name
3516 (if (re-search-forward "\\s-\\(\\S-*\\)" heading-end t)
3517 (buffer-substring (match-beginning 1) (match-end 1))))))
3518 (setq file-name
3519 (if (not (= (aref file-name 0) ?:))
3520 (expand-file-name file-name)
3521 ; A registry-files ref, strip the `:'
3522 ; and try to follow it:
3523 (let ((reg-ref (reference-registered-file
3524 (substring file-name 1) nil t)))
3525 (if reg-ref (car (cdr reg-ref))))))
3526 (if (or (file-exists-p file-name)
3527 (if (file-writable-p file-name)
3528 (y-or-n-p (format "%s not there, create one? "
3529 file-name))
3530 (error "%s not found and can't be created" file-name)))
3531 (condition-case failure
3532 (find-file-other-window file-name)
3533 ('error failure))
3534 (error "%s not found" file-name))
3540 ;;;_ #6 Exposure Control
3542 ;;;_ - Fundamental
3543 ;;;_ > outline-flag-current-subtree (flag)
3544 (defun outline-flag-current-subtree (flag)
3545 "Hide or show subtree of currently-visible topic.
3547 See `outline-flag-region' for more details."
3549 (save-excursion
3550 (outline-back-to-current-heading)
3551 (outline-flag-region (point)
3552 (progn (outline-end-of-current-subtree) (1- (point)))
3553 flag)))
3555 ;;;_ - Topic-specific
3556 ;;;_ > outline-show-entry ()
3557 (defun outline-show-entry ()
3558 "Like `outline-show-current-entry', reveals entries nested in hidden topics.
3560 This is a way to give restricted peek at a concealed locality without the
3561 expense of exposing its context, but can leave the outline with aberrant
3562 exposure. outline-hide-current-entry-completely or outline-show-offshoot
3563 should be used after the peek to rectify the exposure."
3565 (interactive)
3566 (save-excursion
3567 (let ((at (point))
3568 beg end)
3569 (outline-goto-prefix)
3570 (setq beg (if (= (preceding-char) ?\r) (1- (point)) (point)))
3571 (re-search-forward "[\n\r]" nil t)
3572 (setq end (1- (if (< at (point))
3573 ;; We're on topic head line - show only it:
3574 (point)
3575 ;; or we're in body - include it:
3576 (max beg (or (outline-pre-next-preface) (point))))))
3577 (outline-flag-region beg end ?\n)
3578 (list beg end))))
3579 ;;;_ > outline-show-children (&optional level strict)
3580 (defun outline-show-children (&optional level strict)
3582 "If point is visible, show all direct subheadings of this heading.
3584 Otherwise, do outline-show-to-offshoot, and then show subheadings.
3586 Optional LEVEL specifies how many levels below the current level
3587 should be shown, or all levels if t. Default is 1.
3589 Optional STRICT means don't resort to -show-to-offshoot, no matter
3590 what. This is basically so -show-to-offshoot, which is called by
3591 this function, can employ the pure offspring-revealing capabilities of
3594 Returns point at end of subtree that was opened, if any. (May get a
3595 point of non-opened subtree?)"
3597 (interactive "p")
3598 (let (max-pos)
3599 (if (and (not strict)
3600 (outline-hidden-p))
3602 (progn (outline-show-to-offshoot) ; Point's concealed, open to
3603 ; expose it.
3604 ;; Then recurse, but with "strict" set so we don't
3605 ;; infinite regress:
3606 (setq max-pos (outline-show-children level t)))
3608 (save-excursion
3609 (save-restriction
3610 (let* ((start-pt (point))
3611 (chart (outline-chart-subtree (or level 1)))
3612 (to-reveal (outline-chart-to-reveal chart (or level 1))))
3613 (goto-char start-pt)
3614 (if (and strict (= (preceding-char) ?\r))
3615 ;; Concealed root would already have been taken care of,
3616 ;; unless strict was set.
3617 (progn
3618 (outline-flag-region (point) (outline-snug-back) ?\n)
3619 (if outline-show-bodies
3620 (progn (goto-char (car to-reveal))
3621 (outline-show-current-entry)))))
3622 (while to-reveal
3623 (goto-char (car to-reveal))
3624 (outline-flag-region (point) (outline-snug-back) ?\n)
3625 (if outline-show-bodies
3626 (progn (goto-char (car to-reveal))
3627 (outline-show-current-entry)))
3628 (setq to-reveal (cdr to-reveal)))))))))
3629 ;;;_ > outline-hide-point-reconcile ()
3630 (defun outline-hide-reconcile ()
3631 "Like `outline-hide-current-entry'; hides completely if within hidden region.
3633 Specifically intended for aberrant exposure states, like entries that were
3634 exposed by outline-show-entry but are within otherwise concealed regions."
3635 (interactive)
3636 (save-excursion
3637 (outline-goto-prefix)
3638 (outline-flag-region (if (not (bobp)) (1- (point)) (point))
3639 (progn (outline-pre-next-preface)
3640 (if (= ?\r (following-char))
3641 (point)
3642 (1- (point))))
3643 ?\r)))
3644 ;;;_ > outline-show-to-offshoot ()
3645 (defun outline-show-to-offshoot ()
3646 "Like outline-show-entry, but reveals all concealed ancestors, as well.
3648 As with outline-hide-current-entry-completely, useful for rectifying
3649 aberrant exposure states produced by outline-show-entry."
3651 (interactive)
3652 (save-excursion
3653 (let ((orig-pt (point))
3654 (orig-pref (outline-goto-prefix))
3655 (last-at (point))
3656 bag-it)
3657 (while (or bag-it (= (preceding-char) ?\r))
3658 (beginning-of-line)
3659 (if (= last-at (setq last-at (point)))
3660 ;; Oops, we're not making any progress! Show the current
3661 ;; topic completely, and bag this try.
3662 (progn (beginning-of-line)
3663 (outline-show-current-subtree)
3664 (goto-char orig-pt)
3665 (setq bag-it t)
3666 (beep)
3667 (message "%s: %s"
3668 "outline-show-to-offshoot: "
3669 "Aberrant nesting encountered.")))
3670 (outline-show-children)
3671 (goto-char orig-pref))
3672 (goto-char orig-pt)))
3673 (if (outline-hidden-p)
3674 (outline-show-entry)))
3675 ;;;_ > outline-hide-current-entry ()
3676 (defun outline-hide-current-entry ()
3677 "Hide the body directly following this heading."
3678 (interactive)
3679 (outline-back-to-current-heading)
3680 (save-excursion
3681 (outline-flag-region (point)
3682 (progn (outline-end-of-current-entry) (point))
3683 ?\r)))
3684 ;;;_ > outline-show-current-entry (&optional arg)
3685 (defun outline-show-current-entry (&optional arg)
3687 "Show body following current heading, or hide the entry if repeat count."
3689 (interactive "P")
3690 (if arg
3691 (outline-hide-current-entry)
3692 (save-excursion
3693 (outline-flag-region (point)
3694 (progn (outline-end-of-current-entry) (point))
3695 ?\n))))
3696 ;;;_ > outline-hide-current-entry-completely ()
3697 ; ... outline-hide-current-entry-completely also for isearch dynamic exposure:
3698 (defun outline-hide-current-entry-completely ()
3699 "Like outline-hide-current-entry, but conceal topic completely.
3701 Specifically intended for aberrant exposure states, like entries that were
3702 exposed by outline-show-entry but are within otherwise concealed regions."
3703 (interactive)
3704 (save-excursion
3705 (outline-goto-prefix)
3706 (outline-flag-region (if (not (bobp)) (1- (point)) (point))
3707 (progn (outline-pre-next-preface)
3708 (if (= ?\r (following-char))
3709 (point)
3710 (1- (point))))
3711 ?\r)))
3712 ;;;_ > outline-show-current-subtree (&optional arg)
3713 (defun outline-show-current-subtree (&optional arg)
3714 "Show everything within the current topic. With a repeat-count,
3715 expose this topic and its siblings."
3716 (interactive "P")
3717 (save-excursion
3718 (if (<= (outline-current-depth) 0)
3719 ;; Outside any topics - try to get to the first:
3720 (if (not (outline-next-heading))
3721 (error "No topics.")
3722 ;; got to first, outermost topic - set to expose it and siblings:
3723 (message "Above outermost topic - exposing all.")
3724 (outline-flag-region (point-min)(point-max) ?\n))
3725 (if (not arg)
3726 (outline-flag-current-subtree ?\n)
3727 (outline-beginning-of-level)
3728 (outline-expose-topic '(* :))))))
3729 ;;;_ > outline-hide-current-subtree (&optional just-close)
3730 (defun outline-hide-current-subtree (&optional just-close)
3731 "Close the current topic, or containing topic if this one is already closed.
3733 If this topic is closed and it's a top level topic, close this topic
3734 and its siblings.
3736 If optional arg JUST-CLOSE is non-nil, do not treat the parent or
3737 siblings, even if the target topic is already closed."
3739 (interactive)
3740 (let ((from (point))
3741 (orig-eol (progn (end-of-line)
3742 (if (not (outline-goto-prefix))
3743 (error "No topics found.")
3744 (end-of-line)(point)))))
3745 (outline-flag-current-subtree ?\r)
3746 (goto-char from)
3747 (if (and (= orig-eol (progn (goto-char orig-eol)
3748 (end-of-line)
3749 (point)))
3750 (not just-close)
3751 ;; Structure didn't change - try hiding current level:
3752 (goto-char from)
3753 (if (outline-up-current-level 1 t)
3755 (goto-char 0)
3756 (let ((msg
3757 "Top-level topic already closed - closing siblings..."))
3758 (message msg)
3759 (outline-expose-topic '(0 :))
3760 (message (concat msg " Done.")))
3761 nil)
3762 (/= (outline-recent-depth) 0))
3763 (outline-hide-current-subtree))
3764 (goto-char from)))
3765 ;;;_ > outline-show-current-branches ()
3766 (defun outline-show-current-branches ()
3767 "Show all subheadings of this heading, but not their bodies."
3768 (interactive)
3769 (beginning-of-line)
3770 (outline-show-children t))
3771 ;;;_ > outline-hide-current-leaves ()
3772 (defun outline-hide-current-leaves ()
3773 "Hide the bodies of the current topic and all its offspring."
3774 (interactive)
3775 (outline-back-to-current-heading)
3776 (outline-hide-region-body (point) (progn (outline-end-of-current-subtree)
3777 (point))))
3779 ;;;_ - Region and beyond
3780 ;;;_ > outline-show-all ()
3781 (defun outline-show-all ()
3782 "Show all of the text in the buffer."
3783 (interactive)
3784 (message "Exposing entire buffer...")
3785 (outline-flag-region (point-min) (point-max) ?\n)
3786 (message "Exposing entire buffer... Done."))
3787 ;;;_ > outline-hide-bodies ()
3788 (defun outline-hide-bodies ()
3789 "Hide all of buffer except headings."
3790 (interactive)
3791 (outline-hide-region-body (point-min) (point-max)))
3792 ;;;_ > outline-hide-region-body (start end)
3793 (defun outline-hide-region-body (start end)
3794 "Hide all body lines in the region, but not headings."
3795 (save-excursion
3796 (save-restriction
3797 (narrow-to-region start end)
3798 (goto-char (point-min))
3799 (while (not (eobp))
3800 (outline-flag-region (point)
3801 (progn (outline-pre-next-preface) (point)) ?\r)
3802 (if (not (eobp))
3803 (forward-char
3804 (if (looking-at "[\n\r][\n\r]")
3805 2 1)))))))
3807 ;;;_ > outline-expose-topic (spec)
3808 (defun outline-expose-topic (spec)
3809 "Apply exposure specs to successive outline topic items.
3811 Use the more convenient frontend, `outline-new-exposure', if you don't
3812 need evaluation of the arguments, or even better, the `outline-layout'
3813 variable-keyed mode-activation/auto-exposure feature of allout outline
3814 mode. See the respective documentation strings for more details.
3816 Cursor is left at start position.
3818 SPEC is either a number or a list.
3820 Successive specs on a list are applied to successive sibling topics.
3822 A simple spec \(either a number, one of a few symbols, or the null
3823 list) dictates the exposure for the corresponding topic.
3825 Non-null lists recursively designate exposure specs for respective
3826 subtopics of the current topic.
3828 The `:' repeat spec is used to specify exposure for any number of
3829 successive siblings, up to the trailing ones for which there are
3830 explicit specs following the `:'.
3832 Simple (numeric and null-list) specs are interpreted as follows:
3834 Numbers indicate the relative depth to open the corresponding topic.
3835 - negative numbers force the topic to be closed before opening to the
3836 absolute value of the number, so all siblings are open only to
3837 that level.
3838 - positive numbers open to the relative depth indicated by the
3839 number, but do not force already opened subtopics to be closed.
3840 - 0 means to close topic - hide all offspring.
3841 : - `repeat'
3842 apply prior element to all siblings at current level, *up to*
3843 those siblings that would be covered by specs following the `:'
3844 on the list. Ie, apply to all topics at level but the last
3845 ones. \(Only first of multiple colons at same level is
3846 respected - subsequent ones are discarded.)
3847 * - completely opens the topic, including bodies.
3848 + - shows all the sub headers, but not the bodies
3849 - - exposes the body of the corresponding topic.
3851 Examples:
3852 \(outline-expose-topic '(-1 : 0))
3853 Close this and all following topics at current level, exposing
3854 only their immediate children, but close down the last topic
3855 at this current level completely.
3856 \(outline-expose-topic '(-1 () : 1 0))
3857 Close current topic so only the immediate subtopics are shown;
3858 show the children in the second to last topic, and completely
3859 close the last one.
3860 \(outline-expose-topic '(-2 : -1 *))
3861 Expose children and grandchildren of all topics at current
3862 level except the last two; expose children of the second to
3863 last and completely open the last one."
3865 (interactive "xExposure spec: ")
3866 (if (not (listp spec))
3868 (let ((depth (outline-depth))
3869 (max-pos 0)
3870 prev-elem curr-elem
3871 stay done
3872 snug-back
3874 (while spec
3875 (setq prev-elem curr-elem
3876 curr-elem (car spec)
3877 spec (cdr spec))
3878 (cond ; Do current element:
3879 ((null curr-elem) nil)
3880 ((symbolp curr-elem)
3881 (cond ((eq curr-elem '*) (outline-show-current-subtree)
3882 (if (> outline-recent-end-of-subtree max-pos)
3883 (setq max-pos outline-recent-end-of-subtree)))
3884 ((eq curr-elem '+) (outline-show-current-branches)
3885 (if (> outline-recent-end-of-subtree max-pos)
3886 (setq max-pos outline-recent-end-of-subtree)))
3887 ((eq curr-elem '-) (outline-show-current-entry))
3888 ((eq curr-elem ':)
3889 (setq stay t)
3890 ;; Expand the `repeat' spec to an explicit version,
3891 ;; w.r.t. remaining siblings:
3892 (let ((residue ; = # of sibs not covered by remaining spec
3893 ;; Dang - could be nice to make use of the chart, sigh:
3894 (- (length (outline-chart-siblings))
3895 (length spec))))
3896 (if (< 0 residue)
3897 ;; Some residue - cover it with prev-elem:
3898 (setq spec (append (make-list residue prev-elem)
3899 spec)))))))
3900 ((numberp curr-elem)
3901 (if (and (>= 0 curr-elem) (outline-visible-p))
3902 (save-excursion (outline-hide-current-subtree t)
3903 (if (> 0 curr-elem)
3905 (if (> outline-recent-end-of-subtree max-pos)
3906 (setq max-pos
3907 outline-recent-end-of-subtree)))))
3908 (if (> (abs curr-elem) 0)
3909 (progn (outline-show-children (abs curr-elem))
3910 (if (> outline-recent-end-of-subtree max-pos)
3911 (setq max-pos outline-recent-end-of-subtree)))))
3912 ((listp curr-elem)
3913 (if (outline-descend-to-depth (1+ depth))
3914 (let ((got (outline-expose-topic curr-elem)))
3915 (if (and got (> got max-pos)) (setq max-pos got))))))
3916 (cond (stay (setq stay nil))
3917 ((listp (car spec)) nil)
3918 ((> max-pos (point))
3919 ;; Capitalize on max-pos state to get us nearer next sibling:
3920 (progn (goto-char (min (point-max) max-pos))
3921 (outline-next-heading)))
3922 ((outline-next-sibling depth))))
3923 max-pos)))
3924 ;;;_ > outline-old-expose-topic (spec &rest followers)
3925 (defun outline-old-expose-topic (spec &rest followers)
3927 "Deprecated. Use outline-expose-topic \(with different schema
3928 format) instead.
3930 Dictate wholesale exposure scheme for current topic, according to SPEC.
3932 SPEC is either a number or a list. Optional successive args
3933 dictate exposure for subsequent siblings of current topic.
3935 A simple spec (either a number, a special symbol, or the null list)
3936 dictates the overall exposure for a topic. Non null lists are
3937 composite specs whose first element dictates the overall exposure for
3938 a topic, with the subsequent elements in the list interpreted as specs
3939 that dictate the exposure for the successive offspring of the topic.
3941 Simple (numeric and null-list) specs are interpreted as follows:
3943 - Numbers indicate the relative depth to open the corresponding topic:
3944 - negative numbers force the topic to be close before opening to the
3945 absolute value of the number.
3946 - positive numbers just open to the relative depth indicated by the number.
3947 - 0 just closes
3948 - `*' completely opens the topic, including bodies.
3949 - `+' shows all the sub headers, but not the bodies
3950 - `-' exposes the body and immediate offspring of the corresponding topic.
3952 If the spec is a list, the first element must be a number, which
3953 dictates the exposure depth of the topic as a whole. Subsequent
3954 elements of the list are nested SPECs, dictating the specific exposure
3955 for the corresponding offspring of the topic.
3957 Optional FOLLOWER arguments dictate exposure for succeeding siblings."
3959 (interactive "xExposure spec: ")
3960 (let ((depth (outline-current-depth))
3961 done
3962 max-pos)
3963 (cond ((null spec) nil)
3964 ((symbolp spec)
3965 (if (eq spec '*) (outline-show-current-subtree))
3966 (if (eq spec '+) (outline-show-current-branches))
3967 (if (eq spec '-) (outline-show-current-entry)))
3968 ((numberp spec)
3969 (if (>= 0 spec)
3970 (save-excursion (outline-hide-current-subtree t)
3971 (end-of-line)
3972 (if (or (not max-pos)
3973 (> (point) max-pos))
3974 (setq max-pos (point)))
3975 (if (> 0 spec)
3976 (setq spec (* -1 spec)))))
3977 (if (> spec 0)
3978 (outline-show-children spec)))
3979 ((listp spec)
3980 ;(let ((got (outline-old-expose-topic (car spec))))
3981 ; (if (and got (or (not max-pos) (> got max-pos)))
3982 ; (setq max-pos got)))
3983 (let ((new-depth (+ (outline-current-depth) 1))
3984 got)
3985 (setq max-pos (outline-old-expose-topic (car spec)))
3986 (setq spec (cdr spec))
3987 (if (and spec
3988 (outline-descend-to-depth new-depth)
3989 (not (outline-hidden-p)))
3990 (progn (setq got (apply 'outline-old-expose-topic spec))
3991 (if (and got (or (not max-pos) (> got max-pos)))
3992 (setq max-pos got)))))))
3993 (while (and followers
3994 (progn (if (and max-pos (< (point) max-pos))
3995 (progn (goto-char max-pos)
3996 (setq max-pos nil)))
3997 (end-of-line)
3998 (outline-next-sibling depth)))
3999 (outline-old-expose-topic (car followers))
4000 (setq followers (cdr followers)))
4001 max-pos))
4002 ;;;_ > outline-new-exposure '()
4003 (defmacro outline-new-exposure (&rest spec)
4004 "Literal frontend for `outline-expose-topic', doesn't evaluate arguments.
4005 Some arguments that would need to be quoted in outline-expose-topic
4006 need not be quoted in outline-new-exposure.
4008 Cursor is left at start position.
4010 Use this instead of obsolete `outline-exposure'.
4012 Examples:
4013 \(outline-exposure (-1 () () () 1) 0)
4014 Close current topic at current level so only the immediate
4015 subtopics are shown, except also show the children of the
4016 third subtopic; and close the next topic at the current level.
4017 \(outline-exposure : -1 0)
4018 Close all topics at current level to expose only their
4019 immediate children, except for the last topic at the current
4020 level, in which even its immediate children are hidden.
4021 \(outline-exposure -2 : -1 *)
4022 Expose children and grandchildren of first topic at current
4023 level, and expose children of subsequent topics at current
4024 level *except* for the last, which should be opened completely."
4025 (list 'save-excursion
4026 '(if (not (or (outline-goto-prefix)
4027 (outline-next-heading)))
4028 (error "outline-new-exposure: Can't find any outline topics."))
4029 (list 'outline-expose-topic (list 'quote spec))))
4030 ;;;_ > outline-exposure '()
4031 (defmacro outline-exposure (&rest spec)
4032 "Being deprecated - use more recent `outline-new-exposure' instead.
4034 Literal frontend for `outline-old-expose-topic', doesn't evaluate arguments
4035 and retains start position."
4036 (list 'save-excursion
4037 '(if (not (or (outline-goto-prefix)
4038 (outline-next-heading)))
4039 (error "Can't find any outline topics."))
4040 (cons 'outline-old-expose-topic
4041 (mapcar (function (lambda (x) (list 'quote x))) spec))))
4043 ;;;_ #7 Systematic outline presentation - copying, printing, flattening
4045 ;;;_ - Mapping and processing of topics
4046 ;;;_ ( See also Subtree Charting, in Navigation code.)
4047 ;;;_ > outline-stringify-flat-index (flat-index)
4048 (defun outline-stringify-flat-index (flat-index &optional context)
4049 "Convert list representing section/subsection/... to document string.
4051 Optional arg CONTEXT indicates interior levels to include."
4052 (let ((delim ".")
4053 result
4054 numstr
4055 (context-depth (or (and context 2) 1)))
4056 ;; Take care of the explicit context:
4057 (while (> context-depth 0)
4058 (setq numstr (int-to-string (car flat-index))
4059 flat-index (cdr flat-index)
4060 result (if flat-index
4061 (cons delim (cons numstr result))
4062 (cons numstr result))
4063 context-depth (if flat-index (1- context-depth) 0)))
4064 (setq delim " ")
4065 ;; Take care of the indentation:
4066 (if flat-index
4067 (progn
4068 (while flat-index
4069 (setq result
4070 (cons delim
4071 (cons (make-string
4072 (1+ (truncate (if (zerop (car flat-index))
4074 (log10 (car flat-index)))))
4076 result)))
4077 (setq flat-index (cdr flat-index)))
4078 ;; Dispose of single extra delim:
4079 (setq result (cdr result))))
4080 (apply 'concat result)))
4081 ;;;_ > outline-stringify-flat-index-plain (flat-index)
4082 (defun outline-stringify-flat-index-plain (flat-index)
4083 "Convert list representing section/subsection/... to document string."
4084 (let ((delim ".")
4085 result)
4086 (while flat-index
4087 (setq result (cons (int-to-string (car flat-index))
4088 (if result
4089 (cons delim result))))
4090 (setq flat-index (cdr flat-index)))
4091 (apply 'concat result)))
4092 ;;;_ > outline-stringify-flat-index-indented (flat-index)
4093 (defun outline-stringify-flat-index-indented (flat-index)
4094 "Convert list representing section/subsection/... to document string."
4095 (let ((delim ".")
4096 result
4097 numstr)
4098 ;; Take care of the explicit context:
4099 (setq numstr (int-to-string (car flat-index))
4100 flat-index (cdr flat-index)
4101 result (if flat-index
4102 (cons delim (cons numstr result))
4103 (cons numstr result)))
4104 (setq delim " ")
4105 ;; Take care of the indentation:
4106 (if flat-index
4107 (progn
4108 (while flat-index
4109 (setq result
4110 (cons delim
4111 (cons (make-string
4112 (1+ (truncate (if (zerop (car flat-index))
4114 (log10 (car flat-index)))))
4116 result)))
4117 (setq flat-index (cdr flat-index)))
4118 ;; Dispose of single extra delim:
4119 (setq result (cdr result))))
4120 (apply 'concat result)))
4121 ;;;_ > outline-listify-exposed (&optional start end format)
4122 (defun outline-listify-exposed (&optional start end format)
4124 "Produce a list representing exposed topics in current region.
4126 This list can then be used by `outline-process-exposed' to manipulate
4127 the subject region.
4129 Optional START and END indicate bounds of region.
4131 optional arg, FORMAT, designates an alternate presentation form for
4132 the prefix:
4134 list - Present prefix as numeric section.subsection..., starting with
4135 section indicated by the list, innermost nesting first.
4136 `indent' \(symbol) - Convert header prefixes to all white space,
4137 except for distinctive bullets.
4139 The elements of the list produced are lists that represents a topic
4140 header and body. The elements of that list are:
4142 - a number representing the depth of the topic,
4143 - a string representing the header-prefix, including trailing whitespace and
4144 bullet.
4145 - a string representing the bullet character,
4146 - and a series of strings, each containing one line of the exposed
4147 portion of the topic entry."
4149 (interactive "r")
4150 (save-excursion
4151 (let*
4152 ;; state vars:
4153 (strings prefix pad result depth new-depth out gone-out bullet beg
4154 next done)
4156 (goto-char start)
4157 (beginning-of-line)
4158 ;; Goto initial topic, and register preceeding stuff, if any:
4159 (if (> (outline-goto-prefix) start)
4160 ;; First topic follows beginning point - register preliminary stuff:
4161 (setq result (list (list 0 "" nil
4162 (buffer-substring start (1- (point)))))))
4163 (while (and (not done)
4164 (not (eobp)) ; Loop until we've covered the region.
4165 (not (> (point) end)))
4166 (setq depth (outline-recent-depth) ; Current topics depth,
4167 bullet (outline-recent-bullet) ; ... bullet,
4168 prefix (outline-recent-prefix)
4169 beg (progn (outline-end-of-prefix t) (point))) ; and beginning.
4170 (setq done ; The boundary for the current topic:
4171 (not (outline-next-visible-heading 1)))
4172 (setq new-depth (outline-recent-depth))
4173 (setq gone-out out
4174 out (< new-depth depth))
4175 (beginning-of-line)
4176 (setq next (point))
4177 (goto-char beg)
4178 (setq strings nil)
4179 (while (> next (point)) ; Get all the exposed text in
4180 (setq strings
4181 (cons (buffer-substring
4183 ;To hidden text or end of line:
4184 (progn
4185 (search-forward "\r"
4186 (save-excursion (end-of-line)
4187 (point))
4189 (if (= (preceding-char) ?\r)
4190 (1- (point))
4191 (point))))
4192 strings))
4193 (if (< (point) next) ; Resume from after hid text, if any.
4194 (forward-line 1))
4195 (setq beg (point)))
4196 ;; Accumulate list for this topic:
4197 (setq strings (nreverse strings))
4198 (setq result
4199 (cons
4200 (if format
4201 (let ((special (if (string-match
4202 (regexp-quote bullet)
4203 outline-distinctive-bullets-string)
4204 bullet)))
4205 (cond ((listp format)
4206 (list depth
4207 (if outline-abbreviate-flattened-numbering
4208 (outline-stringify-flat-index format
4209 gone-out)
4210 (outline-stringify-flat-index-plain
4211 format))
4212 strings
4213 special))
4214 ((eq format 'indent)
4215 (if special
4216 (list depth
4217 (concat (make-string (1+ depth) ? )
4218 (substring prefix -1))
4219 strings)
4220 (list depth
4221 (make-string depth ? )
4222 strings)))
4223 (t (error "outline-listify-exposed: %s %s"
4224 "invalid format" format))))
4225 (list depth prefix strings))
4226 result))
4227 ;; Reasses format, if any:
4228 (if (and format (listp format))
4229 (cond ((= new-depth depth)
4230 (setq format (cons (1+ (car format))
4231 (cdr format))))
4232 ((> new-depth depth) ; descending - assume by 1:
4233 (setq format (cons 1 format)))
4235 ; Pop the residue:
4236 (while (< new-depth depth)
4237 (setq format (cdr format))
4238 (setq depth (1- depth)))
4239 ; And increment the current one:
4240 (setq format
4241 (cons (1+ (or (car format)
4242 -1))
4243 (cdr format)))))))
4244 ;; Put the list with first at front, to last at back:
4245 (nreverse result))))
4246 ;;;_ > outline-process-exposed (&optional func from to frombuf
4247 ;;; tobuf format)
4248 (defun outline-process-exposed (&optional func from to frombuf tobuf
4249 format &optional start-num)
4250 "Map function on exposed parts of current topic; results to another buffer.
4252 All args are options; default values itemized below.
4254 Apply FUNCTION to exposed portions FROM position TO position in buffer
4255 FROMBUF to buffer TOBUF. Sixth optional arg, FORMAT, designates an
4256 alternate presentation form:
4258 `flat' - Present prefix as numeric section.subsection..., starting with
4259 section indicated by the start-num, innermost nesting first.
4260 X`flat-indented' - Prefix is like `flat' for first topic at each
4261 X level, but subsequent topics have only leaf topic
4262 X number, padded with blanks to line up with first.
4263 `indent' \(symbol) - Convert header prefixes to all white space,
4264 except for distinctive bullets.
4266 Defaults:
4267 FUNCTION: `outline-insert-listified'
4268 FROM: region start, if region active, else start of buffer
4269 TO: region end, if region active, else end of buffer
4270 FROMBUF: current buffer
4271 TOBUF: buffer name derived: \"*current-buffer-name exposed*\"
4272 FORMAT: nil"
4274 ; Resolve arguments,
4275 ; defaulting if necessary:
4276 (if (not func) (setq func 'outline-insert-listified))
4277 (if (not (and from to))
4278 (if (my-region-active-p)
4279 (setq from (region-beginning) to (region-end))
4280 (setq from (point-min) to (point-max))))
4281 (if frombuf
4282 (if (not (bufferp frombuf))
4283 ;; Specified but not a buffer - get it:
4284 (let ((got (get-buffer frombuf)))
4285 (if (not got)
4286 (error (concat "outline-process-exposed: source buffer "
4287 frombuf
4288 " not found."))
4289 (setq frombuf got))))
4290 ;; not specified - default it:
4291 (setq frombuf (current-buffer)))
4292 (if tobuf
4293 (if (not (bufferp tobuf))
4294 (setq tobuf (get-buffer-create tobuf)))
4295 ;; not specified - default it:
4296 (setq tobuf (concat "*" (buffer-name frombuf) " exposed*")))
4297 (if (listp format)
4298 (nreverse format))
4300 (let* ((listified
4301 (progn (set-buffer frombuf)
4302 (outline-listify-exposed from to format))))
4303 (set-buffer tobuf)
4304 (mapcar func listified)
4305 (pop-to-buffer tobuf)))
4307 ;;;_ - Copy exposed
4308 ;;;_ > outline-insert-listified (listified)
4309 (defun outline-insert-listified (listified)
4310 "Insert contents of listified outline portion in current buffer.
4312 Listified is a list representing each topic header and body:
4314 \`(depth prefix text)'
4316 or \`(depth prefix text bullet-plus)'
4318 If `bullet-plus' is specified, it is inserted just after the entire prefix."
4319 (setq listified (cdr listified))
4320 (let ((prefix (prog1
4321 (car listified)
4322 (setq listified (cdr listified))))
4323 (text (prog1
4324 (car listified)
4325 (setq listified (cdr listified))))
4326 (bullet-plus (car listified)))
4327 (insert-string prefix)
4328 (if bullet-plus (insert-string (concat " " bullet-plus)))
4329 (while text
4330 (insert-string (car text))
4331 (if (setq text (cdr text))
4332 (insert-string "\n")))
4333 (insert-string "\n")))
4334 ;;;_ > outline-copy-exposed-to-buffer (&optional arg tobuf format)
4335 (defun outline-copy-exposed-to-buffer (&optional arg tobuf format)
4336 "Duplicate exposed portions of current outline to another buffer.
4338 Other buffer has current buffers name with \" exposed\" appended to it.
4340 With repeat count, copy the exposed parts of only the current topic.
4342 Optional second arg TOBUF is target buffer name.
4344 Optional third arg FORMAT, if non-nil, symbolically designates an
4345 alternate presentation format for the outline:
4347 `flat' - Convert topic header prefixes to numeric
4348 section.subsection... identifiers.
4349 `indent' - Convert header prefixes to all white space, except for
4350 distinctive bullets.
4351 `indent-flat' - The best of both - only the first of each level has
4352 the full path, the rest have only the section number
4353 of the leaf, preceded by the right amount of indentation."
4355 (interactive "P")
4356 (if (not tobuf)
4357 (setq tobuf (get-buffer-create (concat "*" (buffer-name) " exposed*"))))
4358 (let* ((start-pt (point))
4359 (beg (if arg (outline-back-to-current-heading) (point-min)))
4360 (end (if arg (outline-end-of-current-subtree) (point-max)))
4361 (buf (current-buffer))
4362 (start-list ()))
4363 (if (eq format 'flat)
4364 (setq format (if arg (save-excursion
4365 (goto-char beg)
4366 (outline-topic-flat-index))
4367 '(1))))
4368 (save-excursion (set-buffer tobuf)(erase-buffer))
4369 (outline-process-exposed 'outline-insert-listified
4372 (current-buffer)
4373 tobuf
4374 format start-list)
4375 (goto-char (point-min))
4376 (pop-to-buffer buf)
4377 (goto-char start-pt)))
4378 ;;;_ > outline-flatten-exposed-to-buffer (&optional arg tobuf)
4379 (defun outline-flatten-exposed-to-buffer (&optional arg tobuf)
4380 "Present numeric outline of outline's exposed portions in another buffer.
4382 The resulting outline is not compatable with outline mode - use
4383 `outline-copy-exposed-to-buffer' if you want that.
4385 Use `outline-indented-exposed-to-buffer' for indented presentation.
4387 With repeat count, copy the exposed portions of only current topic.
4389 Other buffer has current buffers name with \" exposed\" appended to
4390 it, unless optional second arg TOBUF is specified, in which case it is
4391 used verbatim."
4392 (interactive "P")
4393 (outline-copy-exposed-to-buffer arg tobuf 'flat))
4394 ;;;_ > outline-indented-exposed-to-buffer (&optional arg tobuf)
4395 (defun outline-indented-exposed-to-buffer (&optional arg tobuf)
4396 "Present indented outline of outline's exposed portions in another buffer.
4398 The resulting outline is not compatable with outline mode - use
4399 `outline-copy-exposed-to-buffer' if you want that.
4401 Use `outline-flatten-exposed-to-buffer' for numeric sectional presentation.
4403 With repeat count, copy the exposed portions of only current topic.
4405 Other buffer has current buffers name with \" exposed\" appended to
4406 it, unless optional second arg TOBUF is specified, in which case it is
4407 used verbatim."
4408 (interactive "P")
4409 (outline-copy-exposed-to-buffer arg tobuf 'indent))
4411 ;;;_ - LaTeX formatting
4412 ;;;_ > outline-latex-verb-quote (str &optional flow)
4413 (defun outline-latex-verb-quote (str &optional flow)
4414 "Return copy of STRING for literal reproduction across latex processing.
4415 Expresses the original characters \(including carriage returns) of the
4416 string across latex processing."
4417 (mapconcat (function
4418 (lambda (char)
4419 (cond ((memq char '(?\\ ?$ ?% ?# ?& ?{ ?} ?_ ?^ ?- ?*))
4420 (concat "\\char" (number-to-string char) "{}"))
4421 ((= char ?\n) "\\\\")
4422 (t (char-to-string char)))))
4424 ""))
4425 ;;;_ > outline-latex-verbatim-quote-curr-line ()
4426 (defun outline-latex-verbatim-quote-curr-line ()
4427 "Express line for exact \(literal) representation across latex processing.
4429 Adjust line contents so it is unaltered \(from the original line)
4430 across latex processing, within the context of a `verbatim'
4431 environment. Leaves point at the end of the line."
4432 (beginning-of-line)
4433 (let ((beg (point))
4434 (end (progn (end-of-line)(point))))
4435 (goto-char beg)
4436 (while (re-search-forward "\\\\"
4437 ;;"\\\\\\|\\{\\|\\}\\|\\_\\|\\$\\|\\\"\\|\\&\\|\\^\\|\\-\\|\\*\\|#"
4438 end ; bounded by end-of-line
4439 1) ; no matches, move to end & return nil
4440 (goto-char (match-beginning 0))
4441 (insert-string "\\")
4442 (setq end (1+ end))
4443 (goto-char (1+ (match-end 0))))))
4444 ;;;_ > outline-insert-latex-header (buf)
4445 (defun outline-insert-latex-header (buf)
4446 "Insert initial latex commands at point in BUFFER."
4447 ;; Much of this is being derived from the stuff in appendix of E in
4448 ;; the TeXBook, pg 421.
4449 (set-buffer buf)
4450 (let ((doc-style (format "\n\\documentstyle{%s}\n"
4451 "report"))
4452 (page-numbering (if outline-number-pages
4453 "\\pagestyle{empty}\n"
4454 ""))
4455 (linesdef (concat "\\def\\beginlines{"
4456 "\\par\\begingroup\\nobreak\\medskip"
4457 "\\parindent=0pt\n"
4458 " \\kern1pt\\nobreak \\obeylines \\obeyspaces "
4459 "\\everypar{\\strut}}\n"
4460 "\\def\\endlines{"
4461 "\\kern1pt\\endgroup\\medbreak\\noindent}\n"))
4462 (titlecmd (format "\\newcommand{\\titlecmd}[1]{{%s #1}}\n"
4463 outline-title-style))
4464 (labelcmd (format "\\newcommand{\\labelcmd}[1]{{%s #1}}\n"
4465 outline-label-style))
4466 (headlinecmd (format "\\newcommand{\\headlinecmd}[1]{{%s #1}}\n"
4467 outline-head-line-style))
4468 (bodylinecmd (format "\\newcommand{\\bodylinecmd}[1]{{%s #1}}\n"
4469 outline-body-line-style))
4470 (setlength (format "%s%s%s%s"
4471 "\\newlength{\\stepsize}\n"
4472 "\\setlength{\\stepsize}{"
4473 outline-indent
4474 "}\n"))
4475 (oneheadline (format "%s%s%s%s%s%s%s"
4476 "\\newcommand{\\OneHeadLine}[3]{%\n"
4477 "\\noindent%\n"
4478 "\\hspace*{#2\\stepsize}%\n"
4479 "\\labelcmd{#1}\\hspace*{.2cm}"
4480 "\\headlinecmd{#3}\\\\["
4481 outline-line-skip
4482 "]\n}\n"))
4483 (onebodyline (format "%s%s%s%s%s%s"
4484 "\\newcommand{\\OneBodyLine}[2]{%\n"
4485 "\\noindent%\n"
4486 "\\hspace*{#1\\stepsize}%\n"
4487 "\\bodylinecmd{#2}\\\\["
4488 outline-line-skip
4489 "]\n}\n"))
4490 (begindoc "\\begin{document}\n\\begin{center}\n")
4491 (title (format "%s%s%s%s"
4492 "\\titlecmd{"
4493 (outline-latex-verb-quote (if outline-title
4494 (condition-case err
4495 (eval outline-title)
4496 ('error "<unnamed buffer>"))
4497 "Unnamed Outline"))
4498 "}\n"
4499 "\\end{center}\n\n"))
4500 (hsize "\\hsize = 7.5 true in\n")
4501 (hoffset "\\hoffset = -1.5 true in\n")
4502 (vspace "\\vspace{.1cm}\n\n"))
4503 (insert (concat doc-style
4504 page-numbering
4505 titlecmd
4506 labelcmd
4507 headlinecmd
4508 bodylinecmd
4509 setlength
4510 oneheadline
4511 onebodyline
4512 begindoc
4513 title
4514 hsize
4515 hoffset
4516 vspace)
4518 ;;;_ > outline-insert-latex-trailer (buf)
4519 (defun outline-insert-latex-trailer (buf)
4520 "Insert concluding latex commands at point in BUFFER."
4521 (set-buffer buf)
4522 (insert "\n\\end{document}\n"))
4523 ;;;_ > outline-latexify-one-item (depth prefix bullet text)
4524 (defun outline-latexify-one-item (depth prefix bullet text)
4525 "Insert LaTeX commands for formatting one outline item.
4527 Args are the topics numeric DEPTH, the header PREFIX lead string, the
4528 BULLET string, and a list of TEXT strings for the body."
4529 (let* ((head-line (if text (car text)))
4530 (body-lines (cdr text))
4531 (curr-line)
4532 body-content bop)
4533 ; Do the head line:
4534 (insert-string (concat "\\OneHeadLine{\\verb\1 "
4535 (outline-latex-verb-quote bullet)
4536 "\1}{"
4537 depth
4538 "}{\\verb\1 "
4539 (if head-line
4540 (outline-latex-verb-quote head-line)
4542 "\1}\n"))
4543 (if (not body-lines)
4545 ;;(insert-string "\\beginlines\n")
4546 (insert-string "\\begin{verbatim}\n")
4547 (while body-lines
4548 (setq curr-line (car body-lines))
4549 (if (and (not body-content)
4550 (not (string-match "^\\s-*$" curr-line)))
4551 (setq body-content t))
4552 ; Mangle any occurrences of
4553 ; "\end{verbatim}" in text,
4554 ; it's special:
4555 (if (and body-content
4556 (setq bop (string-match "\\end{verbatim}" curr-line)))
4557 (setq curr-line (concat (substring curr-line 0 bop)
4559 (substring curr-line bop))))
4560 ;;(insert-string "|" (car body-lines) "|")
4561 (insert-string curr-line)
4562 (outline-latex-verbatim-quote-curr-line)
4563 (insert-string "\n")
4564 (setq body-lines (cdr body-lines)))
4565 (if body-content
4566 (setq body-content nil)
4567 (forward-char -1)
4568 (insert-string "\\ ")
4569 (forward-char 1))
4570 ;;(insert-string "\\endlines\n")
4571 (insert-string "\\end{verbatim}\n")
4573 ;;;_ > outline-latexify-exposed (arg &optional tobuf)
4574 (defun outline-latexify-exposed (arg &optional tobuf)
4575 "Format current topics exposed portions to TOBUF for latex processing.
4576 TOBUF defaults to a buffer named the same as the current buffer, but
4577 with \"*\" prepended and \" latex-formed*\" appended.
4579 With repeat count, copy the exposed portions of entire buffer."
4581 (interactive "P")
4582 (if (not tobuf)
4583 (setq tobuf
4584 (get-buffer-create (concat "*" (buffer-name) " latexified*"))))
4585 (let* ((start-pt (point))
4586 (beg (if arg (point-min) (outline-back-to-current-heading)))
4587 (end (if arg (point-max) (outline-end-of-current-subtree)))
4588 (buf (current-buffer)))
4589 (set-buffer tobuf)
4590 (erase-buffer)
4591 (outline-insert-latex-header tobuf)
4592 (goto-char (point-max))
4593 (outline-process-exposed 'outline-latexify-one-item
4597 tobuf)
4598 (goto-char (point-max))
4599 (outline-insert-latex-trailer tobuf)
4600 (goto-char (point-min))
4601 (pop-to-buffer buf)
4602 (goto-char start-pt)))
4604 ;;;_ #8 miscellaneous
4605 ;;;_ > outline-mark-topic ()
4606 (defun outline-mark-topic ()
4607 "Put the region around topic currently containing point."
4608 (interactive)
4609 (beginning-of-line)
4610 (outline-goto-prefix)
4611 (push-mark (point))
4612 (outline-end-of-current-subtree)
4613 (exchange-point-and-mark))
4614 ;;;_ > outlineify-sticky ()
4615 ;; outlinify-sticky is correct spelling; provide this alias for sticklers:
4616 (defalias 'outlinify-sticky 'outlineify-sticky)
4617 (defun outlineify-sticky (&optional arg)
4618 "Activate outline mode and establish file var so it is started subsequently.
4620 See doc-string for `outline-layout' and `outline-init' for details on
4621 setup for auto-startup."
4623 (interactive "P")
4625 (outline-mode t)
4627 (save-excursion
4628 (goto-char (point-min))
4629 (if (looking-at outline-regexp)
4631 (outline-open-topic 2)
4632 (insert-string (concat "Dummy outline topic header - see"
4633 "`outline-mode' docstring: `^Hm'."))
4634 (forward-line 1)
4635 (goto-char (point-max))
4636 (open-line 1)
4637 (outline-open-topic 0)
4638 (insert-string "Local emacs vars.\n")
4639 (outline-open-topic 1)
4640 (insert-string "(`outline-layout' is for allout.el outline-mode)\n")
4641 (outline-open-topic 0)
4642 (insert-string "Local variables:\n")
4643 (outline-open-topic 0)
4644 (insert-string (format "outline-layout: %s\n"
4645 (or outline-layout
4646 '(-1 : 0))))
4647 (outline-open-topic 0)
4648 (insert-string "End:\n"))))
4649 ;;;_ > solicit-char-in-string (prompt string &optional do-defaulting)
4650 (defun solicit-char-in-string (prompt string &optional do-defaulting)
4651 "Solicit (with first arg PROMPT) choice of a character from string STRING.
4653 Optional arg DO-DEFAULTING indicates to accept empty input (CR)."
4655 (let ((new-prompt prompt)
4656 got)
4658 (while (not got)
4659 (message "%s" new-prompt)
4661 ;; We do our own reading here, so we can circumvent, eg, special
4662 ;; treatment for `?' character. (Oughta use minibuffer keymap instead.)
4663 (setq got
4664 (char-to-string (let ((cursor-in-echo-area nil)) (read-char))))
4666 (setq got
4667 (cond ((string-match (regexp-quote got) string) got)
4668 ((and do-defaulting (string= got "\r"))
4669 ;; Return empty string to default:
4671 ((string= got "\C-g") (signal 'quit nil))
4673 (setq new-prompt (concat prompt
4675 " ...pick from: "
4676 string
4677 ""))
4678 nil))))
4679 ;; got something out of loop - return it:
4680 got)
4682 ;;;_ > regexp-sans-escapes (string)
4683 (defun regexp-sans-escapes (regexp &optional successive-backslashes)
4684 "Return a copy of REGEXP with all character escapes stripped out.
4686 Representations of actual backslashes - '\\\\\\\\' - are left as a
4687 single backslash.
4689 Optional arg SUCCESSIVE-BACKSLASHES is used internally for recursion."
4691 (if (string= regexp "")
4693 ;; Set successive-backslashes to number if current char is
4694 ;; backslash, or else to nil:
4695 (setq successive-backslashes
4696 (if (= (aref regexp 0) ?\\)
4697 (if successive-backslashes (1+ successive-backslashes) 1)
4698 nil))
4699 (if (or (not successive-backslashes) (= 2 successive-backslashes))
4700 ;; Include first char:
4701 (concat (substring regexp 0 1)
4702 (regexp-sans-escapes (substring regexp 1)))
4703 ;; Exclude first char, but maintain count:
4704 (regexp-sans-escapes (substring regexp 1) successive-backslashes))))
4705 ;;;_ > my-region-active-p ()
4706 (defmacro my-region-active-p ()
4707 (if (fboundp 'region-active-p)
4708 '(region-active-p)
4709 'mark-active))
4710 ;;;_ - add-hook definition for divergent emacsen
4711 ;;;_ > add-hook (hook function &optional append)
4712 (if (not (fboundp 'add-hook))
4713 (defun add-hook (hook function &optional append)
4714 "Add to the value of HOOK the function FUNCTION unless already present.
4715 \(It becomes the first hook on the list unless optional APPEND is non-nil, in
4716 which case it becomes the last). HOOK should be a symbol, and FUNCTION may be
4717 any valid function. HOOK's value should be a list of functions, not a single
4718 function. If HOOK is void, it is first set to nil."
4719 (or (boundp hook) (set hook nil))
4720 (or (if (consp function)
4721 ;; Clever way to tell whether a given lambda-expression
4722 ;; is equal to anything in the hook.
4723 (let ((tail (assoc (cdr function) (symbol-value hook))))
4724 (equal function tail))
4725 (memq function (symbol-value hook)))
4726 (set hook
4727 (if append
4728 (nconc (symbol-value hook) (list function))
4729 (cons function (symbol-value hook)))))))
4730 ;;;_ : my-mark-marker to accomodate divergent emacsen:
4731 (defun my-mark-marker (&optional force buffer)
4732 "Accomodate the different signature for mark-marker across emacsen.
4734 GNU XEmacs takes two optional args, while mainline GNU Emacs does not,
4735 so pass them along when appropriate."
4736 (if (string-match " XEmacs " emacs-version)
4737 (mark-marker force buffer)
4738 (mark-marker)))
4740 ;;;_ #9 Under development
4741 ;;;_ > outline-bullet-isearch (&optional bullet)
4742 (defun outline-bullet-isearch (&optional bullet)
4743 "Isearch \(regexp) for topic with bullet BULLET."
4744 (interactive)
4745 (if (not bullet)
4746 (setq bullet (solicit-char-in-string
4747 "ISearch for topic with bullet: "
4748 (regexp-sans-escapes outline-bullets-string))))
4750 (let ((isearch-regexp t)
4751 (isearch-string (concat "^"
4752 outline-header-prefix
4753 "[ \t]*"
4754 bullet)))
4755 (isearch-repeat 'forward)
4756 (isearch-mode t)))
4757 ;;;_ ? Re hooking up with isearch - use isearch-op-fun rather than
4758 ;;; wrapping the isearch functions.
4760 ;;;_* Local emacs vars.
4761 ;;; The following `outline-layout' local variable setting:
4762 ;;; - closes all topics from the first topic to just before the third-to-last,
4763 ;;; - shows the children of the third to last (config vars)
4764 ;;; - and the second to last (code section),
4765 ;;; - and closes the last topic (this local-variables section).
4766 ;;;Local variables:
4767 ;;;outline-layout: (0 : -1 -1 0)
4768 ;;;End:
4770 ;; allout.el ends here