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