Update copyright notices for 2013.
[bpt/emacs.git] / lisp / textmodes / rst.el
... / ...
CommitLineData
1;;; rst.el --- Mode for viewing and editing reStructuredText-documents.
2
3;; Copyright (C) 2003-2013 Free Software Foundation, Inc.
4
5;; Maintainer: Stefan Merten <smerten@oekonux.de>
6;; Author: Stefan Merten <smerten@oekonux.de>,
7;; Martin Blais <blais@furius.ca>,
8;; David Goodger <goodger@python.org>,
9;; Wei-Wei Guo <wwguocn@gmail.com>
10
11;; This file is part of GNU Emacs.
12
13;; GNU Emacs is free software: you can redistribute it and/or modify
14;; it under the terms of the GNU General Public License as published by
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26;;; Commentary:
27
28;; This package provides major mode rst-mode, which supports documents marked
29;; up using the reStructuredText format. Support includes font locking as well
30;; as a lot of convenience functions for editing. It does this by defining a
31;; Emacs major mode: rst-mode (ReST). This mode is derived from text-mode.
32;; This package also contains:
33;;
34;; - Functions to automatically adjust and cycle the section underline
35;; adornments;
36;; - A mode that displays the table of contents and allows you to jump anywhere
37;; from it;
38;; - Functions to insert and automatically update a TOC in your source
39;; document;
40;; - Function to insert list, processing item bullets and enumerations
41;; automatically;
42;; - Font-lock highlighting of most reStructuredText structures;
43;; - Indentation and filling according to reStructuredText syntax;
44;; - Cursor movement according to reStructuredText syntax;
45;; - Some other convenience functions.
46;;
47;; See the accompanying document in the docutils documentation about
48;; the contents of this package and how to use it.
49;;
50;; For more information about reStructuredText, see
51;; http://docutils.sourceforge.net/rst.html
52;;
53;; For full details on how to use the contents of this file, see
54;; http://docutils.sourceforge.net/docs/user/emacs.html
55;;
56;;
57;; There are a number of convenient key bindings provided by rst-mode.
58;; For more on bindings, see rst-mode-map below. There are also many variables
59;; that can be customized, look for defcustom in this file.
60;;
61;; If you use the table-of-contents feature, you may want to add a hook to
62;; update the TOC automatically every time you adjust a section title::
63;;
64;; (add-hook 'rst-adjust-hook 'rst-toc-update)
65;;
66;; Syntax highlighting: font-lock is enabled by default. If you want to turn
67;; off syntax highlighting to rst-mode, you can use the following::
68;;
69;; (setq font-lock-global-modes '(not rst-mode ...))
70;;
71;;
72;;
73;; Customization is done by customizable variables contained in customization
74;; group "rst" and subgroups. Group "rst" is contained in the "wp" group.
75;;
76
77;;; DOWNLOAD
78
79;; The latest release of this file lies in the docutils source code repository:
80;; http://docutils.svn.sourceforge.net/svnroot/docutils/trunk/docutils/tools/editors/emacs/rst.el
81
82;;; INSTALLATION
83
84;; Add the following lines to your init file:
85;;
86;; (require 'rst)
87;;
88;; If you are using `.txt' as a standard extension for reST files as
89;; http://docutils.sourceforge.net/FAQ.html#what-s-the-standard-filename-extension-for-a-restructuredtext-file
90;; suggests you may use one of the `Local Variables in Files' mechanism Emacs
91;; provides to set the major mode automatically. For instance you may use::
92;;
93;; .. -*- mode: rst -*-
94;;
95;; in the very first line of your file. The following code is useful if you
96;; want automatically enter rst-mode from any file with compatible extensions:
97;;
98;; (setq auto-mode-alist
99;; (append '(("\\.txt\\'" . rst-mode)
100;; ("\\.rst\\'" . rst-mode)
101;; ("\\.rest\\'" . rst-mode)) auto-mode-alist))
102;;
103
104;;; Code:
105
106;; FIXME: Check through major mode conventions again.
107
108;; FIXME: Add proper ";;;###autoload" comments.
109
110;; FIXME: When 24.1 is common place remove use of `lexical-let' and put "-*-
111;; lexical-binding: t -*-" in the first line.
112
113;; FIXME: Use `testcover'.
114
115;; FIXME: The adornment classification often called `ado' should be a
116;; `defstruct'.
117
118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
119;; Support for `testcover'
120
121(when (and (boundp 'testcover-1value-functions)
122 (boundp 'testcover-compose-functions))
123 ;; Below `lambda' is used in a loop with varying parameters and is thus not
124 ;; 1valued.
125 (setq testcover-1value-functions
126 (delq 'lambda testcover-1value-functions))
127 (add-to-list 'testcover-compose-functions 'lambda))
128
129(defun rst-testcover-defcustom ()
130 "Remove all customized variables from `testcover-module-constants'.
131This seems to be a bug in `testcover': `defcustom' variables are
132considered constants. Revert it with this function after each `defcustom'."
133 (when (boundp 'testcover-module-constants)
134 (setq testcover-module-constants
135 (delq nil
136 (mapcar
137 (lambda (sym)
138 (if (not (plist-member (symbol-plist sym) 'standard-value))
139 sym))
140 testcover-module-constants)))))
141
142(defun rst-testcover-add-compose (fun)
143 "Add FUN to `testcover-compose-functions'."
144 (when (boundp 'testcover-compose-functions)
145 (add-to-list 'testcover-compose-functions fun)))
146
147(defun rst-testcover-add-1value (fun)
148 "Add FUN to `testcover-1value-functions'."
149 (when (boundp 'testcover-1value-functions)
150 (add-to-list 'testcover-1value-functions fun)))
151
152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
153;; Common Lisp stuff
154
155;; Only use of macros is allowed - may be replaced by `cl-lib' some time.
156(eval-when-compile
157 (require 'cl))
158
159;; Redefine some functions from `cl.el' in a proper namespace until they may be
160;; used from there.
161
162(defun rst-signum (x)
163 "Return 1 if X is positive, -1 if negative, 0 if zero."
164 (cond
165 ((> x 0) 1)
166 ((< x 0) -1)
167 (t 0)))
168
169(defun rst-some (seq &optional pred)
170 "Return non-nil if any element of SEQ yields non-nil when PRED is applied.
171Apply PRED to each element of list SEQ until the first non-nil
172result is yielded and return this result. PRED defaults to
173`identity'."
174 (unless pred
175 (setq pred 'identity))
176 (catch 'rst-some
177 (dolist (elem seq)
178 (let ((r (funcall pred elem)))
179 (when r
180 (throw 'rst-some r))))))
181
182(defun rst-position-if (pred seq)
183 "Return position of first element satisfying PRED in list SEQ or nil."
184 (catch 'rst-position-if
185 (let ((i 0))
186 (dolist (elem seq)
187 (when (funcall pred elem)
188 (throw 'rst-position-if i))
189 (incf i)))))
190
191(defun rst-position (elem seq)
192 "Return position of ELEM in list SEQ or nil.
193Comparison done with `equal'."
194 ;; Create a closure containing `elem' so the `lambda' always sees our
195 ;; parameter instead of an `elem' which may be in dynamic scope at the time
196 ;; of execution of the `lambda'.
197 (lexical-let ((elem elem))
198 (rst-position-if (function (lambda (e)
199 (equal elem e)))
200 seq)))
201
202;; FIXME: Embed complicated `defconst's in `eval-when-compile'.
203
204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
205;; Versions
206
207;; testcover: ok.
208(defun rst-extract-version (delim-re head-re re tail-re var &optional default)
209 "Extract the version from a variable according to the given regexes.
210Return the version after regex DELIM-RE and HEAD-RE matching RE
211and before TAIL-RE and DELIM-RE in VAR or DEFAULT for no match."
212 (if (string-match
213 (concat delim-re head-re "\\(" re "\\)" tail-re delim-re)
214 var)
215 (match-string 1 var)
216 default))
217
218;; Use CVSHeader to really get information from CVS and not other version
219;; control systems.
220(defconst rst-cvs-header
221 "$CVSHeader: sm/rst_el/rst.el,v 1.327.2.6 2012-10-07 13:05:50 stefan Exp $")
222(defconst rst-cvs-rev
223 (rst-extract-version "\\$" "CVSHeader: \\S + " "[0-9]+\\(?:\\.[0-9]+\\)+"
224 " .*" rst-cvs-header "0.0")
225 "The CVS revision of this file. CVS revision is the development revision.")
226(defconst rst-cvs-timestamp
227 (rst-extract-version "\\$" "CVSHeader: \\S + \\S + "
228 "[0-9]+-[0-9]+-[0-9]+ [0-9]+:[0-9]+:[0-9]+" " .*"
229 rst-cvs-header "1970-01-01 00:00:00")
230 "The CVS time stamp of this file.")
231
232;; Use LastChanged... to really get information from SVN.
233(defconst rst-svn-rev
234 (rst-extract-version "\\$" "LastChangedRevision: " "[0-9]+" " "
235 "$LastChangedRevision: 7515 $")
236 "The SVN revision of this file.
237SVN revision is the upstream (docutils) revision.")
238(defconst rst-svn-timestamp
239 (rst-extract-version "\\$" "LastChangedDate: " ".+?+" " "
240 "$LastChangedDate: 2012-09-20 23:28:53 +0200 (Thu, 20 Sep 2012) $")
241 "The SVN time stamp of this file.")
242
243;; Maintained by the release process.
244(defconst rst-official-version
245 (rst-extract-version "%" "OfficialVersion: " "[0-9]+\\(?:\\.[0-9]+\\)+" " "
246 "%OfficialVersion: 1.4.0 %")
247 "Official version of the package.")
248(defconst rst-official-cvs-rev
249 (rst-extract-version "[%$]" "Revision: " "[0-9]+\\(?:\\.[0-9]+\\)+" " "
250 "%Revision: 1.327 %")
251 "CVS revision of this file in the official version.")
252
253(defconst rst-version
254 (if (equal rst-official-cvs-rev rst-cvs-rev)
255 rst-official-version
256 (format "%s (development %s [%s])" rst-official-version
257 rst-cvs-rev rst-cvs-timestamp))
258 "The version string.
259Starts with the current official version. For developer versions
260in parentheses follows the development revision and the time stamp.")
261
262(defconst rst-package-emacs-version-alist
263 '(("1.0.0" . "24.3")
264 ("1.1.0" . "24.3")
265 ("1.2.0" . "24.3")
266 ("1.2.1" . "24.3")
267 ("1.3.0" . "24.3")
268 ("1.3.1" . "24.3")
269 ("1.4.0" . "24.3")
270 ))
271
272(unless (assoc rst-official-version rst-package-emacs-version-alist)
273 (error "Version %s not listed in `rst-package-emacs-version-alist'"
274 rst-version))
275
276(add-to-list 'customize-package-emacs-version-alist
277 (cons 'ReST rst-package-emacs-version-alist))
278
279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
280;; Initialize customization
281
282\f
283(defgroup rst nil "Support for reStructuredText documents."
284 :group 'wp
285 :version "23.1"
286 :link '(url-link "http://docutils.sourceforge.net/rst.html"))
287
288\f
289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
290;; Facilities for regular expressions used everywhere
291
292;; The trailing numbers in the names give the number of referenceable regex
293;; groups contained in the regex.
294
295;; Used to be customizable but really is not customizable but fixed by the reST
296;; syntax.
297(defconst rst-bullets
298 ;; Sorted so they can form a character class when concatenated.
299 '(?- ?* ?+ ?\u2022 ?\u2023 ?\u2043)
300 "List of all possible bullet characters for bulleted lists.")
301
302(defconst rst-uri-schemes
303 '("acap" "cid" "data" "dav" "fax" "file" "ftp" "gopher" "http" "https" "imap"
304 "ldap" "mailto" "mid" "modem" "news" "nfs" "nntp" "pop" "prospero" "rtsp"
305 "service" "sip" "tel" "telnet" "tip" "urn" "vemmi" "wais")
306 "Supported URI schemes.")
307
308(defconst rst-adornment-chars
309 ;; Sorted so they can form a character class when concatenated.
310 '(?\]
311 ?! ?\" ?# ?$ ?% ?& ?' ?\( ?\) ?* ?+ ?, ?. ?/ ?: ?\; ?< ?= ?> ?? ?@ ?\[ ?\\
312 ?^ ?_ ?` ?{ ?| ?} ?~
313 ?-)
314 "Characters which may be used in adornments for sections and transitions.")
315
316(defconst rst-max-inline-length
317 1000
318 "Maximum length of inline markup to recognize.")
319
320(defconst rst-re-alist-def
321 ;; `*-beg' matches * at the beginning of a line.
322 ;; `*-end' matches * at the end of a line.
323 ;; `*-prt' matches a part of *.
324 ;; `*-tag' matches *.
325 ;; `*-sta' matches the start of * which may be followed by respective content.
326 ;; `*-pfx' matches the delimiter left of *.
327 ;; `*-sfx' matches the delimiter right of *.
328 ;; `*-hlp' helper for *.
329 ;;
330 ;; A trailing number says how many referenceable groups are contained.
331 `(
332
333 ;; Horizontal white space (`hws')
334 (hws-prt "[\t ]")
335 (hws-tag hws-prt "*") ; Optional sequence of horizontal white space.
336 (hws-sta hws-prt "+") ; Mandatory sequence of horizontal white space.
337
338 ;; Lines (`lin')
339 (lin-beg "^" hws-tag) ; Beginning of a possibly indented line.
340 (lin-end hws-tag "$") ; End of a line with optional trailing white space.
341 (linemp-tag "^" hws-tag "$") ; Empty line with optional white space.
342
343 ;; Various tags and parts
344 (ell-tag "\\.\\.\\.") ; Ellipsis
345 (bul-tag ,(concat "[" rst-bullets "]")) ; A bullet.
346 (ltr-tag "[a-zA-Z]") ; A letter enumerator tag.
347 (num-prt "[0-9]") ; A number enumerator part.
348 (num-tag num-prt "+") ; A number enumerator tag.
349 (rom-prt "[IVXLCDMivxlcdm]") ; A roman enumerator part.
350 (rom-tag rom-prt "+") ; A roman enumerator tag.
351 (aut-tag "#") ; An automatic enumerator tag.
352 (dcl-tag "::") ; Double colon.
353
354 ;; Block lead in (`bli')
355 (bli-sfx (:alt hws-sta "$")) ; Suffix of a block lead-in with *optional*
356 ; immediate content.
357
358 ;; Various starts
359 (bul-sta bul-tag bli-sfx) ; Start of a bulleted item.
360
361 ;; Explicit markup tag (`exm')
362 (exm-tag "\\.\\.")
363 (exm-sta exm-tag hws-sta)
364 (exm-beg lin-beg exm-sta)
365
366 ;; Counters in enumerations (`cnt')
367 (cntany-tag (:alt ltr-tag num-tag rom-tag aut-tag)) ; An arbitrary counter.
368 (cntexp-tag (:alt ltr-tag num-tag rom-tag)) ; An arbitrary explicit counter.
369
370 ;; Enumerator (`enm')
371 (enmany-tag (:alt
372 (:seq cntany-tag "\\.")
373 (:seq "(?" cntany-tag ")"))) ; An arbitrary enumerator.
374 (enmexp-tag (:alt
375 (:seq cntexp-tag "\\.")
376 (:seq "(?" cntexp-tag ")"))) ; An arbitrary explicit
377 ; enumerator.
378 (enmaut-tag (:alt
379 (:seq aut-tag "\\.")
380 (:seq "(?" aut-tag ")"))) ; An automatic enumerator.
381 (enmany-sta enmany-tag bli-sfx) ; An arbitrary enumerator start.
382 (enmexp-sta enmexp-tag bli-sfx) ; An arbitrary explicit enumerator start.
383 (enmexp-beg lin-beg enmexp-sta) ; An arbitrary explicit enumerator start
384 ; at the beginning of a line.
385
386 ;; Items may be enumerated or bulleted (`itm')
387 (itmany-tag (:alt enmany-tag bul-tag)) ; An arbitrary item tag.
388 (itmany-sta-1 (:grp itmany-tag) bli-sfx) ; An arbitrary item start, group
389 ; is the item tag.
390 (itmany-beg-1 lin-beg itmany-sta-1) ; An arbitrary item start at the
391 ; beginning of a line, group is the
392 ; item tag.
393
394 ;; Inline markup (`ilm')
395 (ilm-pfx (:alt "^" hws-prt "[-'\"([{<\u2018\u201c\u00ab\u2019/:]"))
396 (ilm-sfx (:alt "$" hws-prt "[]-'\")}>\u2019\u201d\u00bb/:.,;!?\\]"))
397
398 ;; Inline markup content (`ilc')
399 (ilcsgl-tag "\\S ") ; A single non-white character.
400 (ilcast-prt (:alt "[^*\\]" "\\\\.")) ; Part of non-asterisk content.
401 (ilcbkq-prt (:alt "[^`\\]" "\\\\.")) ; Part of non-backquote content.
402 (ilcbkqdef-prt (:alt "[^`\\\n]" "\\\\.")) ; Part of non-backquote
403 ; definition.
404 (ilcbar-prt (:alt "[^|\\]" "\\\\.")) ; Part of non-vertical-bar content.
405 (ilcbardef-prt (:alt "[^|\\\n]" "\\\\.")) ; Part of non-vertical-bar
406 ; definition.
407 (ilcast-sfx "[^\t *\\]") ; Suffix of non-asterisk content.
408 (ilcbkq-sfx "[^\t `\\]") ; Suffix of non-backquote content.
409 (ilcbar-sfx "[^\t |\\]") ; Suffix of non-vertical-bar content.
410 (ilcrep-hlp ,(format "\\{0,%d\\}" rst-max-inline-length)) ; Repeat count.
411 (ilcast-tag (:alt ilcsgl-tag
412 (:seq ilcsgl-tag
413 ilcast-prt ilcrep-hlp
414 ilcast-sfx))) ; Non-asterisk content.
415 (ilcbkq-tag (:alt ilcsgl-tag
416 (:seq ilcsgl-tag
417 ilcbkq-prt ilcrep-hlp
418 ilcbkq-sfx))) ; Non-backquote content.
419 (ilcbkqdef-tag (:alt ilcsgl-tag
420 (:seq ilcsgl-tag
421 ilcbkqdef-prt ilcrep-hlp
422 ilcbkq-sfx))) ; Non-backquote definition.
423 (ilcbar-tag (:alt ilcsgl-tag
424 (:seq ilcsgl-tag
425 ilcbar-prt ilcrep-hlp
426 ilcbar-sfx))) ; Non-vertical-bar content.
427 (ilcbardef-tag (:alt ilcsgl-tag
428 (:seq ilcsgl-tag
429 ilcbardef-prt ilcrep-hlp
430 ilcbar-sfx))) ; Non-vertical-bar definition.
431
432 ;; Fields (`fld')
433 (fldnam-prt (:alt "[^:\n]" "\\\\:")) ; Part of a field name.
434 (fldnam-tag fldnam-prt "+") ; A field name.
435 (fld-tag ":" fldnam-tag ":") ; A field marker.
436
437 ;; Options (`opt')
438 (optsta-tag (:alt "[-+/]" "--")) ; Start of an option.
439 (optnam-tag "\\sw" (:alt "-" "\\sw") "*") ; Name of an option.
440 (optarg-tag (:shy "[ =]\\S +")) ; Option argument.
441 (optsep-tag (:shy "," hws-prt)) ; Separator between options.
442 (opt-tag (:shy optsta-tag optnam-tag optarg-tag "?")) ; A complete option.
443
444 ;; Footnotes and citations (`fnc')
445 (fncnam-prt "[^\]\n]") ; Part of a footnote or citation name.
446 (fncnam-tag fncnam-prt "+") ; A footnote or citation name.
447 (fnc-tag "\\[" fncnam-tag "]") ; A complete footnote or citation tag.
448 (fncdef-tag-2 (:grp exm-sta)
449 (:grp fnc-tag)) ; A complete footnote or citation definition
450 ; tag. First group is the explicit markup
451 ; start, second group is the footnote /
452 ; citation tag.
453 (fnc-sta-2 fncdef-tag-2 bli-sfx) ; Start of a footnote or citation
454 ; definition. First group is the explicit
455 ; markup start, second group is the
456 ; footnote / citation tag.
457
458 ;; Substitutions (`sub')
459 (sub-tag "|" ilcbar-tag "|") ; A complete substitution tag.
460 (subdef-tag "|" ilcbardef-tag "|") ; A complete substitution definition
461 ; tag.
462
463 ;; Symbol (`sym')
464 (sym-prt "[-+.:_]") ; Non-word part of a symbol.
465 (sym-tag (:shy "\\sw+" (:shy sym-prt "\\sw+") "*"))
466
467 ;; URIs (`uri')
468 (uri-tag (:alt ,@rst-uri-schemes))
469
470 ;; Adornment (`ado')
471 (ado-prt "[" ,(concat rst-adornment-chars) "]")
472 (adorep3-hlp "\\{3,\\}") ; There must be at least 3 characters because
473 ; otherwise explicit markup start would be
474 ; recognized.
475 (adorep2-hlp "\\{2,\\}") ; As `adorep3-hlp' but when the first of three
476 ; characters is matched differently.
477 (ado-tag-1-1 (:grp ado-prt)
478 "\\1" adorep2-hlp) ; A complete adornment, group is the first
479 ; adornment character and MUST be the FIRST
480 ; group in the whole expression.
481 (ado-tag-1-2 (:grp ado-prt)
482 "\\2" adorep2-hlp) ; A complete adornment, group is the first
483 ; adornment character and MUST be the
484 ; SECOND group in the whole expression.
485 (ado-beg-2-1 "^" (:grp ado-tag-1-2)
486 lin-end) ; A complete adornment line; first group is the whole
487 ; adornment and MUST be the FIRST group in the whole
488 ; expression; second group is the first adornment
489 ; character.
490
491 ;; Titles (`ttl')
492 (ttl-tag "\\S *\\w\\S *") ; A title text.
493 (ttl-beg lin-beg ttl-tag) ; A title text at the beginning of a line.
494
495 ;; Directives and substitution definitions (`dir')
496 (dir-tag-3 (:grp exm-sta)
497 (:grp (:shy subdef-tag hws-sta) "?")
498 (:grp sym-tag dcl-tag)) ; A directive or substitution definition
499 ; tag. First group is explicit markup
500 ; start, second group is a possibly
501 ; empty substitution tag, third group is
502 ; the directive tag including the double
503 ; colon.
504 (dir-sta-3 dir-tag-3 bli-sfx) ; Start of a directive or substitution
505 ; definition. Groups are as in dir-tag-3.
506
507 ;; Literal block (`lit')
508 (lit-sta-2 (:grp (:alt "[^.\n]" "\\.[^.\n]") ".*") "?"
509 (:grp dcl-tag) "$") ; Start of a literal block. First group is
510 ; any text before the double colon tag which
511 ; may not exist, second group is the double
512 ; colon tag.
513
514 ;; Comments (`cmt')
515 (cmt-sta-1 (:grp exm-sta) "[^\[|_\n]"
516 (:alt "[^:\n]" (:seq ":" (:alt "[^:\n]" "$")))
517 "*$") ; Start of a comment block; first group is explicit markup
518 ; start.
519
520 ;; Paragraphs (`par')
521 (par-tag- (:alt itmany-tag fld-tag opt-tag fncdef-tag-2 dir-tag-3 exm-tag)
522 ) ; Tag at the beginning of a paragraph; there may be groups in
523 ; certain cases.
524 )
525 "Definition alist of relevant regexes.
526Each entry consists of the symbol naming the regex and an
527argument list for `rst-re'.")
528
529(defvar rst-re-alist) ; Forward declare to use it in `rst-re'.
530
531;; FIXME: Use `sregex` or `rx` instead of re-inventing the wheel.
532(rst-testcover-add-compose 'rst-re)
533;; testcover: ok.
534(defun rst-re (&rest args)
535 "Interpret ARGS as regular expressions and return a regex string.
536Each element of ARGS may be one of the following:
537
538A string which is inserted unchanged.
539
540A character which is resolved to a quoted regex.
541
542A symbol which is resolved to a string using `rst-re-alist-def'.
543
544A list with a keyword in the car. Each element of the cdr of such
545a list is recursively interpreted as ARGS. The results of this
546interpretation are concatenated according to the keyword.
547
548For the keyword `:seq' the results are simply concatenated.
549
550For the keyword `:shy' the results are concatenated and
551surrounded by a shy-group (\"\\(?:...\\)\").
552
553For the keyword `:alt' the results form an alternative (\"\\|\")
554which is shy-grouped (\"\\(?:...\\)\").
555
556For the keyword `:grp' the results are concatenated and form a
557referenceable group (\"\\(...\\)\").
558
559After interpretation of ARGS the results are concatenated as for
560`:seq'."
561 (apply 'concat
562 (mapcar
563 (lambda (re)
564 (cond
565 ((stringp re)
566 re)
567 ((symbolp re)
568 (cadr (assoc re rst-re-alist)))
569 ((characterp re)
570 (regexp-quote (char-to-string re)))
571 ((listp re)
572 (let ((nested
573 (mapcar (lambda (elt)
574 (rst-re elt))
575 (cdr re))))
576 (cond
577 ((eq (car re) :seq)
578 (mapconcat 'identity nested ""))
579 ((eq (car re) :shy)
580 (concat "\\(?:" (mapconcat 'identity nested "") "\\)"))
581 ((eq (car re) :grp)
582 (concat "\\(" (mapconcat 'identity nested "") "\\)"))
583 ((eq (car re) :alt)
584 (concat "\\(?:" (mapconcat 'identity nested "\\|") "\\)"))
585 (t
586 (error "Unknown list car: %s" (car re))))))
587 (t
588 (error "Unknown object type for building regex: %s" re))))
589 args)))
590
591;; FIXME: Remove circular dependency between `rst-re' and `rst-re-alist'.
592(with-no-warnings ; Silence byte-compiler about this construction.
593 (defconst rst-re-alist
594 ;; Shadow global value we are just defining so we can construct it step by
595 ;; step.
596 (let (rst-re-alist)
597 (dolist (re rst-re-alist-def rst-re-alist)
598 (setq rst-re-alist
599 (nconc rst-re-alist
600 (list (list (car re) (apply 'rst-re (cdr re))))))))
601 "Alist mapping symbols from `rst-re-alist-def' to regex strings."))
602
603\f
604;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
605;; Mode definition
606
607;; testcover: ok.
608(defun rst-define-key (keymap key def &rest deprecated)
609 "Bind like `define-key' but add deprecated key definitions.
610KEYMAP, KEY, and DEF are as in `define-key'. DEPRECATED key
611definitions should be in vector notation. These are defined as
612well but give an additional message."
613 (define-key keymap key def)
614 (dolist (dep-key deprecated)
615 (define-key keymap dep-key
616 `(lambda ()
617 ,(format "Deprecated binding for %s, use \\[%s] instead." def def)
618 (interactive)
619 (call-interactively ',def)
620 (message "[Deprecated use of key %s; use key %s instead]"
621 (key-description (this-command-keys))
622 (key-description ,key))))))
623
624;; Key bindings.
625(defvar rst-mode-map
626 (let ((map (make-sparse-keymap)))
627
628 ;; \C-c is the general keymap.
629 (rst-define-key map [?\C-c ?\C-h] 'describe-prefix-bindings)
630
631 ;;
632 ;; Section Adornments
633 ;;
634 ;; The adjustment function that adorns or rotates a section title.
635 (rst-define-key map [?\C-c ?\C-=] 'rst-adjust [?\C-c ?\C-a t])
636 (rst-define-key map [?\C-=] 'rst-adjust) ; Does not work on the Mac OSX and
637 ; on consoles.
638
639 ;; \C-c \C-a is the keymap for adornments.
640 (rst-define-key map [?\C-c ?\C-a ?\C-h] 'describe-prefix-bindings)
641 ;; Another binding which works with all types of input.
642 (rst-define-key map [?\C-c ?\C-a ?\C-a] 'rst-adjust)
643 ;; Display the hierarchy of adornments implied by the current document
644 ;; contents.
645 (rst-define-key map [?\C-c ?\C-a ?\C-d] 'rst-display-adornments-hierarchy)
646 ;; Homogenize the adornments in the document.
647 (rst-define-key map [?\C-c ?\C-a ?\C-s] 'rst-straighten-adornments
648 [?\C-c ?\C-s])
649
650 ;;
651 ;; Section Movement and Selection
652 ;;
653 ;; Mark the subsection where the cursor is.
654 (rst-define-key map [?\C-\M-h] 'rst-mark-section
655 ;; Same as mark-defun sgml-mark-current-element.
656 [?\C-c ?\C-m])
657 ;; Move backward/forward between section titles.
658 ;; FIXME: Also bind similar to outline mode.
659 (rst-define-key map [?\C-\M-a] 'rst-backward-section
660 ;; Same as beginning-of-defun.
661 [?\C-c ?\C-n])
662 (rst-define-key map [?\C-\M-e] 'rst-forward-section
663 ;; Same as end-of-defun.
664 [?\C-c ?\C-p])
665
666 ;;
667 ;; Operating on regions
668 ;;
669 ;; \C-c \C-r is the keymap for regions.
670 (rst-define-key map [?\C-c ?\C-r ?\C-h] 'describe-prefix-bindings)
671 ;; Makes region a line-block.
672 (rst-define-key map [?\C-c ?\C-r ?\C-l] 'rst-line-block-region
673 [?\C-c ?\C-d])
674 ;; Shift region left or right according to tabs.
675 (rst-define-key map [?\C-c ?\C-r tab] 'rst-shift-region
676 [?\C-c ?\C-r t] [?\C-c ?\C-l t])
677
678 ;;
679 ;; Operating on lists
680 ;;
681 ;; \C-c \C-l is the keymap for lists.
682 (rst-define-key map [?\C-c ?\C-l ?\C-h] 'describe-prefix-bindings)
683 ;; Makes paragraphs in region as a bullet list.
684 (rst-define-key map [?\C-c ?\C-l ?\C-b] 'rst-bullet-list-region
685 [?\C-c ?\C-b])
686 ;; Makes paragraphs in region as a enumeration.
687 (rst-define-key map [?\C-c ?\C-l ?\C-e] 'rst-enumerate-region
688 [?\C-c ?\C-e])
689 ;; Converts bullets to an enumeration.
690 (rst-define-key map [?\C-c ?\C-l ?\C-c] 'rst-convert-bullets-to-enumeration
691 [?\C-c ?\C-v])
692 ;; Make sure that all the bullets in the region are consistent.
693 (rst-define-key map [?\C-c ?\C-l ?\C-s] 'rst-straighten-bullets-region
694 [?\C-c ?\C-w])
695 ;; Insert a list item.
696 (rst-define-key map [?\C-c ?\C-l ?\C-i] 'rst-insert-list)
697
698 ;;
699 ;; Table-of-Contents Features
700 ;;
701 ;; \C-c \C-t is the keymap for table of contents.
702 (rst-define-key map [?\C-c ?\C-t ?\C-h] 'describe-prefix-bindings)
703 ;; Enter a TOC buffer to view and move to a specific section.
704 (rst-define-key map [?\C-c ?\C-t ?\C-t] 'rst-toc)
705 ;; Insert a TOC here.
706 (rst-define-key map [?\C-c ?\C-t ?\C-i] 'rst-toc-insert
707 [?\C-c ?\C-i])
708 ;; Update the document's TOC (without changing the cursor position).
709 (rst-define-key map [?\C-c ?\C-t ?\C-u] 'rst-toc-update
710 [?\C-c ?\C-u])
711 ;; Go to the section under the cursor (cursor must be in TOC).
712 (rst-define-key map [?\C-c ?\C-t ?\C-j] 'rst-goto-section
713 [?\C-c ?\C-f])
714
715 ;;
716 ;; Converting Documents from Emacs
717 ;;
718 ;; \C-c \C-c is the keymap for compilation.
719 (rst-define-key map [?\C-c ?\C-c ?\C-h] 'describe-prefix-bindings)
720 ;; Run one of two pre-configured toolset commands on the document.
721 (rst-define-key map [?\C-c ?\C-c ?\C-c] 'rst-compile
722 [?\C-c ?1])
723 (rst-define-key map [?\C-c ?\C-c ?\C-a] 'rst-compile-alt-toolset
724 [?\C-c ?2])
725 ;; Convert the active region to pseudo-xml using the docutils tools.
726 (rst-define-key map [?\C-c ?\C-c ?\C-x] 'rst-compile-pseudo-region
727 [?\C-c ?3])
728 ;; Convert the current document to PDF and launch a viewer on the results.
729 (rst-define-key map [?\C-c ?\C-c ?\C-p] 'rst-compile-pdf-preview
730 [?\C-c ?4])
731 ;; Convert the current document to S5 slides and view in a web browser.
732 (rst-define-key map [?\C-c ?\C-c ?\C-s] 'rst-compile-slides-preview
733 [?\C-c ?5])
734
735 map)
736 "Keymap for reStructuredText mode commands.
737This inherits from Text mode.")
738
739
740;; Abbrevs.
741(define-abbrev-table 'rst-mode-abbrev-table
742 (mapcar (lambda (x) (append x '(nil 0 system)))
743 '(("contents" ".. contents::\n..\n ")
744 ("con" ".. contents::\n..\n ")
745 ("cont" "[...]")
746 ("skip" "\n\n[...]\n\n ")
747 ("seq" "\n\n[...]\n\n ")
748 ;; FIXME: Add footnotes, links, and more.
749 ))
750 "Abbrev table used while in `rst-mode'.")
751
752
753;; Syntax table.
754(defvar rst-mode-syntax-table
755 (let ((st (copy-syntax-table text-mode-syntax-table)))
756 (modify-syntax-entry ?$ "." st)
757 (modify-syntax-entry ?% "." st)
758 (modify-syntax-entry ?& "." st)
759 (modify-syntax-entry ?' "." st)
760 (modify-syntax-entry ?* "." st)
761 (modify-syntax-entry ?+ "." st)
762 (modify-syntax-entry ?- "." st)
763 (modify-syntax-entry ?/ "." st)
764 (modify-syntax-entry ?< "." st)
765 (modify-syntax-entry ?= "." st)
766 (modify-syntax-entry ?> "." st)
767 (modify-syntax-entry ?\\ "\\" st)
768 (modify-syntax-entry ?_ "." st)
769 (modify-syntax-entry ?| "." st)
770 (modify-syntax-entry ?\u00ab "." st)
771 (modify-syntax-entry ?\u00bb "." st)
772 (modify-syntax-entry ?\u2018 "." st)
773 (modify-syntax-entry ?\u2019 "." st)
774 (modify-syntax-entry ?\u201c "." st)
775 (modify-syntax-entry ?\u201d "." st)
776
777 st)
778 "Syntax table used while in `rst-mode'.")
779
780
781(defcustom rst-mode-hook nil
782 "Hook run when `rst-mode' is turned on.
783The hook for `text-mode' is run before this one."
784 :group 'rst
785 :type '(hook))
786(rst-testcover-defcustom)
787
788;; Pull in variable definitions silencing byte-compiler.
789(require 'newcomment)
790
791;; Use rst-mode for *.rst and *.rest files. Many ReStructured-Text files
792;; use *.txt, but this is too generic to be set as a default.
793;;;###autoload (add-to-list 'auto-mode-alist (purecopy '("\\.re?st\\'" . rst-mode)))
794;;;###autoload
795(define-derived-mode rst-mode text-mode "ReST"
796 "Major mode for editing reStructuredText documents.
797\\<rst-mode-map>
798
799Turning on `rst-mode' calls the normal hooks `text-mode-hook'
800and `rst-mode-hook'. This mode also supports font-lock
801highlighting.
802
803\\{rst-mode-map}"
804 :abbrev-table rst-mode-abbrev-table
805 :syntax-table rst-mode-syntax-table
806 :group 'rst
807
808 ;; Paragraph recognition.
809 (set (make-local-variable 'paragraph-separate)
810 (rst-re '(:alt
811 "\f"
812 lin-end)))
813 (set (make-local-variable 'paragraph-start)
814 (rst-re '(:alt
815 "\f"
816 lin-end
817 (:seq hws-tag par-tag- bli-sfx))))
818
819 ;; Indenting and filling.
820 (set (make-local-variable 'indent-line-function) 'rst-indent-line)
821 (set (make-local-variable 'adaptive-fill-mode) t)
822 (set (make-local-variable 'adaptive-fill-regexp)
823 (rst-re 'hws-tag 'par-tag- "?" 'hws-tag))
824 (set (make-local-variable 'adaptive-fill-function) 'rst-adaptive-fill)
825 (set (make-local-variable 'fill-paragraph-handle-comment) nil)
826
827 ;; Comments.
828 (set (make-local-variable 'comment-start) ".. ")
829 (set (make-local-variable 'comment-start-skip)
830 (rst-re 'lin-beg 'exm-tag 'bli-sfx))
831 (set (make-local-variable 'comment-continue) " ")
832 (set (make-local-variable 'comment-multi-line) t)
833 (set (make-local-variable 'comment-use-syntax) nil)
834 ;; reStructuredText has not really a comment ender but nil is not really a
835 ;; permissible value.
836 (set (make-local-variable 'comment-end) "")
837 (set (make-local-variable 'comment-end-skip) nil)
838
839 ;; Commenting in reStructuredText is very special so use our own set of
840 ;; functions.
841 (set (make-local-variable 'comment-line-break-function)
842 'rst-comment-line-break)
843 (set (make-local-variable 'comment-indent-function)
844 'rst-comment-indent)
845 (set (make-local-variable 'comment-insert-comment-function)
846 'rst-comment-insert-comment)
847 (set (make-local-variable 'comment-region-function)
848 'rst-comment-region)
849 (set (make-local-variable 'uncomment-region-function)
850 'rst-uncomment-region)
851
852 ;; Imenu and which function.
853 ;; FIXME: Check documentation of `which-function' for alternative ways to
854 ;; determine the current function name.
855 (set (make-local-variable 'imenu-create-index-function)
856 'rst-imenu-create-index)
857
858 ;; Font lock.
859 (set (make-local-variable 'font-lock-defaults)
860 '(rst-font-lock-keywords
861 t nil nil nil
862 (font-lock-multiline . t)
863 (font-lock-mark-block-function . mark-paragraph)))
864 (add-hook 'font-lock-extend-region-functions 'rst-font-lock-extend-region t)
865
866 ;; Text after a changed line may need new fontification.
867 (set (make-local-variable 'jit-lock-contextually) t))
868
869;;;###autoload
870(define-minor-mode rst-minor-mode
871 "Toggle ReST minor mode.
872With a prefix argument ARG, enable ReST minor mode if ARG is
873positive, and disable it otherwise. If called from Lisp, enable
874the mode if ARG is omitted or nil.
875
876When ReST minor mode is enabled, the ReST mode keybindings
877are installed on top of the major mode bindings. Use this
878for modes derived from Text mode, like Mail mode."
879 ;; The initial value.
880 nil
881 ;; The indicator for the mode line.
882 " ReST"
883 ;; The minor mode bindings.
884 rst-mode-map
885 :group 'rst)
886
887;; FIXME: can I somehow install these too?
888;; :abbrev-table rst-mode-abbrev-table
889;; :syntax-table rst-mode-syntax-table
890
891\f
892;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
893;; Section Adornment Adjustment
894;; ============================
895;;
896;; The following functions implement a smart automatic title sectioning feature.
897;; The idea is that with the cursor sitting on a section title, we try to get as
898;; much information from context and try to do the best thing automatically.
899;; This function can be invoked many times and/or with prefix argument to rotate
900;; between the various sectioning adornments.
901;;
902;; Definitions: the two forms of sectioning define semantically separate section
903;; levels. A sectioning ADORNMENT consists in:
904;;
905;; - a CHARACTER
906;;
907;; - a STYLE which can be either of 'simple' or 'over-and-under'.
908;;
909;; - an INDENT (meaningful for the over-and-under style only) which determines
910;; how many characters and over-and-under style is hanging outside of the
911;; title at the beginning and ending.
912;;
913;; Here are two examples of adornments (| represents the window border, column
914;; 0):
915;;
916;; |
917;; 1. char: '-' e |Some Title
918;; style: simple |----------
919;; |
920;; 2. char: '=' |==============
921;; style: over-and-under | Some Title
922;; indent: 2 |==============
923;; |
924;;
925;; Some notes:
926;;
927;; - The underlining character that is used depends on context. The file is
928;; scanned to find other sections and an appropriate character is selected.
929;; If the function is invoked on a section that is complete, the character is
930;; rotated among the existing section adornments.
931;;
932;; Note that when rotating the characters, if we come to the end of the
933;; hierarchy of adornments, the variable rst-preferred-adornments is
934;; consulted to propose a new underline adornment, and if continued, we cycle
935;; the adornments all over again. Set this variable to nil if you want to
936;; limit the underlining character propositions to the existing adornments in
937;; the file.
938;;
939;; - An underline/overline that is not extended to the column at which it should
940;; be hanging is dubbed INCOMPLETE. For example::
941;;
942;; |Some Title
943;; |-------
944;;
945;; Examples of default invocation:
946;;
947;; |Some Title ---> |Some Title
948;; | |----------
949;;
950;; |Some Title ---> |Some Title
951;; |----- |----------
952;;
953;; | |------------
954;; | Some Title ---> | Some Title
955;; | |------------
956;;
957;; In over-and-under style, when alternating the style, a variable is
958;; available to select how much default indent to use (it can be zero). Note
959;; that if the current section adornment already has an indent, we don't
960;; adjust it to the default, we rather use the current indent that is already
961;; there for adjustment (unless we cycle, in which case we use the indent
962;; that has been found previously).
963
964(defgroup rst-adjust nil
965 "Settings for adjustment and cycling of section title adornments."
966 :group 'rst
967 :version "21.1")
968
969(define-obsolete-variable-alias
970 'rst-preferred-decorations 'rst-preferred-adornments "rst 1.0.0")
971(defcustom rst-preferred-adornments '((?= over-and-under 1)
972 (?= simple 0)
973 (?- simple 0)
974 (?~ simple 0)
975 (?+ simple 0)
976 (?` simple 0)
977 (?# simple 0)
978 (?@ simple 0))
979 "Preferred hierarchy of section title adornments.
980
981A list consisting of lists of the form (CHARACTER STYLE INDENT).
982CHARACTER is the character used. STYLE is one of the symbols
983OVER-AND-UNDER or SIMPLE. INDENT is an integer giving the wanted
984indentation for STYLE OVER-AND-UNDER. CHARACTER and STYLE are
985always used when a section adornment is described. In other
986places t instead of a list stands for a transition.
987
988This sequence is consulted to offer a new adornment suggestion
989when we rotate the underlines at the end of the existing
990hierarchy of characters, or when there is no existing section
991title in the file.
992
993Set this to an empty list to use only the adornment found in the
994file."
995 :group 'rst-adjust
996 :type `(repeat
997 (group :tag "Adornment specification"
998 (choice :tag "Adornment character"
999 ,@(mapcar (lambda (char)
1000 (list 'const
1001 :tag (char-to-string char) char))
1002 rst-adornment-chars))
1003 (radio :tag "Adornment type"
1004 (const :tag "Overline and underline" over-and-under)
1005 (const :tag "Underline only" simple))
1006 (integer :tag "Indentation for overline and underline type"
1007 :value 0))))
1008(rst-testcover-defcustom)
1009
1010(defcustom rst-default-indent 1
1011 "Number of characters to indent the section title.
1012
1013This is used for when toggling adornment styles, when switching
1014from a simple adornment style to a over-and-under adornment
1015style."
1016 :group 'rst-adjust
1017 :type '(integer))
1018(rst-testcover-defcustom)
1019
1020(defun rst-compare-adornments (ado1 ado2)
1021 "Compare adornments.
1022Return true if both ADO1 and ADO2 adornments are equal,
1023according to restructured text semantics (only the character and
1024the style are compared, the indentation does not matter)."
1025 (and (eq (car ado1) (car ado2))
1026 (eq (cadr ado1) (cadr ado2))))
1027
1028
1029(defun rst-get-adornment-match (hier ado)
1030 "Return the index (level) in hierarchy HIER of adornment ADO.
1031This basically just searches for the item using the appropriate
1032comparison and returns the index. Return nil if the item is
1033not found."
1034 (let ((cur hier))
1035 (while (and cur (not (rst-compare-adornments (car cur) ado)))
1036 (setq cur (cdr cur)))
1037 cur))
1038
1039;; testcover: FIXME: Test with `rst-preferred-adornments' == nil. Add test
1040;; `rst-adjust-no-preference'.
1041(defun rst-suggest-new-adornment (allados &optional prev)
1042 "Suggest a new, different adornment from all that have been seen.
1043
1044ALLADOS is the set of all adornments, including the line numbers.
1045PREV is the optional previous adornment, in order to suggest a
1046better match."
1047
1048 ;; For all the preferred adornments...
1049 (let* (
1050 ;; If 'prev' is given, reorder the list to start searching after the
1051 ;; match.
1052 (fplist
1053 (cdr (rst-get-adornment-match rst-preferred-adornments prev)))
1054
1055 ;; List of candidates to search.
1056 (curpotential (append fplist rst-preferred-adornments)))
1057 (while
1058 ;; For all the adornments...
1059 (let ((cur allados)
1060 found)
1061 (while (and cur (not found))
1062 (if (rst-compare-adornments (car cur) (car curpotential))
1063 ;; Found it!
1064 (setq found (car curpotential))
1065 (setq cur (cdr cur))))
1066 found)
1067
1068 (setq curpotential (cdr curpotential)))
1069
1070 (copy-sequence (car curpotential))))
1071
1072(defun rst-delete-entire-line ()
1073 "Delete the entire current line without using the `kill-ring'."
1074 (delete-region (line-beginning-position)
1075 (line-beginning-position 2)))
1076
1077(defun rst-update-section (char style &optional indent)
1078 "Unconditionally update the style of a section adornment.
1079
1080Do this using the given character CHAR, with STYLE 'simple
1081or 'over-and-under, and with indent INDENT. If the STYLE
1082is 'simple, whitespace before the title is removed (indent
1083is always assumed to be 0).
1084
1085If there are existing overline and/or underline from the
1086existing adornment, they are removed before adding the
1087requested adornment."
1088 (end-of-line)
1089 (let ((marker (point-marker))
1090 len)
1091
1092 ;; Fixup whitespace at the beginning and end of the line.
1093 (if (or (null indent) (eq style 'simple)) ;; testcover: ok.
1094 (setq indent 0))
1095 (beginning-of-line)
1096 (delete-horizontal-space)
1097 (insert (make-string indent ? ))
1098
1099 (end-of-line)
1100 (delete-horizontal-space)
1101
1102 ;; Set the current column, we're at the end of the title line.
1103 (setq len (+ (current-column) indent))
1104
1105 ;; Remove previous line if it is an adornment.
1106 (save-excursion
1107 (forward-line -1) ;; testcover: FIXME: Doesn't work when in first line
1108 ;; of buffer.
1109 (if (and (looking-at (rst-re 'ado-beg-2-1))
1110 ;; Avoid removing the underline of a title right above us.
1111 (save-excursion (forward-line -1)
1112 (not (looking-at (rst-re 'ttl-beg)))))
1113 (rst-delete-entire-line)))
1114
1115 ;; Remove following line if it is an adornment.
1116 (save-excursion
1117 (forward-line +1) ;; testcover: FIXME: Doesn't work when in last line
1118 ;; of buffer.
1119 (if (looking-at (rst-re 'ado-beg-2-1))
1120 (rst-delete-entire-line))
1121 ;; Add a newline if we're at the end of the buffer, for the subsequence
1122 ;; inserting of the underline.
1123 (if (= (point) (buffer-end 1))
1124 (newline 1)))
1125
1126 ;; Insert overline.
1127 (if (eq style 'over-and-under)
1128 (save-excursion
1129 (beginning-of-line)
1130 (open-line 1)
1131 (insert (make-string len char))))
1132
1133 ;; Insert underline.
1134 (1value ;; Line has been inserted above.
1135 (forward-line +1))
1136 (open-line 1)
1137 (insert (make-string len char))
1138
1139 (1value ;; Line has been inserted above.
1140 (forward-line +1))
1141 (goto-char marker)))
1142
1143(defun rst-classify-adornment (adornment end)
1144 "Classify adornment for section titles and transitions.
1145ADORNMENT is the complete adornment string as found in the buffer
1146with optional trailing whitespace. END is the point after the
1147last character of ADORNMENT.
1148
1149Return a list. The first entry is t for a transition or a
1150cons (CHARACTER . STYLE). Check `rst-preferred-adornments' for
1151the meaning of CHARACTER and STYLE.
1152
1153The remaining list forms four match groups as returned by
1154`match-data'. Match group 0 matches the whole construct. Match
1155group 1 matches the overline adornment if present. Match group 2
1156matches the section title text or the transition. Match group 3
1157matches the underline adornment.
1158
1159Return nil if no syntactically valid adornment is found."
1160 (save-excursion
1161 (save-match-data
1162 (when (string-match (rst-re 'ado-beg-2-1) adornment)
1163 (goto-char end)
1164 (let* ((ado-ch (string-to-char (match-string 2 adornment)))
1165 (ado-re (rst-re ado-ch 'adorep3-hlp))
1166 (end-pnt (point))
1167 (beg-pnt (progn
1168 (1value ;; No lines may be left to move.
1169 (forward-line 0))
1170 (point)))
1171 (nxt-emp ; Next line nonexistent or empty
1172 (save-excursion
1173 (or (not (zerop (forward-line 1)))
1174 ;; testcover: FIXME: Add test classifying at the end of
1175 ;; buffer.
1176 (looking-at (rst-re 'lin-end)))))
1177 (prv-emp ; Previous line nonexistent or empty
1178 (save-excursion
1179 (or (not (zerop (forward-line -1)))
1180 (looking-at (rst-re 'lin-end)))))
1181 (ttl-blw ; Title found below starting here.
1182 (save-excursion
1183 (and
1184 (zerop (forward-line 1)) ;; testcover: FIXME: Add test
1185 ;; classifying at the end of
1186 ;; buffer.
1187 (looking-at (rst-re 'ttl-beg))
1188 (point))))
1189 (ttl-abv ; Title found above starting here.
1190 (save-excursion
1191 (and
1192 (zerop (forward-line -1))
1193 (looking-at (rst-re 'ttl-beg))
1194 (point))))
1195 (und-fnd ; Matching underline found starting here.
1196 (save-excursion
1197 (and ttl-blw
1198 (zerop (forward-line 2)) ;; testcover: FIXME: Add test
1199 ;; classifying at the end of
1200 ;; buffer.
1201 (looking-at (rst-re ado-re 'lin-end))
1202 (point))))
1203 (ovr-fnd ; Matching overline found starting here.
1204 (save-excursion
1205 (and ttl-abv
1206 (zerop (forward-line -2))
1207 (looking-at (rst-re ado-re 'lin-end))
1208 (point))))
1209 key beg-ovr end-ovr beg-txt end-txt beg-und end-und)
1210 (cond
1211 ((and nxt-emp prv-emp)
1212 ;; A transition.
1213 (setq key t
1214 beg-txt beg-pnt
1215 end-txt end-pnt))
1216 ((or und-fnd ovr-fnd)
1217 ;; An overline with an underline.
1218 (setq key (cons ado-ch 'over-and-under))
1219 (let (;; Prefer overline match over underline match.
1220 (und-pnt (if ovr-fnd beg-pnt und-fnd))
1221 (ovr-pnt (if ovr-fnd ovr-fnd beg-pnt))
1222 (txt-pnt (if ovr-fnd ttl-abv ttl-blw)))
1223 (goto-char ovr-pnt)
1224 (setq beg-ovr (point)
1225 end-ovr (line-end-position))
1226 (goto-char txt-pnt)
1227 (setq beg-txt (point)
1228 end-txt (line-end-position))
1229 (goto-char und-pnt)
1230 (setq beg-und (point)
1231 end-und (line-end-position))))
1232 (ttl-abv
1233 ;; An underline.
1234 (setq key (cons ado-ch 'simple)
1235 beg-und beg-pnt
1236 end-und end-pnt)
1237 (goto-char ttl-abv)
1238 (setq beg-txt (point)
1239 end-txt (line-end-position)))
1240 (t
1241 ;; Invalid adornment.
1242 (setq key nil)))
1243 (if key
1244 (list key
1245 (or beg-ovr beg-txt)
1246 (or end-und end-txt)
1247 beg-ovr end-ovr beg-txt end-txt beg-und end-und)))))))
1248
1249(defun rst-find-title-line ()
1250 "Find a section title line around point and return its characteristics.
1251If the point is on an adornment line find the respective title
1252line. If the point is on an empty line check previous or next
1253line whether it is a suitable title line and use it if so. If
1254point is on a suitable title line use it.
1255
1256If no title line is found return nil.
1257
1258Otherwise return as `rst-classify-adornment' does. However, if
1259the title line has no syntactically valid adornment STYLE is nil
1260in the first element. If there is no adornment around the title
1261CHARACTER is also nil and match groups for overline and underline
1262are nil."
1263 (save-excursion
1264 (1value ;; No lines may be left to move.
1265 (forward-line 0))
1266 (let ((orig-pnt (point))
1267 (orig-end (line-end-position)))
1268 (cond
1269 ((looking-at (rst-re 'ado-beg-2-1))
1270 (let ((char (string-to-char (match-string-no-properties 2)))
1271 (r (rst-classify-adornment (match-string-no-properties 0)
1272 (match-end 0))))
1273 (cond
1274 ((not r)
1275 ;; Invalid adornment - check whether this is an incomplete overline.
1276 (if (and
1277 (zerop (forward-line 1))
1278 (looking-at (rst-re 'ttl-beg)))
1279 (list (cons char nil) orig-pnt (line-end-position)
1280 orig-pnt orig-end (point) (line-end-position) nil nil)))
1281 ((consp (car r))
1282 ;; A section title - not a transition.
1283 r))))
1284 ((looking-at (rst-re 'lin-end))
1285 (or
1286 (save-excursion
1287 (if (and (zerop (forward-line -1))
1288 (looking-at (rst-re 'ttl-beg)))
1289 (list (cons nil nil) (point) (line-end-position)
1290 nil nil (point) (line-end-position) nil nil)))
1291 (save-excursion
1292 (if (and (zerop (forward-line 1))
1293 (looking-at (rst-re 'ttl-beg)))
1294 (list (cons nil nil) (point) (line-end-position)
1295 nil nil (point) (line-end-position) nil nil)))))
1296 ((looking-at (rst-re 'ttl-beg))
1297 ;; Try to use the underline.
1298 (let ((r (rst-classify-adornment
1299 (buffer-substring-no-properties
1300 (line-beginning-position 2) (line-end-position 2))
1301 (line-end-position 2))))
1302 (if r
1303 r
1304 ;; No valid adornment found.
1305 (list (cons nil nil) (point) (line-end-position)
1306 nil nil (point) (line-end-position) nil nil))))))))
1307
1308;; The following function and variables are used to maintain information about
1309;; current section adornment in a buffer local cache. Thus they can be used for
1310;; font-locking and manipulation commands.
1311
1312(defvar rst-all-sections nil
1313 "All section adornments in the buffer as found by `rst-find-all-adornments'.
1314t when no section adornments were found.")
1315(make-variable-buffer-local 'rst-all-sections)
1316
1317;; FIXME: If this variable is set to a different value font-locking of section
1318;; headers is wrong.
1319(defvar rst-section-hierarchy nil
1320 "Section hierarchy in the buffer as determined by `rst-get-hierarchy'.
1321t when no section adornments were found. Value depends on
1322`rst-all-sections'.")
1323(make-variable-buffer-local 'rst-section-hierarchy)
1324
1325(rst-testcover-add-1value 'rst-reset-section-caches)
1326(defun rst-reset-section-caches ()
1327 "Reset all section cache variables.
1328Should be called by interactive functions which deal with sections."
1329 (setq rst-all-sections nil
1330 rst-section-hierarchy nil))
1331
1332(defun rst-find-all-adornments ()
1333 "Return all the section adornments in the current buffer.
1334Return a list of (LINE . ADORNMENT) with ascending LINE where
1335LINE is the line containing the section title. ADORNMENT consists
1336of a (CHARACTER STYLE INDENT) triple as described for
1337`rst-preferred-adornments'.
1338
1339Uses and sets `rst-all-sections'."
1340 (unless rst-all-sections
1341 (let (positions)
1342 ;; Iterate over all the section titles/adornments in the file.
1343 (save-excursion
1344 (goto-char (point-min))
1345 (while (re-search-forward (rst-re 'ado-beg-2-1) nil t)
1346 (let ((ado-data (rst-classify-adornment
1347 (match-string-no-properties 0) (point))))
1348 (when (and ado-data
1349 (consp (car ado-data))) ; Ignore transitions.
1350 (set-match-data (cdr ado-data))
1351 (goto-char (match-beginning 2)) ; Goto the title start.
1352 (push (cons (1+ (count-lines (point-min) (point)))
1353 (list (caar ado-data)
1354 (cdar ado-data)
1355 (current-indentation)))
1356 positions)
1357 (goto-char (match-end 0))))) ; Go beyond the whole thing.
1358 (setq positions (nreverse positions))
1359 (setq rst-all-sections (or positions t)))))
1360 (if (eq rst-all-sections t)
1361 nil
1362 rst-all-sections))
1363
1364(defun rst-infer-hierarchy (adornments)
1365 "Build a hierarchy of adornments using the list of given ADORNMENTS.
1366
1367ADORNMENTS is a list of (CHARACTER STYLE INDENT) adornment
1368specifications, in order that they appear in a file, and will
1369infer a hierarchy of section levels by removing adornments that
1370have already been seen in a forward traversal of the adornments,
1371comparing just CHARACTER and STYLE.
1372
1373Similarly returns a list of (CHARACTER STYLE INDENT), where each
1374list element should be unique."
1375 (let (hierarchy-alist)
1376 (dolist (x adornments)
1377 (let ((char (car x))
1378 (style (cadr x)))
1379 (unless (assoc (cons char style) hierarchy-alist)
1380 (push (cons (cons char style) x) hierarchy-alist))))
1381 (mapcar 'cdr (nreverse hierarchy-alist))))
1382
1383(defun rst-get-hierarchy (&optional ignore)
1384 "Return the hierarchy of section titles in the file.
1385
1386Return a list of adornments that represents the hierarchy of
1387section titles in the file. Each element consists of (CHARACTER
1388STYLE INDENT) as described for `rst-find-all-adornments'. If the
1389line number in IGNORE is specified, a possibly adornment found on
1390that line is not taken into account when building the hierarchy.
1391
1392Uses and sets `rst-section-hierarchy' unless IGNORE is given."
1393 (if (and (not ignore) rst-section-hierarchy)
1394 (if (eq rst-section-hierarchy t)
1395 nil
1396 rst-section-hierarchy)
1397 (let ((r (rst-infer-hierarchy
1398 (mapcar 'cdr
1399 (assq-delete-all
1400 ignore
1401 (rst-find-all-adornments))))))
1402 (setq rst-section-hierarchy
1403 (if ignore
1404 ;; Clear cache reflecting that a possible update is not
1405 ;; reflected.
1406 nil
1407 (or r t)))
1408 r)))
1409
1410(defun rst-get-adornments-around ()
1411 "Return the adornments around point.
1412Return a list of the previous and next adornments."
1413 (let* ((all (rst-find-all-adornments))
1414 (curline (line-number-at-pos))
1415 prev next
1416 (cur all))
1417
1418 ;; Search for the adornments around the current line.
1419 (while (and cur (< (caar cur) curline))
1420 (setq prev cur
1421 cur (cdr cur)))
1422 ;; 'cur' is the following adornment.
1423
1424 (if (and cur (caar cur))
1425 (setq next (if (= curline (caar cur)) (cdr cur) cur)))
1426
1427 (mapcar 'cdar (list prev next))))
1428
1429(defun rst-adornment-complete-p (ado)
1430 "Return true if the adornment ADO around point is complete."
1431 ;; Note: we assume that the detection of the overline as being the underline
1432 ;; of a preceding title has already been detected, and has been eliminated
1433 ;; from the adornment that is given to us.
1434
1435 ;; There is some sectioning already present, so check if the current
1436 ;; sectioning is complete and correct.
1437 (let* ((char (car ado))
1438 (style (cadr ado))
1439 (indent (caddr ado))
1440 (endcol (save-excursion (end-of-line) (current-column))))
1441 (if char
1442 (let ((exps (rst-re "^" char (format "\\{%d\\}" (+ endcol indent)) "$")))
1443 (and
1444 (save-excursion (forward-line +1)
1445 (beginning-of-line)
1446 (looking-at exps))
1447 (or (not (eq style 'over-and-under))
1448 (save-excursion (forward-line -1)
1449 (beginning-of-line)
1450 (looking-at exps))))))))
1451
1452
1453(defun rst-get-next-adornment
1454 (curado hier &optional suggestion reverse-direction)
1455 "Get the next adornment for CURADO, in given hierarchy HIER.
1456If suggesting, suggest for new adornment SUGGESTION.
1457REVERSE-DIRECTION is used to reverse the cycling order."
1458
1459 (let* (
1460 (char (car curado))
1461 (style (cadr curado))
1462
1463 ;; Build a new list of adornments for the rotation.
1464 (rotados
1465 (append hier
1466 ;; Suggest a new adornment.
1467 (list suggestion
1468 ;; If nothing to suggest, use first adornment.
1469 (car hier)))) )
1470 (or
1471 ;; Search for next adornment.
1472 (cadr
1473 (let ((cur (if reverse-direction rotados
1474 (reverse rotados))))
1475 (while (and cur
1476 (not (and (eq char (caar cur))
1477 (eq style (cadar cur)))))
1478 (setq cur (cdr cur)))
1479 cur))
1480
1481 ;; If not found, take the first of all adornments.
1482 suggestion)))
1483
1484
1485;; FIXME: A line "``/`` full" is not accepted as a section title.
1486(defun rst-adjust (pfxarg)
1487 "Auto-adjust the adornment around point.
1488
1489Adjust/rotate the section adornment for the section title around
1490point or promote/demote the adornments inside the region,
1491depending on if the region is active. This function is meant to
1492be invoked possibly multiple times, and can vary its behavior
1493with a positive PFXARG (toggle style), or with a negative
1494PFXARG (alternate behavior).
1495
1496This function is a bit of a swiss knife. It is meant to adjust
1497the adornments of a section title in reStructuredText. It tries
1498to deal with all the possible cases gracefully and to do `the
1499right thing' in all cases.
1500
1501See the documentations of `rst-adjust-adornment-work' and
1502`rst-promote-region' for full details.
1503
1504Prefix Arguments
1505================
1506
1507The method can take either (but not both) of
1508
1509a. a (non-negative) prefix argument, which means to toggle the
1510 adornment style. Invoke with a prefix argument for example;
1511
1512b. a negative numerical argument, which generally inverts the
1513 direction of search in the file or hierarchy. Invoke with C--
1514 prefix for example."
1515 (interactive "P")
1516
1517 (let* (;; Save our original position on the current line.
1518 (origpt (point-marker))
1519
1520 (reverse-direction (and pfxarg (< (prefix-numeric-value pfxarg) 0)))
1521 (toggle-style (and pfxarg (not reverse-direction))))
1522
1523 (if (use-region-p)
1524 ;; Adjust adornments within region.
1525 (rst-promote-region (and pfxarg t))
1526 ;; Adjust adornment around point.
1527 (rst-adjust-adornment-work toggle-style reverse-direction))
1528
1529 ;; Run the hooks to run after adjusting.
1530 (run-hooks 'rst-adjust-hook)
1531
1532 ;; Make sure to reset the cursor position properly after we're done.
1533 (goto-char origpt)))
1534
1535(defcustom rst-adjust-hook nil
1536 "Hooks to be run after running `rst-adjust'."
1537 :group 'rst-adjust
1538 :type '(hook)
1539 :package-version '(rst . "1.1.0"))
1540(rst-testcover-defcustom)
1541
1542(defcustom rst-new-adornment-down nil
1543 "Controls level of new adornment for section headers."
1544 :group 'rst-adjust
1545 :type '(choice
1546 (const :tag "Same level as previous one" nil)
1547 (const :tag "One level down relative to the previous one" t))
1548 :package-version '(rst . "1.1.0"))
1549(rst-testcover-defcustom)
1550
1551(defun rst-adjust-adornment (pfxarg)
1552 "Call `rst-adjust-adornment-work' interactively.
1553
1554Keep this for compatibility for older bindings (are there any?).
1555Argument PFXARG has the same meaning as for `rst-adjust'."
1556 (interactive "P")
1557
1558 (let* ((reverse-direction (and pfxarg (< (prefix-numeric-value pfxarg) 0)))
1559 (toggle-style (and pfxarg (not reverse-direction))))
1560 (rst-adjust-adornment-work toggle-style reverse-direction)))
1561
1562(defun rst-adjust-adornment-work (toggle-style reverse-direction)
1563"Adjust/rotate the section adornment for the section title around point.
1564
1565This function is meant to be invoked possibly multiple times, and
1566can vary its behavior with a true TOGGLE-STYLE argument, or with
1567a REVERSE-DIRECTION argument.
1568
1569General Behavior
1570================
1571
1572The next action it takes depends on context around the point, and
1573it is meant to be invoked possibly more than once to rotate among
1574the various possibilities. Basically, this function deals with:
1575
1576- adding a adornment if the title does not have one;
1577
1578- adjusting the length of the underline characters to fit a
1579 modified title;
1580
1581- rotating the adornment in the set of already existing
1582 sectioning adornments used in the file;
1583
1584- switching between simple and over-and-under styles.
1585
1586You should normally not have to read all the following, just
1587invoke the method and it will do the most obvious thing that you
1588would expect.
1589
1590
1591Adornment Definitions
1592=====================
1593
1594The adornments consist in
1595
15961. a CHARACTER
1597
15982. a STYLE which can be either of 'simple' or 'over-and-under'.
1599
16003. an INDENT (meaningful for the over-and-under style only)
1601 which determines how many characters and over-and-under
1602 style is hanging outside of the title at the beginning and
1603 ending.
1604
1605See source code for mode details.
1606
1607
1608Detailed Behavior Description
1609=============================
1610
1611Here are the gory details of the algorithm (it seems quite
1612complicated, but really, it does the most obvious thing in all
1613the particular cases):
1614
1615Before applying the adornment change, the cursor is placed on
1616the closest line that could contain a section title.
1617
1618Case 1: No Adornment
1619--------------------
1620
1621If the current line has no adornment around it,
1622
1623- search backwards for the last previous adornment, and apply
1624 the adornment one level lower to the current line. If there
1625 is no defined level below this previous adornment, we suggest
1626 the most appropriate of the `rst-preferred-adornments'.
1627
1628 If REVERSE-DIRECTION is true, we simply use the previous
1629 adornment found directly.
1630
1631- if there is no adornment found in the given direction, we use
1632 the first of `rst-preferred-adornments'.
1633
1634TOGGLE-STYLE forces a toggle of the prescribed adornment style.
1635
1636Case 2: Incomplete Adornment
1637----------------------------
1638
1639If the current line does have an existing adornment, but the
1640adornment is incomplete, that is, the underline/overline does
1641not extend to exactly the end of the title line (it is either too
1642short or too long), we simply extend the length of the
1643underlines/overlines to fit exactly the section title.
1644
1645If TOGGLE-STYLE we toggle the style of the adornment as well.
1646
1647REVERSE-DIRECTION has no effect in this case.
1648
1649Case 3: Complete Existing Adornment
1650-----------------------------------
1651
1652If the adornment is complete (i.e. the underline (overline)
1653length is already adjusted to the end of the title line), we
1654search/parse the file to establish the hierarchy of all the
1655adornments (making sure not to include the adornment around
1656point), and we rotate the current title's adornment from within
1657that list (by default, going *down* the hierarchy that is present
1658in the file, i.e. to a lower section level). This is meant to be
1659used potentially multiple times, until the desired adornment is
1660found around the title.
1661
1662If we hit the boundary of the hierarchy, exactly one choice from
1663the list of preferred adornments is suggested/chosen, the first
1664of those adornment that has not been seen in the file yet (and
1665not including the adornment around point), and the next
1666invocation rolls over to the other end of the hierarchy (i.e. it
1667cycles). This allows you to avoid having to set which character
1668to use.
1669
1670If REVERSE-DIRECTION is true, the effect is to change the
1671direction of rotation in the hierarchy of adornments, thus
1672instead going *up* the hierarchy.
1673
1674However, if TOGGLE-STYLE, we do not rotate the adornment, but
1675instead simply toggle the style of the current adornment (this
1676should be the most common way to toggle the style of an existing
1677complete adornment).
1678
1679
1680Point Location
1681==============
1682
1683The invocation of this function can be carried out anywhere
1684within the section title line, on an existing underline or
1685overline, as well as on an empty line following a section title.
1686This is meant to be as convenient as possible.
1687
1688
1689Indented Sections
1690=================
1691
1692Indented section titles such as ::
1693
1694 My Title
1695 --------
1696
1697are invalid in reStructuredText and thus not recognized by the
1698parser. This code will thus not work in a way that would support
1699indented sections (it would be ambiguous anyway).
1700
1701
1702Joint Sections
1703==============
1704
1705Section titles that are right next to each other may not be
1706treated well. More work might be needed to support those, and
1707special conditions on the completeness of existing adornments
1708might be required to make it non-ambiguous.
1709
1710For now we assume that the adornments are disjoint, that is,
1711there is at least a single line between the titles/adornment
1712lines."
1713 (rst-reset-section-caches)
1714 (let ((ttl-fnd (rst-find-title-line))
1715 (orig-pnt (point)))
1716 (when ttl-fnd
1717 (set-match-data (cdr ttl-fnd))
1718 (goto-char (match-beginning 2))
1719 (let* ((moved (- (line-number-at-pos) (line-number-at-pos orig-pnt)))
1720 (char (caar ttl-fnd))
1721 (style (cdar ttl-fnd))
1722 (indent (current-indentation))
1723 (curado (list char style indent))
1724 char-new style-new indent-new)
1725 (cond
1726 ;;-------------------------------------------------------------------
1727 ;; Case 1: No valid adornment
1728 ((not style)
1729 (let ((prev (car (rst-get-adornments-around)))
1730 cur
1731 (hier (rst-get-hierarchy)))
1732 ;; Advance one level down.
1733 (setq cur
1734 (if prev
1735 (if (or (and rst-new-adornment-down reverse-direction)
1736 (and (not rst-new-adornment-down)
1737 (not reverse-direction)))
1738 prev
1739 (or (cadr (rst-get-adornment-match hier prev))
1740 (rst-suggest-new-adornment hier prev)))
1741 (copy-sequence (car rst-preferred-adornments))))
1742 ;; Invert the style if requested.
1743 (if toggle-style
1744 (setcar (cdr cur) (if (eq (cadr cur) 'simple)
1745 'over-and-under 'simple)) )
1746 (setq char-new (car cur)
1747 style-new (cadr cur)
1748 indent-new (caddr cur))))
1749 ;;-------------------------------------------------------------------
1750 ;; Case 2: Incomplete Adornment
1751 ((not (rst-adornment-complete-p curado))
1752 ;; Invert the style if requested.
1753 (if toggle-style
1754 (setq style (if (eq style 'simple) 'over-and-under 'simple)))
1755 (setq char-new char
1756 style-new style
1757 indent-new indent))
1758 ;;-------------------------------------------------------------------
1759 ;; Case 3: Complete Existing Adornment
1760 (t
1761 (if toggle-style
1762 ;; Simply switch the style of the current adornment.
1763 (setq char-new char
1764 style-new (if (eq style 'simple) 'over-and-under 'simple)
1765 indent-new rst-default-indent)
1766 ;; Else, we rotate, ignoring the adornment around the current
1767 ;; line...
1768 (let* ((hier (rst-get-hierarchy (line-number-at-pos)))
1769 ;; Suggestion, in case we need to come up with something new.
1770 (suggestion (rst-suggest-new-adornment
1771 hier
1772 (car (rst-get-adornments-around))))
1773 (nextado (rst-get-next-adornment
1774 curado hier suggestion reverse-direction)))
1775 ;; Indent, if present, always overrides the prescribed indent.
1776 (setq char-new (car nextado)
1777 style-new (cadr nextado)
1778 indent-new (caddr nextado))))))
1779 ;; Override indent with present indent!
1780 (setq indent-new (if (> indent 0) indent indent-new))
1781 (if (and char-new style-new)
1782 (rst-update-section char-new style-new indent-new))
1783 ;; Correct the position of the cursor to more accurately reflect where
1784 ;; it was located when the function was invoked.
1785 (unless (zerop moved)
1786 (forward-line (- moved))
1787 (end-of-line))))))
1788
1789;; Maintain an alias for compatibility.
1790(defalias 'rst-adjust-section-title 'rst-adjust)
1791
1792
1793(defun rst-promote-region (demote)
1794 "Promote the section titles within the region.
1795
1796With argument DEMOTE or a prefix argument, demote the section
1797titles instead. The algorithm used at the boundaries of the
1798hierarchy is similar to that used by `rst-adjust-adornment-work'."
1799 (interactive "P")
1800 (rst-reset-section-caches)
1801 (let* ((cur (rst-find-all-adornments))
1802 (hier (rst-get-hierarchy))
1803 (suggestion (rst-suggest-new-adornment hier))
1804
1805 (region-begin-line (line-number-at-pos (region-beginning)))
1806 (region-end-line (line-number-at-pos (region-end)))
1807
1808 marker-list)
1809
1810 ;; Skip the markers that come before the region beginning.
1811 (while (and cur (< (caar cur) region-begin-line))
1812 (setq cur (cdr cur)))
1813
1814 ;; Create a list of markers for all the adornments which are found within
1815 ;; the region.
1816 (save-excursion
1817 (let (line)
1818 (while (and cur (< (setq line (caar cur)) region-end-line))
1819 (goto-char (point-min))
1820 (forward-line (1- line))
1821 (push (list (point-marker) (cdar cur)) marker-list)
1822 (setq cur (cdr cur)) ))
1823
1824 ;; Apply modifications.
1825 (dolist (p marker-list)
1826 ;; Go to the adornment to promote.
1827 (goto-char (car p))
1828
1829 ;; Update the adornment.
1830 (apply 'rst-update-section
1831 ;; Rotate the next adornment.
1832 (rst-get-next-adornment
1833 (cadr p) hier suggestion demote))
1834
1835 ;; Clear marker to avoid slowing down the editing after we're done.
1836 (set-marker (car p) nil))
1837 (setq deactivate-mark nil))))
1838
1839
1840
1841(defun rst-display-adornments-hierarchy (&optional adornments)
1842 "Display the current file's section title adornments hierarchy.
1843This function expects a list of (CHARACTER STYLE INDENT) triples
1844in ADORNMENTS."
1845 (interactive)
1846 (rst-reset-section-caches)
1847 (if (not adornments)
1848 (setq adornments (rst-get-hierarchy)))
1849 (with-output-to-temp-buffer "*rest section hierarchy*"
1850 (let ((level 1))
1851 (with-current-buffer standard-output
1852 (dolist (x adornments)
1853 (insert (format "\nSection Level %d" level))
1854 (apply 'rst-update-section x)
1855 (goto-char (point-max))
1856 (insert "\n")
1857 (incf level))))))
1858
1859(defun rst-straighten-adornments ()
1860 "Redo all the adornments in the current buffer.
1861This is done using our preferred set of adornments. This can be
1862used, for example, when using somebody else's copy of a document,
1863in order to adapt it to our preferred style."
1864 (interactive)
1865 (rst-reset-section-caches)
1866 (save-excursion
1867 (let (;; Get a list of pairs of (level . marker).
1868 (levels-and-markers (mapcar
1869 (lambda (ado)
1870 (cons (rst-position (cdr ado)
1871 (rst-get-hierarchy))
1872 (progn
1873 (goto-char (point-min))
1874 (forward-line (1- (car ado)))
1875 (point-marker))))
1876 (rst-find-all-adornments))))
1877 (dolist (lm levels-and-markers)
1878 ;; Go to the appropriate position.
1879 (goto-char (cdr lm))
1880
1881 ;; Apply the new style.
1882 (apply 'rst-update-section (nth (car lm) rst-preferred-adornments))
1883
1884 ;; Reset the marker to avoid slowing down editing until it gets GC'ed.
1885 (set-marker (cdr lm) nil)))))
1886
1887\f
1888;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1889;; Insert list items
1890;; =================
1891
1892
1893;=================================================
1894; Borrowed from a2r.el (version 1.3), by Lawrence Mitchell <wence@gmx.li>.
1895; I needed to make some tiny changes to the functions, so I put it here.
1896; -- Wei-Wei Guo
1897
1898(defconst rst-arabic-to-roman
1899 '((1000 . "M") (900 . "CM") (500 . "D") (400 . "CD")
1900 (100 . "C") (90 . "XC") (50 . "L") (40 . "XL")
1901 (10 . "X") (9 . "IX") (5 . "V") (4 . "IV")
1902 (1 . "I"))
1903 "List of maps between Arabic numbers and their Roman numeral equivalents.")
1904
1905(defun rst-arabic-to-roman (num &optional arg)
1906 "Convert Arabic number NUM to its Roman numeral representation.
1907
1908Obviously, NUM must be greater than zero. Don't blame me, blame the
1909Romans, I mean \"what have the Romans ever _done_ for /us/?\" (with
1910apologies to Monty Python).
1911If optional prefix ARG is non-nil, insert in current buffer."
1912 (let ((map rst-arabic-to-roman)
1913 res)
1914 (while (and map (> num 0))
1915 (if (or (= num (caar map))
1916 (> num (caar map)))
1917 (setq res (concat res (cdar map))
1918 num (- num (caar map)))
1919 (setq map (cdr map))))
1920 res))
1921
1922(defun rst-roman-to-arabic (string &optional arg)
1923 "Convert STRING of Roman numerals to an Arabic number.
1924
1925If STRING contains a letter which isn't a valid Roman numeral, the rest
1926of the string from that point onwards is ignored.
1927
1928Hence:
1929MMD == 2500
1930and
1931MMDFLXXVI == 2500.
1932If optional ARG is non-nil, insert in current buffer."
1933 (let ((res 0)
1934 (map rst-arabic-to-roman))
1935 (while map
1936 (if (string-match (concat "^" (cdar map)) string)
1937 (setq res (+ res (caar map))
1938 string (replace-match "" nil t string))
1939 (setq map (cdr map))))
1940 res))
1941;=================================================
1942
1943(defun rst-find-pfx-in-region (beg end pfx-re)
1944 "Find all the positions of prefixes in region between BEG and END.
1945This is used to find bullets and enumerated list items. PFX-RE is
1946a regular expression for matching the lines after indentation
1947with items. Returns a list of cons cells consisting of the point
1948and the column of the point."
1949 (let ((pfx ()))
1950 (save-excursion
1951 (goto-char beg)
1952 (while (< (point) end)
1953 (back-to-indentation)
1954 (when (and
1955 (looking-at pfx-re) ; pfx found and...
1956 (let ((pfx-col (current-column)))
1957 (save-excursion
1958 (forward-line -1) ; ...previous line is...
1959 (back-to-indentation)
1960 (or (looking-at (rst-re 'lin-end)) ; ...empty,
1961 (> (current-column) pfx-col) ; ...deeper level, or
1962 (and (= (current-column) pfx-col)
1963 (looking-at pfx-re)))))) ; ...pfx at same level.
1964 (push (cons (point) (current-column))
1965 pfx))
1966 (forward-line 1)))
1967 (nreverse pfx)))
1968
1969(defun rst-insert-list-pos (newitem)
1970 "Arrange relative position of a newly inserted list item of style NEWITEM.
1971
1972Adding a new list might consider three situations:
1973
1974 (a) Current line is a blank line.
1975 (b) Previous line is a blank line.
1976 (c) Following line is a blank line.
1977
1978When (a) and (b), just add the new list at current line.
1979
1980when (a) and not (b), a blank line is added before adding the new list.
1981
1982When not (a), first forward point to the end of the line, and add two
1983blank lines, then add the new list.
1984
1985Other situations are just ignored and left to users themselves."
1986 (if (save-excursion
1987 (beginning-of-line)
1988 (looking-at (rst-re 'lin-end)))
1989 (if (save-excursion
1990 (forward-line -1)
1991 (looking-at (rst-re 'lin-end)))
1992 (insert newitem " ")
1993 (insert "\n" newitem " "))
1994 (end-of-line)
1995 (insert "\n\n" newitem " ")))
1996
1997;; FIXME: Isn't this a `defconst'?
1998(defvar rst-initial-enums
1999 (let (vals)
2000 (dolist (fmt '("%s." "(%s)" "%s)"))
2001 (dolist (c '("1" "a" "A" "I" "i"))
2002 (push (format fmt c) vals)))
2003 (cons "#." (nreverse vals)))
2004 "List of initial enumerations.")
2005
2006;; FIXME: Isn't this a `defconst'?
2007(defvar rst-initial-items
2008 (append (mapcar 'char-to-string rst-bullets) rst-initial-enums)
2009 "List of initial items. It's collection of bullets and enumerations.")
2010
2011(defun rst-insert-list-new-item ()
2012 "Insert a new list item.
2013
2014User is asked to select the item style first, for example (a), i), +. Use TAB
2015for completion and choices.
2016
2017If user selects bullets or #, it's just added with position arranged by
2018`rst-insert-list-pos'.
2019
2020If user selects enumerations, a further prompt is given. User need to input a
2021starting item, for example 'e' for 'A)' style. The position is also arranged by
2022`rst-insert-list-pos'."
2023 (interactive)
2024 ;; FIXME: Make this comply to `interactive' standards.
2025 (let* ((itemstyle (completing-read
2026 "Select preferred item style [#.]: "
2027 rst-initial-items nil t nil nil "#."))
2028 (cnt (if (string-match (rst-re 'cntexp-tag) itemstyle)
2029 (match-string 0 itemstyle)))
2030 (no
2031 (save-match-data
2032 ;; FIXME: Make this comply to `interactive' standards.
2033 (cond
2034 ((equal cnt "a")
2035 (let ((itemno (read-string "Give starting value [a]: "
2036 nil nil "a")))
2037 (downcase (substring itemno 0 1))))
2038 ((equal cnt "A")
2039 (let ((itemno (read-string "Give starting value [A]: "
2040 nil nil "A")))
2041 (upcase (substring itemno 0 1))))
2042 ((equal cnt "I")
2043 (let ((itemno (read-number "Give starting value [1]: " 1)))
2044 (rst-arabic-to-roman itemno)))
2045 ((equal cnt "i")
2046 (let ((itemno (read-number "Give starting value [1]: " 1)))
2047 (downcase (rst-arabic-to-roman itemno))))
2048 ((equal cnt "1")
2049 (let ((itemno (read-number "Give starting value [1]: " 1)))
2050 (number-to-string itemno)))))))
2051 (if no
2052 (setq itemstyle (replace-match no t t itemstyle)))
2053 (rst-insert-list-pos itemstyle)))
2054
2055(defcustom rst-preferred-bullets
2056 '(?* ?- ?+)
2057 "List of favorite bullets."
2058 :group 'rst
2059 :type `(repeat
2060 (choice ,@(mapcar (lambda (char)
2061 (list 'const
2062 :tag (char-to-string char) char))
2063 rst-bullets)))
2064 :package-version '(rst . "1.1.0"))
2065(rst-testcover-defcustom)
2066
2067(defun rst-insert-list-continue (curitem prefer-roman)
2068 "Insert a list item with list start CURITEM including its indentation level.
2069If PREFER-ROMAN roman numbering is preferred over using letters."
2070 (end-of-line)
2071 (insert
2072 "\n" ; FIXME: Separating lines must be possible.
2073 (cond
2074 ((string-match (rst-re '(:alt enmaut-tag
2075 bul-tag)) curitem)
2076 curitem)
2077 ((string-match (rst-re 'num-tag) curitem)
2078 (replace-match (number-to-string
2079 (1+ (string-to-number (match-string 0 curitem))))
2080 nil nil curitem))
2081 ((and (string-match (rst-re 'rom-tag) curitem)
2082 (save-match-data
2083 (if (string-match (rst-re 'ltr-tag) curitem) ; Also a letter tag.
2084 (save-excursion
2085 ;; FIXME: Assumes one line list items without separating
2086 ;; empty lines.
2087 (if (and (zerop (forward-line -1))
2088 (looking-at (rst-re 'enmexp-beg)))
2089 (string-match
2090 (rst-re 'rom-tag)
2091 (match-string 0)) ; Previous was a roman tag.
2092 prefer-roman)) ; Don't know - use flag.
2093 t))) ; Not a letter tag.
2094 (replace-match
2095 (let* ((old (match-string 0 curitem))
2096 (new (save-match-data
2097 (rst-arabic-to-roman
2098 (1+ (rst-roman-to-arabic
2099 (upcase old)))))))
2100 (if (equal old (upcase old))
2101 (upcase new)
2102 (downcase new)))
2103 t nil curitem))
2104 ((string-match (rst-re 'ltr-tag) curitem)
2105 (replace-match (char-to-string
2106 (1+ (string-to-char (match-string 0 curitem))))
2107 nil nil curitem)))))
2108
2109
2110(defun rst-insert-list (&optional prefer-roman)
2111 "Insert a list item at the current point.
2112
2113The command can insert a new list or a continuing list. When it is called at a
2114non-list line, it will promote to insert new list. When it is called at a list
2115line, it will insert a list with the same list style.
2116
21171. When inserting a new list:
2118
2119User is asked to select the item style first, for example (a), i), +. Use TAB
2120for completion and choices.
2121
2122 (a) If user selects bullets or #, it's just added.
2123 (b) If user selects enumerations, a further prompt is given. User needs to
2124 input a starting item, for example 'e' for 'A)' style.
2125
2126The position of the new list is arranged according to whether or not the
2127current line and the previous line are blank lines.
2128
21292. When continuing a list, one thing need to be noticed:
2130
2131List style alphabetical list, such as 'a.', and roman numerical list, such as
2132'i.', have some overlapping items, for example 'v.' The function can deal with
2133the problem elegantly in most situations. But when those overlapped list are
2134preceded by a blank line, it is hard to determine which type to use
2135automatically. The function uses alphabetical list by default. If you want
2136roman numerical list, just use a prefix to set PREFER-ROMAN."
2137 (interactive "P")
2138 (beginning-of-line)
2139 (if (looking-at (rst-re 'itmany-beg-1))
2140 (rst-insert-list-continue (match-string 0) prefer-roman)
2141 (rst-insert-list-new-item)))
2142
2143(defun rst-straighten-bullets-region (beg end)
2144 "Make all the bulleted list items in the region consistent.
2145The region is specified between BEG and END. You can use this
2146after you have merged multiple bulleted lists to make them use
2147the same/correct/consistent bullet characters.
2148
2149See variable `rst-preferred-bullets' for the list of bullets to
2150adjust. If bullets are found on levels beyond the
2151`rst-preferred-bullets' list, they are not modified."
2152 (interactive "r")
2153
2154 (let ((bullets (rst-find-pfx-in-region beg end (rst-re 'bul-sta)))
2155 (levtable (make-hash-table :size 4)))
2156
2157 ;; Create a map of levels to list of positions.
2158 (dolist (x bullets)
2159 (let ((key (cdr x)))
2160 (puthash key
2161 (append (gethash key levtable (list))
2162 (list (car x)))
2163 levtable)))
2164
2165 ;; Sort this map and create a new map of prefix char and list of positions.
2166 (let ((poslist ())) ; List of (indent . positions).
2167 (maphash (lambda (x y) (push (cons x y) poslist)) levtable)
2168
2169 (let ((bullets rst-preferred-bullets))
2170 (dolist (x (sort poslist 'car-less-than-car))
2171 (when bullets
2172 ;; Apply the characters.
2173 (dolist (pos (cdr x))
2174 (goto-char pos)
2175 (delete-char 1)
2176 (insert (string (car bullets))))
2177 (setq bullets (cdr bullets))))))))
2178
2179\f
2180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2181;; Table of contents
2182;; =================
2183
2184;; FIXME: Return value should be a `defstruct'.
2185(defun rst-section-tree ()
2186 "Return the hierarchical tree of section titles.
2187A tree entry looks like ((TITLE MARKER) CHILD...). TITLE is the
2188stripped text of the section title. MARKER is a marker for the
2189beginning of the title text. For the top node or a missing
2190section level node TITLE is nil and MARKER points to the title
2191text of the first child. Each CHILD is another tree entry. The
2192CHILD list may be empty."
2193 (let ((hier (rst-get-hierarchy))
2194 (ch-sty2level (make-hash-table :test 'equal :size 10))
2195 lev-ttl-mrk-l)
2196
2197 (let ((lev 0))
2198 (dolist (ado hier)
2199 ;; Compare just the character and indent in the hash table.
2200 (puthash (cons (car ado) (cadr ado)) lev ch-sty2level)
2201 (incf lev)))
2202
2203 ;; Create a list that contains (LEVEL TITLE MARKER) for each adornment.
2204 (save-excursion
2205 (setq lev-ttl-mrk-l
2206 (mapcar (lambda (ado)
2207 (goto-char (point-min))
2208 (1value ;; This should really succeed.
2209 (forward-line (1- (car ado))))
2210 (list (gethash (cons (cadr ado) (caddr ado)) ch-sty2level)
2211 ;; Get title.
2212 (save-excursion
2213 (if (re-search-forward
2214 (rst-re "\\S .*\\S ") (line-end-position) t)
2215 (buffer-substring-no-properties
2216 (match-beginning 0) (match-end 0))
2217 ""))
2218 (point-marker)))
2219 (rst-find-all-adornments))))
2220 (cdr (rst-section-tree-rec lev-ttl-mrk-l -1))))
2221
2222;; FIXME: Return value should be a `defstruct'.
2223(defun rst-section-tree-rec (remaining lev)
2224 "Process the first entry of REMAINING expected to be on level LEV.
2225REMAINING is the remaining list of adornments consisting
2226of (LEVEL TITLE MARKER) entries.
2227
2228Return (UNPROCESSED (TITLE MARKER) CHILD...) for the first entry
2229of REMAINING where TITLE is nil if the expected level is not
2230matched. UNPROCESSED is the list of still unprocessed entries.
2231Each CHILD is a child of this entry in the same format but
2232without UNPROCESSED."
2233 (let ((cur (car remaining))
2234 (unprocessed remaining)
2235 ttl-mrk children)
2236 ;; If the current adornment matches expected level.
2237 (when (and cur (= (car cur) lev))
2238 ;; Consume the current entry and create the current node with it.
2239 (setq unprocessed (cdr remaining))
2240 (setq ttl-mrk (cdr cur)))
2241
2242 ;; Build the child nodes as long as they have deeper level.
2243 (while (and unprocessed (> (caar unprocessed) lev))
2244 (let ((rem-children (rst-section-tree-rec unprocessed (1+ lev))))
2245 (setq children (cons (cdr rem-children) children))
2246 (setq unprocessed (car rem-children))))
2247 (setq children (reverse children))
2248
2249 (cons unprocessed
2250 (cons (or ttl-mrk
2251 ;; Node on this level missing - use nil as text and the
2252 ;; marker of the first child.
2253 (cons nil (cdaar children)))
2254 children))))
2255
2256(defun rst-section-tree-point (tree &optional point)
2257 "Return section containing POINT by returning the closest node in TREE.
2258TREE is a section tree as returned by `rst-section-tree'
2259consisting of (NODE CHILD...) entries. POINT defaults to the
2260current point. A NODE must have the structure (IGNORED MARKER
2261...).
2262
2263Return (PATH NODE CHILD...). NODE is the node where POINT is in
2264if any. PATH is a list of nodes from the top of the tree down to
2265and including NODE. List of CHILD are the children of NODE if
2266any."
2267 (setq point (or point (point)))
2268 (let ((cur (car tree))
2269 (children (cdr tree)))
2270 ;; Point behind current node?
2271 (if (and (cadr cur) (>= point (cadr cur)))
2272 ;; Iterate all the children, looking for one that might contain the
2273 ;; current section.
2274 (let (found)
2275 (while (and children (>= point (cadaar children)))
2276 (setq found children
2277 children (cdr children)))
2278 (if found
2279 ;; Found section containing point in children.
2280 (let ((sub (rst-section-tree-point (car found) point)))
2281 ;; Extend path with current node and return NODE CHILD... from
2282 ;; sub.
2283 (cons (cons cur (car sub)) (cdr sub)))
2284 ;; Point in this section: Start a new path with current node and
2285 ;; return current NODE CHILD...
2286 (cons (list cur) tree)))
2287 ;; Current node behind point: start a new path with current node and
2288 ;; no NODE CHILD...
2289 (list (list cur)))))
2290
2291(defgroup rst-toc nil
2292 "Settings for reStructuredText table of contents."
2293 :group 'rst
2294 :version "21.1")
2295
2296(defcustom rst-toc-indent 2
2297 "Indentation for table-of-contents display.
2298Also used for formatting insertion, when numbering is disabled."
2299 :group 'rst-toc)
2300(rst-testcover-defcustom)
2301
2302(defcustom rst-toc-insert-style 'fixed
2303 "Insertion style for table-of-contents.
2304Set this to one of the following values to determine numbering and
2305indentation style:
2306- plain: no numbering (fixed indentation)
2307- fixed: numbering, but fixed indentation
2308- aligned: numbering, titles aligned under each other
2309- listed: numbering, with dashes like list items (EXPERIMENTAL)"
2310 :group 'rst-toc)
2311(rst-testcover-defcustom)
2312
2313(defcustom rst-toc-insert-number-separator " "
2314 "Separator that goes between the TOC number and the title."
2315 :group 'rst-toc)
2316(rst-testcover-defcustom)
2317
2318;; This is used to avoid having to change the user's mode.
2319(defvar rst-toc-insert-click-keymap
2320 (let ((map (make-sparse-keymap)))
2321 (define-key map [mouse-1] 'rst-toc-mode-mouse-goto)
2322 map)
2323 "(Internal) What happens when you click on propertized text in the TOC.")
2324
2325(defcustom rst-toc-insert-max-level nil
2326 "If non-nil, maximum depth of the inserted TOC."
2327 :group 'rst-toc)
2328(rst-testcover-defcustom)
2329
2330(defun rst-toc-insert (&optional pfxarg)
2331 "Insert a simple text rendering of the table of contents.
2332By default the top level is ignored if there is only one, because
2333we assume that the document will have a single title.
2334
2335If a numeric prefix argument PFXARG is given, insert the TOC up
2336to the specified level.
2337
2338The TOC is inserted indented at the current column."
2339 (interactive "P")
2340 (rst-reset-section-caches)
2341 (let* (;; Check maximum level override.
2342 (rst-toc-insert-max-level
2343 (if (and (integerp pfxarg) (> (prefix-numeric-value pfxarg) 0))
2344 (prefix-numeric-value pfxarg) rst-toc-insert-max-level))
2345
2346 ;; Get the section tree for the current cursor point.
2347 (sectree-pair
2348 (rst-section-tree-point
2349 (rst-section-tree)))
2350
2351 ;; Figure out initial indent.
2352 (initial-indent (make-string (current-column) ? ))
2353 (init-point (point)))
2354
2355 (when (cddr sectree-pair)
2356 (rst-toc-insert-node (cdr sectree-pair) 0 initial-indent "")
2357
2358 ;; Fixup for the first line.
2359 (delete-region init-point (+ init-point (length initial-indent)))
2360
2361 ;; Delete the last newline added.
2362 (delete-char -1))))
2363
2364(defun rst-toc-insert-node (node level indent pfx)
2365 "Insert tree node NODE in table-of-contents.
2366Recursive function that does printing of the inserted toc.
2367LEVEL is the depth level of the sections in the tree.
2368INDENT is the indentation string. PFX is the prefix numbering,
2369that includes the alignment necessary for all the children of
2370level to align."
2371
2372 ;; Note: we do child numbering from the parent, so we start number the
2373 ;; children one level before we print them.
2374 (let ((do-print (> level 0))
2375 (count 1))
2376 (when do-print
2377 (insert indent)
2378 (let ((b (point)))
2379 (unless (equal rst-toc-insert-style 'plain)
2380 (insert pfx rst-toc-insert-number-separator))
2381 (insert (or (caar node) "[missing node]"))
2382 ;; Add properties to the text, even though in normal text mode it
2383 ;; won't be doing anything for now. Not sure that I want to change
2384 ;; mode stuff. At least the highlighting gives the idea that this
2385 ;; is generated automatically.
2386 (put-text-property b (point) 'mouse-face 'highlight)
2387 (put-text-property b (point) 'rst-toc-target (cadar node))
2388 (put-text-property b (point) 'keymap rst-toc-insert-click-keymap))
2389 (insert "\n")
2390
2391 ;; Prepare indent for children.
2392 (setq indent
2393 (cond
2394 ((eq rst-toc-insert-style 'plain)
2395 (concat indent (make-string rst-toc-indent ? )))
2396
2397 ((eq rst-toc-insert-style 'fixed)
2398 (concat indent (make-string rst-toc-indent ? )))
2399
2400 ((eq rst-toc-insert-style 'aligned)
2401 (concat indent (make-string (+ (length pfx) 2) ? )))
2402
2403 ((eq rst-toc-insert-style 'listed)
2404 (concat (substring indent 0 -3)
2405 (concat (make-string (+ (length pfx) 2) ? ) " - "))))))
2406
2407 (if (or (eq rst-toc-insert-max-level nil)
2408 (< level rst-toc-insert-max-level))
2409 (let ((do-child-numbering (>= level 0))
2410 fmt)
2411 (if do-child-numbering
2412 (progn
2413 ;; Add a separating dot if there is already a prefix.
2414 (when (> (length pfx) 0)
2415 (string-match (rst-re "[ \t\n]*\\'") pfx)
2416 (setq pfx (concat (replace-match "" t t pfx) ".")))
2417
2418 ;; Calculate the amount of space that the prefix will require
2419 ;; for the numbers.
2420 (if (cdr node)
2421 (setq fmt (format "%%-%dd"
2422 (1+ (floor (log10 (length
2423 (cdr node))))))))))
2424
2425 (dolist (child (cdr node))
2426 (rst-toc-insert-node child
2427 (1+ level)
2428 indent
2429 (if do-child-numbering
2430 (concat pfx (format fmt count)) pfx))
2431 (incf count))))))
2432
2433
2434(defun rst-toc-update ()
2435 "Automatically find the contents section of a document and update.
2436Updates the inserted TOC if present. You can use this in your
2437file-write hook to always make it up-to-date automatically."
2438 (interactive)
2439 (save-excursion
2440 ;; Find and delete an existing comment after the first contents directive.
2441 ;; Delete that region.
2442 (goto-char (point-min))
2443 ;; We look for the following and the following only (in other words, if your
2444 ;; syntax differs, this won't work.).
2445 ;;
2446 ;; .. contents:: [...anything here...]
2447 ;; [:field: value]...
2448 ;; ..
2449 ;; XXXXXXXX
2450 ;; XXXXXXXX
2451 ;; [more lines]
2452 (let ((beg (re-search-forward
2453 (rst-re "^" 'exm-sta "contents" 'dcl-tag ".*\n"
2454 "\\(?:" 'hws-sta 'fld-tag ".*\n\\)*" 'exm-tag) nil t))
2455 last-real)
2456 (when beg
2457 ;; Look for the first line that starts at the first column.
2458 (forward-line 1)
2459 (while (and
2460 (< (point) (point-max))
2461 (or (if (looking-at
2462 (rst-re 'hws-sta "\\S ")) ; indented content.
2463 (setq last-real (point)))
2464 (looking-at (rst-re 'lin-end)))) ; empty line.
2465 (forward-line 1))
2466 (if last-real
2467 (progn
2468 (goto-char last-real)
2469 (end-of-line)
2470 (delete-region beg (point)))
2471 (goto-char beg))
2472 (insert "\n ")
2473 (rst-toc-insert))))
2474 ;; Note: always return nil, because this may be used as a hook.
2475 nil)
2476
2477;; Note: we cannot bind the TOC update on file write because it messes with
2478;; undo. If we disable undo, since it adds and removes characters, the
2479;; positions in the undo list are not making sense anymore. Dunno what to do
2480;; with this, it would be nice to update when saving.
2481;;
2482;; (add-hook 'write-contents-hooks 'rst-toc-update-fun)
2483;; (defun rst-toc-update-fun ()
2484;; ;; Disable undo for the write file hook.
2485;; (let ((buffer-undo-list t)) (rst-toc-update) ))
2486
2487(defalias 'rst-toc-insert-update 'rst-toc-update) ; backwards compat.
2488
2489;;------------------------------------------------------------------------------
2490
2491(defun rst-toc-node (node level)
2492 "Recursive function that does insert NODE at LEVEL in the table-of-contents."
2493
2494 (if (> level 0)
2495 (let ((b (point)))
2496 ;; Insert line text.
2497 (insert (make-string (* rst-toc-indent (1- level)) ? ))
2498 (insert (or (caar node) "[missing node]"))
2499
2500 ;; Highlight lines.
2501 (put-text-property b (point) 'mouse-face 'highlight)
2502
2503 ;; Add link on lines.
2504 (put-text-property b (point) 'rst-toc-target (cadar node))
2505
2506 (insert "\n")))
2507
2508 (dolist (child (cdr node))
2509 (rst-toc-node child (1+ level))))
2510
2511(defun rst-toc-count-lines (node target-node)
2512 "Count the number of lines from NODE to the TARGET-NODE node.
2513This recursive function returns a cons of the number of
2514additional lines that have been counted for its node and
2515children, and t if the node has been found."
2516
2517 (let ((count 1)
2518 found)
2519 (if (eq node target-node)
2520 (setq found t)
2521 (let ((child (cdr node)))
2522 (while (and child (not found))
2523 (let ((cl (rst-toc-count-lines (car child) target-node)))
2524 (setq count (+ count (car cl))
2525 found (cdr cl)
2526 child (cdr child))))))
2527 (cons count found)))
2528
2529(defvar rst-toc-buffer-name "*Table of Contents*"
2530 "Name of the Table of Contents buffer.")
2531
2532(defvar rst-toc-return-wincfg nil
2533 "Window configuration to which to return when leaving the TOC.")
2534
2535
2536(defun rst-toc ()
2537 "Display a table-of-contents.
2538Finds all the section titles and their adornments in the
2539file, and displays a hierarchically-organized list of the
2540titles, which is essentially a table-of-contents of the
2541document.
2542
2543The Emacs buffer can be navigated, and selecting a section
2544brings the cursor in that section."
2545 (interactive)
2546 (rst-reset-section-caches)
2547 (let* ((curbuf (list (current-window-configuration) (point-marker)))
2548 (sectree (rst-section-tree))
2549
2550 (our-node (cdr (rst-section-tree-point sectree)))
2551 line
2552
2553 ;; Create a temporary buffer.
2554 (buf (get-buffer-create rst-toc-buffer-name)))
2555
2556 (with-current-buffer buf
2557 (let ((inhibit-read-only t))
2558 (rst-toc-mode)
2559 (delete-region (point-min) (point-max))
2560 (insert (format "Table of Contents: %s\n" (or (caar sectree) "")))
2561 (put-text-property (point-min) (point)
2562 'face (list '(background-color . "gray")))
2563 (rst-toc-node sectree 0)
2564
2565 ;; Count the lines to our found node.
2566 (let ((linefound (rst-toc-count-lines sectree our-node)))
2567 (setq line (if (cdr linefound) (car linefound) 0)))))
2568 (display-buffer buf)
2569 (pop-to-buffer buf)
2570
2571 ;; Save the buffer to return to.
2572 (set (make-local-variable 'rst-toc-return-wincfg) curbuf)
2573
2574 ;; Move the cursor near the right section in the TOC.
2575 (goto-char (point-min))
2576 (forward-line (1- line))))
2577
2578
2579(defun rst-toc-mode-find-section ()
2580 "Get the section from text property at point."
2581 (let ((pos (get-text-property (point) 'rst-toc-target)))
2582 (unless pos
2583 (error "No section on this line"))
2584 (unless (buffer-live-p (marker-buffer pos))
2585 (error "Buffer for this section was killed"))
2586 pos))
2587
2588;; FIXME: Cursor before or behind the list must be handled properly; before the
2589;; list should jump to the top and behind the list to the last normal
2590;; paragraph.
2591(defun rst-goto-section (&optional kill)
2592 "Go to the section the current line describes.
2593If KILL a toc buffer is destroyed."
2594 (interactive)
2595 (let ((pos (rst-toc-mode-find-section)))
2596 (when kill
2597 ;; FIXME: This should rather go to `rst-toc-mode-goto-section'.
2598 (set-window-configuration (car rst-toc-return-wincfg))
2599 (kill-buffer (get-buffer rst-toc-buffer-name)))
2600 (pop-to-buffer (marker-buffer pos))
2601 (goto-char pos)
2602 ;; FIXME: make the recentering conditional on scroll.
2603 (recenter 5)))
2604
2605(defun rst-toc-mode-goto-section ()
2606 "Go to the section the current line describes and kill the TOC buffer."
2607 (interactive)
2608 (rst-goto-section t))
2609
2610(defun rst-toc-mode-mouse-goto (event)
2611 "In `rst-toc' mode, go to the occurrence whose line you click on.
2612EVENT is the input event."
2613 (interactive "e")
2614 (let ((pos
2615 (with-current-buffer (window-buffer (posn-window (event-end event)))
2616 (save-excursion
2617 (goto-char (posn-point (event-end event)))
2618 (rst-toc-mode-find-section)))))
2619 (pop-to-buffer (marker-buffer pos))
2620 (goto-char pos)
2621 (recenter 5)))
2622
2623(defun rst-toc-mode-mouse-goto-kill (event)
2624 "Same as `rst-toc-mode-mouse-goto', but kill TOC buffer as well.
2625EVENT is the input event."
2626 (interactive "e")
2627 (call-interactively 'rst-toc-mode-mouse-goto event)
2628 (kill-buffer (get-buffer rst-toc-buffer-name)))
2629
2630(defun rst-toc-quit-window ()
2631 "Leave the current TOC buffer."
2632 (interactive)
2633 (let ((retbuf rst-toc-return-wincfg))
2634 (set-window-configuration (car retbuf))
2635 (goto-char (cadr retbuf))))
2636
2637(defvar rst-toc-mode-map
2638 (let ((map (make-sparse-keymap)))
2639 (define-key map [mouse-1] 'rst-toc-mode-mouse-goto-kill)
2640 (define-key map [mouse-2] 'rst-toc-mode-mouse-goto)
2641 (define-key map "\C-m" 'rst-toc-mode-goto-section)
2642 (define-key map "f" 'rst-toc-mode-goto-section)
2643 (define-key map "q" 'rst-toc-quit-window)
2644 (define-key map "z" 'kill-this-buffer)
2645 map)
2646 "Keymap for `rst-toc-mode'.")
2647
2648(put 'rst-toc-mode 'mode-class 'special)
2649
2650;; Could inherit from the new `special-mode'.
2651(define-derived-mode rst-toc-mode nil "ReST-TOC"
2652 "Major mode for output from \\[rst-toc], the table-of-contents for the document."
2653 (setq buffer-read-only t))
2654
2655;; Note: use occur-mode (replace.el) as a good example to complete missing
2656;; features.
2657
2658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2659;; Section movement commands
2660;; =========================
2661
2662(defun rst-forward-section (&optional offset)
2663 "Skip to the next reStructuredText section title.
2664OFFSET specifies how many titles to skip. Use a negative OFFSET to move
2665backwards in the file (default is to use 1)."
2666 (interactive)
2667 (rst-reset-section-caches)
2668 (let* (;; Default value for offset.
2669 (offset (or offset 1))
2670
2671 ;; Get all the adornments in the file, with their line numbers.
2672 (allados (rst-find-all-adornments))
2673
2674 ;; Get the current line.
2675 (curline (line-number-at-pos))
2676
2677 (cur allados)
2678 (idx 0))
2679
2680 ;; Find the index of the "next" adornment w.r.t. to the current line.
2681 (while (and cur (< (caar cur) curline))
2682 (setq cur (cdr cur))
2683 (incf idx))
2684 ;; 'cur' is the adornment on or following the current line.
2685
2686 (if (and (> offset 0) cur (= (caar cur) curline))
2687 (incf idx))
2688
2689 ;; Find the final index.
2690 (setq idx (+ idx (if (> offset 0) (- offset 1) offset)))
2691 (setq cur (nth idx allados))
2692
2693 ;; If the index is positive, goto the line, otherwise go to the buffer
2694 ;; boundaries.
2695 (if (and cur (>= idx 0))
2696 (progn
2697 (goto-char (point-min))
2698 (forward-line (1- (car cur))))
2699 (if (> offset 0) (goto-char (point-max)) (goto-char (point-min))))))
2700
2701(defun rst-backward-section ()
2702 "Like `rst-forward-section', except move back one title."
2703 (interactive)
2704 (rst-forward-section -1))
2705
2706;; FIXME: What is `allow-extend' for?
2707(defun rst-mark-section (&optional count allow-extend)
2708 "Select COUNT sections around point.
2709Mark following sections for positive COUNT or preceding sections
2710for negative COUNT."
2711 ;; Cloned from mark-paragraph.
2712 (interactive "p\np")
2713 (unless count (setq count 1))
2714 (when (zerop count)
2715 (error "Cannot mark zero sections"))
2716 (cond ((and allow-extend
2717 (or (and (eq last-command this-command) (mark t))
2718 (use-region-p)))
2719 (set-mark
2720 (save-excursion
2721 (goto-char (mark))
2722 (rst-forward-section count)
2723 (point))))
2724 (t
2725 (rst-forward-section count)
2726 (push-mark nil t t)
2727 (rst-forward-section (- count)))))
2728
2729\f
2730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2731;; Functions to work on item lists (e.g. indent/dedent, enumerate), which are
2732;; always 2 or 3 characters apart horizontally with rest.
2733
2734(defun rst-find-leftmost-column (beg end)
2735 "Return the leftmost column in region BEG to END."
2736 (let (mincol)
2737 (save-excursion
2738 (goto-char beg)
2739 (while (< (point) end)
2740 (back-to-indentation)
2741 (unless (looking-at (rst-re 'lin-end))
2742 (setq mincol (if mincol
2743 (min mincol (current-column))
2744 (current-column))))
2745 (forward-line 1)))
2746 mincol))
2747
2748;; FIXME: This definition is old and deprecated. We need to move to the newer
2749;; version below.
2750(defmacro rst-iterate-leftmost-paragraphs
2751 (beg end first-only body-consequent body-alternative)
2752 ;; FIXME: The following comment is pretty useless.
2753 "Call FUN at the beginning of each line, with an argument that
2754specifies whether we are at the first line of a paragraph that
2755starts at the leftmost column of the given region BEG and END.
2756Set FIRST-ONLY to true if you want to callback on the first line
2757of each paragraph only."
2758 `(save-excursion
2759 (let ((leftcol (rst-find-leftmost-column ,beg ,end))
2760 (endm (copy-marker ,end)))
2761
2762 (do* (;; Iterate lines.
2763 (l (progn (goto-char ,beg) (back-to-indentation))
2764 (progn (forward-line 1) (back-to-indentation)))
2765
2766 (previous nil valid)
2767
2768 (curcol (current-column)
2769 (current-column))
2770
2771 (valid (and (= curcol leftcol)
2772 (not (looking-at (rst-re 'lin-end))))
2773 (and (= curcol leftcol)
2774 (not (looking-at (rst-re 'lin-end))))))
2775 ((>= (point) endm))
2776
2777 (if (if ,first-only
2778 (and valid (not previous))
2779 valid)
2780 ,body-consequent
2781 ,body-alternative)))))
2782
2783;; FIXME: This needs to be refactored. Probably this is simply a function
2784;; applying BODY rather than a macro.
2785(defmacro rst-iterate-leftmost-paragraphs-2 (spec &rest body)
2786 "Evaluate BODY for each line in region defined by BEG END.
2787LEFTMOST is set to true if the line is one of the leftmost of the
2788entire paragraph. PARABEGIN is set to true if the line is the
2789first of a paragraph."
2790 (declare (indent 1) (debug (sexp body)))
2791 (destructuring-bind
2792 (beg end parabegin leftmost isleftmost isempty) spec
2793
2794 `(save-excursion
2795 (let ((,leftmost (rst-find-leftmost-column ,beg ,end))
2796 (endm (copy-marker ,end)))
2797
2798 (do* (;; Iterate lines.
2799 (l (progn (goto-char ,beg) (back-to-indentation))
2800 (progn (forward-line 1) (back-to-indentation)))
2801
2802 (empty-line-previous nil ,isempty)
2803
2804 (,isempty (looking-at (rst-re 'lin-end))
2805 (looking-at (rst-re 'lin-end)))
2806
2807 (,parabegin (not ,isempty)
2808 (and empty-line-previous
2809 (not ,isempty)))
2810
2811 (,isleftmost (and (not ,isempty)
2812 (= (current-column) ,leftmost))
2813 (and (not ,isempty)
2814 (= (current-column) ,leftmost))))
2815 ((>= (point) endm))
2816
2817 (progn ,@body))))))
2818
2819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2820;; Indentation
2821
2822;; FIXME: At the moment only block comments with leading empty comment line are
2823;; supported. Comment lines with leading comment markup should be also
2824;; supported. May be a customizable option could control which style to
2825;; prefer.
2826
2827(defgroup rst-indent nil "Settings for indentation in reStructuredText.
2828
2829In reStructuredText indentation points are usually determined by
2830preceding lines. Sometimes the syntax allows arbitrary
2831indentation points such as where to start the first line
2832following a directive. These indentation widths can be customized
2833here."
2834 :group 'rst
2835 :package-version '(rst . "1.1.0"))
2836
2837(define-obsolete-variable-alias
2838 'rst-shift-basic-offset 'rst-indent-width "rst 1.0.0")
2839(defcustom rst-indent-width 2
2840 "Indentation when there is no more indentation point given."
2841 :group 'rst-indent
2842 :type '(integer))
2843(rst-testcover-defcustom)
2844
2845(defcustom rst-indent-field 3
2846 "Indentation for first line after a field or 0 to always indent for content."
2847 :group 'rst-indent
2848 :package-version '(rst . "1.1.0")
2849 :type '(integer))
2850(rst-testcover-defcustom)
2851
2852(defcustom rst-indent-literal-normal 3
2853 "Default indentation for literal block after a markup on an own line."
2854 :group 'rst-indent
2855 :package-version '(rst . "1.1.0")
2856 :type '(integer))
2857(rst-testcover-defcustom)
2858
2859(defcustom rst-indent-literal-minimized 2
2860 "Default indentation for literal block after a minimized markup."
2861 :group 'rst-indent
2862 :package-version '(rst . "1.1.0")
2863 :type '(integer))
2864(rst-testcover-defcustom)
2865
2866(defcustom rst-indent-comment 3
2867 "Default indentation for first line of a comment."
2868 :group 'rst-indent
2869 :package-version '(rst . "1.1.0")
2870 :type '(integer))
2871(rst-testcover-defcustom)
2872
2873;; FIXME: Must consider other tabs:
2874;; * Line blocks
2875;; * Definition lists
2876;; * Option lists
2877(defun rst-line-tabs ()
2878 "Return tabs of the current line or nil for no tab.
2879The list is sorted so the tab where writing continues most likely
2880is the first one. Each tab is of the form (COLUMN . INNER).
2881COLUMN is the column of the tab. INNER is non-nil if this is an
2882inner tab. I.e. a tab which does come from the basic indentation
2883and not from inner alignment points."
2884 (save-excursion
2885 (forward-line 0)
2886 (save-match-data
2887 (unless (looking-at (rst-re 'lin-end))
2888 (back-to-indentation)
2889 ;; Current indentation is always the least likely tab.
2890 (let ((tabs (list (list (point) 0 nil)))) ; (POINT OFFSET INNER)
2891 ;; Push inner tabs more likely to continue writing.
2892 (cond
2893 ;; Item.
2894 ((looking-at (rst-re '(:grp itmany-tag hws-sta) '(:grp "\\S ") "?"))
2895 (when (match-string 2)
2896 (push (list (match-beginning 2) 0 t) tabs)))
2897 ;; Field.
2898 ((looking-at (rst-re '(:grp fld-tag) '(:grp hws-tag)
2899 '(:grp "\\S ") "?"))
2900 (unless (zerop rst-indent-field)
2901 (push (list (match-beginning 1) rst-indent-field t) tabs))
2902 (if (match-string 3)
2903 (push (list (match-beginning 3) 0 t) tabs)
2904 (if (zerop rst-indent-field)
2905 (push (list (match-end 2)
2906 (if (string= (match-string 2) "") 1 0)
2907 t) tabs))))
2908 ;; Directive.
2909 ((looking-at (rst-re 'dir-sta-3 '(:grp "\\S ") "?"))
2910 (push (list (match-end 1) 0 t) tabs)
2911 (unless (string= (match-string 2) "")
2912 (push (list (match-end 2) 0 t) tabs))
2913 (when (match-string 4)
2914 (push (list (match-beginning 4) 0 t) tabs)))
2915 ;; Footnote or citation definition.
2916 ((looking-at (rst-re 'fnc-sta-2 '(:grp "\\S ") "?"))
2917 (push (list (match-end 1) 0 t) tabs)
2918 (when (match-string 3)
2919 (push (list (match-beginning 3) 0 t) tabs)))
2920 ;; Comment.
2921 ((looking-at (rst-re 'cmt-sta-1))
2922 (push (list (point) rst-indent-comment t) tabs)))
2923 ;; Start of literal block.
2924 (when (looking-at (rst-re 'lit-sta-2))
2925 (let ((tab0 (first tabs)))
2926 (push (list (first tab0)
2927 (+ (second tab0)
2928 (if (match-string 1)
2929 rst-indent-literal-minimized
2930 rst-indent-literal-normal))
2931 t) tabs)))
2932 (mapcar (lambda (tab)
2933 (goto-char (first tab))
2934 (cons (+ (current-column) (second tab)) (third tab)))
2935 tabs))))))
2936
2937(defun rst-compute-tabs (pt)
2938 "Build the list of possible tabs for all lines above.
2939Search backwards from point PT to build the list of possible
2940tabs. Return a list of tabs sorted by likeliness to continue
2941writing like `rst-line-tabs'. Nearer lines have generally a
2942higher likeliness than farther lines. Return nil if no tab is found
2943in the text above."
2944 (save-excursion
2945 (goto-char pt)
2946 (let (leftmost ; Leftmost column found so far.
2947 innermost ; Leftmost column for inner tab.
2948 tablist)
2949 (while (and (zerop (forward-line -1))
2950 (or (not leftmost)
2951 (> leftmost 0)))
2952 (let* ((tabs (rst-line-tabs))
2953 (leftcol (if tabs (apply 'min (mapcar 'car tabs)))))
2954 (when tabs
2955 ;; Consider only lines indented less or same if not INNERMOST.
2956 (when (or (not leftmost)
2957 (< leftcol leftmost)
2958 (and (not innermost) (= leftcol leftmost)))
2959 (dolist (tab tabs)
2960 (let ((inner (cdr tab))
2961 (newcol (car tab)))
2962 (when (and
2963 (or
2964 (and (not inner)
2965 (or (not leftmost)
2966 (< newcol leftmost)))
2967 (and inner
2968 (or (not innermost)
2969 (< newcol innermost))))
2970 (not (memq newcol tablist)))
2971 (push newcol tablist))))
2972 (setq innermost (if (rst-some (mapcar 'cdr tabs)) ; Has inner.
2973 leftcol
2974 innermost))
2975 (setq leftmost leftcol)))))
2976 (nreverse tablist))))
2977
2978(defun rst-indent-line (&optional dflt)
2979 "Indent current line to next best reStructuredText tab.
2980The next best tab is taken from the tab list returned by
2981`rst-compute-tabs' which is used in a cyclic manner. If the
2982current indentation does not end on a tab use the first one. If
2983the current indentation is on a tab use the next tab. This allows
2984a repeated use of \\[indent-for-tab-command] to cycle through all
2985possible tabs. If no indentation is possible return `noindent' or
2986use DFLT. Return the indentation indented to. When point is in
2987indentation it ends up at its end. Otherwise the point is kept
2988relative to the content."
2989 (let* ((pt (point-marker))
2990 (cur (current-indentation))
2991 (clm (current-column))
2992 (tabs (rst-compute-tabs (point)))
2993 (fnd (rst-position cur tabs))
2994 ind)
2995 (if (and (not tabs) (not dflt))
2996 'noindent
2997 (if (not tabs)
2998 (setq ind dflt)
2999 (if (not fnd)
3000 (setq fnd 0)
3001 (setq fnd (1+ fnd))
3002 (if (>= fnd (length tabs))
3003 (setq fnd 0)))
3004 (setq ind (nth fnd tabs)))
3005 (indent-line-to ind)
3006 (if (> clm cur)
3007 (goto-char pt))
3008 (set-marker pt nil)
3009 ind)))
3010
3011(defun rst-shift-region (beg end cnt)
3012 "Shift region BEG to END by CNT tabs.
3013Shift by one tab to the right (CNT > 0) or left (CNT < 0) or
3014remove all indentation (CNT = 0). A tab is taken from the text
3015above. If no suitable tab is found `rst-indent-width' is used."
3016 (interactive "r\np")
3017 (let ((tabs (sort (rst-compute-tabs beg) (lambda (x y) (<= x y))))
3018 (leftmostcol (rst-find-leftmost-column beg end)))
3019 (when (or (> leftmostcol 0) (> cnt 0))
3020 ;; Apply the indent.
3021 (indent-rigidly
3022 beg end
3023 (if (zerop cnt)
3024 (- leftmostcol)
3025 ;; Find the next tab after the leftmost column.
3026 (let* ((cmp (if (> cnt 0) '> '<))
3027 (tabs (if (> cnt 0) tabs (reverse tabs)))
3028 (len (length tabs))
3029 (dir (rst-signum cnt)) ; Direction to take.
3030 (abs (abs cnt)) ; Absolute number of steps to take.
3031 ;; Get the position of the first tab beyond leftmostcol.
3032 (fnd (lexical-let ((cmp cmp)
3033 (leftmostcol leftmostcol)) ; Create closure.
3034 (rst-position-if (lambda (elt)
3035 (funcall cmp elt leftmostcol))
3036 tabs)))
3037 ;; Virtual position of tab.
3038 (pos (+ (or fnd len) (1- abs)))
3039 (tab (if (< pos len)
3040 ;; Tab exists - use it.
3041 (nth pos tabs)
3042 ;; Column needs to be computed.
3043 (let ((col (+ (or (car (last tabs)) leftmostcol)
3044 ;; Base on last known column.
3045 (* (- pos (1- len)) ; Distance left.
3046 dir ; Direction to take.
3047 rst-indent-width))))
3048 (if (< col 0) 0 col)))))
3049 (- tab leftmostcol)))))))
3050
3051;; FIXME: A paragraph with an (incorrectly) indented second line is not filled
3052;; correctly::
3053;;
3054;; Some start
3055;; continued wrong
3056(defun rst-adaptive-fill ()
3057 "Return fill prefix found at point.
3058Value for `adaptive-fill-function'."
3059 (let ((fnd (if (looking-at adaptive-fill-regexp)
3060 (match-string-no-properties 0))))
3061 (if (save-match-data
3062 (not (string-match comment-start-skip fnd)))
3063 ;; An non-comment prefix is fine.
3064 fnd
3065 ;; Matches a comment - return whitespace instead.
3066 (make-string (-
3067 (save-excursion
3068 (goto-char (match-end 0))
3069 (current-column))
3070 (save-excursion
3071 (goto-char (match-beginning 0))
3072 (current-column))) ? ))))
3073
3074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3075;; Comments
3076
3077(defun rst-comment-line-break (&optional soft)
3078 "Break line and indent, continuing reStructuredText comment if within one.
3079Value for `comment-line-break-function'. If SOFT use soft
3080newlines as mandated by `comment-line-break-function'."
3081 (if soft
3082 (insert-and-inherit ?\n)
3083 (newline 1))
3084 (save-excursion
3085 (forward-char -1)
3086 (delete-horizontal-space))
3087 (delete-horizontal-space)
3088 (let ((tabs (rst-compute-tabs (point))))
3089 (when tabs
3090 (indent-line-to (car tabs)))))
3091
3092(defun rst-comment-indent ()
3093 "Return indentation for current comment line."
3094 (car (rst-compute-tabs (point))))
3095
3096(defun rst-comment-insert-comment ()
3097 "Insert a comment in the current line."
3098 (rst-indent-line 0)
3099 (insert comment-start))
3100
3101(defun rst-comment-region (beg end &optional arg)
3102 "Comment or uncomment the current region.
3103Region is from from BEG to END. Uncomment if ARG."
3104 (save-excursion
3105 (if (consp arg)
3106 (rst-uncomment-region beg end arg)
3107 (goto-char beg)
3108 (let ((ind (current-indentation))
3109 bol)
3110 (forward-line 0)
3111 (setq bol (point))
3112 (indent-rigidly bol end rst-indent-comment)
3113 (goto-char bol)
3114 (open-line 1)
3115 (indent-line-to ind)
3116 (insert (comment-string-strip comment-start t t))))))
3117
3118(defun rst-uncomment-region (beg end &optional arg)
3119 "Uncomment the current region.
3120Region is from BEG to END. ARG is ignored"
3121 (save-excursion
3122 (let (bol eol)
3123 (goto-char beg)
3124 (forward-line 0)
3125 (setq bol (point))
3126 (forward-line 1)
3127 (setq eol (point))
3128 (indent-rigidly eol end (- rst-indent-comment))
3129 (delete-region bol eol))))
3130
3131;;------------------------------------------------------------------------------
3132
3133;; FIXME: These next functions should become part of a larger effort to redo
3134;; the bullets in bulleted lists. The enumerate would just be one of
3135;; the possible outputs.
3136;;
3137;; FIXME: We need to do the enumeration removal as well.
3138
3139(defun rst-enumerate-region (beg end all)
3140 "Add enumeration to all the leftmost paragraphs in the given region.
3141The region is specified between BEG and END. With ALL,
3142do all lines instead of just paragraphs."
3143 (interactive "r\nP")
3144 (let ((count 0)
3145 (last-insert-len nil))
3146 (rst-iterate-leftmost-paragraphs
3147 beg end (not all)
3148 (let ((ins-string (format "%d. " (incf count))))
3149 (setq last-insert-len (length ins-string))
3150 (insert ins-string))
3151 (insert (make-string last-insert-len ?\ )))))
3152
3153(defun rst-bullet-list-region (beg end all)
3154 "Add bullets to all the leftmost paragraphs in the given region.
3155The region is specified between BEG and END. With ALL,
3156do all lines instead of just paragraphs."
3157 (interactive "r\nP")
3158 (rst-iterate-leftmost-paragraphs
3159 beg end (not all)
3160 (insert (car rst-preferred-bullets) " ")
3161 (insert " ")))
3162
3163;; FIXME: Does not deal with a varying number of digits appropriately.
3164;; FIXME: Does not deal with multiple levels independently.
3165;; FIXME: Does not indent a multiline item correctly.
3166(defun rst-convert-bullets-to-enumeration (beg end)
3167 "Convert the bulleted and enumerated items in the region to enumerated lists.
3168Renumber as necessary. Region is from BEG to END."
3169 (interactive "r")
3170 (let* (;; Find items and convert the positions to markers.
3171 (items (mapcar
3172 (lambda (x)
3173 (cons (copy-marker (car x))
3174 (cdr x)))
3175 (rst-find-pfx-in-region beg end (rst-re 'itmany-sta-1))))
3176 (count 1))
3177 (save-excursion
3178 (dolist (x items)
3179 (goto-char (car x))
3180 (looking-at (rst-re 'itmany-beg-1))
3181 (replace-match (format "%d." count) nil nil nil 1)
3182 (incf count)))))
3183
3184;;------------------------------------------------------------------------------
3185
3186(defun rst-line-block-region (rbeg rend &optional pfxarg)
3187 "Toggle line block prefixes for a region.
3188Region is from RBEG to REND. With PFXARG set the empty lines too."
3189 (interactive "r\nP")
3190 (let ((comment-start "| ")
3191 (comment-end "")
3192 (comment-start-skip "| ")
3193 (comment-style 'indent)
3194 (force (not (not pfxarg))))
3195 (rst-iterate-leftmost-paragraphs-2
3196 (rbeg rend parbegin leftmost isleft isempty)
3197 (when (or force (not isempty))
3198 (move-to-column leftmost force)
3199 (delete-region (point) (+ (point) (- (current-indentation) leftmost)))
3200 (insert "| ")))))
3201
3202
3203\f
3204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3205;; Font lock
3206;; =========
3207
3208(require 'font-lock)
3209
3210;; FIXME: The obsolete variables need to disappear.
3211
3212;; The following versions have been done inside Emacs and should not be
3213;; replaced by `:package-version' attributes until a change.
3214
3215(defgroup rst-faces nil "Faces used in Rst Mode."
3216 :group 'rst
3217 :group 'faces
3218 :version "21.1")
3219
3220(defface rst-block '((t :inherit font-lock-keyword-face))
3221 "Face used for all syntax marking up a special block."
3222 :version "24.1"
3223 :group 'rst-faces)
3224
3225(defcustom rst-block-face 'rst-block
3226 "All syntax marking up a special block."
3227 :version "24.1"
3228 :group 'rst-faces
3229 :type '(face))
3230(rst-testcover-defcustom)
3231(make-obsolete-variable 'rst-block-face
3232 "customize the face `rst-block' instead."
3233 "24.1")
3234
3235(defface rst-external '((t :inherit font-lock-type-face))
3236 "Face used for field names and interpreted text."
3237 :version "24.1"
3238 :group 'rst-faces)
3239
3240(defcustom rst-external-face 'rst-external
3241 "Field names and interpreted text."
3242 :version "24.1"
3243 :group 'rst-faces
3244 :type '(face))
3245(rst-testcover-defcustom)
3246(make-obsolete-variable 'rst-external-face
3247 "customize the face `rst-external' instead."
3248 "24.1")
3249
3250(defface rst-definition '((t :inherit font-lock-function-name-face))
3251 "Face used for all other defining constructs."
3252 :version "24.1"
3253 :group 'rst-faces)
3254
3255(defcustom rst-definition-face 'rst-definition
3256 "All other defining constructs."
3257 :version "24.1"
3258 :group 'rst-faces
3259 :type '(face))
3260(rst-testcover-defcustom)
3261(make-obsolete-variable 'rst-definition-face
3262 "customize the face `rst-definition' instead."
3263 "24.1")
3264
3265;; XEmacs compatibility (?).
3266(defface rst-directive (if (boundp 'font-lock-builtin-face)
3267 '((t :inherit font-lock-builtin-face))
3268 '((t :inherit font-lock-preprocessor-face)))
3269 "Face used for directives and roles."
3270 :version "24.1"
3271 :group 'rst-faces)
3272
3273(defcustom rst-directive-face 'rst-directive
3274 "Directives and roles."
3275 :group 'rst-faces
3276 :type '(face))
3277(rst-testcover-defcustom)
3278(make-obsolete-variable 'rst-directive-face
3279 "customize the face `rst-directive' instead."
3280 "24.1")
3281
3282(defface rst-comment '((t :inherit font-lock-comment-face))
3283 "Face used for comments."
3284 :version "24.1"
3285 :group 'rst-faces)
3286
3287(defcustom rst-comment-face 'rst-comment
3288 "Comments."
3289 :version "24.1"
3290 :group 'rst-faces
3291 :type '(face))
3292(rst-testcover-defcustom)
3293(make-obsolete-variable 'rst-comment-face
3294 "customize the face `rst-comment' instead."
3295 "24.1")
3296
3297(defface rst-emphasis1 '((t :inherit italic))
3298 "Face used for simple emphasis."
3299 :version "24.1"
3300 :group 'rst-faces)
3301
3302(defcustom rst-emphasis1-face 'rst-emphasis1
3303 "Simple emphasis."
3304 :version "24.1"
3305 :group 'rst-faces
3306 :type '(face))
3307(rst-testcover-defcustom)
3308(make-obsolete-variable 'rst-emphasis1-face
3309 "customize the face `rst-emphasis1' instead."
3310 "24.1")
3311
3312(defface rst-emphasis2 '((t :inherit bold))
3313 "Face used for double emphasis."
3314 :version "24.1"
3315 :group 'rst-faces)
3316
3317(defcustom rst-emphasis2-face 'rst-emphasis2
3318 "Double emphasis."
3319 :group 'rst-faces
3320 :type '(face))
3321(rst-testcover-defcustom)
3322(make-obsolete-variable 'rst-emphasis2-face
3323 "customize the face `rst-emphasis2' instead."
3324 "24.1")
3325
3326(defface rst-literal '((t :inherit font-lock-string-face))
3327 "Face used for literal text."
3328 :version "24.1"
3329 :group 'rst-faces)
3330
3331(defcustom rst-literal-face 'rst-literal
3332 "Literal text."
3333 :version "24.1"
3334 :group 'rst-faces
3335 :type '(face))
3336(rst-testcover-defcustom)
3337(make-obsolete-variable 'rst-literal-face
3338 "customize the face `rst-literal' instead."
3339 "24.1")
3340
3341(defface rst-reference '((t :inherit font-lock-variable-name-face))
3342 "Face used for references to a definition."
3343 :version "24.1"
3344 :group 'rst-faces)
3345
3346(defcustom rst-reference-face 'rst-reference
3347 "References to a definition."
3348 :version "24.1"
3349 :group 'rst-faces
3350 :type '(face))
3351(rst-testcover-defcustom)
3352(make-obsolete-variable 'rst-reference-face
3353 "customize the face `rst-reference' instead."
3354 "24.1")
3355
3356(defface rst-transition '((t :inherit font-lock-keyword-face))
3357 "Face used for a transition."
3358 :package-version '(rst . "1.3.0")
3359 :group 'rst-faces)
3360
3361(defface rst-adornment '((t :inherit font-lock-keyword-face))
3362 "Face used for the adornment of a section header."
3363 :package-version '(rst . "1.3.0")
3364 :group 'rst-faces)
3365
3366;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3367
3368(dolist (var '(rst-level-face-max rst-level-face-base-color
3369 rst-level-face-base-light
3370 rst-level-face-format-light
3371 rst-level-face-step-light
3372 rst-level-1-face
3373 rst-level-2-face
3374 rst-level-3-face
3375 rst-level-4-face
3376 rst-level-5-face
3377 rst-level-6-face))
3378 (make-obsolete-variable var "customize the faces `rst-level-*' instead."
3379 "24.3"))
3380
3381;; Define faces for the first 6 levels. More levels are possible, however.
3382(defface rst-level-1 '((((background light)) (:background "grey85"))
3383 (((background dark)) (:background "grey15")))
3384 "Default face for section title text at level 1."
3385 :package-version '(rst . "1.4.0"))
3386
3387(defface rst-level-2 '((((background light)) (:background "grey78"))
3388 (((background dark)) (:background "grey22")))
3389 "Default face for section title text at level 2."
3390 :package-version '(rst . "1.4.0"))
3391
3392(defface rst-level-3 '((((background light)) (:background "grey71"))
3393 (((background dark)) (:background "grey29")))
3394 "Default face for section title text at level 3."
3395 :package-version '(rst . "1.4.0"))
3396
3397(defface rst-level-4 '((((background light)) (:background "grey64"))
3398 (((background dark)) (:background "grey36")))
3399 "Default face for section title text at level 4."
3400 :package-version '(rst . "1.4.0"))
3401
3402(defface rst-level-5 '((((background light)) (:background "grey57"))
3403 (((background dark)) (:background "grey43")))
3404 "Default face for section title text at level 5."
3405 :package-version '(rst . "1.4.0"))
3406
3407(defface rst-level-6 '((((background light)) (:background "grey50"))
3408 (((background dark)) (:background "grey50")))
3409 "Default face for section title text at level 6."
3410 :package-version '(rst . "1.4.0"))
3411
3412(defcustom rst-adornment-faces-alist
3413 '((t . rst-transition)
3414 (nil . rst-adornment)
3415 (1 . rst-level-1)
3416 (2 . rst-level-2)
3417 (3 . rst-level-3)
3418 (4 . rst-level-4)
3419 (5 . rst-level-5)
3420 (6 . rst-level-6))
3421 "Faces for the various adornment types.
3422Key is a number (for the section title text of that level
3423starting with 1), t (for transitions) or nil (for section title
3424adornment). If you need levels beyond 6 you have to define faces
3425of your own."
3426 :group 'rst-faces
3427 :type '(alist
3428 :key-type
3429 (choice
3430 (integer :tag "Section level")
3431 (const :tag "transitions" t)
3432 (const :tag "section title adornment" nil))
3433 :value-type (face)))
3434(rst-testcover-defcustom)
3435
3436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3437
3438(defvar rst-font-lock-keywords
3439 ;; The reST-links in the comments below all relate to sections in
3440 ;; http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html.
3441 `(;; FIXME: Block markup is not recognized in blocks after explicit markup
3442 ;; start.
3443
3444 ;; Simple `Body Elements`_
3445 ;; `Bullet Lists`_
3446 ;; FIXME: A bullet directly after a field name is not recognized.
3447 (,(rst-re 'lin-beg '(:grp bul-sta))
3448 1 rst-block-face)
3449 ;; `Enumerated Lists`_
3450 (,(rst-re 'lin-beg '(:grp enmany-sta))
3451 1 rst-block-face)
3452 ;; `Definition Lists`_
3453 ;; FIXME: missing.
3454 ;; `Field Lists`_
3455 (,(rst-re 'lin-beg '(:grp fld-tag) 'bli-sfx)
3456 1 rst-external-face)
3457 ;; `Option Lists`_
3458 (,(rst-re 'lin-beg '(:grp opt-tag (:shy optsep-tag opt-tag) "*")
3459 '(:alt "$" (:seq hws-prt "\\{2\\}")))
3460 1 rst-block-face)
3461 ;; `Line Blocks`_
3462 ;; Only for lines containing no more bar - to distinguish from tables.
3463 (,(rst-re 'lin-beg '(:grp "|" bli-sfx) "[^|\n]*$")
3464 1 rst-block-face)
3465
3466 ;; `Tables`_
3467 ;; FIXME: missing
3468
3469 ;; All the `Explicit Markup Blocks`_
3470 ;; `Footnotes`_ / `Citations`_
3471 (,(rst-re 'lin-beg 'fnc-sta-2)
3472 (1 rst-definition-face)
3473 (2 rst-definition-face))
3474 ;; `Directives`_ / `Substitution Definitions`_
3475 (,(rst-re 'lin-beg 'dir-sta-3)
3476 (1 rst-directive-face)
3477 (2 rst-definition-face)
3478 (3 rst-directive-face))
3479 ;; `Hyperlink Targets`_
3480 (,(rst-re 'lin-beg
3481 '(:grp exm-sta "_" (:alt
3482 (:seq "`" ilcbkqdef-tag "`")
3483 (:seq (:alt "[^:\\\n]" "\\\\.") "+")) ":")
3484 'bli-sfx)
3485 1 rst-definition-face)
3486 (,(rst-re 'lin-beg '(:grp "__") 'bli-sfx)
3487 1 rst-definition-face)
3488
3489 ;; All `Inline Markup`_
3490 ;; Most of them may be multiline though this is uninteresting.
3491
3492 ;; FIXME: Condition 5 preventing fontification of e.g. "*" not implemented
3493 ;; `Strong Emphasis`_.
3494 (,(rst-re 'ilm-pfx '(:grp "\\*\\*" ilcast-tag "\\*\\*") 'ilm-sfx)
3495 1 rst-emphasis2-face)
3496 ;; `Emphasis`_
3497 (,(rst-re 'ilm-pfx '(:grp "\\*" ilcast-tag "\\*") 'ilm-sfx)
3498 1 rst-emphasis1-face)
3499 ;; `Inline Literals`_
3500 (,(rst-re 'ilm-pfx '(:grp "``" ilcbkq-tag "``") 'ilm-sfx)
3501 1 rst-literal-face)
3502 ;; `Inline Internal Targets`_
3503 (,(rst-re 'ilm-pfx '(:grp "_`" ilcbkq-tag "`") 'ilm-sfx)
3504 1 rst-definition-face)
3505 ;; `Hyperlink References`_
3506 ;; FIXME: `Embedded URIs`_ not considered.
3507 ;; FIXME: Directly adjacent marked up words are not fontified correctly
3508 ;; unless they are not separated by two spaces: foo_ bar_.
3509 (,(rst-re 'ilm-pfx '(:grp (:alt (:seq "`" ilcbkq-tag "`")
3510 (:seq "\\sw" (:alt "\\sw" "-") "+\\sw"))
3511 "__?") 'ilm-sfx)
3512 1 rst-reference-face)
3513 ;; `Interpreted Text`_
3514 (,(rst-re 'ilm-pfx '(:grp (:shy ":" sym-tag ":") "?")
3515 '(:grp "`" ilcbkq-tag "`")
3516 '(:grp (:shy ":" sym-tag ":") "?") 'ilm-sfx)
3517 (1 rst-directive-face)
3518 (2 rst-external-face)
3519 (3 rst-directive-face))
3520 ;; `Footnote References`_ / `Citation References`_
3521 (,(rst-re 'ilm-pfx '(:grp fnc-tag "_") 'ilm-sfx)
3522 1 rst-reference-face)
3523 ;; `Substitution References`_
3524 ;; FIXME: References substitutions like |this|_ or |this|__ are not
3525 ;; fontified correctly.
3526 (,(rst-re 'ilm-pfx '(:grp sub-tag) 'ilm-sfx)
3527 1 rst-reference-face)
3528 ;; `Standalone Hyperlinks`_
3529 ;; FIXME: This takes it easy by using a whitespace as delimiter.
3530 (,(rst-re 'ilm-pfx '(:grp uri-tag ":\\S +") 'ilm-sfx)
3531 1 rst-definition-face)
3532 (,(rst-re 'ilm-pfx '(:grp sym-tag "@" sym-tag ) 'ilm-sfx)
3533 1 rst-definition-face)
3534
3535 ;; Do all block fontification as late as possible so 'append works.
3536
3537 ;; Sections_ / Transitions_
3538 ;; For sections this is multiline.
3539 (,(rst-re 'ado-beg-2-1)
3540 (rst-font-lock-handle-adornment-matcher
3541 (rst-font-lock-handle-adornment-pre-match-form
3542 (match-string-no-properties 1) (match-end 1))
3543 nil
3544 (1 (cdr (assoc nil rst-adornment-faces-alist)) append t)
3545 (2 (cdr (assoc rst-font-lock-adornment-level
3546 rst-adornment-faces-alist)) append t)
3547 (3 (cdr (assoc nil rst-adornment-faces-alist)) append t)))
3548
3549 ;; FIXME: FACESPEC could be used instead of ordinary faces to set
3550 ;; properties on comments and literal blocks so they are *not*
3551 ;; inline fontified. See (elisp)Search-based Fontification.
3552
3553 ;; FIXME: And / or use `syntax-propertize` functions as in `octave-mod.el`
3554 ;; and other V24 modes. May make `font-lock-extend-region`
3555 ;; superfluous.
3556
3557 ;; `Comments`_
3558 ;; This is multiline.
3559 (,(rst-re 'lin-beg 'cmt-sta-1)
3560 (1 rst-comment-face)
3561 (rst-font-lock-find-unindented-line-match
3562 (rst-font-lock-find-unindented-line-limit (match-end 1))
3563 nil
3564 (0 rst-comment-face append)))
3565 (,(rst-re 'lin-beg '(:grp exm-tag) '(:grp hws-tag) "$")
3566 (1 rst-comment-face)
3567 (2 rst-comment-face)
3568 (rst-font-lock-find-unindented-line-match
3569 (rst-font-lock-find-unindented-line-limit 'next)
3570 nil
3571 (0 rst-comment-face append)))
3572
3573 ;; FIXME: This is not rendered as comment::
3574 ;; .. .. list-table::
3575 ;; :stub-columns: 1
3576 ;; :header-rows: 1
3577
3578 ;; FIXME: This is rendered wrong::
3579 ;;
3580 ;; xxx yyy::
3581 ;;
3582 ;; ----|> KKKKK <|----
3583 ;; / \
3584 ;; -|> AAAAAAAAAAPPPPPP <|- -|> AAAAAAAAAABBBBBBB <|-
3585 ;; | | | |
3586 ;; | | | |
3587 ;; PPPPPP PPPPPPDDDDDDD BBBBBBB PPPPPPBBBBBBB
3588 ;;
3589 ;; Indentation needs to be taken from the line with the ``::`` and not from
3590 ;; the first content line.
3591
3592 ;; `Indented Literal Blocks`_
3593 ;; This is multiline.
3594 (,(rst-re 'lin-beg 'lit-sta-2)
3595 (2 rst-block-face)
3596 (rst-font-lock-find-unindented-line-match
3597 (rst-font-lock-find-unindented-line-limit t)
3598 nil
3599 (0 rst-literal-face append)))
3600
3601 ;; FIXME: `Quoted Literal Blocks`_ missing.
3602 ;; This is multiline.
3603
3604 ;; `Doctest Blocks`_
3605 ;; FIXME: This is wrong according to the specification:
3606 ;;
3607 ;; Doctest blocks are text blocks which begin with ">>> ", the Python
3608 ;; interactive interpreter main prompt, and end with a blank line.
3609 ;; Doctest blocks are treated as a special case of literal blocks,
3610 ;; without requiring the literal block syntax. If both are present, the
3611 ;; literal block syntax takes priority over Doctest block syntax:
3612 ;;
3613 ;; This is an ordinary paragraph.
3614 ;;
3615 ;; >>> print 'this is a Doctest block'
3616 ;; this is a Doctest block
3617 ;;
3618 ;; The following is a literal block::
3619 ;;
3620 ;; >>> This is not recognized as a doctest block by
3621 ;; reStructuredText. It *will* be recognized by the doctest
3622 ;; module, though!
3623 ;;
3624 ;; Indentation is not required for doctest blocks.
3625 (,(rst-re 'lin-beg '(:grp (:alt ">>>" ell-tag)) '(:grp ".+"))
3626 (1 rst-block-face)
3627 (2 rst-literal-face)))
3628 "Keywords to highlight in rst mode.")
3629
3630(defvar font-lock-beg)
3631(defvar font-lock-end)
3632
3633(defun rst-font-lock-extend-region ()
3634 "Extend the font-lock region if it might be in a multi-line construct.
3635Return non-nil if so. Font-lock region is from `font-lock-beg'
3636to `font-lock-end'."
3637 (let ((r (rst-font-lock-extend-region-internal font-lock-beg font-lock-end)))
3638 (when r
3639 (setq font-lock-beg (car r))
3640 (setq font-lock-end (cdr r))
3641 t)))
3642
3643(defun rst-font-lock-extend-region-internal (beg end)
3644 "Check the region BEG / END for being in the middle of a multi-line construct.
3645Return nil if not or a cons with new values for BEG / END"
3646 (let ((nbeg (rst-font-lock-extend-region-extend beg -1))
3647 (nend (rst-font-lock-extend-region-extend end 1)))
3648 (if (or nbeg nend)
3649 (cons (or nbeg beg) (or nend end)))))
3650
3651(defun rst-forward-line (&optional n)
3652 "Like `forward-line' but always end up in column 0 and return accordingly.
3653Move N lines forward just as `forward-line'."
3654 (let ((moved (forward-line n)))
3655 (if (bolp)
3656 moved
3657 (forward-line 0)
3658 (- moved (rst-signum n)))))
3659
3660;; FIXME: If a single line is made a section header by `rst-adjust' the header
3661;; is not always fontified immediately.
3662(defun rst-font-lock-extend-region-extend (pt dir)
3663 "Extend the region starting at point PT and extending in direction DIR.
3664Return extended point or nil if not moved."
3665 ;; There are many potential multiline constructs but there are two groups
3666 ;; which are really relevant. The first group consists of
3667 ;;
3668 ;; * comment lines without leading explicit markup tag and
3669 ;;
3670 ;; * literal blocks following "::"
3671 ;;
3672 ;; which are both indented. Thus indentation is the first thing recognized
3673 ;; here. The second criteria is an explicit markup tag which may be a comment
3674 ;; or a double colon at the end of a line.
3675 ;;
3676 ;; The second group consists of the adornment cases.
3677 (if (not (get-text-property pt 'font-lock-multiline))
3678 ;; Move only if we don't start inside a multiline construct already.
3679 (save-excursion
3680 (let (;; Non-empty non-indented line, explicit markup tag or literal
3681 ;; block tag.
3682 (stop-re (rst-re '(:alt "[^ \t\n]"
3683 (:seq hws-tag exm-tag)
3684 (:seq ".*" dcl-tag lin-end)))))
3685 ;; The comments below are for dir == -1 / dir == 1.
3686 (goto-char pt)
3687 (forward-line 0)
3688 (setq pt (point))
3689 (while (and (not (looking-at stop-re))
3690 (zerop (rst-forward-line dir)))) ; try previous / next
3691 ; line if it exists.
3692 (if (looking-at (rst-re 'ado-beg-2-1)) ; may be an underline /
3693 ; overline.
3694 (if (zerop (rst-forward-line dir))
3695 (if (looking-at (rst-re 'ttl-beg)) ; title found, i.e.
3696 ; underline / overline
3697 ; found.
3698 (if (zerop (rst-forward-line dir))
3699 (if (not
3700 (looking-at (rst-re 'ado-beg-2-1))) ; no
3701 ; overline /
3702 ; underline.
3703 (rst-forward-line (- dir)))) ; step back to title
3704 ; / adornment.
3705 (if (< dir 0) ; keep downward adornment.
3706 (rst-forward-line (- dir))))) ; step back to adornment.
3707 (if (looking-at (rst-re 'ttl-beg)) ; may be a title.
3708 (if (zerop (rst-forward-line dir))
3709 (if (not
3710 (looking-at (rst-re 'ado-beg-2-1))) ; no overline /
3711 ; underline.
3712 (rst-forward-line (- dir)))))) ; step back to line.
3713 (if (not (= (point) pt))
3714 (point))))))
3715
3716;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3717;; Indented blocks
3718
3719(defun rst-forward-indented-block (&optional column limit)
3720 "Move forward across one indented block.
3721Find the next non-empty line which is not indented at least to COLUMN (defaults
3722to the column of the point). Moves point to first character of this line or the
3723first empty line immediately before it and returns that position. If there is
3724no such line before LIMIT (defaults to the end of the buffer) returns nil and
3725point is not moved."
3726 (interactive)
3727 (let ((clm (or column (current-column)))
3728 (start (point))
3729 fnd beg cand)
3730 (if (not limit)
3731 (setq limit (point-max)))
3732 (save-match-data
3733 (while (and (not fnd) (< (point) limit))
3734 (forward-line 1)
3735 (when (< (point) limit)
3736 (setq beg (point))
3737 (if (looking-at (rst-re 'lin-end))
3738 (setq cand (or cand beg)) ; An empty line is a candidate.
3739 (move-to-column clm)
3740 ;; FIXME: No indentation [(zerop clm)] must be handled in some
3741 ;; useful way - though it is not clear what this should mean
3742 ;; at all.
3743 (if (string-match
3744 (rst-re 'linemp-tag)
3745 (buffer-substring-no-properties beg (point)))
3746 (setq cand nil) ; An indented line resets a candidate.
3747 (setq fnd (or cand beg)))))))
3748 (goto-char (or fnd start))
3749 fnd))
3750
3751(defvar rst-font-lock-find-unindented-line-begin nil
3752 "Beginning of the match if `rst-font-lock-find-unindented-line-end'.")
3753
3754(defvar rst-font-lock-find-unindented-line-end nil
3755 "End of the match as determined by `rst-font-lock-find-unindented-line-limit'.
3756Also used as a trigger for
3757`rst-font-lock-find-unindented-line-match'.")
3758
3759(defun rst-font-lock-find-unindented-line-limit (ind-pnt)
3760 "Find the next unindented line relative to indentation at IND-PNT.
3761Return this point, the end of the buffer or nil if nothing found.
3762If IND-PNT is `next' take the indentation from the next line if
3763this is not empty and indented more than the current one. If
3764IND-PNT is non-nil but not a number take the indentation from the
3765next non-empty line if this is indented more than the current
3766one."
3767 (setq rst-font-lock-find-unindented-line-begin ind-pnt)
3768 (setq rst-font-lock-find-unindented-line-end
3769 (save-excursion
3770 (when (not (numberp ind-pnt))
3771 ;; Find indentation point in next line if any.
3772 (setq ind-pnt
3773 ;; FIXME: Should be refactored to two different functions
3774 ;; giving their result to this function, may be
3775 ;; integrated in caller.
3776 (save-match-data
3777 (let ((cur-ind (current-indentation)))
3778 (if (eq ind-pnt 'next)
3779 (when (and (zerop (forward-line 1))
3780 (< (point) (point-max)))
3781 ;; Not at EOF.
3782 (setq rst-font-lock-find-unindented-line-begin
3783 (point))
3784 (when (and (not (looking-at (rst-re 'lin-end)))
3785 (> (current-indentation) cur-ind))
3786 ;; Use end of indentation if non-empty line.
3787 (looking-at (rst-re 'hws-tag))
3788 (match-end 0)))
3789 ;; Skip until non-empty line or EOF.
3790 (while (and (zerop (forward-line 1))
3791 (< (point) (point-max))
3792 (looking-at (rst-re 'lin-end))))
3793 (when (< (point) (point-max))
3794 ;; Not at EOF.
3795 (setq rst-font-lock-find-unindented-line-begin
3796 (point))
3797 (when (> (current-indentation) cur-ind)
3798 ;; Indentation bigger than line of departure.
3799 (looking-at (rst-re 'hws-tag))
3800 (match-end 0))))))))
3801 (when ind-pnt
3802 (goto-char ind-pnt)
3803 (or (rst-forward-indented-block nil (point-max))
3804 (point-max))))))
3805
3806(defun rst-font-lock-find-unindented-line-match (limit)
3807 "Set the match found earlier if match were found.
3808Match has been found by
3809`rst-font-lock-find-unindented-line-limit' the first time called
3810or no match is found. Return non-nil if match was found. LIMIT
3811is not used but mandated by the caller."
3812 (when rst-font-lock-find-unindented-line-end
3813 (set-match-data
3814 (list rst-font-lock-find-unindented-line-begin
3815 rst-font-lock-find-unindented-line-end))
3816 (put-text-property rst-font-lock-find-unindented-line-begin
3817 rst-font-lock-find-unindented-line-end
3818 'font-lock-multiline t)
3819 ;; Make sure this is called only once.
3820 (setq rst-font-lock-find-unindented-line-end nil)
3821 t))
3822
3823;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3824;; Adornments
3825
3826(defvar rst-font-lock-adornment-level nil
3827 "Storage for `rst-font-lock-handle-adornment-matcher'.
3828Either section level of the current adornment or t for a transition.")
3829
3830(defun rst-adornment-level (key)
3831 "Return section level for adornment KEY.
3832KEY is the first element of the return list of
3833`rst-classify-adornment'. If KEY is not a cons return it. If KEY is found
3834in the hierarchy return its level. Otherwise return a level one
3835beyond the existing hierarchy."
3836 (if (not (consp key))
3837 key
3838 (let* ((hier (rst-get-hierarchy))
3839 (char (car key))
3840 (style (cdr key)))
3841 (1+ (or (lexical-let ((char char)
3842 (style style)
3843 (hier hier)) ; Create closure.
3844 (rst-position-if (lambda (elt)
3845 (and (equal (car elt) char)
3846 (equal (cadr elt) style))) hier))
3847 (length hier))))))
3848
3849(defvar rst-font-lock-adornment-match nil
3850 "Storage for match for current adornment.
3851Set by `rst-font-lock-handle-adornment-pre-match-form'. Also used
3852as a trigger for `rst-font-lock-handle-adornment-matcher'.")
3853
3854(defun rst-font-lock-handle-adornment-pre-match-form (ado ado-end)
3855 "Determine limit for adornments.
3856Determine all things necessary for font-locking section titles
3857and transitions and put the result to
3858`rst-font-lock-adornment-match' and
3859`rst-font-lock-adornment-level'. ADO is the complete adornment
3860matched. ADO-END is the point where ADO ends. Return the point
3861where the whole adorned construct ends.
3862
3863Called as a PRE-MATCH-FORM in the sense of `font-lock-keywords'."
3864 (let ((ado-data (rst-classify-adornment ado ado-end)))
3865 (if (not ado-data)
3866 (setq rst-font-lock-adornment-level nil
3867 rst-font-lock-adornment-match nil)
3868 (setq rst-font-lock-adornment-level
3869 (rst-adornment-level (car ado-data)))
3870 (setq rst-font-lock-adornment-match (cdr ado-data))
3871 (goto-char (nth 1 ado-data)) ; Beginning of construct.
3872 (nth 2 ado-data)))) ; End of construct.
3873
3874(defun rst-font-lock-handle-adornment-matcher (limit)
3875 "Set the match found earlier if match were found.
3876Match has been found by
3877`rst-font-lock-handle-adornment-pre-match-form' the first time
3878called or no match is found. Return non-nil if match was found.
3879
3880Called as a MATCHER in the sense of `font-lock-keywords'.
3881LIMIT is not used but mandated by the caller."
3882 (let ((match rst-font-lock-adornment-match))
3883 ;; May run only once - enforce this.
3884 (setq rst-font-lock-adornment-match nil)
3885 (when match
3886 (set-match-data match)
3887 (goto-char (match-end 0))
3888 (put-text-property (match-beginning 0) (match-end 0)
3889 'font-lock-multiline t)
3890 t)))
3891
3892\f
3893;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3894;; Compilation
3895
3896(defgroup rst-compile nil
3897 "Settings for support of conversion of reStructuredText
3898document with \\[rst-compile]."
3899 :group 'rst
3900 :version "21.1")
3901
3902(defcustom rst-compile-toolsets
3903 `((html ,(if (executable-find "rst2html.py") "rst2html.py" "rst2html")
3904 ".html" nil)
3905 (latex ,(if (executable-find "rst2latex.py") "rst2latex.py" "rst2latex")
3906 ".tex" nil)
3907 (newlatex ,(if (executable-find "rst2newlatex.py") "rst2newlatex.py"
3908 "rst2newlatex")
3909 ".tex" nil)
3910 (pseudoxml ,(if (executable-find "rst2pseudoxml.py") "rst2pseudoxml.py"
3911 "rst2pseudoxml")
3912 ".xml" nil)
3913 (xml ,(if (executable-find "rst2xml.py") "rst2xml.py" "rst2xml")
3914 ".xml" nil)
3915 (pdf ,(if (executable-find "rst2pdf.py") "rst2pdf.py" "rst2pdf")
3916 ".pdf" nil)
3917 (s5 ,(if (executable-find "rst2s5.py") "rst2s5.py" "rst2s5")
3918 ".html" nil))
3919 "Table describing the command to use for each tool-set.
3920An association list of the tool-set to a list of the (command to use,
3921extension of produced filename, options to the tool (nil or a
3922string)) to be used for converting the document."
3923 ;; FIXME: These are not options but symbols which may be referenced by
3924 ;; `rst-compile-*-toolset` below. The `:validate' keyword of
3925 ;; `defcustom' may help to define this properly in newer Emacs
3926 ;; versions (> 23.1).
3927 :type '(alist :options (html latex newlatex pseudoxml xml pdf s5)
3928 :key-type symbol
3929 :value-type (list :tag "Specification"
3930 (file :tag "Command")
3931 (string :tag "File extension")
3932 (choice :tag "Command options"
3933 (const :tag "No options" nil)
3934 (string :tag "Options"))))
3935 :group 'rst
3936 :package-version "1.2.0")
3937(rst-testcover-defcustom)
3938
3939;; FIXME: Must be `defcustom`.
3940(defvar rst-compile-primary-toolset 'html
3941 "The default tool-set for `rst-compile'.")
3942
3943;; FIXME: Must be `defcustom`.
3944(defvar rst-compile-secondary-toolset 'latex
3945 "The default tool-set for `rst-compile' with a prefix argument.")
3946
3947(defun rst-compile-find-conf ()
3948 "Look for the configuration file in the parents of the current path."
3949 (interactive)
3950 (let ((file-name "docutils.conf")
3951 (buffer-file (buffer-file-name)))
3952 ;; Move up in the dir hierarchy till we find a change log file.
3953 (let* ((dir (file-name-directory buffer-file))
3954 (prevdir nil))
3955 (while (and (or (not (string= dir prevdir))
3956 (setq dir nil)
3957 nil)
3958 (not (file-exists-p (concat dir file-name))))
3959 ;; Move up to the parent dir and try again.
3960 (setq prevdir dir)
3961 (setq dir (expand-file-name (file-name-directory
3962 (directory-file-name
3963 (file-name-directory dir))))))
3964 (or (and dir (concat dir file-name)) nil))))
3965
3966(require 'compile)
3967
3968(defun rst-compile (&optional use-alt)
3969 "Compile command to convert reST document into some output file.
3970Attempts to find configuration file, if it can, overrides the
3971options. There are two commands to choose from, with USE-ALT,
3972select the alternative tool-set."
3973 (interactive "P")
3974 ;; Note: maybe we want to check if there is a Makefile too and not do anything
3975 ;; if that is the case. I dunno.
3976 (let* ((toolset (cdr (assq (if use-alt
3977 rst-compile-secondary-toolset
3978 rst-compile-primary-toolset)
3979 rst-compile-toolsets)))
3980 (command (car toolset))
3981 (extension (cadr toolset))
3982 (options (caddr toolset))
3983 (conffile (rst-compile-find-conf))
3984 (bufname (file-name-nondirectory buffer-file-name))
3985 (outname (file-name-sans-extension bufname)))
3986
3987 ;; Set compile-command before invocation of compile.
3988 (set (make-local-variable 'compile-command)
3989 (mapconcat 'identity
3990 (list command
3991 (or options "")
3992 (if conffile
3993 (concat "--config=" (shell-quote-argument conffile))
3994 "")
3995 (shell-quote-argument bufname)
3996 (shell-quote-argument (concat outname extension)))
3997 " "))
3998
3999 ;; Invoke the compile command.
4000 (if (or compilation-read-command use-alt)
4001 (call-interactively 'compile)
4002 (compile compile-command))))
4003
4004(defun rst-compile-alt-toolset ()
4005 "Compile command with the alternative tool-set."
4006 (interactive)
4007 (rst-compile t))
4008
4009(defun rst-compile-pseudo-region ()
4010 "Show pseudo-XML rendering.
4011Rendering is done of the current active region, or of the entire
4012buffer, if the region is not selected."
4013 ;; FIXME: The region should be given interactively.
4014 (interactive)
4015 (with-output-to-temp-buffer "*pseudoxml*"
4016 (shell-command-on-region
4017 (if mark-active (region-beginning) (point-min))
4018 (if mark-active (region-end) (point-max))
4019 (cadr (assq 'pseudoxml rst-compile-toolsets))
4020 standard-output)))
4021
4022;; FIXME: Should be `defcustom`.
4023(defvar rst-pdf-program "xpdf"
4024 "Program used to preview PDF files.")
4025
4026(defun rst-compile-pdf-preview ()
4027 "Convert the document to a PDF file and launch a preview program."
4028 (interactive)
4029 (let* ((tmp-filename (make-temp-file "rst_el" nil ".pdf"))
4030 (command (format "%s %s %s && %s %s ; rm %s"
4031 (cadr (assq 'pdf rst-compile-toolsets))
4032 buffer-file-name tmp-filename
4033 rst-pdf-program tmp-filename tmp-filename)))
4034 (start-process-shell-command "rst-pdf-preview" nil command)
4035 ;; Note: you could also use (compile command) to view the compilation
4036 ;; output.
4037 ))
4038
4039;; FIXME: Should be `defcustom` or use something like `browse-url`.
4040(defvar rst-slides-program "firefox"
4041 "Program used to preview S5 slides.")
4042
4043(defun rst-compile-slides-preview ()
4044 "Convert the document to an S5 slide presentation and launch a preview program."
4045 (interactive)
4046 (let* ((tmp-filename (make-temp-file "rst_el" nil ".html"))
4047 (command (format "%s %s %s && %s %s ; rm %s"
4048 (cadr (assq 's5 rst-compile-toolsets))
4049 buffer-file-name tmp-filename
4050 rst-slides-program tmp-filename tmp-filename)))
4051 (start-process-shell-command "rst-slides-preview" nil command)
4052 ;; Note: you could also use (compile command) to view the compilation
4053 ;; output.
4054 ))
4055
4056\f
4057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4058;; Imenu support.
4059
4060;; FIXME: Integrate this properly. Consider a key binding.
4061
4062;; Based on code from Masatake YAMATO <yamato@redhat.com>.
4063
4064(defun rst-imenu-find-adornments-for-position (adornments pos)
4065 "Find adornments cell in ADORNMENTS for position POS."
4066 (let ((a nil))
4067 (while adornments
4068 (if (and (car adornments)
4069 (eq (car (car adornments)) pos))
4070 (setq a adornments
4071 adornments nil)
4072 (setq adornments (cdr adornments))))
4073 a))
4074
4075(defun rst-imenu-convert-cell (elt adornments)
4076 "Convert a cell ELT in a tree returned from `rst-section-tree' to imenu index.
4077ADORNMENTS is used as hint information for conversion."
4078 (let* ((kar (car elt))
4079 (kdr (cdr elt))
4080 (title (car kar)))
4081 (if kar
4082 (let* ((p (marker-position (cadr kar)))
4083 (adornments
4084 (rst-imenu-find-adornments-for-position adornments p))
4085 (a (car adornments))
4086 (adornments (cdr adornments))
4087 ;; FIXME: Overline adornment characters need to be in front so
4088 ;; they become visible even for long title lines. May be
4089 ;; an additional level number is also useful.
4090 (title (format "%s%s%s"
4091 (make-string (1+ (nth 3 a)) (nth 1 a))
4092 title
4093 (if (eq (nth 2 a) 'simple)
4094 ""
4095 (char-to-string (nth 1 a))))))
4096 (cons title
4097 (if (null kdr)
4098 p
4099 (cons
4100 ;; A bit ugly but this make which-func happy.
4101 (cons title p)
4102 (mapcar (lambda (elt0)
4103 (rst-imenu-convert-cell elt0 adornments))
4104 kdr)))))
4105 nil)))
4106
4107;; FIXME: Document title and subtitle need to be handled properly. They should
4108;; get an own "Document" top level entry.
4109(defun rst-imenu-create-index ()
4110 "Create index for imenu.
4111Return as described for `imenu--index-alist'."
4112 (rst-reset-section-caches)
4113 (let ((tree (rst-section-tree))
4114 ;; Translate line notation to point notation.
4115 (adornments (save-excursion
4116 (mapcar (lambda (ln-ado)
4117 (cons (progn
4118 (goto-char (point-min))
4119 (forward-line (1- (car ln-ado)))
4120 ;; FIXME: Need to consider
4121 ;; `imenu-use-markers' here?
4122 (point))
4123 (cdr ln-ado)))
4124 (rst-find-all-adornments)))))
4125 (delete nil (mapcar (lambda (elt)
4126 (rst-imenu-convert-cell elt adornments))
4127 tree))))
4128
4129\f
4130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4131;; Generic text functions that are more convenient than the defaults.
4132
4133;; FIXME: Unbound command - should be bound or removed.
4134(defun rst-replace-lines (fromchar tochar)
4135 "Replace flush-left lines of FROMCHAR with equal-length lines of TOCHAR."
4136 (interactive "\
4137cSearch for flush-left lines of char:
4138cand replace with char: ")
4139 (save-excursion
4140 (let ((searchre (rst-re "^" fromchar "+\\( *\\)$"))
4141 (found 0))
4142 (while (search-forward-regexp searchre nil t)
4143 (setq found (1+ found))
4144 (goto-char (match-beginning 1))
4145 (let ((width (current-column)))
4146 (rst-delete-entire-line)
4147 (insert-char tochar width)))
4148 (message (format "%d lines replaced." found)))))
4149
4150;; FIXME: Unbound command - should be bound or removed.
4151(defun rst-join-paragraph ()
4152 "Join lines in current paragraph into one line, removing end-of-lines."
4153 (interactive)
4154 (let ((fill-column 65000)) ; Some big number.
4155 (call-interactively 'fill-paragraph)))
4156
4157;; FIXME: Unbound command - should be bound or removed.
4158(defun rst-force-fill-paragraph ()
4159 "Fill paragraph at point, first joining the paragraph's lines into one.
4160This is useful for filling list item paragraphs."
4161 (interactive)
4162 (rst-join-paragraph)
4163 (fill-paragraph nil))
4164
4165
4166;; FIXME: Unbound command - should be bound or removed.
4167;; Generic character repeater function.
4168;; For sections, better to use the specialized function above, but this can
4169;; be useful for creating separators.
4170(defun rst-repeat-last-character (use-next)
4171 "Fill the current line using the last character on the current line.
4172Fill up to the length of the preceding line or up to
4173`fill-column' if preceding line is empty.
4174
4175If USE-NEXT, use the next line rather than the preceding line.
4176
4177If the current line is longer than the desired length, shave the characters off
4178the current line to fit the desired length.
4179
4180As an added convenience, if the command is repeated immediately, the alternative
4181column is used (fill-column vs. end of previous/next line)."
4182 (interactive "P")
4183 (let* ((curcol (current-column))
4184 (curline (+ (count-lines (point-min) (point))
4185 (if (zerop curcol) 1 0)))
4186 (lbp (line-beginning-position 0))
4187 (prevcol (if (and (= curline 1) (not use-next))
4188 fill-column
4189 (save-excursion
4190 (forward-line (if use-next 1 -1))
4191 (end-of-line)
4192 (skip-chars-backward " \t" lbp)
4193 (let ((cc (current-column)))
4194 (if (zerop cc) fill-column cc)))))
4195 (rightmost-column
4196 (cond ((equal last-command 'rst-repeat-last-character)
4197 (if (= curcol fill-column) prevcol fill-column))
4198 (t (save-excursion
4199 (if (zerop prevcol) fill-column prevcol))))))
4200 (end-of-line)
4201 (if (> (current-column) rightmost-column)
4202 ;; Shave characters off the end.
4203 (delete-region (- (point)
4204 (- (current-column) rightmost-column))
4205 (point))
4206 ;; Fill with last characters.
4207 (insert-char (preceding-char)
4208 (- rightmost-column (current-column))))))
4209
4210\f
4211
4212;; LocalWords: docutils http sourceforge rst html wp svn svnroot txt reST regex
4213;; LocalWords: regexes alist seq alt grp keymap abbrev overline overlines toc
4214;; LocalWords: XML PNT propertized
4215
4216;; Local Variables:
4217;; sentence-end-double-space: t
4218;; End:
4219
4220(provide 'rst)
4221
4222;;; rst.el ends here