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