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