]> code.delx.au - gnu-emacs/blob - lisp/org/org-list.el
merge trunk
[gnu-emacs] / lisp / org / org-list.el
1 ;;; org-list.el --- Plain lists for Org-mode
2 ;;
3 ;; Copyright (C) 2004-2012 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Bastien Guerry <bzg AT gnu DOT org>
7 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; Homepage: http://orgmode.org
9 ;;
10 ;; This file is part of GNU Emacs.
11 ;;
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 ;;
26 ;;; Commentary:
27
28 ;; This file contains the code dealing with plain lists in Org-mode.
29
30 ;; The core concept behind lists is their structure. A structure is
31 ;; a snapshot of the list, in the shape of a data tree (see
32 ;; `org-list-struct').
33
34 ;; Once the list structure is stored, it is possible to make changes
35 ;; on it that will be mirrored to the real list or to get information
36 ;; about the list, using accessors and methods provided in the
37 ;; library. Most of them require the use of one or two helper
38 ;; functions, namely `org-list-parents-alist' and
39 ;; `org-list-prevs-alist'.
40
41 ;; Structure is eventually applied to the buffer with
42 ;; `org-list-write-struct'. This function repairs (bullets,
43 ;; indentation, checkboxes) the list in the process. It should be
44 ;; called near the end of any function working on structures.
45
46 ;; Thus, a function applying to lists should usually follow this
47 ;; template:
48
49 ;; 1. Verify point is in a list and grab item beginning (with the same
50 ;; function `org-in-item-p'). If the function requires the cursor
51 ;; to be at item's bullet, `org-at-item-p' is more selective. It
52 ;; is also possible to move point to the closest item with
53 ;; `org-list-search-backward', or `org-list-search-forward',
54 ;; applied to the function `org-item-beginning-re'.
55
56 ;; 2. Get list structure with `org-list-struct'.
57
58 ;; 3. Compute one, or both, helper functions,
59 ;; (`org-list-parents-alist', `org-list-prevs-alist') depending on
60 ;; needed accessors.
61
62 ;; 4. Proceed with the modifications, using methods and accessors.
63
64 ;; 5. Verify and apply structure to buffer, using
65 ;; `org-list-write-struct'.
66
67 ;; 6. If changes made to the list might have modified check-boxes,
68 ;; call `org-update-checkbox-count-maybe'.
69
70 ;; Computing a structure can be a costly operation on huge lists (a
71 ;; few thousand lines long). Thus, code should follow the rule:
72 ;; "collect once, use many". As a corollary, it is usually a bad idea
73 ;; to use directly an interactive function inside the code, as those,
74 ;; being independent entities, read the whole list structure another
75 ;; time.
76
77 ;;; Code:
78
79 (eval-when-compile
80 (require 'cl))
81 (require 'org-macs)
82 (require 'org-compat)
83
84 (defvar org-M-RET-may-split-line)
85 (defvar org-auto-align-tags)
86 (defvar org-blank-before-new-entry)
87 (defvar org-clock-string)
88 (defvar org-closed-string)
89 (defvar org-deadline-string)
90 (defvar org-description-max-indent)
91 (defvar org-drawers)
92 (defvar org-odd-levels-only)
93 (defvar org-scheduled-string)
94 (defvar org-ts-regexp)
95 (defvar org-ts-regexp-both)
96
97 (declare-function org-at-heading-p "org" (&optional ignored))
98 (declare-function org-before-first-heading-p "org" ())
99 (declare-function org-back-to-heading "org" (&optional invisible-ok))
100 (declare-function org-combine-plists "org" (&rest plists))
101 (declare-function org-count "org" (cl-item cl-seq))
102 (declare-function org-current-level "org" ())
103 (declare-function org-entry-get "org"
104 (pom property &optional inherit literal-nil))
105 (declare-function org-fix-tags-on-the-fly "org" ())
106 (declare-function org-get-indentation "org" (&optional line))
107 (declare-function org-icompleting-read "org" (&rest args))
108 (declare-function org-in-block-p "org" (names))
109 (declare-function org-in-regexp "org" (re &optional nlines visually))
110 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
111 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
112 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
113 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
114 (declare-function org-level-increment "org" ())
115 (declare-function org-narrow-to-subtree "org" ())
116 (declare-function org-at-heading-p "org" (&optional invisible-ok))
117 (declare-function org-previous-line-empty-p "org" ())
118 (declare-function org-remove-if "org" (predicate seq))
119 (declare-function org-reduced-level "org" (L))
120 (declare-function org-show-subtree "org" ())
121 (declare-function org-time-string-to-seconds "org" (s))
122 (declare-function org-timer-hms-to-secs "org-timer" (hms))
123 (declare-function org-timer-item "org-timer" (&optional arg))
124 (declare-function org-trim "org" (s))
125 (declare-function org-uniquify "org" (list))
126 (declare-function outline-invisible-p "outline" (&optional pos))
127 (declare-function outline-flag-region "outline" (from to flag))
128 (declare-function outline-next-heading "outline" ())
129 (declare-function outline-previous-heading "outline" ())
130
131
132 \f
133 ;;; Configuration variables
134
135 (defgroup org-plain-lists nil
136 "Options concerning plain lists in Org-mode."
137 :tag "Org Plain lists"
138 :group 'org-structure)
139
140 (defcustom org-cycle-include-plain-lists t
141 "When t, make TAB cycle visibility on plain list items.
142 Cycling plain lists works only when the cursor is on a plain list
143 item. When the cursor is on an outline heading, plain lists are
144 treated as text. This is the most stable way of handling this,
145 which is why it is the default.
146
147 When this is the symbol `integrate', then during cycling, plain
148 list items will *temporarily* be interpreted as outline headlines
149 with a level given by 1000+i where i is the indentation of the
150 bullet. This setting can lead to strange effects when switching
151 visibility to `children', because the first \"child\" in a
152 subtree decides what children should be listed. If that first
153 \"child\" is a plain list item with an implied large level
154 number, all true children and grand children of the outline
155 heading will be exposed in a children' view."
156 :group 'org-plain-lists
157 :type '(choice
158 (const :tag "Never" nil)
159 (const :tag "With cursor in plain list (recommended)" t)
160 (const :tag "As children of outline headings" integrate)))
161
162 (defcustom org-list-demote-modify-bullet nil
163 "Default bullet type installed when demoting an item.
164 This is an association list, for each bullet type, this alist will point
165 to the bullet that should be used when this item is demoted.
166 For example,
167
168 (setq org-list-demote-modify-bullet
169 '((\"+\" . \"-\") (\"-\" . \"+\") (\"*\" . \"+\")))
170
171 will make
172
173 + Movies
174 + Silence of the Lambs
175 + My Cousin Vinny
176 + Books
177 + The Hunt for Red October
178 + The Road to Omaha
179
180 into
181
182 + Movies
183 - Silence of the Lambs
184 - My Cousin Vinny
185 + Books
186 - The Hunt for Red October
187 - The Road to Omaha"
188 :group 'org-plain-lists
189 :type '(repeat
190 (cons
191 (choice :tag "If the current bullet is "
192 (const "-")
193 (const "+")
194 (const "*")
195 (const "1.")
196 (const "1)"))
197 (choice :tag "demotion will change it to"
198 (const "-")
199 (const "+")
200 (const "*")
201 (const "1.")
202 (const "1)")))))
203
204 (defcustom org-plain-list-ordered-item-terminator t
205 "The character that makes a line with leading number an ordered list item.
206 Valid values are ?. and ?\). To get both terminators, use t."
207 :group 'org-plain-lists
208 :type '(choice (const :tag "dot like in \"2.\"" ?.)
209 (const :tag "paren like in \"2)\"" ?\))
210 (const :tag "both" t)))
211
212 (defcustom org-alphabetical-lists nil
213 "Non-nil means single character alphabetical bullets are allowed.
214 Both uppercase and lowercase are handled. Lists with more than
215 26 items will fallback to standard numbering. Alphabetical
216 counters like \"[@c]\" will be recognized."
217 :group 'org-plain-lists
218 :version "24.1"
219 :type 'boolean)
220
221 (defcustom org-list-two-spaces-after-bullet-regexp nil
222 "A regular expression matching bullets that should have 2 spaces after them.
223 When nil, no bullet will have two spaces after them. When
224 a string, it will be used as a regular expression. When the
225 bullet type of a list is changed, the new bullet type will be
226 matched against this regexp. If it matches, there will be two
227 spaces instead of one after the bullet in each item of the list."
228 :group 'org-plain-lists
229 :type '(choice
230 (const :tag "never" nil)
231 (regexp)))
232
233 (defcustom org-empty-line-terminates-plain-lists nil
234 "Non-nil means an empty line ends all plain list levels.
235 Otherwise, two of them will be necessary."
236 :group 'org-plain-lists
237 :type 'boolean)
238
239 (defcustom org-list-automatic-rules '((bullet . t)
240 (checkbox . t)
241 (indent . t))
242 "Non-nil means apply set of rules when acting on lists.
243 By default, automatic actions are taken when using
244 \\[org-meta-return], \\[org-metaright], \\[org-metaleft],
245 \\[org-shiftmetaright], \\[org-shiftmetaleft],
246 \\[org-ctrl-c-minus], \\[org-toggle-checkbox] or
247 \\[org-insert-todo-heading]. You can disable individually these
248 rules by setting them to nil. Valid rules are:
249
250 bullet when non-nil, cycling bullet do not allow lists at
251 column 0 to have * as a bullet and descriptions lists
252 to be numbered.
253 checkbox when non-nil, checkbox statistics is updated each time
254 you either insert a new checkbox or toggle a checkbox.
255 It also prevents from inserting a checkbox in a
256 description item.
257 indent when non-nil, indenting or outdenting list top-item
258 with its subtree will move the whole list and
259 outdenting a list whose bullet is * to column 0 will
260 change that bullet to \"-\"."
261 :group 'org-plain-lists
262 :version "24.1"
263 :type '(alist :tag "Sets of rules"
264 :key-type
265 (choice
266 (const :tag "Bullet" bullet)
267 (const :tag "Checkbox" checkbox)
268 (const :tag "Indent" indent))
269 :value-type
270 (boolean :tag "Activate" :value t)))
271
272 (defcustom org-list-use-circular-motion nil
273 "Non-nil means commands implying motion in lists should be cyclic.
274
275 In that case, the item following the last item is the first one,
276 and the item preceding the first item is the last one.
277
278 This affects the behavior of \\[org-move-item-up],
279 \\[org-move-item-down], \\[org-next-item] and
280 \\[org-previous-item]."
281 :group 'org-plain-lists
282 :version "24.1"
283 :type 'boolean)
284
285 (defvar org-checkbox-statistics-hook nil
286 "Hook that is run whenever Org thinks checkbox statistics should be updated.
287 This hook runs even if checkbox rule in
288 `org-list-automatic-rules' does not apply, so it can be used to
289 implement alternative ways of collecting statistics
290 information.")
291
292 (defcustom org-hierarchical-checkbox-statistics t
293 "Non-nil means checkbox statistics counts only the state of direct children.
294 When nil, all boxes below the cookie are counted.
295 This can be set to nil on a per-node basis using a COOKIE_DATA property
296 with the word \"recursive\" in the value."
297 :group 'org-plain-lists
298 :type 'boolean)
299
300 (defcustom org-description-max-indent 20
301 "Maximum indentation for the second line of a description list.
302 When the indentation would be larger than this, it will become
303 5 characters instead."
304 :group 'org-plain-lists
305 :type 'integer)
306
307 (defcustom org-list-indent-offset 0
308 "Additional indentation for sub-items in a list.
309 By setting this to a small number, usually 1 or 2, one can more
310 clearly distinguish sub-items in a list."
311 :group 'org-plain-lists
312 :version "24.1"
313 :type 'integer)
314
315 (defcustom org-list-radio-list-templates
316 '((latex-mode "% BEGIN RECEIVE ORGLST %n
317 % END RECEIVE ORGLST %n
318 \\begin{comment}
319 #+ORGLST: SEND %n org-list-to-latex
320 -
321 \\end{comment}\n")
322 (texinfo-mode "@c BEGIN RECEIVE ORGLST %n
323 @c END RECEIVE ORGLST %n
324 @ignore
325 #+ORGLST: SEND %n org-list-to-texinfo
326 -
327 @end ignore\n")
328 (html-mode "<!-- BEGIN RECEIVE ORGLST %n -->
329 <!-- END RECEIVE ORGLST %n -->
330 <!--
331 #+ORGLST: SEND %n org-list-to-html
332 -
333 -->\n"))
334 "Templates for radio lists in different major modes.
335 All occurrences of %n in a template will be replaced with the name of the
336 list, obtained by prompting the user."
337 :group 'org-plain-lists
338 :type '(repeat
339 (list (symbol :tag "Major mode")
340 (string :tag "Format"))))
341
342 (defvar org-list-forbidden-blocks '("example" "verse" "src" "ascii" "beamer"
343 "docbook" "html" "latex" "odt")
344 "Names of blocks where lists are not allowed.
345 Names must be in lower case.")
346
347 (defvar org-list-export-context '(block inlinetask)
348 "Context types where lists will be interpreted during export.
349
350 Valid types are `drawer', `inlinetask' and `block'. More
351 specifically, type `block' is determined by the variable
352 `org-list-forbidden-blocks'.")
353
354
355 \f
356 ;;; Predicates and regexps
357
358 (defconst org-list-end-re (if org-empty-line-terminates-plain-lists "^[ \t]*\n"
359 "^[ \t]*\n[ \t]*\n")
360 "Regex corresponding to the end of a list.
361 It depends on `org-empty-line-terminates-plain-lists'.")
362
363 (defconst org-list-full-item-re
364 (concat "^[ \t]*\\(\\(?:[-+*]\\|\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\)\\(?:[ \t]+\\|$\\)\\)"
365 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
366 "\\(?:\\(\\[[ X-]\\]\\)\\(?:[ \t]+\\|$\\)\\)?"
367 "\\(?:\\(.*\\)[ \t]+::\\(?:[ \t]+\\|$\\)\\)?")
368 "Matches a list item and puts everything into groups:
369 group 1: bullet
370 group 2: counter
371 group 3: checkbox
372 group 4: description tag")
373
374 (defun org-item-re ()
375 "Return the correct regular expression for plain lists."
376 (let ((term (cond
377 ((eq org-plain-list-ordered-item-terminator t) "[.)]")
378 ((= org-plain-list-ordered-item-terminator ?\)) ")")
379 ((= org-plain-list-ordered-item-terminator ?.) "\\.")
380 (t "[.)]")))
381 (alpha (if org-alphabetical-lists "\\|[A-Za-z]" "")))
382 (concat "\\([ \t]*\\([-+]\\|\\(\\([0-9]+" alpha "\\)" term
383 "\\)\\)\\|[ \t]+\\*\\)\\([ \t]+\\|$\\)")))
384
385 (defsubst org-item-beginning-re ()
386 "Regexp matching the beginning of a plain list item."
387 (concat "^" (org-item-re)))
388
389 (defun org-list-at-regexp-after-bullet-p (regexp)
390 "Is point at a list item with REGEXP after bullet?"
391 (and (org-at-item-p)
392 (save-excursion
393 (goto-char (match-end 0))
394 (let ((counter-re (concat "\\(?:\\[@\\(?:start:\\)?"
395 (if org-alphabetical-lists
396 "\\([0-9]+\\|[A-Za-z]\\)"
397 "[0-9]+")
398 "\\][ \t]*\\)")))
399 ;; Ignore counter if any
400 (when (looking-at counter-re) (goto-char (match-end 0))))
401 (looking-at regexp))))
402
403 (defun org-list-in-valid-context-p ()
404 "Is point in a context where lists are allowed?"
405 (not (org-in-block-p org-list-forbidden-blocks)))
406
407 (defun org-in-item-p ()
408 "Return item beginning position when in a plain list, nil otherwise."
409 (save-excursion
410 (beginning-of-line)
411 (let* ((case-fold-search t)
412 (context (org-list-context))
413 (lim-up (car context))
414 (drawers-re (concat "^[ \t]*:\\("
415 (mapconcat 'regexp-quote org-drawers "\\|")
416 "\\):[ \t]*$"))
417 (inlinetask-re (and (featurep 'org-inlinetask)
418 (org-inlinetask-outline-regexp)))
419 (item-re (org-item-re))
420 ;; Indentation isn't meaningful when point starts at an empty
421 ;; line or an inline task.
422 (ind-ref (if (or (looking-at "^[ \t]*$")
423 (and inlinetask-re (looking-at inlinetask-re)))
424 10000
425 (org-get-indentation))))
426 (cond
427 ((eq (nth 2 context) 'invalid) nil)
428 ((looking-at item-re) (point))
429 (t
430 ;; Detect if cursor in amidst `org-list-end-re'. First, count
431 ;; number HL of hard lines it takes, then call `org-in-regexp'
432 ;; to compute its boundaries END-BOUNDS. When point is
433 ;; in-between, move cursor before regexp beginning.
434 (let ((hl 0) (i -1) end-bounds)
435 (when (and (progn
436 (while (setq i (string-match
437 "[\r\n]" org-list-end-re (1+ i)))
438 (setq hl (1+ hl)))
439 (setq end-bounds (org-in-regexp org-list-end-re hl)))
440 (>= (point) (car end-bounds))
441 (< (point) (cdr end-bounds)))
442 (goto-char (car end-bounds))
443 (forward-line -1)))
444 ;; Look for an item, less indented that reference line.
445 (catch 'exit
446 (while t
447 (let ((ind (org-get-indentation)))
448 (cond
449 ;; This is exactly what we want.
450 ((and (looking-at item-re) (< ind ind-ref))
451 (throw 'exit (point)))
452 ;; At upper bound of search or looking at the end of a
453 ;; previous list: search is over.
454 ((<= (point) lim-up) (throw 'exit nil))
455 ((looking-at org-list-end-re) (throw 'exit nil))
456 ;; Skip blocks, drawers, inline-tasks, blank lines
457 ((and (looking-at "^[ \t]*#\\+end_")
458 (re-search-backward "^[ \t]*#\\+begin_" lim-up t)))
459 ((and (looking-at "^[ \t]*:END:")
460 (re-search-backward drawers-re lim-up t))
461 (beginning-of-line))
462 ((and inlinetask-re (looking-at inlinetask-re))
463 (org-inlinetask-goto-beginning)
464 (forward-line -1))
465 ((looking-at "^[ \t]*$") (forward-line -1))
466 ;; Text at column 0 cannot belong to a list: stop.
467 ((zerop ind) (throw 'exit nil))
468 ;; Normal text less indented than reference line, take
469 ;; it as new reference.
470 ((< ind ind-ref)
471 (setq ind-ref ind)
472 (forward-line -1))
473 (t (forward-line -1)))))))))))
474
475 (defun org-at-item-p ()
476 "Is point in a line starting a hand-formatted item?"
477 (save-excursion
478 (beginning-of-line)
479 (and (looking-at (org-item-re)) (org-list-in-valid-context-p))))
480
481 (defun org-at-item-bullet-p ()
482 "Is point at the bullet of a plain list item?"
483 (and (org-at-item-p)
484 (not (member (char-after) '(?\ ?\t)))
485 (< (point) (match-end 0))))
486
487 (defun org-at-item-timer-p ()
488 "Is point at a line starting a plain list item with a timer?"
489 (org-list-at-regexp-after-bullet-p
490 "\\([0-9]+:[0-9]+:[0-9]+\\)[ \t]+::[ \t]+"))
491
492 (defun org-at-item-description-p ()
493 "Is point at a description list item?"
494 (org-list-at-regexp-after-bullet-p "\\(\\S-.+\\)[ \t]+::[ \t]+"))
495
496 (defun org-at-item-checkbox-p ()
497 "Is point at a line starting a plain-list item with a checklet?"
498 (org-list-at-regexp-after-bullet-p "\\(\\[[- X]\\]\\)[ \t]+"))
499
500 (defun org-at-item-counter-p ()
501 "Is point at a line starting a plain-list item with a counter?"
502 (and (org-at-item-p)
503 (looking-at org-list-full-item-re)
504 (match-string 2)))
505
506
507 \f
508 ;;; Structures and helper functions
509
510 (defun org-list-context ()
511 "Determine context, and its boundaries, around point.
512
513 Context will be a cell like (MIN MAX CONTEXT) where MIN and MAX
514 are boundaries and CONTEXT is a symbol among `drawer', `block',
515 `invalid', `inlinetask' and nil.
516
517 Contexts `block' and `invalid' refer to `org-list-forbidden-blocks'."
518 (save-match-data
519 (save-excursion
520 (org-with-limited-levels
521 (beginning-of-line)
522 (let ((case-fold-search t) (pos (point)) beg end context-type
523 ;; Get positions of surrounding headings. This is the
524 ;; default context.
525 (lim-up (or (save-excursion (and (ignore-errors (org-back-to-heading t))
526 (point)))
527 (point-min)))
528 (lim-down (or (save-excursion (outline-next-heading)) (point-max))))
529 ;; Is point inside a drawer?
530 (let ((end-re "^[ \t]*:END:")
531 ;; Can't use org-drawers-regexp as this function might
532 ;; be called in buffers not in Org mode.
533 (beg-re (concat "^[ \t]*:\\("
534 (mapconcat 'regexp-quote org-drawers "\\|")
535 "\\):[ \t]*$")))
536 (when (save-excursion
537 (and (not (looking-at beg-re))
538 (not (looking-at end-re))
539 (setq beg (and (re-search-backward beg-re lim-up t)
540 (1+ (point-at-eol))))
541 (setq end (or (and (re-search-forward end-re lim-down t)
542 (1- (match-beginning 0)))
543 lim-down))
544 (>= end pos)))
545 (setq lim-up beg lim-down end context-type 'drawer)))
546 ;; Is point strictly in a block, and of which type?
547 (let ((block-re "^[ \t]*#\\+\\(begin\\|end\\)_") type)
548 (when (save-excursion
549 (and (not (looking-at block-re))
550 (setq beg (and (re-search-backward block-re lim-up t)
551 (1+ (point-at-eol))))
552 (looking-at "^[ \t]*#\\+begin_\\(\\S-+\\)")
553 (setq type (downcase (match-string 1)))
554 (goto-char beg)
555 (setq end (or (and (re-search-forward block-re lim-down t)
556 (1- (point-at-bol)))
557 lim-down))
558 (>= end pos)
559 (equal (downcase (match-string 1)) "end")))
560 (setq lim-up beg lim-down end
561 context-type (if (member type org-list-forbidden-blocks)
562 'invalid 'block))))
563 ;; Is point in an inlinetask?
564 (when (and (featurep 'org-inlinetask)
565 (save-excursion
566 (let* ((beg-re (org-inlinetask-outline-regexp))
567 (end-re (concat beg-re "END[ \t]*$")))
568 (and (not (looking-at "^\\*+"))
569 (setq beg (and (re-search-backward beg-re lim-up t)
570 (1+ (point-at-eol))))
571 (not (looking-at end-re))
572 (setq end (and (re-search-forward end-re lim-down t)
573 (1- (match-beginning 0))))
574 (> (point) pos)))))
575 (setq lim-up beg lim-down end context-type 'inlinetask))
576 ;; Return context boundaries and type.
577 (list lim-up lim-down context-type))))))
578
579 (defun org-list-struct ()
580 "Return structure of list at point.
581
582 A list structure is an alist where key is point at item, and
583 values are:
584 1. indentation,
585 2. bullet with trailing whitespace,
586 3. bullet counter, if any,
587 4. checkbox, if any,
588 5. description tag, if any,
589 6. position at item end.
590
591 Thus the following list, where numbers in parens are
592 point-at-bol:
593
594 - [X] first item (1)
595 1. sub-item 1 (18)
596 5. [@5] sub-item 2 (34)
597 some other text belonging to first item (55)
598 - last item (97)
599 + tag :: description (109)
600 (131)
601
602 will get the following structure:
603
604 \(\(1 0 \"- \" nil \"[X]\" nil 97\)
605 \(18 2 \"1. \" nil nil nil 34\)
606 \(34 2 \"5. \" \"5\" nil nil 55\)
607 \(97 0 \"- \" nil nil nil 131\)
608 \(109 2 \"+ \" nil nil \"tag\" 131\)
609
610 Assume point is at an item."
611 (save-excursion
612 (beginning-of-line)
613 (let* ((case-fold-search t)
614 (context (org-list-context))
615 (lim-up (car context))
616 (lim-down (nth 1 context))
617 (text-min-ind 10000)
618 (item-re (org-item-re))
619 (drawers-re (concat "^[ \t]*:\\("
620 (mapconcat 'regexp-quote org-drawers "\\|")
621 "\\):[ \t]*$"))
622 (inlinetask-re (and (featurep 'org-inlinetask)
623 (org-inlinetask-outline-regexp)))
624 (beg-cell (cons (point) (org-get-indentation)))
625 ind itm-lst itm-lst-2 end-lst end-lst-2 struct
626 (assoc-at-point
627 (function
628 ;; Return association at point.
629 (lambda (ind)
630 (looking-at org-list-full-item-re)
631 (list (point)
632 ind
633 (match-string-no-properties 1) ; bullet
634 (match-string-no-properties 2) ; counter
635 (match-string-no-properties 3) ; checkbox
636 (match-string-no-properties 4))))) ; description tag
637 (end-before-blank
638 (function
639 ;; Ensure list ends at the first blank line.
640 (lambda ()
641 (skip-chars-backward " \r\t\n")
642 (min (1+ (point-at-eol)) lim-down)))))
643 ;; 1. Read list from starting item to its beginning, and save
644 ;; top item position and indentation in BEG-CELL. Also store
645 ;; ending position of items in END-LST.
646 (save-excursion
647 (catch 'exit
648 (while t
649 (let ((ind (+ (or (get-text-property (point) 'original-indentation) 0)
650 (org-get-indentation))))
651 (cond
652 ((<= (point) lim-up)
653 ;; At upward limit: if we ended at an item, store it,
654 ;; else dismiss useless data recorded above BEG-CELL.
655 ;; Jump to part 2.
656 (throw 'exit
657 (setq itm-lst
658 (if (or (not (looking-at item-re))
659 (get-text-property (point) 'org-example))
660 (memq (assq (car beg-cell) itm-lst) itm-lst)
661 (setq beg-cell (cons (point) ind))
662 (cons (funcall assoc-at-point ind) itm-lst)))))
663 ;; At a verbatim block, go before its beginning. Move
664 ;; from eol to ensure `previous-single-property-change'
665 ;; will return a value.
666 ((get-text-property (point) 'org-example)
667 (goto-char (previous-single-property-change
668 (point-at-eol) 'org-example nil lim-up))
669 (forward-line -1))
670 ;; Looking at a list ending regexp. Dismiss useless
671 ;; data recorded above BEG-CELL. Jump to part 2.
672 ((looking-at org-list-end-re)
673 (throw 'exit
674 (setq itm-lst
675 (memq (assq (car beg-cell) itm-lst) itm-lst))))
676 ;; Point is at an item. Add data to ITM-LST. It may
677 ;; also end a previous item: save it in END-LST. If
678 ;; ind is less or equal than BEG-CELL and there is no
679 ;; end at this ind or lesser, this item becomes the new
680 ;; BEG-CELL.
681 ((looking-at item-re)
682 (push (funcall assoc-at-point ind) itm-lst)
683 (push (cons ind (point)) end-lst)
684 (when (< ind text-min-ind) (setq beg-cell (cons (point) ind)))
685 (forward-line -1))
686 ;; Skip blocks, drawers, inline tasks, blank lines.
687 ((and (looking-at "^[ \t]*#\\+end_")
688 (re-search-backward "^[ \t]*#\\+begin_" lim-up t)))
689 ((and (looking-at "^[ \t]*:END:")
690 (re-search-backward drawers-re lim-up t))
691 (beginning-of-line))
692 ((and inlinetask-re (looking-at inlinetask-re))
693 (org-inlinetask-goto-beginning)
694 (forward-line -1))
695 ((looking-at "^[ \t]*$")
696 (forward-line -1))
697 ;; From there, point is not at an item. Interpret
698 ;; line's indentation:
699 ;; - text at column 0 is necessarily out of any list.
700 ;; Dismiss data recorded above BEG-CELL. Jump to
701 ;; part 2.
702 ;; - any other case may be an ending position for an
703 ;; hypothetical item above. Store it and proceed.
704 ((zerop ind)
705 (throw 'exit
706 (setq itm-lst
707 (memq (assq (car beg-cell) itm-lst) itm-lst))))
708 (t
709 (when (< ind text-min-ind) (setq text-min-ind ind))
710 (push (cons ind (point)) end-lst)
711 (forward-line -1)))))))
712 ;; 2. Read list from starting point to its end, that is until we
713 ;; get out of context, or that a non-item line is less or
714 ;; equally indented than BEG-CELL's cdr. Also, store ending
715 ;; position of items in END-LST-2.
716 (catch 'exit
717 (while t
718 (let ((ind (+ (or (get-text-property (point) 'original-indentation) 0)
719 (org-get-indentation))))
720 (cond
721 ((>= (point) lim-down)
722 ;; At downward limit: this is de facto the end of the
723 ;; list. Save point as an ending position, and jump to
724 ;; part 3.
725 (throw 'exit
726 (push (cons 0 (funcall end-before-blank)) end-lst-2)))
727 ;; At a verbatim block, move to its end. Point is at bol
728 ;; and 'org-example property is set by whole lines:
729 ;; `next-single-property-change' always return a value.
730 ((get-text-property (point) 'org-example)
731 (goto-char
732 (next-single-property-change (point) 'org-example nil lim-down)))
733 ;; Looking at a list ending regexp. Save point as an
734 ;; ending position and jump to part 3.
735 ((looking-at org-list-end-re)
736 (throw 'exit (push (cons 0 (point)) end-lst-2)))
737 ((looking-at item-re)
738 ;; Point is at an item. Add data to ITM-LST-2. It may
739 ;; also end a previous item, so save it in END-LST-2.
740 (push (funcall assoc-at-point ind) itm-lst-2)
741 (push (cons ind (point)) end-lst-2)
742 (forward-line 1))
743 ;; Skip inline tasks and blank lines along the way
744 ((and inlinetask-re (looking-at inlinetask-re))
745 (org-inlinetask-goto-end))
746 ((looking-at "^[ \t]*$")
747 (forward-line 1))
748 ;; Ind is lesser or equal than BEG-CELL's. The list is
749 ;; over: store point as an ending position and jump to
750 ;; part 3.
751 ((<= ind (cdr beg-cell))
752 (throw 'exit
753 (push (cons 0 (funcall end-before-blank)) end-lst-2)))
754 ;; Else, if ind is lesser or equal than previous item's,
755 ;; this is an ending position: store it. In any case,
756 ;; skip block or drawer at point, and move to next line.
757 (t
758 (when (<= ind (nth 1 (car itm-lst-2)))
759 (push (cons ind (point)) end-lst-2))
760 (cond
761 ((and (looking-at "^[ \t]*#\\+begin_")
762 (re-search-forward "^[ \t]*#\\+end_" lim-down t)))
763 ((and (looking-at drawers-re)
764 (re-search-forward "^[ \t]*:END:" lim-down t))))
765 (forward-line 1))))))
766 (setq struct (append itm-lst (cdr (nreverse itm-lst-2)))
767 end-lst (append end-lst (cdr (nreverse end-lst-2))))
768 ;; 3. Associate each item to its end position.
769 (org-list-struct-assoc-end struct end-lst)
770 ;; 4. Return STRUCT
771 struct)))
772
773 (defun org-list-struct-assoc-end (struct end-list)
774 "Associate proper ending point to items in STRUCT.
775
776 END-LIST is a pseudo-alist where car is indentation and cdr is
777 ending position.
778
779 This function modifies STRUCT."
780 (let ((endings end-list))
781 (mapc
782 (lambda (elt)
783 (let ((pos (car elt))
784 (ind (nth 1 elt)))
785 ;; Remove end candidates behind current item.
786 (while (or (<= (cdar endings) pos))
787 (pop endings))
788 ;; Add end position to item assoc.
789 (let ((old-end (nthcdr 6 elt))
790 (new-end (assoc-default ind endings '<=)))
791 (if old-end
792 (setcar old-end new-end)
793 (setcdr elt (append (cdr elt) (list new-end)))))))
794 struct)))
795
796 (defun org-list-prevs-alist (struct)
797 "Return alist between item and previous item in STRUCT."
798 (let ((item-end-alist (mapcar (lambda (e) (cons (car e) (nth 6 e)))
799 struct)))
800 (mapcar (lambda (e)
801 (let ((prev (car (rassq (car e) item-end-alist))))
802 (cons (car e) prev)))
803 struct)))
804
805 (defun org-list-parents-alist (struct)
806 "Return alist between item and parent in STRUCT."
807 (let* ((ind-to-ori (list (list (nth 1 (car struct)))))
808 (top-item (org-list-get-top-point struct))
809 (prev-pos (list top-item)))
810 (cons prev-pos
811 (mapcar (lambda (item)
812 (let ((pos (car item))
813 (ind (nth 1 item))
814 (prev-ind (caar ind-to-ori)))
815 (push pos prev-pos)
816 (cond
817 ((> prev-ind ind)
818 ;; A sub-list is over. Find the associated
819 ;; origin in IND-TO-ORI. If it cannot be
820 ;; found (ill-formed list), set its parent as
821 ;; the first item less indented. If there is
822 ;; none, make it a top-level item.
823 (setq ind-to-ori
824 (or (member (assq ind ind-to-ori) ind-to-ori)
825 (catch 'exit
826 (mapc
827 (lambda (e)
828 (when (< (car e) ind)
829 (throw 'exit (member e ind-to-ori))))
830 ind-to-ori)
831 (list (list ind)))))
832 (cons pos (cdar ind-to-ori)))
833 ;; A sub-list starts. Every item at IND will
834 ;; have previous item as its parent.
835 ((< prev-ind ind)
836 (let ((origin (nth 1 prev-pos)))
837 (push (cons ind origin) ind-to-ori)
838 (cons pos origin)))
839 ;; Another item in the same sub-list: it shares
840 ;; the same parent as the previous item.
841 (t (cons pos (cdar ind-to-ori))))))
842 (cdr struct)))))
843
844
845 \f
846 ;;; Accessors
847
848 (defsubst org-list-get-nth (n key struct)
849 "Return the Nth value of KEY in STRUCT."
850 (nth n (assq key struct)))
851
852 (defun org-list-set-nth (n key struct new)
853 "Set the Nth value of KEY in STRUCT to NEW.
854 \nThis function modifies STRUCT."
855 (setcar (nthcdr n (assq key struct)) new))
856
857 (defsubst org-list-get-ind (item struct)
858 "Return indentation of ITEM in STRUCT."
859 (org-list-get-nth 1 item struct))
860
861 (defun org-list-set-ind (item struct ind)
862 "Set indentation of ITEM in STRUCT to IND.
863 \nThis function modifies STRUCT."
864 (org-list-set-nth 1 item struct ind))
865
866 (defsubst org-list-get-bullet (item struct)
867 "Return bullet of ITEM in STRUCT."
868 (org-list-get-nth 2 item struct))
869
870 (defun org-list-set-bullet (item struct bullet)
871 "Set bullet of ITEM in STRUCT to BULLET.
872 \nThis function modifies STRUCT."
873 (org-list-set-nth 2 item struct bullet))
874
875 (defsubst org-list-get-counter (item struct)
876 "Return counter of ITEM in STRUCT."
877 (org-list-get-nth 3 item struct))
878
879 (defsubst org-list-get-checkbox (item struct)
880 "Return checkbox of ITEM in STRUCT or nil."
881 (org-list-get-nth 4 item struct))
882
883 (defun org-list-set-checkbox (item struct checkbox)
884 "Set checkbox of ITEM in STRUCT to CHECKBOX.
885 \nThis function modifies STRUCT."
886 (org-list-set-nth 4 item struct checkbox))
887
888 (defsubst org-list-get-tag (item struct)
889 "Return end position of ITEM in STRUCT."
890 (org-list-get-nth 5 item struct))
891
892 (defun org-list-get-item-end (item struct)
893 "Return end position of ITEM in STRUCT."
894 (org-list-get-nth 6 item struct))
895
896 (defun org-list-get-item-end-before-blank (item struct)
897 "Return point at end of ITEM in STRUCT, before any blank line.
898 Point returned is at end of line."
899 (save-excursion
900 (goto-char (org-list-get-item-end item struct))
901 (skip-chars-backward " \r\t\n")
902 (point-at-eol)))
903
904 (defun org-list-get-parent (item struct parents)
905 "Return parent of ITEM or nil.
906 STRUCT is the list structure. PARENTS is the alist of parents,
907 as returned by `org-list-parents-alist'."
908 (let ((parents (or parents (org-list-parents-alist struct))))
909 (cdr (assq item parents))))
910
911 (defun org-list-has-child-p (item struct)
912 "Non-nil if ITEM has a child.
913
914 STRUCT is the list structure.
915
916 Value returned is the position of the first child of ITEM."
917 (let ((ind (org-list-get-ind item struct))
918 (child-maybe (car (nth 1 (member (assq item struct) struct)))))
919 (when (and child-maybe
920 (< ind (org-list-get-ind child-maybe struct)))
921 child-maybe)))
922
923 (defun org-list-get-next-item (item struct prevs)
924 "Return next item in same sub-list as ITEM, or nil.
925 STRUCT is the list structure. PREVS is the alist of previous
926 items, as returned by `org-list-prevs-alist'."
927 (car (rassq item prevs)))
928
929 (defun org-list-get-prev-item (item struct prevs)
930 "Return previous item in same sub-list as ITEM, or nil.
931 STRUCT is the list structure. PREVS is the alist of previous
932 items, as returned by `org-list-prevs-alist'."
933 (cdr (assq item prevs)))
934
935 (defun org-list-get-subtree (item struct)
936 "List all items having ITEM as a common ancestor, or nil.
937 STRUCT is the list structure."
938 (let* ((item-end (org-list-get-item-end item struct))
939 (sub-struct (cdr (member (assq item struct) struct)))
940 subtree)
941 (catch 'exit
942 (mapc (lambda (e)
943 (let ((pos (car e)))
944 (if (< pos item-end) (push pos subtree) (throw 'exit nil))))
945 sub-struct))
946 (nreverse subtree)))
947
948 (defun org-list-get-all-items (item struct prevs)
949 "List all items in the same sub-list as ITEM.
950 STRUCT is the list structure. PREVS is the alist of previous
951 items, as returned by `org-list-prevs-alist'."
952 (let ((prev-item item)
953 (next-item item)
954 before-item after-item)
955 (while (setq prev-item (org-list-get-prev-item prev-item struct prevs))
956 (push prev-item before-item))
957 (while (setq next-item (org-list-get-next-item next-item struct prevs))
958 (push next-item after-item))
959 (append before-item (list item) (nreverse after-item))))
960
961 (defun org-list-get-children (item struct parents)
962 "List all children of ITEM, or nil.
963 STRUCT is the list structure. PARENTS is the alist of parents,
964 as returned by `org-list-parents-alist'."
965 (let (all child)
966 (while (setq child (car (rassq item parents)))
967 (setq parents (cdr (member (assq child parents) parents)))
968 (push child all))
969 (nreverse all)))
970
971 (defun org-list-get-top-point (struct)
972 "Return point at beginning of list.
973 STRUCT is the list structure."
974 (caar struct))
975
976 (defun org-list-get-bottom-point (struct)
977 "Return point at bottom of list.
978 STRUCT is the list structure."
979 (apply 'max
980 (mapcar (lambda (e) (org-list-get-item-end (car e) struct)) struct)))
981
982 (defun org-list-get-list-begin (item struct prevs)
983 "Return point at beginning of sub-list ITEM belongs.
984 STRUCT is the list structure. PREVS is the alist of previous
985 items, as returned by `org-list-prevs-alist'."
986 (let ((first-item item) prev-item)
987 (while (setq prev-item (org-list-get-prev-item first-item struct prevs))
988 (setq first-item prev-item))
989 first-item))
990
991 (defalias 'org-list-get-first-item 'org-list-get-list-begin)
992
993 (defun org-list-get-last-item (item struct prevs)
994 "Return point at last item of sub-list ITEM belongs.
995 STRUCT is the list structure. PREVS is the alist of previous
996 items, as returned by `org-list-prevs-alist'."
997 (let ((last-item item) next-item)
998 (while (setq next-item (org-list-get-next-item last-item struct prevs))
999 (setq last-item next-item))
1000 last-item))
1001
1002 (defun org-list-get-list-end (item struct prevs)
1003 "Return point at end of sub-list ITEM belongs.
1004 STRUCT is the list structure. PREVS is the alist of previous
1005 items, as returned by `org-list-prevs-alist'."
1006 (org-list-get-item-end (org-list-get-last-item item struct prevs) struct))
1007
1008 (defun org-list-get-list-type (item struct prevs)
1009 "Return the type of the list containing ITEM, as a symbol.
1010
1011 STRUCT is the list structure. PREVS is the alist of previous
1012 items, as returned by `org-list-prevs-alist'.
1013
1014 Possible types are `descriptive', `ordered' and `unordered'. The
1015 type is determined by the first item of the list."
1016 (let ((first (org-list-get-list-begin item struct prevs)))
1017 (cond
1018 ((org-list-get-tag first struct) 'descriptive)
1019 ((string-match "[[:alnum:]]" (org-list-get-bullet first struct)) 'ordered)
1020 (t 'unordered))))
1021
1022
1023 \f
1024 ;;; Searching
1025
1026 (defun org-list-search-generic (search re bound noerr)
1027 "Search a string in valid contexts for lists.
1028 Arguments SEARCH, RE, BOUND and NOERR are similar to those used
1029 in `re-search-forward'."
1030 (catch 'exit
1031 (let ((origin (point)))
1032 (while t
1033 ;; 1. No match: return to origin or bound, depending on NOERR.
1034 (unless (funcall search re bound noerr)
1035 (throw 'exit (and (goto-char (if (memq noerr '(t nil)) origin bound))
1036 nil)))
1037 ;; 2. Match in valid context: return point. Else, continue
1038 ;; searching.
1039 (when (org-list-in-valid-context-p) (throw 'exit (point)))))))
1040
1041 (defun org-list-search-backward (regexp &optional bound noerror)
1042 "Like `re-search-backward' but stop only where lists are recognized.
1043 Arguments REGEXP, BOUND and NOERROR are similar to those used in
1044 `re-search-backward'."
1045 (org-list-search-generic #'re-search-backward
1046 regexp (or bound (point-min)) noerror))
1047
1048 (defun org-list-search-forward (regexp &optional bound noerror)
1049 "Like `re-search-forward' but stop only where lists are recognized.
1050 Arguments REGEXP, BOUND and NOERROR are similar to those used in
1051 `re-search-forward'."
1052 (org-list-search-generic #'re-search-forward
1053 regexp (or bound (point-max)) noerror))
1054
1055
1056 \f
1057 ;;; Methods on structures
1058
1059 (defsubst org-list-bullet-string (bullet)
1060 "Return BULLET with the correct number of whitespaces.
1061 It determines the number of whitespaces to append by looking at
1062 `org-list-two-spaces-after-bullet-regexp'."
1063 (save-match-data
1064 (let ((spaces (if (and org-list-two-spaces-after-bullet-regexp
1065 (string-match
1066 org-list-two-spaces-after-bullet-regexp bullet))
1067 " "
1068 " ")))
1069 (string-match "\\S-+\\([ \t]*\\)" bullet)
1070 (replace-match spaces nil nil bullet 1))))
1071
1072 (defun org-list-swap-items (beg-A beg-B struct)
1073 "Swap item starting at BEG-A with item starting at BEG-B in STRUCT.
1074
1075 Blank lines at the end of items are left in place. Item
1076 visibility is preserved. Return the new structure after the
1077 changes.
1078
1079 Assume BEG-A is lesser than BEG-B and that BEG-A and BEG-B belong
1080 to the same sub-list.
1081
1082 This function modifies STRUCT."
1083 (save-excursion
1084 (let* ((end-A-no-blank (org-list-get-item-end-before-blank beg-A struct))
1085 (end-B-no-blank (org-list-get-item-end-before-blank beg-B struct))
1086 (end-A (org-list-get-item-end beg-A struct))
1087 (end-B (org-list-get-item-end beg-B struct))
1088 (size-A (- end-A-no-blank beg-A))
1089 (size-B (- end-B-no-blank beg-B))
1090 (body-A (buffer-substring beg-A end-A-no-blank))
1091 (body-B (buffer-substring beg-B end-B-no-blank))
1092 (between-A-no-blank-and-B (buffer-substring end-A-no-blank beg-B))
1093 (sub-A (cons beg-A (org-list-get-subtree beg-A struct)))
1094 (sub-B (cons beg-B (org-list-get-subtree beg-B struct)))
1095 ;; Store overlays responsible for visibility status. We
1096 ;; also need to store their boundaries as they will be
1097 ;; removed from buffer.
1098 (overlays (cons
1099 (mapcar (lambda (ov)
1100 (list ov (overlay-start ov) (overlay-end ov)))
1101 (overlays-in beg-A end-A))
1102 (mapcar (lambda (ov)
1103 (list ov (overlay-start ov) (overlay-end ov)))
1104 (overlays-in beg-B end-B)))))
1105 ;; 1. Move effectively items in buffer.
1106 (goto-char beg-A)
1107 (delete-region beg-A end-B-no-blank)
1108 (insert (concat body-B between-A-no-blank-and-B body-A))
1109 ;; 2. Now modify struct. No need to re-read the list, the
1110 ;; transformation is just a shift of positions. Some special
1111 ;; attention is required for items ending at END-A and END-B
1112 ;; as empty spaces are not moved there. In others words,
1113 ;; item BEG-A will end with whitespaces that were at the end
1114 ;; of BEG-B and the same applies to BEG-B.
1115 (mapc (lambda (e)
1116 (let ((pos (car e)))
1117 (cond
1118 ((< pos beg-A))
1119 ((memq pos sub-A)
1120 (let ((end-e (nth 6 e)))
1121 (setcar e (+ pos (- end-B-no-blank end-A-no-blank)))
1122 (setcar (nthcdr 6 e)
1123 (+ end-e (- end-B-no-blank end-A-no-blank)))
1124 (when (= end-e end-A) (setcar (nthcdr 6 e) end-B))))
1125 ((memq pos sub-B)
1126 (let ((end-e (nth 6 e)))
1127 (setcar e (- (+ pos beg-A) beg-B))
1128 (setcar (nthcdr 6 e) (+ end-e (- beg-A beg-B)))
1129 (when (= end-e end-B)
1130 (setcar (nthcdr 6 e)
1131 (+ beg-A size-B (- end-A end-A-no-blank))))))
1132 ((< pos beg-B)
1133 (let ((end-e (nth 6 e)))
1134 (setcar e (+ pos (- size-B size-A)))
1135 (setcar (nthcdr 6 e) (+ end-e (- size-B size-A))))))))
1136 struct)
1137 (setq struct (sort struct (lambda (e1 e2) (< (car e1) (car e2)))))
1138 ;; Restore visibility status, by moving overlays to their new
1139 ;; position.
1140 (mapc (lambda (ov)
1141 (move-overlay
1142 (car ov)
1143 (+ (nth 1 ov) (- (+ beg-B (- size-B size-A)) beg-A))
1144 (+ (nth 2 ov) (- (+ beg-B (- size-B size-A)) beg-A))))
1145 (car overlays))
1146 (mapc (lambda (ov)
1147 (move-overlay (car ov)
1148 (+ (nth 1 ov) (- beg-A beg-B))
1149 (+ (nth 2 ov) (- beg-A beg-B))))
1150 (cdr overlays))
1151 ;; Return structure.
1152 struct)))
1153
1154 (defun org-list-separating-blank-lines-number (pos struct prevs)
1155 "Return number of blank lines that should separate items in list.
1156
1157 POS is the position of point where `org-list-insert-item' was called.
1158
1159 STRUCT is the list structure. PREVS is the alist of previous
1160 items, as returned by `org-list-prevs-alist'.
1161
1162 Assume point is at item's beginning. If the item is alone, apply
1163 some heuristics to guess the result."
1164 (save-excursion
1165 (let ((item (point))
1166 (insert-blank-p
1167 (cdr (assq 'plain-list-item org-blank-before-new-entry)))
1168 usr-blank
1169 (count-blanks
1170 (function
1171 (lambda ()
1172 ;; Count blank lines above beginning of line.
1173 (save-excursion
1174 (count-lines (goto-char (point-at-bol))
1175 (progn (skip-chars-backward " \r\t\n")
1176 (forward-line)
1177 (point))))))))
1178 (cond
1179 ;; Trivial cases where there should be none.
1180 ((or org-empty-line-terminates-plain-lists (not insert-blank-p)) 0)
1181 ;; When `org-blank-before-new-entry' says so, it is 1.
1182 ((eq insert-blank-p t) 1)
1183 ;; `plain-list-item' is 'auto. Count blank lines separating
1184 ;; neighbours items in list.
1185 (t (let ((next-p (org-list-get-next-item item struct prevs)))
1186 (cond
1187 ;; Is there a next item?
1188 (next-p (goto-char next-p)
1189 (funcall count-blanks))
1190 ;; Is there a previous item?
1191 ((org-list-get-prev-item item struct prevs)
1192 (funcall count-blanks))
1193 ;; User inserted blank lines, trust him.
1194 ((and (> pos (org-list-get-item-end-before-blank item struct))
1195 (> (save-excursion (goto-char pos)
1196 (setq usr-blank (funcall count-blanks)))
1197 0))
1198 usr-blank)
1199 ;; Are there blank lines inside the list so far?
1200 ((save-excursion
1201 (goto-char (org-list-get-top-point struct))
1202 (org-list-search-forward
1203 "^[ \t]*$" (org-list-get-item-end-before-blank item struct) t))
1204 1)
1205 ;; Default choice: no blank line.
1206 (t 0))))))))
1207
1208 (defun org-list-insert-item (pos struct prevs &optional checkbox after-bullet)
1209 "Insert a new list item at POS and return the new structure.
1210 If POS is before first character after bullet of the item, the
1211 new item will be created before the current one.
1212
1213 STRUCT is the list structure. PREVS is the the alist of previous
1214 items, as returned by `org-list-prevs-alist'.
1215
1216 Insert a checkbox if CHECKBOX is non-nil, and string AFTER-BULLET
1217 after the bullet. Cursor will be after this text once the
1218 function ends.
1219
1220 This function modifies STRUCT."
1221 (let ((case-fold-search t))
1222 ;; 1. Get information about list: position of point with regards
1223 ;; to item start (BEFOREP), blank lines number separating items
1224 ;; (BLANK-NB), if we're allowed to (SPLIT-LINE-P).
1225 (let* ((item (progn (goto-char pos) (goto-char (org-list-get-item-begin))))
1226 (item-end (org-list-get-item-end item struct))
1227 (item-end-no-blank (org-list-get-item-end-before-blank item struct))
1228 (beforep (and (looking-at org-list-full-item-re)
1229 (<= pos (match-end 0))))
1230 (split-line-p (org-get-alist-option org-M-RET-may-split-line 'item))
1231 (blank-nb (org-list-separating-blank-lines-number
1232 pos struct prevs))
1233 ;; 2. Build the new item to be created. Concatenate same
1234 ;; bullet as item, checkbox, text AFTER-BULLET if
1235 ;; provided, and text cut from point to end of item
1236 ;; (TEXT-CUT) to form item's BODY. TEXT-CUT depends on
1237 ;; BEFOREP and SPLIT-LINE-P. The difference of size
1238 ;; between what was cut and what was inserted in buffer
1239 ;; is stored in SIZE-OFFSET.
1240 (ind (org-list-get-ind item struct))
1241 (ind-size (if indent-tabs-mode
1242 (+ (/ ind tab-width) (mod ind tab-width))
1243 ind))
1244 (bullet (org-list-bullet-string (org-list-get-bullet item struct)))
1245 (box (when checkbox "[ ]"))
1246 (text-cut
1247 (and (not beforep) split-line-p
1248 (progn
1249 (goto-char pos)
1250 ;; If POS is greater than ITEM-END, then point is
1251 ;; in some white lines after the end of the list.
1252 ;; Those must be removed, or they will be left,
1253 ;; stacking up after the list.
1254 (when (< item-end pos)
1255 (delete-region (1- item-end) (point-at-eol)))
1256 (skip-chars-backward " \r\t\n")
1257 (setq pos (point))
1258 (delete-and-extract-region pos item-end-no-blank))))
1259 (body (concat bullet (when box (concat box " ")) after-bullet
1260 (and text-cut
1261 (if (string-match "\\`[ \t]+" text-cut)
1262 (replace-match "" t t text-cut)
1263 text-cut))))
1264 (item-sep (make-string (1+ blank-nb) ?\n))
1265 (item-size (+ ind-size (length body) (length item-sep)))
1266 (size-offset (- item-size (length text-cut))))
1267 ;; 4. Insert effectively item into buffer.
1268 (goto-char item)
1269 (org-indent-to-column ind)
1270 (insert body item-sep)
1271 ;; 5. Add new item to STRUCT.
1272 (mapc (lambda (e)
1273 (let ((p (car e))
1274 (end (nth 6 e)))
1275 (cond
1276 ;; Before inserted item, positions don't change but
1277 ;; an item ending after insertion has its end shifted
1278 ;; by SIZE-OFFSET.
1279 ((< p item)
1280 (when (> end item) (setcar (nthcdr 6 e) (+ end size-offset))))
1281 ;; Trivial cases where current item isn't split in
1282 ;; two. Just shift every item after new one by
1283 ;; ITEM-SIZE.
1284 ((or beforep (not split-line-p))
1285 (setcar e (+ p item-size))
1286 (setcar (nthcdr 6 e) (+ end item-size)))
1287 ;; Item is split in two: elements before POS are just
1288 ;; shifted by ITEM-SIZE. In the case item would end
1289 ;; after split POS, ending is only shifted by
1290 ;; SIZE-OFFSET.
1291 ((< p pos)
1292 (setcar e (+ p item-size))
1293 (if (< end pos)
1294 (setcar (nthcdr 6 e) (+ end item-size))
1295 (setcar (nthcdr 6 e) (+ end size-offset))))
1296 ;; Elements after POS are moved into new item.
1297 ;; Length of ITEM-SEP has to be removed as ITEM-SEP
1298 ;; doesn't appear in buffer yet.
1299 ((< p item-end)
1300 (setcar e (+ p size-offset (- item pos (length item-sep))))
1301 (if (= end item-end)
1302 (setcar (nthcdr 6 e) (+ item item-size))
1303 (setcar (nthcdr 6 e)
1304 (+ end size-offset
1305 (- item pos (length item-sep))))))
1306 ;; Elements at ITEM-END or after are only shifted by
1307 ;; SIZE-OFFSET.
1308 (t (setcar e (+ p size-offset))
1309 (setcar (nthcdr 6 e) (+ end size-offset))))))
1310 struct)
1311 (push (list item ind bullet nil box nil (+ item item-size)) struct)
1312 (setq struct (sort struct (lambda (e1 e2) (< (car e1) (car e2)))))
1313 ;; 6. If not BEFOREP, new item must appear after ITEM, so
1314 ;; exchange ITEM with the next item in list. Position cursor
1315 ;; after bullet, counter, checkbox, and label.
1316 (if beforep
1317 (goto-char item)
1318 (setq struct (org-list-swap-items item (+ item item-size) struct))
1319 (goto-char (org-list-get-next-item
1320 item struct (org-list-prevs-alist struct))))
1321 struct)))
1322
1323 (defun org-list-delete-item (item struct)
1324 "Remove ITEM from the list and return the new structure.
1325
1326 STRUCT is the list structure."
1327 (let* ((end (org-list-get-item-end item struct))
1328 (beg (if (= (org-list-get-bottom-point struct) end)
1329 ;; If ITEM ends with the list, delete blank lines
1330 ;; before it.
1331 (save-excursion
1332 (goto-char item)
1333 (skip-chars-backward " \r\t\n")
1334 (min (1+ (point-at-eol)) (point-max)))
1335 item)))
1336 ;; Remove item from buffer.
1337 (delete-region beg end)
1338 ;; Remove item from structure and shift others items accordingly.
1339 ;; Don't forget to shift also ending position when appropriate.
1340 (let ((size (- end beg)))
1341 (delq nil (mapcar (lambda (e)
1342 (let ((pos (car e)))
1343 (cond
1344 ((< pos item)
1345 (let ((end-e (nth 6 e)))
1346 (cond
1347 ((< end-e item) e)
1348 ((= end-e item)
1349 (append (butlast e) (list beg)))
1350 (t
1351 (append (butlast e) (list (- end-e size)))))))
1352 ((< pos end) nil)
1353 (t
1354 (cons (- pos size)
1355 (append (butlast (cdr e))
1356 (list (- (nth 6 e) size))))))))
1357 struct)))))
1358
1359 (defun org-list-send-item (item dest struct)
1360 "Send ITEM to destination DEST.
1361
1362 STRUCT is the list structure.
1363
1364 DEST can have various values.
1365
1366 If DEST is a buffer position, the function will assume it points
1367 to another item in the same list as ITEM, and will move the
1368 latter just before the former.
1369
1370 If DEST is `begin' (respectively `end'), ITEM will be moved at
1371 the beginning (respectively end) of the list it belongs to.
1372
1373 If DEST is a string like \"N\", where N is an integer, ITEM will
1374 be moved at the Nth position in the list.
1375
1376 If DEST is `kill', ITEM will be deleted and its body will be
1377 added to the kill-ring.
1378
1379 If DEST is `delete', ITEM will be deleted.
1380
1381 Visibility of item is preserved.
1382
1383 This function returns, destructively, the new list structure."
1384 (let* ((prevs (org-list-prevs-alist struct))
1385 (item-end (org-list-get-item-end item struct))
1386 ;; Grab full item body minus its bullet.
1387 (body (org-trim
1388 (buffer-substring
1389 (save-excursion
1390 (goto-char item)
1391 (looking-at
1392 (concat "[ \t]*"
1393 (regexp-quote (org-list-get-bullet item struct))))
1394 (match-end 0))
1395 item-end)))
1396 ;; Change DEST into a buffer position. A trick is needed
1397 ;; when ITEM is meant to be sent at the end of the list.
1398 ;; Indeed, by setting locally `org-M-RET-may-split-line' to
1399 ;; nil and insertion point (INS-POINT) to the first line's
1400 ;; end of the last item, we ensure the new item will be
1401 ;; inserted after the last item, and not after any of its
1402 ;; hypothetical sub-items.
1403 (ins-point (cond
1404 ((or (eq dest 'kill) (eq dest 'delete)))
1405 ((eq dest 'begin)
1406 (setq dest (org-list-get-list-begin item struct prevs)))
1407 ((eq dest 'end)
1408 (setq dest (org-list-get-list-end item struct prevs))
1409 (save-excursion
1410 (goto-char (org-list-get-last-item item struct prevs))
1411 (point-at-eol)))
1412 ((string-match "\\`[0-9]+\\'" dest)
1413 (let* ((all (org-list-get-all-items item struct prevs))
1414 (len (length all))
1415 (index (mod (string-to-number dest) len)))
1416 (if (not (zerop index))
1417 (setq dest (nth (1- index) all))
1418 ;; Send ITEM at the end of the list.
1419 (setq dest (org-list-get-list-end item struct prevs))
1420 (save-excursion
1421 (goto-char
1422 (org-list-get-last-item item struct prevs))
1423 (point-at-eol)))))
1424 (t dest)))
1425 (org-M-RET-may-split-line nil)
1426 ;; Store visibility.
1427 (visibility (overlays-in item item-end)))
1428 (cond
1429 ((eq dest 'delete) (org-list-delete-item item struct))
1430 ((eq dest 'kill)
1431 (kill-new body)
1432 (org-list-delete-item item struct))
1433 ((and (integerp dest) (/= item ins-point))
1434 (setq item (copy-marker item))
1435 (setq struct (org-list-insert-item ins-point struct prevs nil body))
1436 ;; 1. Structure returned by `org-list-insert-item' may not be
1437 ;; accurate, as it cannot see sub-items included in BODY.
1438 ;; Thus, first compute the real structure so far.
1439 (let ((moved-items
1440 (cons (marker-position item)
1441 (org-list-get-subtree (marker-position item) struct)))
1442 (new-end (org-list-get-item-end (point) struct))
1443 (old-end (org-list-get-item-end (marker-position item) struct))
1444 (new-item (point))
1445 (shift (- (point) item)))
1446 ;; 1.1. Remove the item just created in structure.
1447 (setq struct (delete (assq new-item struct) struct))
1448 ;; 1.2. Copy ITEM and any of its sub-items at NEW-ITEM.
1449 (setq struct (sort
1450 (append
1451 struct
1452 (mapcar (lambda (e)
1453 (let* ((cell (assq e struct))
1454 (pos (car cell))
1455 (end (nth 6 cell)))
1456 (cons (+ pos shift)
1457 (append (butlast (cdr cell))
1458 (list (if (= end old-end)
1459 new-end
1460 (+ end shift)))))))
1461 moved-items))
1462 (lambda (e1 e2) (< (car e1) (car e2))))))
1463 ;; 2. Restore visibility.
1464 (mapc (lambda (ov)
1465 (move-overlay ov
1466 (+ (overlay-start ov) (- (point) item))
1467 (+ (overlay-end ov) (- (point) item))))
1468 visibility)
1469 ;; 3. Eventually delete extra copy of the item and clean marker.
1470 (prog1 (org-list-delete-item (marker-position item) struct)
1471 (move-marker item nil)))
1472 (t struct))))
1473
1474 (defun org-list-struct-outdent (start end struct parents)
1475 "Outdent items between positions START and END.
1476
1477 STRUCT is the list structure. PARENTS is the alist of items'
1478 parents, as returned by `org-list-parents-alist'.
1479
1480 START is included, END excluded."
1481 (let* (acc
1482 (out (lambda (cell)
1483 (let* ((item (car cell))
1484 (parent (cdr cell)))
1485 (cond
1486 ;; Item not yet in zone: keep association.
1487 ((< item start) cell)
1488 ;; Item out of zone: follow associations in ACC.
1489 ((>= item end)
1490 (let ((convert (and parent (assq parent acc))))
1491 (if convert (cons item (cdr convert)) cell)))
1492 ;; Item has no parent: error
1493 ((not parent)
1494 (error "Cannot outdent top-level items"))
1495 ;; Parent is outdented: keep association.
1496 ((>= parent start)
1497 (push (cons parent item) acc) cell)
1498 (t
1499 ;; Parent isn't outdented: reparent to grand-parent.
1500 (let ((grand-parent (org-list-get-parent
1501 parent struct parents)))
1502 (push (cons parent item) acc)
1503 (cons item grand-parent))))))))
1504 (mapcar out parents)))
1505
1506 (defun org-list-struct-indent (start end struct parents prevs)
1507 "Indent items between positions START and END.
1508
1509 STRUCT is the list structure. PARENTS is the alist of parents
1510 and PREVS is the alist of previous items, returned by,
1511 respectively, `org-list-parents-alist' and
1512 `org-list-prevs-alist'.
1513
1514 START is included and END excluded.
1515
1516 STRUCT may be modified if `org-list-demote-modify-bullet' matches
1517 bullets between START and END."
1518 (let* (acc
1519 (set-assoc (lambda (cell) (push cell acc) cell))
1520 (change-bullet-maybe
1521 (function
1522 (lambda (item)
1523 (let ((new-bul-p
1524 (cdr (assoc
1525 ;; Normalize ordered bullets.
1526 (let ((bul (org-trim
1527 (org-list-get-bullet item struct))))
1528 (cond ((string-match "[A-Z]\\." bul) "A.")
1529 ((string-match "[A-Z])" bul) "A)")
1530 ((string-match "[a-z]\\." bul) "a.")
1531 ((string-match "[a-z])" bul) "a)")
1532 ((string-match "[0-9]\\." bul) "1.")
1533 ((string-match "[0-9])" bul) "1)")
1534 (t bul)))
1535 org-list-demote-modify-bullet))))
1536 (when new-bul-p (org-list-set-bullet item struct new-bul-p))))))
1537 (ind
1538 (lambda (cell)
1539 (let* ((item (car cell))
1540 (parent (cdr cell)))
1541 (cond
1542 ;; Item not yet in zone: keep association.
1543 ((< item start) cell)
1544 ((>= item end)
1545 ;; Item out of zone: follow associations in ACC.
1546 (let ((convert (assq parent acc)))
1547 (if convert (cons item (cdr convert)) cell)))
1548 (t
1549 ;; Item is in zone...
1550 (let ((prev (org-list-get-prev-item item struct prevs)))
1551 ;; Check if bullet needs to be changed.
1552 (funcall change-bullet-maybe item)
1553 (cond
1554 ;; First item indented but not parent: error
1555 ((and (not prev) (< parent start))
1556 (error "Cannot indent the first item of a list"))
1557 ;; First item and parent indented: keep same
1558 ;; parent.
1559 ((not prev) (funcall set-assoc cell))
1560 ;; Previous item not indented: reparent to it.
1561 ((< prev start) (funcall set-assoc (cons item prev)))
1562 ;; Previous item indented: reparent like it.
1563 (t
1564 (funcall set-assoc
1565 (cons item (cdr (assq prev acc)))))))))))))
1566 (mapcar ind parents)))
1567
1568
1569 \f
1570 ;;; Repairing structures
1571
1572 (defun org-list-use-alpha-bul-p (first struct prevs)
1573 "Non-nil if list starting at FIRST can have alphabetical bullets.
1574
1575 STRUCT is list structure. PREVS is the alist of previous items,
1576 as returned by `org-list-prevs-alist'."
1577 (and org-alphabetical-lists
1578 (catch 'exit
1579 (let ((item first) (ascii 64) (case-fold-search nil))
1580 ;; Pretend that bullets are uppercase and check if alphabet
1581 ;; is sufficient, taking counters into account.
1582 (while item
1583 (let ((bul (org-list-get-bullet item struct))
1584 (count (org-list-get-counter item struct)))
1585 ;; Virtually determine current bullet
1586 (if (and count (string-match "[a-zA-Z]" count))
1587 ;; Counters are not case-sensitive.
1588 (setq ascii (string-to-char (upcase count)))
1589 (setq ascii (1+ ascii)))
1590 ;; Test if bullet would be over z or Z.
1591 (if (> ascii 90)
1592 (throw 'exit nil)
1593 (setq item (org-list-get-next-item item struct prevs)))))
1594 ;; All items checked. All good.
1595 t))))
1596
1597 (defun org-list-inc-bullet-maybe (bullet)
1598 "Increment BULLET if applicable."
1599 (let ((case-fold-search nil))
1600 (cond
1601 ;; Num bullet: increment it.
1602 ((string-match "[0-9]+" bullet)
1603 (replace-match
1604 (number-to-string (1+ (string-to-number (match-string 0 bullet))))
1605 nil nil bullet))
1606 ;; Alpha bullet: increment it.
1607 ((string-match "[A-Za-z]" bullet)
1608 (replace-match
1609 (char-to-string (1+ (string-to-char (match-string 0 bullet))))
1610 nil nil bullet))
1611 ;; Unordered bullet: leave it.
1612 (t bullet))))
1613
1614 (defun org-list-struct-fix-bul (struct prevs)
1615 "Verify and correct bullets in STRUCT.
1616 PREVS is the alist of previous items, as returned by
1617 `org-list-prevs-alist'.
1618
1619 This function modifies STRUCT."
1620 (let ((case-fold-search nil)
1621 (fix-bul
1622 (function
1623 ;; Set bullet of ITEM in STRUCT, depending on the type of
1624 ;; first item of the list, the previous bullet and counter
1625 ;; if any.
1626 (lambda (item)
1627 (let* ((prev (org-list-get-prev-item item struct prevs))
1628 (prev-bul (and prev (org-list-get-bullet prev struct)))
1629 (counter (org-list-get-counter item struct))
1630 (bullet (org-list-get-bullet item struct))
1631 (alphap (and (not prev)
1632 (org-list-use-alpha-bul-p item struct prevs))))
1633 (org-list-set-bullet
1634 item struct
1635 (org-list-bullet-string
1636 (cond
1637 ;; Alpha counter in alpha list: use counter.
1638 ((and prev counter
1639 (string-match "[a-zA-Z]" counter)
1640 (string-match "[a-zA-Z]" prev-bul))
1641 ;; Use cond to be sure `string-match' is used in
1642 ;; both cases.
1643 (let ((real-count
1644 (cond
1645 ((string-match "[a-z]" prev-bul) (downcase counter))
1646 ((string-match "[A-Z]" prev-bul) (upcase counter)))))
1647 (replace-match real-count nil nil prev-bul)))
1648 ;; Num counter in a num list: use counter.
1649 ((and prev counter
1650 (string-match "[0-9]+" counter)
1651 (string-match "[0-9]+" prev-bul))
1652 (replace-match counter nil nil prev-bul))
1653 ;; No counter: increase, if needed, previous bullet.
1654 (prev
1655 (org-list-inc-bullet-maybe (org-list-get-bullet prev struct)))
1656 ;; Alpha counter at first item: use counter.
1657 ((and counter (org-list-use-alpha-bul-p item struct prevs)
1658 (string-match "[A-Za-z]" counter)
1659 (string-match "[A-Za-z]" bullet))
1660 (let ((real-count
1661 (cond
1662 ((string-match "[a-z]" bullet) (downcase counter))
1663 ((string-match "[A-Z]" bullet) (upcase counter)))))
1664 (replace-match real-count nil nil bullet)))
1665 ;; Num counter at first item: use counter.
1666 ((and counter
1667 (string-match "[0-9]+" counter)
1668 (string-match "[0-9]+" bullet))
1669 (replace-match counter nil nil bullet))
1670 ;; First bullet is alpha uppercase: use "A".
1671 ((and alphap (string-match "[A-Z]" bullet))
1672 (replace-match "A" nil nil bullet))
1673 ;; First bullet is alpha lowercase: use "a".
1674 ((and alphap (string-match "[a-z]" bullet))
1675 (replace-match "a" nil nil bullet))
1676 ;; First bullet is num: use "1".
1677 ((string-match "\\([0-9]+\\|[A-Za-z]\\)" bullet)
1678 (replace-match "1" nil nil bullet))
1679 ;; Not an ordered list: keep bullet.
1680 (t bullet)))))))))
1681 (mapc fix-bul (mapcar 'car struct))))
1682
1683 (defun org-list-struct-fix-ind (struct parents &optional bullet-size)
1684 "Verify and correct indentation in STRUCT.
1685
1686 PARENTS is the alist of parents, as returned by
1687 `org-list-parents-alist'.
1688
1689 If numeric optional argument BULLET-SIZE is set, assume all
1690 bullets in list have this length to determine new indentation.
1691
1692 This function modifies STRUCT."
1693 (let* ((ancestor (org-list-get-top-point struct))
1694 (top-ind (org-list-get-ind ancestor struct))
1695 (new-ind
1696 (lambda (item)
1697 (let ((parent (org-list-get-parent item struct parents)))
1698 (if parent
1699 ;; Indent like parent + length of parent's bullet +
1700 ;; sub-list offset.
1701 (org-list-set-ind
1702 item struct (+ (or bullet-size
1703 (length
1704 (org-list-get-bullet parent struct)))
1705 (org-list-get-ind parent struct)
1706 org-list-indent-offset))
1707 ;; If no parent, indent like top-point.
1708 (org-list-set-ind item struct top-ind))))))
1709 (mapc new-ind (mapcar 'car (cdr struct)))))
1710
1711 (defun org-list-struct-fix-box (struct parents prevs &optional ordered)
1712 "Verify and correct checkboxes in STRUCT.
1713
1714 PARENTS is the alist of parents and PREVS is the alist of
1715 previous items, as returned by, respectively,
1716 `org-list-parents-alist' and `org-list-prevs-alist'.
1717
1718 If ORDERED is non-nil, a checkbox can only be checked when every
1719 checkbox before it is checked too. If there was an attempt to
1720 break this rule, the function will return the blocking item. In
1721 all others cases, the return value will be nil.
1722
1723 This function modifies STRUCT."
1724 (let ((all-items (mapcar 'car struct))
1725 (set-parent-box
1726 (function
1727 (lambda (item)
1728 (let* ((box-list
1729 (mapcar (lambda (child)
1730 (org-list-get-checkbox child struct))
1731 (org-list-get-children item struct parents))))
1732 (org-list-set-checkbox
1733 item struct
1734 (cond
1735 ((and (member "[ ]" box-list) (member "[X]" box-list)) "[-]")
1736 ((member "[-]" box-list) "[-]")
1737 ((member "[X]" box-list) "[X]")
1738 ((member "[ ]" box-list) "[ ]")
1739 ;; Parent has no boxed child: leave box as-is.
1740 (t (org-list-get-checkbox item struct))))))))
1741 parent-list)
1742 ;; 1. List all parents with a checkbox.
1743 (mapc
1744 (lambda (e)
1745 (let* ((parent (org-list-get-parent e struct parents))
1746 (parent-box-p (org-list-get-checkbox parent struct)))
1747 (when (and parent-box-p (not (memq parent parent-list)))
1748 (push parent parent-list))))
1749 all-items)
1750 ;; 2. Sort those parents by decreasing indentation.
1751 (setq parent-list (sort parent-list
1752 (lambda (e1 e2)
1753 (> (org-list-get-ind e1 struct)
1754 (org-list-get-ind e2 struct)))))
1755 ;; 3. For each parent, get all children's checkboxes to determine
1756 ;; and set its checkbox accordingly.
1757 (mapc set-parent-box parent-list)
1758 ;; 4. If ORDERED is set, see if we need to uncheck some boxes.
1759 (when ordered
1760 (let* ((box-list
1761 (mapcar (lambda (e) (org-list-get-checkbox e struct)) all-items))
1762 (after-unchecked (member "[ ]" box-list)))
1763 ;; There are boxes checked after an unchecked one: fix that.
1764 (when (member "[X]" after-unchecked)
1765 (let ((index (- (length struct) (length after-unchecked))))
1766 (mapc (lambda (e) (org-list-set-checkbox e struct "[ ]"))
1767 (nthcdr index all-items))
1768 ;; Verify once again the structure, without ORDERED.
1769 (org-list-struct-fix-box struct parents prevs nil)
1770 ;; Return blocking item.
1771 (nth index all-items)))))))
1772
1773 (defun org-list-struct-fix-item-end (struct)
1774 "Verify and correct each item end position in STRUCT.
1775
1776 This function modifies STRUCT."
1777 (let (end-list acc-end)
1778 (mapc (lambda (e)
1779 (let* ((pos (car e))
1780 (ind-pos (org-list-get-ind pos struct))
1781 (end-pos (org-list-get-item-end pos struct)))
1782 (unless (assq end-pos struct)
1783 ;; To determine real ind of an ending position that is
1784 ;; not at an item, we have to find the item it belongs
1785 ;; to: it is the last item (ITEM-UP), whose ending is
1786 ;; further than the position we're interested in.
1787 (let ((item-up (assoc-default end-pos acc-end '>)))
1788 (push (cons
1789 ;; Else part is for the bottom point.
1790 (if item-up (+ (org-list-get-ind item-up struct) 2) 0)
1791 end-pos)
1792 end-list)))
1793 (push (cons ind-pos pos) end-list)
1794 (push (cons end-pos pos) acc-end)))
1795 struct)
1796 (setq end-list (sort end-list (lambda (e1 e2) (< (cdr e1) (cdr e2)))))
1797 (org-list-struct-assoc-end struct end-list)))
1798
1799 (defun org-list-struct-apply-struct (struct old-struct)
1800 "Apply set difference between STRUCT and OLD-STRUCT to the buffer.
1801
1802 OLD-STRUCT is the structure before any modifications, and STRUCT
1803 the structure to be applied. The function will only modify parts
1804 of the list which have changed.
1805
1806 Initial position of cursor is restored after the changes."
1807 (let* ((origin (point-marker))
1808 (inlinetask-re (and (featurep 'org-inlinetask)
1809 (org-inlinetask-outline-regexp)))
1810 (item-re (org-item-re))
1811 (box-rule-p (cdr (assq 'checkbox org-list-automatic-rules)))
1812 (shift-body-ind
1813 (function
1814 ;; Shift the indentation between END and BEG by DELTA.
1815 ;; Start from the line before END.
1816 (lambda (end beg delta)
1817 (goto-char end)
1818 (skip-chars-backward " \r\t\n")
1819 (beginning-of-line)
1820 (while (or (> (point) beg)
1821 (and (= (point) beg)
1822 (not (looking-at item-re))))
1823 (cond
1824 ;; Skip inline tasks.
1825 ((and inlinetask-re (looking-at inlinetask-re))
1826 (org-inlinetask-goto-beginning))
1827 ;; Shift only non-empty lines.
1828 ((org-looking-at-p "^[ \t]*\\S-")
1829 (let ((i (org-get-indentation)))
1830 (org-indent-line-to (+ i delta)))))
1831 (forward-line -1)))))
1832 (modify-item
1833 (function
1834 ;; Replace ITEM first line elements with new elements from
1835 ;; STRUCT, if appropriate.
1836 (lambda (item)
1837 (goto-char item)
1838 (let* ((new-ind (org-list-get-ind item struct))
1839 (old-ind (org-get-indentation))
1840 (new-bul (org-list-bullet-string
1841 (org-list-get-bullet item struct)))
1842 (old-bul (org-list-get-bullet item old-struct))
1843 (new-box (org-list-get-checkbox item struct)))
1844 (looking-at org-list-full-item-re)
1845 ;; a. Replace bullet
1846 (unless (equal old-bul new-bul)
1847 (replace-match new-bul nil nil nil 1))
1848 ;; b. Replace checkbox.
1849 (cond
1850 ((and new-box box-rule-p
1851 (save-match-data (org-at-item-description-p)))
1852 (message "Cannot add a checkbox to a description list item"))
1853 ((equal (match-string 3) new-box))
1854 ((and (match-string 3) new-box)
1855 (replace-match new-box nil nil nil 3))
1856 ((match-string 3)
1857 (looking-at ".*?\\([ \t]*\\[[ X-]\\]\\)")
1858 (replace-match "" nil nil nil 1))
1859 (t (let ((counterp (match-end 2)))
1860 (goto-char (if counterp (1+ counterp) (match-end 1)))
1861 (insert (concat new-box (unless counterp " "))))))
1862 ;; c. Indent item to appropriate column.
1863 (unless (= new-ind old-ind)
1864 (delete-region (goto-char (point-at-bol))
1865 (progn (skip-chars-forward " \t") (point)))
1866 (indent-to new-ind)))))))
1867 ;; 1. First get list of items and position endings. We maintain
1868 ;; two alists: ITM-SHIFT, determining indentation shift needed
1869 ;; at item, and END-POS, a pseudo-alist where key is ending
1870 ;; position and value point.
1871 (let (end-list acc-end itm-shift all-ends sliced-struct)
1872 (mapc (lambda (e)
1873 (let* ((pos (car e))
1874 (ind-pos (org-list-get-ind pos struct))
1875 (ind-old (org-list-get-ind pos old-struct))
1876 (bul-pos (org-list-get-bullet pos struct))
1877 (bul-old (org-list-get-bullet pos old-struct))
1878 (ind-shift (- (+ ind-pos (length bul-pos))
1879 (+ ind-old (length bul-old))))
1880 (end-pos (org-list-get-item-end pos old-struct)))
1881 (push (cons pos ind-shift) itm-shift)
1882 (unless (assq end-pos old-struct)
1883 ;; To determine real ind of an ending position that
1884 ;; is not at an item, we have to find the item it
1885 ;; belongs to: it is the last item (ITEM-UP), whose
1886 ;; ending is further than the position we're
1887 ;; interested in.
1888 (let ((item-up (assoc-default end-pos acc-end '>)))
1889 (push (cons end-pos item-up) end-list)))
1890 (push (cons end-pos pos) acc-end)))
1891 old-struct)
1892 ;; 2. Slice the items into parts that should be shifted by the
1893 ;; same amount of indentation. The slices are returned in
1894 ;; reverse order so changes modifying buffer do not change
1895 ;; positions they refer to.
1896 (setq all-ends (sort (append (mapcar 'car itm-shift)
1897 (org-uniquify (mapcar 'car end-list)))
1898 '<))
1899 (while (cdr all-ends)
1900 (let* ((up (pop all-ends))
1901 (down (car all-ends))
1902 (ind (if (assq up struct)
1903 (cdr (assq up itm-shift))
1904 (cdr (assq (cdr (assq up end-list)) itm-shift)))))
1905 (push (list down up ind) sliced-struct)))
1906 ;; 3. Shift each slice in buffer, provided delta isn't 0, from
1907 ;; end to beginning. Take a special action when beginning is
1908 ;; at item bullet.
1909 (mapc (lambda (e)
1910 (unless (zerop (nth 2 e)) (apply shift-body-ind e))
1911 (let* ((beg (nth 1 e))
1912 (cell (assq beg struct)))
1913 (unless (or (not cell) (equal cell (assq beg old-struct)))
1914 (funcall modify-item beg))))
1915 sliced-struct))
1916 ;; 4. Go back to initial position and clean marker.
1917 (goto-char origin)
1918 (move-marker origin nil)))
1919
1920 (defun org-list-write-struct (struct parents &optional old-struct)
1921 "Correct bullets, checkboxes and indentation in list at point.
1922
1923 STRUCT is the list structure. PARENTS is the alist of parents,
1924 as returned by `org-list-parents-alist'.
1925
1926 When non-nil, optional argument OLD-STRUCT is the reference
1927 structure of the list. It should be provided whenever STRUCT
1928 doesn't correspond anymore to the real list in buffer."
1929 ;; Order of functions matters here: checkboxes and endings need
1930 ;; correct indentation to be set, and indentation needs correct
1931 ;; bullets.
1932 ;;
1933 ;; 0. Save a copy of structure before modifications
1934 (let ((old-struct (or old-struct (copy-tree struct))))
1935 ;; 1. Set a temporary, but coherent with PARENTS, indentation in
1936 ;; order to get items endings and bullets properly
1937 (org-list-struct-fix-ind struct parents 2)
1938 ;; 2. Fix each item end to get correct prevs alist.
1939 (org-list-struct-fix-item-end struct)
1940 ;; 3. Get bullets right.
1941 (let ((prevs (org-list-prevs-alist struct)))
1942 (org-list-struct-fix-bul struct prevs)
1943 ;; 4. Now get real indentation.
1944 (org-list-struct-fix-ind struct parents)
1945 ;; 5. Eventually fix checkboxes.
1946 (org-list-struct-fix-box struct parents prevs))
1947 ;; 6. Apply structure modifications to buffer.
1948 (org-list-struct-apply-struct struct old-struct)))
1949
1950
1951 \f
1952 ;;; Misc Tools
1953
1954 (defun org-apply-on-list (function init-value &rest args)
1955 "Call FUNCTION on each item of the list at point.
1956 FUNCTION must be called with at least one argument: INIT-VALUE,
1957 that will contain the value returned by the function at the
1958 previous item, plus ARGS extra arguments.
1959
1960 FUNCTION is applied on items in reverse order.
1961
1962 As an example, \(org-apply-on-list \(lambda \(result\) \(1+ result\)\) 0\)
1963 will return the number of items in the current list.
1964
1965 Sublists of the list are skipped. Cursor is always at the
1966 beginning of the item."
1967 (let* ((struct (org-list-struct))
1968 (prevs (org-list-prevs-alist struct))
1969 (item (copy-marker (point-at-bol)))
1970 (all (org-list-get-all-items (marker-position item) struct prevs))
1971 (value init-value))
1972 (mapc (lambda (e)
1973 (goto-char e)
1974 (setq value (apply function value args)))
1975 (nreverse all))
1976 (goto-char item)
1977 (move-marker item nil)
1978 value))
1979
1980 (defun org-list-set-item-visibility (item struct view)
1981 "Set visibility of ITEM in STRUCT to VIEW.
1982
1983 Possible values are: `folded', `children' or `subtree'. See
1984 `org-cycle' for more information."
1985 (cond
1986 ((eq view 'folded)
1987 (let ((item-end (org-list-get-item-end-before-blank item struct)))
1988 ;; Hide from eol
1989 (outline-flag-region (save-excursion (goto-char item) (point-at-eol))
1990 item-end t)))
1991 ((eq view 'children)
1992 ;; First show everything.
1993 (org-list-set-item-visibility item struct 'subtree)
1994 ;; Then fold every child.
1995 (let* ((parents (org-list-parents-alist struct))
1996 (children (org-list-get-children item struct parents)))
1997 (mapc (lambda (e)
1998 (org-list-set-item-visibility e struct 'folded))
1999 children)))
2000 ((eq view 'subtree)
2001 ;; Show everything
2002 (let ((item-end (org-list-get-item-end item struct)))
2003 (outline-flag-region item item-end nil)))))
2004
2005 (defun org-list-item-body-column (item)
2006 "Return column at which body of ITEM should start."
2007 (let (bpos bcol tpos tcol)
2008 (save-excursion
2009 (goto-char item)
2010 (looking-at "[ \t]*\\(\\S-+\\)\\(.*[ \t]+::\\)?[ \t]+")
2011 (setq bpos (match-beginning 1) tpos (match-end 0)
2012 bcol (progn (goto-char bpos) (current-column))
2013 tcol (progn (goto-char tpos) (current-column)))
2014 (when (> tcol (+ bcol org-description-max-indent))
2015 (setq tcol (+ bcol 5))))
2016 tcol))
2017
2018
2019 \f
2020 ;;; Interactive functions
2021
2022 (defalias 'org-list-get-item-begin 'org-in-item-p)
2023
2024 (defun org-beginning-of-item ()
2025 "Go to the beginning of the current item.
2026 Throw an error when not in a list."
2027 (interactive)
2028 (let ((begin (org-in-item-p)))
2029 (if begin (goto-char begin) (error "Not in an item"))))
2030
2031 (defun org-beginning-of-item-list ()
2032 "Go to the beginning item of the current list or sublist.
2033 Throw an error when not in a list."
2034 (interactive)
2035 (let ((begin (org-in-item-p)))
2036 (if (not begin)
2037 (error "Not in an item")
2038 (goto-char begin)
2039 (let* ((struct (org-list-struct))
2040 (prevs (org-list-prevs-alist struct)))
2041 (goto-char (org-list-get-list-begin begin struct prevs))))))
2042
2043 (defun org-end-of-item-list ()
2044 "Go to the end of the current list or sublist.
2045 Throw an error when not in a list."
2046 (interactive)
2047 (let ((begin (org-in-item-p)))
2048 (if (not begin)
2049 (error "Not in an item")
2050 (goto-char begin)
2051 (let* ((struct (org-list-struct))
2052 (prevs (org-list-prevs-alist struct)))
2053 (goto-char (org-list-get-list-end begin struct prevs))))))
2054
2055 (defun org-end-of-item ()
2056 "Go to the end of the current item.
2057 Throw an error when not in a list."
2058 (interactive)
2059 (let ((begin (org-in-item-p)))
2060 (if (not begin)
2061 (error "Not in an item")
2062 (goto-char begin)
2063 (let ((struct (org-list-struct)))
2064 (goto-char (org-list-get-item-end begin struct))))))
2065
2066 (defun org-previous-item ()
2067 "Move to the beginning of the previous item.
2068 Throw an error when not in a list. Also throw an error when at
2069 first item, unless `org-list-use-circular-motion' is non-nil."
2070 (interactive)
2071 (let ((item (org-in-item-p)))
2072 (if (not item)
2073 (error "Not in an item")
2074 (goto-char item)
2075 (let* ((struct (org-list-struct))
2076 (prevs (org-list-prevs-alist struct))
2077 (prevp (org-list-get-prev-item item struct prevs)))
2078 (cond
2079 (prevp (goto-char prevp))
2080 (org-list-use-circular-motion
2081 (goto-char (org-list-get-last-item item struct prevs)))
2082 (t (error "On first item")))))))
2083
2084 (defun org-next-item ()
2085 "Move to the beginning of the next item.
2086 Throw an error when not in a list. Also throw an error when at
2087 last item, unless `org-list-use-circular-motion' is non-nil."
2088 (interactive)
2089 (let ((item (org-in-item-p)))
2090 (if (not item)
2091 (error "Not in an item")
2092 (goto-char item)
2093 (let* ((struct (org-list-struct))
2094 (prevs (org-list-prevs-alist struct))
2095 (prevp (org-list-get-next-item item struct prevs)))
2096 (cond
2097 (prevp (goto-char prevp))
2098 (org-list-use-circular-motion
2099 (goto-char (org-list-get-first-item item struct prevs)))
2100 (t (error "On last item")))))))
2101
2102 (defun org-move-item-down ()
2103 "Move the item at point down, i.e. swap with following item.
2104 Sub-items (items with larger indentation) are considered part of
2105 the item, so this really moves item trees."
2106 (interactive)
2107 (unless (org-at-item-p) (error "Not at an item"))
2108 (let* ((col (current-column))
2109 (item (point-at-bol))
2110 (struct (org-list-struct))
2111 (prevs (org-list-prevs-alist struct))
2112 (next-item (org-list-get-next-item (point-at-bol) struct prevs)))
2113 (unless (or next-item org-list-use-circular-motion)
2114 (error "Cannot move this item further down"))
2115 (if (not next-item)
2116 (setq struct (org-list-send-item item 'begin struct))
2117 (setq struct (org-list-swap-items item next-item struct))
2118 (goto-char
2119 (org-list-get-next-item item struct (org-list-prevs-alist struct))))
2120 (org-list-write-struct struct (org-list-parents-alist struct))
2121 (org-move-to-column col)))
2122
2123 (defun org-move-item-up ()
2124 "Move the item at point up, i.e. swap with previous item.
2125 Sub-items (items with larger indentation) are considered part of
2126 the item, so this really moves item trees."
2127 (interactive)
2128 (unless (org-at-item-p) (error "Not at an item"))
2129 (let* ((col (current-column))
2130 (item (point-at-bol))
2131 (struct (org-list-struct))
2132 (prevs (org-list-prevs-alist struct))
2133 (prev-item (org-list-get-prev-item (point-at-bol) struct prevs)))
2134 (unless (or prev-item org-list-use-circular-motion)
2135 (error "Cannot move this item further up"))
2136 (if (not prev-item)
2137 (setq struct (org-list-send-item item 'end struct))
2138 (setq struct (org-list-swap-items prev-item item struct)))
2139 (org-list-write-struct struct (org-list-parents-alist struct))
2140 (org-move-to-column col)))
2141
2142 (defun org-insert-item (&optional checkbox)
2143 "Insert a new item at the current level.
2144 If cursor is before first character after bullet of the item, the
2145 new item will be created before the current one.
2146
2147 If CHECKBOX is non-nil, add a checkbox next to the bullet.
2148
2149 Return t when things worked, nil when we are not in an item, or
2150 item is invisible."
2151 (let ((itemp (org-in-item-p))
2152 (pos (point)))
2153 ;; If cursor isn't is a list or if list is invisible, return nil.
2154 (unless (or (not itemp)
2155 (save-excursion
2156 (goto-char itemp)
2157 (outline-invisible-p)))
2158 (if (save-excursion
2159 (goto-char itemp)
2160 (org-at-item-timer-p))
2161 ;; Timer list: delegate to `org-timer-item'.
2162 (progn (org-timer-item) t)
2163 (let* ((struct (save-excursion (goto-char itemp)
2164 (org-list-struct)))
2165 (prevs (org-list-prevs-alist struct))
2166 ;; If we're in a description list, ask for the new term.
2167 (desc (when (org-list-get-tag itemp struct)
2168 (concat (read-string "Term: ") " :: ")))
2169 ;; Don't insert a checkbox if checkbox rule is applied
2170 ;; and it is a description item.
2171 (checkp (and checkbox
2172 (or (not desc)
2173 (not (cdr (assq 'checkbox
2174 org-list-automatic-rules)))))))
2175 (setq struct
2176 (org-list-insert-item pos struct prevs checkp desc))
2177 (org-list-write-struct struct (org-list-parents-alist struct))
2178 (when checkp (org-update-checkbox-count-maybe))
2179 (looking-at org-list-full-item-re)
2180 (goto-char (match-end 0))
2181 t)))))
2182
2183 (defun org-list-repair ()
2184 "Fix indentation, bullets and checkboxes is the list at point."
2185 (interactive)
2186 (unless (org-at-item-p) (error "This is not a list"))
2187 (let* ((struct (org-list-struct))
2188 (parents (org-list-parents-alist struct)))
2189 (org-list-write-struct struct parents)))
2190
2191 (defun org-cycle-list-bullet (&optional which)
2192 "Cycle through the different itemize/enumerate bullets.
2193 This cycle the entire list level through the sequence:
2194
2195 `-' -> `+' -> `*' -> `1.' -> `1)'
2196
2197 If WHICH is a valid string, use that as the new bullet. If WHICH
2198 is an integer, 0 means `-', 1 means `+' etc. If WHICH is
2199 `previous', cycle backwards."
2200 (interactive "P")
2201 (unless (org-at-item-p) (error "Not at an item"))
2202 (save-excursion
2203 (beginning-of-line)
2204 (let* ((struct (org-list-struct))
2205 (parents (org-list-parents-alist struct))
2206 (prevs (org-list-prevs-alist struct))
2207 (list-beg (org-list-get-first-item (point) struct prevs))
2208 (bullet (org-list-get-bullet list-beg struct))
2209 (bullet-rule-p (cdr (assq 'bullet org-list-automatic-rules)))
2210 (alpha-p (org-list-use-alpha-bul-p list-beg struct prevs))
2211 (case-fold-search nil)
2212 (current (cond
2213 ((string-match "[a-z]\\." bullet) "a.")
2214 ((string-match "[a-z])" bullet) "a)")
2215 ((string-match "[A-Z]\\." bullet) "A.")
2216 ((string-match "[A-Z])" bullet) "A)")
2217 ((string-match "\\." bullet) "1.")
2218 ((string-match ")" bullet) "1)")
2219 (t (org-trim bullet))))
2220 ;; Compute list of possible bullets, depending on context.
2221 (bullet-list
2222 (append '("-" "+" )
2223 ;; *-bullets are not allowed at column 0.
2224 (unless (and bullet-rule-p
2225 (looking-at "\\S-")) '("*"))
2226 ;; Description items cannot be numbered.
2227 (unless (or (eq org-plain-list-ordered-item-terminator ?\))
2228 (and bullet-rule-p (org-at-item-description-p)))
2229 '("1."))
2230 (unless (or (eq org-plain-list-ordered-item-terminator ?.)
2231 (and bullet-rule-p (org-at-item-description-p)))
2232 '("1)"))
2233 (unless (or (not alpha-p)
2234 (eq org-plain-list-ordered-item-terminator ?\))
2235 (and bullet-rule-p (org-at-item-description-p)))
2236 '("a." "A."))
2237 (unless (or (not alpha-p)
2238 (eq org-plain-list-ordered-item-terminator ?.)
2239 (and bullet-rule-p (org-at-item-description-p)))
2240 '("a)" "A)"))))
2241 (len (length bullet-list))
2242 (item-index (- len (length (member current bullet-list))))
2243 (get-value (lambda (index) (nth (mod index len) bullet-list)))
2244 (new (cond
2245 ((member which bullet-list) which)
2246 ((numberp which) (funcall get-value which))
2247 ((eq 'previous which) (funcall get-value (1- item-index)))
2248 (t (funcall get-value (1+ item-index))))))
2249 ;; Use a short variation of `org-list-write-struct' as there's
2250 ;; no need to go through all the steps.
2251 (let ((old-struct (copy-tree struct)))
2252 (org-list-set-bullet list-beg struct (org-list-bullet-string new))
2253 (org-list-struct-fix-bul struct prevs)
2254 (org-list-struct-fix-ind struct parents)
2255 (org-list-struct-apply-struct struct old-struct)))))
2256
2257 (defun org-toggle-checkbox (&optional toggle-presence)
2258 "Toggle the checkbox in the current line.
2259 With prefix arg TOGGLE-PRESENCE, add or remove checkboxes. With
2260 double prefix, set checkbox to [-].
2261
2262 When there is an active region, toggle status or presence of the
2263 first checkbox there, and make every item inside have the same
2264 status or presence, respectively.
2265
2266 If the cursor is in a headline, apply this to all checkbox items
2267 in the text below the heading, taking as reference the first item
2268 in subtree, ignoring drawers."
2269 (interactive "P")
2270 (save-excursion
2271 (let* (singlep
2272 block-item
2273 lim-up
2274 lim-down
2275 (drawer-re (concat "^[ \t]*:\\("
2276 (mapconcat 'regexp-quote org-drawers "\\|")
2277 "\\):[ \t]*$"))
2278 (keyword-re (concat "^[ \t]*\\<\\(" org-scheduled-string
2279 "\\|" org-deadline-string
2280 "\\|" org-closed-string
2281 "\\|" org-clock-string "\\)"
2282 " *[[<]\\([^]>]+\\)[]>]"))
2283 (orderedp (org-entry-get nil "ORDERED"))
2284 (bounds
2285 ;; In a region, start at first item in region.
2286 (cond
2287 ((org-region-active-p)
2288 (let ((limit (region-end)))
2289 (goto-char (region-beginning))
2290 (if (org-list-search-forward (org-item-beginning-re) limit t)
2291 (setq lim-up (point-at-bol))
2292 (error "No item in region"))
2293 (setq lim-down (copy-marker limit))))
2294 ((org-at-heading-p)
2295 ;; On an heading, start at first item after drawers and
2296 ;; time-stamps (scheduled, etc.).
2297 (let ((limit (save-excursion (outline-next-heading) (point))))
2298 (forward-line 1)
2299 (while (or (looking-at drawer-re) (looking-at keyword-re))
2300 (if (looking-at keyword-re)
2301 (forward-line 1)
2302 (re-search-forward "^[ \t]*:END:" limit nil)))
2303 (if (org-list-search-forward (org-item-beginning-re) limit t)
2304 (setq lim-up (point-at-bol))
2305 (error "No item in subtree"))
2306 (setq lim-down (copy-marker limit))))
2307 ;; Just one item: set SINGLEP flag.
2308 ((org-at-item-p)
2309 (setq singlep t)
2310 (setq lim-up (point-at-bol)
2311 lim-down (copy-marker (point-at-eol))))
2312 (t (error "Not at an item or heading, and no active region"))))
2313 ;; Determine the checkbox going to be applied to all items
2314 ;; within bounds.
2315 (ref-checkbox
2316 (progn
2317 (goto-char lim-up)
2318 (let ((cbox (and (org-at-item-checkbox-p) (match-string 1))))
2319 (cond
2320 ((equal toggle-presence '(16)) "[-]")
2321 ((equal toggle-presence '(4))
2322 (unless cbox "[ ]"))
2323 ((equal "[X]" cbox) "[ ]")
2324 (t "[X]"))))))
2325 ;; When an item is found within bounds, grab the full list at
2326 ;; point structure, then: (1) set check-box of all its items
2327 ;; within bounds to REF-CHECKBOX, (2) fix check-boxes of the
2328 ;; whole list, (3) move point after the list.
2329 (goto-char lim-up)
2330 (while (and (< (point) lim-down)
2331 (org-list-search-forward (org-item-beginning-re)
2332 lim-down 'move))
2333 (let* ((struct (org-list-struct))
2334 (struct-copy (copy-tree struct))
2335 (parents (org-list-parents-alist struct))
2336 (prevs (org-list-prevs-alist struct))
2337 (bottom (copy-marker (org-list-get-bottom-point struct)))
2338 (items-to-toggle (org-remove-if
2339 (lambda (e) (or (< e lim-up) (> e lim-down)))
2340 (mapcar 'car struct))))
2341 (mapc (lambda (e) (org-list-set-checkbox
2342 e struct
2343 ;; If there is no box at item, leave as-is
2344 ;; unless function was called with C-u prefix.
2345 (let ((cur-box (org-list-get-checkbox e struct)))
2346 (if (or cur-box (equal toggle-presence '(4)))
2347 ref-checkbox
2348 cur-box))))
2349 items-to-toggle)
2350 (setq block-item (org-list-struct-fix-box
2351 struct parents prevs orderedp))
2352 ;; Report some problems due to ORDERED status of subtree.
2353 ;; If only one box was being checked, throw an error, else,
2354 ;; only signal problems.
2355 (cond
2356 ((and singlep block-item (> lim-up block-item))
2357 (error
2358 "Checkbox blocked because of unchecked box at line %d"
2359 (org-current-line block-item)))
2360 (block-item
2361 (message
2362 "Checkboxes were removed due to unchecked box at line %d"
2363 (org-current-line block-item))))
2364 (goto-char bottom)
2365 (move-marker bottom nil)
2366 (org-list-struct-apply-struct struct struct-copy)))
2367 (move-marker lim-down nil)))
2368 (org-update-checkbox-count-maybe))
2369
2370 (defun org-reset-checkbox-state-subtree ()
2371 "Reset all checkboxes in an entry subtree."
2372 (interactive "*")
2373 (if (org-before-first-heading-p)
2374 (error "Not inside a tree")
2375 (save-restriction
2376 (save-excursion
2377 (org-narrow-to-subtree)
2378 (org-show-subtree)
2379 (goto-char (point-min))
2380 (let ((end (point-max)))
2381 (while (< (point) end)
2382 (when (org-at-item-checkbox-p)
2383 (replace-match "[ ]" t t nil 1))
2384 (beginning-of-line 2)))
2385 (org-update-checkbox-count-maybe 'all)))))
2386
2387 (defun org-update-checkbox-count (&optional all)
2388 "Update the checkbox statistics in the current section.
2389 This will find all statistic cookies like [57%] and [6/12] and
2390 update them with the current numbers.
2391
2392 With optional prefix argument ALL, do this for the whole buffer."
2393 (interactive "P")
2394 (save-excursion
2395 (let ((cookie-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
2396 (box-re "^[ \t]*\\([-+*]\\|\\([0-9]+\\|[A-Za-z]\\)[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?\\(\\[[- X]\\]\\)")
2397 (recursivep
2398 (or (not org-hierarchical-checkbox-statistics)
2399 (string-match "\\<recursive\\>"
2400 (or (org-entry-get nil "COOKIE_DATA") ""))))
2401 (bounds (if all
2402 (cons (point-min) (point-max))
2403 (cons (or (ignore-errors (org-back-to-heading t) (point))
2404 (point-min))
2405 (save-excursion (outline-next-heading) (point)))))
2406 (count-boxes
2407 (function
2408 ;; Return number of checked boxes and boxes of all types
2409 ;; in all structures in STRUCTS. If RECURSIVEP is
2410 ;; non-nil, also count boxes in sub-lists. If ITEM is
2411 ;; nil, count across the whole structure, else count only
2412 ;; across subtree whose ancestor is ITEM.
2413 (lambda (item structs recursivep)
2414 (let ((c-on 0) (c-all 0))
2415 (mapc
2416 (lambda (s)
2417 (let* ((pre (org-list-prevs-alist s))
2418 (par (org-list-parents-alist s))
2419 (items
2420 (cond
2421 ((and recursivep item) (org-list-get-subtree item s))
2422 (recursivep (mapcar 'car s))
2423 (item (org-list-get-children item s par))
2424 (t (org-list-get-all-items
2425 (org-list-get-top-point s) s pre))))
2426 (cookies (delq nil (mapcar
2427 (lambda (e)
2428 (org-list-get-checkbox e s))
2429 items))))
2430 (setq c-all (+ (length cookies) c-all)
2431 c-on (+ (org-count "[X]" cookies) c-on))))
2432 structs)
2433 (cons c-on c-all)))))
2434 (backup-end 1)
2435 cookies-list structs-bak box-num)
2436 (goto-char (car bounds))
2437 ;; 1. Build an alist for each cookie found within BOUNDS. The
2438 ;; key will be position at beginning of cookie and values
2439 ;; ending position, format of cookie, and a cell whose car is
2440 ;; number of checked boxes to report, and cdr total number of
2441 ;; boxes.
2442 (while (re-search-forward cookie-re (cdr bounds) t)
2443 (catch 'skip
2444 (save-excursion
2445 (push
2446 (list
2447 (match-beginning 1) ; cookie start
2448 (match-end 1) ; cookie end
2449 (match-string 2) ; percent?
2450 (cond ; boxes count
2451 ;; Cookie is at an heading, but specifically for todo,
2452 ;; not for checkboxes: skip it.
2453 ((and (org-at-heading-p)
2454 (string-match "\\<todo\\>"
2455 (downcase
2456 (or (org-entry-get nil "COOKIE_DATA") ""))))
2457 (throw 'skip nil))
2458 ;; Cookie is at an heading, but all lists before next
2459 ;; heading already have been read. Use data collected
2460 ;; in STRUCTS-BAK. This should only happen when
2461 ;; heading has more than one cookie on it.
2462 ((and (org-at-heading-p)
2463 (<= (save-excursion (outline-next-heading) (point))
2464 backup-end))
2465 (funcall count-boxes nil structs-bak recursivep))
2466 ;; Cookie is at a fresh heading. Grab structure of
2467 ;; every list containing a checkbox between point and
2468 ;; next headline, and save them in STRUCTS-BAK.
2469 ((org-at-heading-p)
2470 (setq backup-end (save-excursion
2471 (outline-next-heading) (point))
2472 structs-bak nil)
2473 (while (org-list-search-forward box-re backup-end 'move)
2474 (let* ((struct (org-list-struct))
2475 (bottom (org-list-get-bottom-point struct)))
2476 (push struct structs-bak)
2477 (goto-char bottom)))
2478 (funcall count-boxes nil structs-bak recursivep))
2479 ;; Cookie is at an item, and we already have list
2480 ;; structure stored in STRUCTS-BAK.
2481 ((and (org-at-item-p)
2482 (< (point-at-bol) backup-end)
2483 ;; Only lists in no special context are stored.
2484 (not (nth 2 (org-list-context))))
2485 (funcall count-boxes (point-at-bol) structs-bak recursivep))
2486 ;; Cookie is at an item, but we need to compute list
2487 ;; structure.
2488 ((org-at-item-p)
2489 (let ((struct (org-list-struct)))
2490 (setq backup-end (org-list-get-bottom-point struct)
2491 structs-bak (list struct)))
2492 (funcall count-boxes (point-at-bol) structs-bak recursivep))
2493 ;; Else, cookie found is at a wrong place. Skip it.
2494 (t (throw 'skip nil))))
2495 cookies-list))))
2496 ;; 2. Apply alist to buffer, in reverse order so positions stay
2497 ;; unchanged after cookie modifications.
2498 (mapc (lambda (cookie)
2499 (let* ((beg (car cookie))
2500 (end (nth 1 cookie))
2501 (percentp (nth 2 cookie))
2502 (checked (car (nth 3 cookie)))
2503 (total (cdr (nth 3 cookie)))
2504 (new (if percentp
2505 (format "[%d%%]" (/ (* 100 checked)
2506 (max 1 total)))
2507 (format "[%d/%d]" checked total))))
2508 (goto-char beg)
2509 (insert new)
2510 (delete-region (point) (+ (point) (- end beg)))
2511 (when org-auto-align-tags (org-fix-tags-on-the-fly))))
2512 cookies-list))))
2513
2514 (defun org-get-checkbox-statistics-face ()
2515 "Select the face for checkbox statistics.
2516 The face will be `org-done' when all relevant boxes are checked.
2517 Otherwise it will be `org-todo'."
2518 (if (match-end 1)
2519 (if (equal (match-string 1) "100%")
2520 'org-checkbox-statistics-done
2521 'org-checkbox-statistics-todo)
2522 (if (and (> (match-end 2) (match-beginning 2))
2523 (equal (match-string 2) (match-string 3)))
2524 'org-checkbox-statistics-done
2525 'org-checkbox-statistics-todo)))
2526
2527 (defun org-update-checkbox-count-maybe (&optional all)
2528 "Update checkbox statistics unless turned off by user.
2529 With an optional argument ALL, update them in the whole buffer."
2530 (when (cdr (assq 'checkbox org-list-automatic-rules))
2531 (org-update-checkbox-count all))
2532 (run-hooks 'org-checkbox-statistics-hook))
2533
2534 (defvar org-last-indent-begin-marker (make-marker))
2535 (defvar org-last-indent-end-marker (make-marker))
2536 (defun org-list-indent-item-generic (arg no-subtree struct)
2537 "Indent a local list item including its children.
2538 When number ARG is a negative, item will be outdented, otherwise
2539 it will be indented.
2540
2541 If a region is active, all items inside will be moved.
2542
2543 If NO-SUBTREE is non-nil, only indent the item itself, not its
2544 children.
2545
2546 STRUCT is the list structure.
2547
2548 Return t if successful."
2549 (save-excursion
2550 (let* ((regionp (org-region-active-p))
2551 (rbeg (and regionp (region-beginning)))
2552 (rend (and regionp (region-end)))
2553 (top (org-list-get-top-point struct))
2554 (parents (org-list-parents-alist struct))
2555 (prevs (org-list-prevs-alist struct))
2556 ;; Are we going to move the whole list?
2557 (specialp
2558 (and (not regionp)
2559 (= top (point-at-bol))
2560 (cdr (assq 'indent org-list-automatic-rules))
2561 (if no-subtree
2562 (error
2563 "First item of list cannot move without its subtree")
2564 t))))
2565 ;; Determine begin and end points of zone to indent. If moving
2566 ;; more than one item, save them for subsequent moves.
2567 (unless (and (memq last-command '(org-shiftmetaright org-shiftmetaleft))
2568 (memq this-command '(org-shiftmetaright org-shiftmetaleft)))
2569 (if regionp
2570 (progn
2571 (set-marker org-last-indent-begin-marker rbeg)
2572 (set-marker org-last-indent-end-marker rend))
2573 (set-marker org-last-indent-begin-marker (point-at-bol))
2574 (set-marker org-last-indent-end-marker
2575 (cond
2576 (specialp (org-list-get-bottom-point struct))
2577 (no-subtree (1+ (point-at-bol)))
2578 (t (org-list-get-item-end (point-at-bol) struct))))))
2579 (let* ((beg (marker-position org-last-indent-begin-marker))
2580 (end (marker-position org-last-indent-end-marker)))
2581 (cond
2582 ;; Special case: moving top-item with indent rule.
2583 (specialp
2584 (let* ((level-skip (org-level-increment))
2585 (offset (if (< arg 0) (- level-skip) level-skip))
2586 (top-ind (org-list-get-ind beg struct))
2587 (old-struct (copy-tree struct)))
2588 (if (< (+ top-ind offset) 0)
2589 (error "Cannot outdent beyond margin")
2590 ;; Change bullet if necessary.
2591 (when (and (= (+ top-ind offset) 0)
2592 (string-match "*"
2593 (org-list-get-bullet beg struct)))
2594 (org-list-set-bullet beg struct
2595 (org-list-bullet-string "-")))
2596 ;; Shift every item by OFFSET and fix bullets. Then
2597 ;; apply changes to buffer.
2598 (mapc (lambda (e)
2599 (let ((ind (org-list-get-ind (car e) struct)))
2600 (org-list-set-ind (car e) struct (+ ind offset))))
2601 struct)
2602 (org-list-struct-fix-bul struct prevs)
2603 (org-list-struct-apply-struct struct old-struct))))
2604 ;; Forbidden move:
2605 ((and (< arg 0)
2606 ;; If only one item is moved, it mustn't have a child.
2607 (or (and no-subtree
2608 (not regionp)
2609 (org-list-has-child-p beg struct))
2610 ;; If a subtree or region is moved, the last item
2611 ;; of the subtree mustn't have a child.
2612 (let ((last-item (caar
2613 (reverse
2614 (org-remove-if
2615 (lambda (e) (>= (car e) end))
2616 struct)))))
2617 (org-list-has-child-p last-item struct))))
2618 (error "Cannot outdent an item without its children"))
2619 ;; Normal shifting
2620 (t
2621 (let* ((new-parents
2622 (if (< arg 0)
2623 (org-list-struct-outdent beg end struct parents)
2624 (org-list-struct-indent beg end struct parents prevs))))
2625 (org-list-write-struct struct new-parents))
2626 (org-update-checkbox-count-maybe))))))
2627 t)
2628
2629 (defun org-outdent-item ()
2630 "Outdent a local list item, but not its children.
2631 If a region is active, all items inside will be moved."
2632 (interactive)
2633 (let ((regionp (org-region-active-p)))
2634 (cond
2635 ((or (org-at-item-p)
2636 (and regionp
2637 (save-excursion (goto-char (region-beginning))
2638 (org-at-item-p))))
2639 (let ((struct (if (not regionp) (org-list-struct)
2640 (save-excursion (goto-char (region-beginning))
2641 (org-list-struct)))))
2642 (org-list-indent-item-generic -1 t struct)))
2643 (regionp (error "Region not starting at an item"))
2644 (t (error "Not at an item")))))
2645
2646 (defun org-indent-item ()
2647 "Indent a local list item, but not its children.
2648 If a region is active, all items inside will be moved."
2649 (interactive)
2650 (let ((regionp (org-region-active-p)))
2651 (cond
2652 ((or (org-at-item-p)
2653 (and regionp
2654 (save-excursion (goto-char (region-beginning))
2655 (org-at-item-p))))
2656 (let ((struct (if (not regionp) (org-list-struct)
2657 (save-excursion (goto-char (region-beginning))
2658 (org-list-struct)))))
2659 (org-list-indent-item-generic 1 t struct)))
2660 (regionp (error "Region not starting at an item"))
2661 (t (error "Not at an item")))))
2662
2663 (defun org-outdent-item-tree ()
2664 "Outdent a local list item including its children.
2665 If a region is active, all items inside will be moved."
2666 (interactive)
2667 (let ((regionp (org-region-active-p)))
2668 (cond
2669 ((or (org-at-item-p)
2670 (and regionp
2671 (save-excursion (goto-char (region-beginning))
2672 (org-at-item-p))))
2673 (let ((struct (if (not regionp) (org-list-struct)
2674 (save-excursion (goto-char (region-beginning))
2675 (org-list-struct)))))
2676 (org-list-indent-item-generic -1 nil struct)))
2677 (regionp (error "Region not starting at an item"))
2678 (t (error "Not at an item")))))
2679
2680 (defun org-indent-item-tree ()
2681 "Indent a local list item including its children.
2682 If a region is active, all items inside will be moved."
2683 (interactive)
2684 (let ((regionp (org-region-active-p)))
2685 (cond
2686 ((or (org-at-item-p)
2687 (and regionp
2688 (save-excursion (goto-char (region-beginning))
2689 (org-at-item-p))))
2690 (let ((struct (if (not regionp) (org-list-struct)
2691 (save-excursion (goto-char (region-beginning))
2692 (org-list-struct)))))
2693 (org-list-indent-item-generic 1 nil struct)))
2694 (regionp (error "Region not starting at an item"))
2695 (t (error "Not at an item")))))
2696
2697 (defvar org-tab-ind-state)
2698 (defun org-cycle-item-indentation ()
2699 "Cycle levels of indentation of an empty item.
2700 The first run indents the item, if applicable. Subsequent runs
2701 outdent it at meaningful levels in the list. When done, item is
2702 put back at its original position with its original bullet.
2703
2704 Return t at each successful move."
2705 (when (org-at-item-p)
2706 (let* ((org-adapt-indentation nil)
2707 (struct (org-list-struct))
2708 (ind (org-list-get-ind (point-at-bol) struct))
2709 (bullet (org-trim (buffer-substring (point-at-bol) (point-at-eol)))))
2710 ;; Accept empty items or if cycle has already started.
2711 (when (or (eq last-command 'org-cycle-item-indentation)
2712 (and (save-excursion
2713 (beginning-of-line)
2714 (looking-at org-list-full-item-re))
2715 (>= (match-end 0) (save-excursion
2716 (goto-char (org-list-get-item-end
2717 (point-at-bol) struct))
2718 (skip-chars-backward " \r\t\n")
2719 (point)))))
2720 (setq this-command 'org-cycle-item-indentation)
2721 ;; When in the middle of the cycle, try to outdent first. If
2722 ;; it fails, and point is still at initial position, indent.
2723 ;; Else, re-create it at its original position.
2724 (if (eq last-command 'org-cycle-item-indentation)
2725 (cond
2726 ((ignore-errors (org-list-indent-item-generic -1 t struct)))
2727 ((and (= ind (car org-tab-ind-state))
2728 (ignore-errors (org-list-indent-item-generic 1 t struct))))
2729 (t (delete-region (point-at-bol) (point-at-eol))
2730 (org-indent-to-column (car org-tab-ind-state))
2731 (insert (cdr org-tab-ind-state) " ")
2732 ;; Break cycle
2733 (setq this-command 'identity)))
2734 ;; If a cycle is starting, remember indentation and bullet,
2735 ;; then try to indent. If it fails, try to outdent.
2736 (setq org-tab-ind-state (cons ind bullet))
2737 (cond
2738 ((ignore-errors (org-list-indent-item-generic 1 t struct)))
2739 ((ignore-errors (org-list-indent-item-generic -1 t struct)))
2740 (t (error "Cannot move item"))))
2741 t))))
2742
2743 (defun org-sort-list (&optional with-case sorting-type getkey-func compare-func)
2744 "Sort list items.
2745 The cursor may be at any item of the list that should be sorted.
2746 Sublists are not sorted. Checkboxes, if any, are ignored.
2747
2748 Sorting can be alphabetically, numerically, by date/time as given
2749 by a time stamp, by a property or by priority.
2750
2751 Comparing entries ignores case by default. However, with an
2752 optional argument WITH-CASE, the sorting considers case as well.
2753
2754 The command prompts for the sorting type unless it has been given
2755 to the function through the SORTING-TYPE argument, which needs to
2756 be a character, \(?n ?N ?a ?A ?t ?T ?f ?F). Here is the precise
2757 meaning of each character:
2758
2759 n Numerically, by converting the beginning of the item to a number.
2760 a Alphabetically. Only the first line of item is checked.
2761 t By date/time, either the first active time stamp in the entry, if
2762 any, or by the first inactive one. In a timer list, sort the timers.
2763
2764 Capital letters will reverse the sort order.
2765
2766 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
2767 a function to be called with point at the beginning of the
2768 record. It must return either a string or a number that should
2769 serve as the sorting key for that record. It will then use
2770 COMPARE-FUNC to compare entries."
2771 (interactive "P")
2772 (let* ((case-func (if with-case 'identity 'downcase))
2773 (struct (org-list-struct))
2774 (prevs (org-list-prevs-alist struct))
2775 (start (org-list-get-list-begin (point-at-bol) struct prevs))
2776 (end (org-list-get-list-end (point-at-bol) struct prevs))
2777 (sorting-type
2778 (progn
2779 (message
2780 "Sort plain list: [a]lpha [n]umeric [t]ime [f]unc A/N/T/F means reversed:")
2781 (read-char-exclusive)))
2782 (getkey-func (and (= (downcase sorting-type) ?f)
2783 (intern (org-icompleting-read "Sort using function: "
2784 obarray 'fboundp t nil nil)))))
2785 (message "Sorting items...")
2786 (save-restriction
2787 (narrow-to-region start end)
2788 (goto-char (point-min))
2789 (let* ((dcst (downcase sorting-type))
2790 (case-fold-search nil)
2791 (now (current-time))
2792 (sort-func (cond
2793 ((= dcst ?a) 'string<)
2794 ((= dcst ?f) compare-func)
2795 ((= dcst ?t) '<)
2796 (t nil)))
2797 (next-record (lambda ()
2798 (skip-chars-forward " \r\t\n")
2799 (beginning-of-line)))
2800 (end-record (lambda ()
2801 (goto-char (org-list-get-item-end-before-blank
2802 (point) struct))))
2803 (value-to-sort
2804 (lambda ()
2805 (when (looking-at "[ \t]*[-+*0-9.)]+\\([ \t]+\\[[- X]\\]\\)?[ \t]+")
2806 (cond
2807 ((= dcst ?n)
2808 (string-to-number (buffer-substring (match-end 0)
2809 (point-at-eol))))
2810 ((= dcst ?a)
2811 (funcall case-func
2812 (buffer-substring (match-end 0) (point-at-eol))))
2813 ((= dcst ?t)
2814 (cond
2815 ;; If it is a timer list, convert timer to seconds
2816 ((org-at-item-timer-p)
2817 (org-timer-hms-to-secs (match-string 1)))
2818 ((or (re-search-forward org-ts-regexp (point-at-eol) t)
2819 (re-search-forward org-ts-regexp-both
2820 (point-at-eol) t))
2821 (org-time-string-to-seconds (match-string 0)))
2822 (t (org-float-time now))))
2823 ((= dcst ?f)
2824 (if getkey-func
2825 (let ((value (funcall getkey-func)))
2826 (if (stringp value)
2827 (funcall case-func value)
2828 value))
2829 (error "Invalid key function `%s'" getkey-func)))
2830 (t (error "Invalid sorting type `%c'" sorting-type)))))))
2831 (sort-subr (/= dcst sorting-type)
2832 next-record
2833 end-record
2834 value-to-sort
2835 nil
2836 sort-func)
2837 ;; Read and fix list again, as `sort-subr' probably destroyed
2838 ;; its structure.
2839 (org-list-repair)
2840 (run-hooks 'org-after-sorting-entries-or-items-hook)
2841 (message "Sorting items...done")))))
2842
2843
2844 \f
2845 ;;; Send and receive lists
2846
2847 (defun org-list-parse-list (&optional delete)
2848 "Parse the list at point and maybe DELETE it.
2849
2850 Return a list whose car is a symbol of list type, among
2851 `ordered', `unordered' and `descriptive'. Then, each item is
2852 a list whose car is counter, and cdr are strings and other
2853 sub-lists. Inside strings, check-boxes are replaced by
2854 \"[CBON]\", \"[CBOFF]\" and \"[CBTRANS]\".
2855
2856 For example, the following list:
2857
2858 1. first item
2859 + sub-item one
2860 + [X] sub-item two
2861 more text in first item
2862 2. [@3] last item
2863
2864 will be parsed as:
2865
2866 \(ordered
2867 \(nil \"first item\"
2868 \(unordered
2869 \(nil \"sub-item one\"\)
2870 \(nil \"[CBON] sub-item two\"\)\)
2871 \"more text in first item\"\)
2872 \(3 \"last item\"\)\)
2873
2874 Point is left at list end."
2875 (let* ((struct (org-list-struct))
2876 (prevs (org-list-prevs-alist struct))
2877 (parents (org-list-parents-alist struct))
2878 (top (org-list-get-top-point struct))
2879 (bottom (org-list-get-bottom-point struct))
2880 out
2881 parse-item ; for byte-compiler
2882 (get-text
2883 (function
2884 ;; Return text between BEG and END, trimmed, with
2885 ;; checkboxes replaced.
2886 (lambda (beg end)
2887 (let ((text (org-trim (buffer-substring beg end))))
2888 (if (string-match "\\`\\[\\([-X ]\\)\\]" text)
2889 (replace-match
2890 (let ((box (match-string 1 text)))
2891 (cond
2892 ((equal box " ") "CBOFF")
2893 ((equal box "-") "CBTRANS")
2894 (t "CBON")))
2895 t nil text 1)
2896 text)))))
2897 (parse-sublist
2898 (function
2899 ;; Return a list whose car is list type and cdr a list of
2900 ;; items' body.
2901 (lambda (e)
2902 (cons (org-list-get-list-type (car e) struct prevs)
2903 (mapcar parse-item e)))))
2904 (parse-item
2905 (function
2906 ;; Return a list containing counter of item, if any, text
2907 ;; and any sublist inside it.
2908 (lambda (e)
2909 (let ((start (save-excursion
2910 (goto-char e)
2911 (looking-at "[ \t]*\\S-+\\([ \t]+\\[@\\(start:\\)?\\([0-9]+\\|[a-zA-Z]\\)\\]\\)?[ \t]*")
2912 (match-end 0)))
2913 ;; Get counter number. For alphabetic counter, get
2914 ;; its position in the alphabet.
2915 (counter (let ((c (org-list-get-counter e struct)))
2916 (cond
2917 ((not c) nil)
2918 ((string-match "[A-Za-z]" c)
2919 (- (string-to-char (upcase (match-string 0 c)))
2920 64))
2921 ((string-match "[0-9]+" c)
2922 (string-to-number (match-string 0 c))))))
2923 (childp (org-list-has-child-p e struct))
2924 (end (org-list-get-item-end e struct)))
2925 ;; If item has a child, store text between bullet and
2926 ;; next child, then recursively parse all sublists. At
2927 ;; the end of each sublist, check for the presence of
2928 ;; text belonging to the original item.
2929 (if childp
2930 (let* ((children (org-list-get-children e struct parents))
2931 (body (list (funcall get-text start childp))))
2932 (while children
2933 (let* ((first (car children))
2934 (sub (org-list-get-all-items first struct prevs))
2935 (last-c (car (last sub)))
2936 (last-end (org-list-get-item-end last-c struct)))
2937 (push (funcall parse-sublist sub) body)
2938 ;; Remove children from the list just parsed.
2939 (setq children (cdr (member last-c children)))
2940 ;; There is a chunk of text belonging to the
2941 ;; item if last child doesn't end where next
2942 ;; child starts or where item ends.
2943 (unless (= (or (car children) end) last-end)
2944 (push (funcall get-text
2945 last-end (or (car children) end))
2946 body))))
2947 (cons counter (nreverse body)))
2948 (list counter (funcall get-text start end))))))))
2949 ;; Store output, take care of cursor position and deletion of
2950 ;; list, then return output.
2951 (setq out (funcall parse-sublist (org-list-get-all-items top struct prevs)))
2952 (goto-char top)
2953 (when delete
2954 (delete-region top bottom)
2955 (when (and (not (looking-at "[ \t]*$")) (looking-at org-list-end-re))
2956 (replace-match "")))
2957 out))
2958
2959 (defun org-list-make-subtree ()
2960 "Convert the plain list at point into a subtree."
2961 (interactive)
2962 (if (not (ignore-errors (goto-char (org-in-item-p))))
2963 (error "Not in a list")
2964 (let ((list (save-excursion (org-list-parse-list t))))
2965 (insert (org-list-to-subtree list)))))
2966
2967 (defun org-list-insert-radio-list ()
2968 "Insert a radio list template appropriate for this major mode."
2969 (interactive)
2970 (let* ((e (assq major-mode org-list-radio-list-templates))
2971 (txt (nth 1 e))
2972 name pos)
2973 (unless e (error "No radio list setup defined for %s" major-mode))
2974 (setq name (read-string "List name: "))
2975 (while (string-match "%n" txt)
2976 (setq txt (replace-match name t t txt)))
2977 (or (bolp) (insert "\n"))
2978 (setq pos (point))
2979 (insert txt)
2980 (goto-char pos)))
2981
2982 (defun org-list-send-list (&optional maybe)
2983 "Send a transformed version of this list to the receiver position.
2984 With argument MAYBE, fail quietly if no transformation is defined
2985 for this list."
2986 (interactive)
2987 (catch 'exit
2988 (unless (org-at-item-p) (error "Not at a list item"))
2989 (save-excursion
2990 (re-search-backward "#\\+ORGLST" nil t)
2991 (unless (looking-at "[ \t]*#\\+ORGLST[: \t][ \t]*SEND[ \t]+\\([^ \t\r\n]+\\)[ \t]+\\([^ \t\r\n]+\\)\\([ \t]+.*\\)?")
2992 (if maybe
2993 (throw 'exit nil)
2994 (error "Don't know how to transform this list"))))
2995 (let* ((name (match-string 1))
2996 (transform (intern (match-string 2)))
2997 (bottom-point
2998 (save-excursion
2999 (re-search-forward
3000 "\\(\\\\end{comment}\\|@end ignore\\|-->\\)" nil t)
3001 (match-beginning 0)))
3002 (top-point
3003 (progn
3004 (re-search-backward "#\\+ORGLST" nil t)
3005 (re-search-forward (org-item-beginning-re) bottom-point t)
3006 (match-beginning 0)))
3007 (list (save-restriction
3008 (narrow-to-region top-point bottom-point)
3009 (org-list-parse-list)))
3010 beg txt)
3011 (unless (fboundp transform)
3012 (error "No such transformation function %s" transform))
3013 (let ((txt (funcall transform list)))
3014 ;; Find the insertion place
3015 (save-excursion
3016 (goto-char (point-min))
3017 (unless (re-search-forward
3018 (concat "BEGIN RECEIVE ORGLST +"
3019 name
3020 "\\([ \t]\\|$\\)") nil t)
3021 (error "Don't know where to insert translated list"))
3022 (goto-char (match-beginning 0))
3023 (beginning-of-line 2)
3024 (setq beg (point))
3025 (unless (re-search-forward (concat "END RECEIVE ORGLST +" name) nil t)
3026 (error "Cannot find end of insertion region"))
3027 (delete-region beg (point-at-bol))
3028 (goto-char beg)
3029 (insert txt "\n")))
3030 (message "List converted and installed at receiver location"))))
3031
3032 (defsubst org-list-item-trim-br (item)
3033 "Trim line breaks in a list ITEM."
3034 (setq item (replace-regexp-in-string "\n +" " " item)))
3035
3036 (defun org-list-to-generic (list params)
3037 "Convert a LIST parsed through `org-list-parse-list' to other formats.
3038 Valid parameters PARAMS are:
3039
3040 :ustart String to start an unordered list
3041 :uend String to end an unordered list
3042
3043 :ostart String to start an ordered list
3044 :oend String to end an ordered list
3045
3046 :dstart String to start a descriptive list
3047 :dend String to end a descriptive list
3048 :dtstart String to start a descriptive term
3049 :dtend String to end a descriptive term
3050 :ddstart String to start a description
3051 :ddend String to end a description
3052
3053 :splice When set to t, return only list body lines, don't wrap
3054 them into :[u/o]start and :[u/o]end. Default is nil.
3055
3056 :istart String to start a list item.
3057 :icount String to start an item with a counter.
3058 :iend String to end a list item
3059 :isep String to separate items
3060 :lsep String to separate sublists
3061 :csep String to separate text from a sub-list
3062
3063 :cboff String to insert for an unchecked check-box
3064 :cbon String to insert for a checked check-box
3065 :cbtrans String to insert for a check-box in transitional state
3066
3067 :nobr Non-nil means remove line breaks in lists items.
3068
3069 Alternatively, each parameter can also be a form returning
3070 a string. These sexp can use keywords `counter' and `depth',
3071 representing respectively counter associated to the current
3072 item, and depth of the current sub-list, starting at 0.
3073 Obviously, `counter' is only available for parameters applying to
3074 items."
3075 (interactive)
3076 (let* ((p params)
3077 (splicep (plist-get p :splice))
3078 (ostart (plist-get p :ostart))
3079 (oend (plist-get p :oend))
3080 (ustart (plist-get p :ustart))
3081 (uend (plist-get p :uend))
3082 (dstart (plist-get p :dstart))
3083 (dend (plist-get p :dend))
3084 (dtstart (plist-get p :dtstart))
3085 (dtend (plist-get p :dtend))
3086 (ddstart (plist-get p :ddstart))
3087 (ddend (plist-get p :ddend))
3088 (istart (plist-get p :istart))
3089 (icount (plist-get p :icount))
3090 (iend (plist-get p :iend))
3091 (isep (plist-get p :isep))
3092 (lsep (plist-get p :lsep))
3093 (csep (plist-get p :csep))
3094 (cbon (plist-get p :cbon))
3095 (cboff (plist-get p :cboff))
3096 (cbtrans (plist-get p :cbtrans))
3097 (nobr (plist-get p :nobr))
3098 export-sublist ; for byte-compiler
3099 (export-item
3100 (function
3101 ;; Export an item ITEM of type TYPE, at DEPTH. First
3102 ;; string in item is treated in a special way as it can
3103 ;; bring extra information that needs to be processed.
3104 (lambda (item type depth)
3105 (let* ((counter (pop item))
3106 (fmt (concat
3107 (cond
3108 ((eq type 'descriptive)
3109 ;; Stick DTSTART to ISTART by
3110 ;; left-trimming the latter.
3111 (concat (let ((s (eval istart)))
3112 (or (and (string-match "[ \t\n\r]+\\'" s)
3113 (replace-match "" t t s))
3114 istart))
3115 "%s" (eval ddend)))
3116 ((and counter (eq type 'ordered))
3117 (concat (eval icount) "%s"))
3118 (t (concat (eval istart) "%s")))
3119 (eval iend)))
3120 (first (car item)))
3121 ;; Replace checkbox if any is found.
3122 (cond
3123 ((string-match "\\[CBON\\]" first)
3124 (setq first (replace-match cbon t t first)))
3125 ((string-match "\\[CBOFF\\]" first)
3126 (setq first (replace-match cboff t t first)))
3127 ((string-match "\\[CBTRANS\\]" first)
3128 (setq first (replace-match cbtrans t t first))))
3129 ;; Replace line breaks if required
3130 (when nobr (setq first (org-list-item-trim-br first)))
3131 ;; Insert descriptive term if TYPE is `descriptive'.
3132 (when (eq type 'descriptive)
3133 (let* ((complete (string-match "^\\(.*\\)[ \t]+::" first))
3134 (term (if complete
3135 (save-match-data
3136 (org-trim (match-string 1 first)))
3137 "???"))
3138 (desc (if complete
3139 (org-trim (substring first (match-end 0)))
3140 first)))
3141 (setq first (concat (eval dtstart) term (eval dtend)
3142 (eval ddstart) desc))))
3143 (setcar item first)
3144 (format fmt
3145 (mapconcat (lambda (e)
3146 (if (stringp e) e
3147 (funcall export-sublist e (1+ depth))))
3148 item (or (eval csep) "")))))))
3149 (export-sublist
3150 (function
3151 ;; Export sublist SUB at DEPTH.
3152 (lambda (sub depth)
3153 (let* ((type (car sub))
3154 (items (cdr sub))
3155 (fmt (concat (cond
3156 (splicep "%s")
3157 ((eq type 'ordered)
3158 (concat (eval ostart) "%s" (eval oend)))
3159 ((eq type 'descriptive)
3160 (concat (eval dstart) "%s" (eval dend)))
3161 (t (concat (eval ustart) "%s" (eval uend))))
3162 (eval lsep))))
3163 (format fmt (mapconcat (lambda (e)
3164 (funcall export-item e type depth))
3165 items (or (eval isep) ""))))))))
3166 (concat (funcall export-sublist list 0) "\n")))
3167
3168 (defun org-list-to-latex (list &optional params)
3169 "Convert LIST into a LaTeX list.
3170 LIST is as returned by `org-list-parse-list'. PARAMS is a property list
3171 with overruling parameters for `org-list-to-generic'."
3172 (org-list-to-generic
3173 list
3174 (org-combine-plists
3175 '(:splice nil :ostart "\\begin{enumerate}\n" :oend "\\end{enumerate}"
3176 :ustart "\\begin{itemize}\n" :uend "\\end{itemize}"
3177 :dstart "\\begin{description}\n" :dend "\\end{description}"
3178 :dtstart "[" :dtend "] "
3179 :istart "\\item " :iend "\n"
3180 :icount (let ((enum (nth depth '("i" "ii" "iii" "iv"))))
3181 (if enum
3182 ;; LaTeX increments counter just before
3183 ;; using it, so set it to the desired
3184 ;; value, minus one.
3185 (format "\\setcounter{enum%s}{%s}\n\\item "
3186 enum (1- counter))
3187 "\\item "))
3188 :csep "\n"
3189 :cbon "\\texttt{[X]}" :cboff "\\texttt{[ ]}"
3190 :cbtrans "\\texttt{[-]}")
3191 params)))
3192
3193 (defun org-list-to-html (list &optional params)
3194 "Convert LIST into a HTML list.
3195 LIST is as returned by `org-list-parse-list'. PARAMS is a property list
3196 with overruling parameters for `org-list-to-generic'."
3197 (org-list-to-generic
3198 list
3199 (org-combine-plists
3200 '(:splice nil :ostart "<ol>\n" :oend "\n</ol>"
3201 :ustart "<ul>\n" :uend "\n</ul>"
3202 :dstart "<dl>\n" :dend "\n</dl>"
3203 :dtstart "<dt>" :dtend "</dt>\n"
3204 :ddstart "<dd>" :ddend "</dd>"
3205 :istart "<li>" :iend "</li>"
3206 :icount (format "<li value=\"%s\">" counter)
3207 :isep "\n" :lsep "\n" :csep "\n"
3208 :cbon "<code>[X]</code>" :cboff "<code>[ ]</code>"
3209 :cbtrans "<code>[-]</code>")
3210 params)))
3211
3212 (defun org-list-to-texinfo (list &optional params)
3213 "Convert LIST into a Texinfo list.
3214 LIST is as returned by `org-list-parse-list'. PARAMS is a property list
3215 with overruling parameters for `org-list-to-generic'."
3216 (org-list-to-generic
3217 list
3218 (org-combine-plists
3219 '(:splice nil :ostart "@itemize @minus\n" :oend "@end itemize"
3220 :ustart "@enumerate\n" :uend "@end enumerate"
3221 :dstart "@table @asis\n" :dend "@end table"
3222 :dtstart " " :dtend "\n"
3223 :istart "@item\n" :iend "\n"
3224 :icount "@item\n"
3225 :csep "\n"
3226 :cbon "@code{[X]}" :cboff "@code{[ ]}"
3227 :cbtrans "@code{[-]}")
3228 params)))
3229
3230 (defun org-list-to-subtree (list &optional params)
3231 "Convert LIST into an Org subtree.
3232 LIST is as returned by `org-list-parse-list'. PARAMS is a property list
3233 with overruling parameters for `org-list-to-generic'."
3234 (let* ((rule (cdr (assq 'heading org-blank-before-new-entry)))
3235 (level (org-reduced-level (or (org-current-level) 0)))
3236 (blankp (or (eq rule t)
3237 (and (eq rule 'auto)
3238 (save-excursion
3239 (outline-previous-heading)
3240 (org-previous-line-empty-p)))))
3241 (get-stars
3242 (function
3243 ;; Return the string for the heading, depending on depth D
3244 ;; of current sub-list.
3245 (lambda (d)
3246 (let ((oddeven-level (+ level d 1)))
3247 (concat (make-string (if org-odd-levels-only
3248 (1- (* 2 oddeven-level))
3249 oddeven-level)
3250 ?*)
3251 " "))))))
3252 (org-list-to-generic
3253 list
3254 (org-combine-plists
3255 '(:splice t
3256 :dtstart " " :dtend " "
3257 :istart (funcall get-stars depth)
3258 :icount (funcall get-stars depth)
3259 :isep (if blankp "\n\n" "\n")
3260 :csep (if blankp "\n\n" "\n")
3261 :cbon "DONE" :cboff "TODO" :cbtrans "TODO")
3262 params))))
3263
3264 (provide 'org-list)
3265
3266 ;;; org-list.el ends here