1 ;;; org-list.el --- Plain lists for Org-mode
3 ;; Copyright (C) 2004-2015 Free Software Foundation, Inc.
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
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 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
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
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
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
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
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.
176 (setq org-list-demote-modify-bullet
177 '((\"+\" . \"-\") (\"-\" . \"+\") (\"*\" . \"+\")))
182 + Silence of the Lambs
185 + The Hunt for Red October
191 - Silence of the Lambs
194 - The Hunt for Red October
196 :group
'org-plain-lists
199 (choice :tag
"If the current bullet is "
205 (choice :tag
"demotion will change it to"
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
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
257 (const :tag
"never" nil
)
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
268 (defcustom org-list-automatic-rules
'((checkbox . 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
286 :type
'(alist :tag
"Sets of rules"
289 (const :tag
"Checkbox" checkbox
)
290 (const :tag
"Indent" indent
))
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
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
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
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
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
341 (defcustom org-list-radio-list-templates
342 '((latex-mode "% BEGIN RECEIVE ORGLST %n
343 % END RECEIVE ORGLST %n
345 #+ORGLST: SEND %n org-list-to-latex
348 (texinfo-mode "@c BEGIN RECEIVE ORGLST %n
349 @c END RECEIVE ORGLST %n
351 #+ORGLST: SEND %n org-list-to-texinfo
354 (html-mode "<!-- BEGIN RECEIVE ORGLST %n -->
355 <!-- END RECEIVE ORGLST %n -->
357 #+ORGLST: SEND %n org-list-to-html
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
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"
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:
398 group 4: description tag")
400 (defun org-item-re ()
401 "Return the correct regular expression for plain lists."
403 ((eq org-plain-list-ordered-item-terminator t
) "[.)]")
404 ((= org-plain-list-ordered-item-terminator ?\
)) ")")
405 ((= org-plain-list-ordered-item-terminator ?.
) "\\.")
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?"
419 (goto-char (match-end 0))
420 (let ((counter-re (concat "\\(?:\\[@\\(?:start:\\)?"
421 (if org-list-allow-alphabetical
422 "\\([0-9]+\\|[A-Za-z]\\)"
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."
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
)))
448 (org-get-indentation))))
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
)
459 (while (setq i
(string-match
460 "[\r\n]" org-list-end-re
(1+ i
)))
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
))
467 ;; Look for an item, less indented that reference line.
470 (let ((ind (org-get-indentation)))
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
))
485 ((and inlinetask-re
(looking-at inlinetask-re
))
486 (org-inlinetask-goto-beginning)
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.
496 (t (forward-line -
1)))))))))))
498 (defun org-at-item-p ()
499 "Is point in a line starting a hand-formatted item?"
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?"
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?"
526 (looking-at org-list-full-item-re
)
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'."
543 (org-with-limited-levels
545 (let ((case-fold-search t
) (pos (point)) beg end context-type
546 ;; Get positions of surrounding headings. This is the
548 (lim-up (or (save-excursion (and (ignore-errors (org-back-to-heading t
))
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)))
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)))
574 (setq end
(or (and (re-search-forward block-re lim-down t
)
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
)
582 ;; Is point in an inlinetask?
583 (when (and (featurep 'org-inlinetask
)
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))))
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
604 2. bullet with trailing whitespace,
605 3. bullet counter, if any,
607 5. description tag, if any,
608 6. position at item end.
610 Thus the following list, where numbers in parens are
615 5. [@5] sub-item 2 (34)
616 some other text belonging to first item (55)
618 + tag :: description (109)
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."
632 (let* ((case-fold-search t
)
633 (context (org-list-context))
634 (lim-up (car context
))
635 (lim-down (nth 1 context
))
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
644 ;; Return association at point.
646 (looking-at org-list-full-item-re
)
647 (let ((bullet (match-string-no-properties 1)))
651 (match-string-no-properties 2) ; counter
652 (match-string-no-properties 3) ; checkbox
654 (and (save-match-data (string-match "[-+*]" bullet
))
655 (match-string-no-properties 4)))))))
658 ;; Ensure list ends at the first blank line.
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.
668 (let ((ind (org-get-indentation)))
671 ;; At upward limit: if we ended at an item, store it,
672 ;; else dismiss useless data recorded above BEG-CELL.
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
)
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
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
)))
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
))
702 ((and inlinetask-re
(looking-at inlinetask-re
))
703 (org-inlinetask-goto-beginning)
705 ((looking-at "^[ \t]*$")
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
712 ;; - any other case may be an ending position for an
713 ;; hypothetical item above. Store it and proceed.
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.
728 (let ((ind (org-get-indentation)))
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
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
)
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]*$")
751 ;; Ind is lesser or equal than BEG-CELL's. The list is
752 ;; over: store point as an ending position and jump to
754 ((<= ind
(cdr beg-cell
))
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
))
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
)
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
782 This function modifies STRUCT."
783 (let ((endings end-list
))
786 (let ((pos (car elt
))
788 ;; Remove end candidates behind current item.
789 (while (or (<= (cdar endings
) pos
))
791 ;; Add end position to item assoc.
792 (let ((old-end (nthcdr 6 elt
))
793 (new-end (assoc-default ind endings
'<=)))
795 (setcar old-end new-end
)
796 (setcdr elt
(append (cdr elt
) (list new-end
)))))))
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
)))
804 (let ((prev (car (rassq (car e
) item-end-alist
))))
805 (cons (car e
) prev
)))
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
)))
814 (mapcar (lambda (item)
815 (let ((pos (car item
))
817 (prev-ind (caar ind-to-ori
)))
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.
827 (or (member (assq ind ind-to-ori
) ind-to-ori
)
831 (when (< (car e
) ind
)
832 (throw 'exit
(member e ind-to-ori
))))
835 (cons pos
(cdar ind-to-ori
)))
836 ;; A sub-list starts. Every item at IND will
837 ;; have previous item as its parent.
839 (let ((origin (nth 1 prev-pos
)))
840 (push (cons ind origin
) ind-to-ori
)
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
))))))
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."
903 (goto-char (org-list-get-item-end item struct
))
904 (skip-chars-backward " \r\t\n")
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
)))
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
)))
947 (if (< pos item-end
) (push pos subtree
) (throw 'exit nil
))))
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
)
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'."
969 (while (setq child
(car (rassq item parents
)))
970 (setq parents
(cdr (member (assq child parents
) parents
)))
974 (defun org-list-get-top-point (struct)
975 "Return point at beginning of list.
976 STRUCT is the list structure."
979 (defun org-list-get-bottom-point (struct)
980 "Return point at bottom of list.
981 STRUCT is the list structure."
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
))
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
))
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
)))
1021 ((string-match "[[:alnum:]]" (org-list-get-bullet first struct
)) 'ordered
)
1022 ((org-list-get-tag first struct
) 'descriptive
)
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
1034 (let ((get-relative-number
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
)))
1044 (if (not counter
) (1+ seq
)
1046 ((string-match "[A-Za-z]" counter
)
1047 (+ (- (string-to-char (upcase (match-string 0 counter
))) 64)
1049 ((string-match "[0-9]+" counter
)
1050 (+ (string-to-number (match-string 0 counter
)) seq
))
1052 ;; Cons each parent relative number into return value (OUT).
1053 (let ((out (list (funcall get-relative-number item struct prevs
)))
1055 (while (setq parent
(org-list-get-parent parent struct parents
))
1056 (push (funcall get-relative-number parent struct prevs
) out
))
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'."
1069 (let ((origin (point)))
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
))
1075 ;; 2. Match in valid context: return point. Else, continue
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'."
1102 (let ((spaces (if (and org-list-two-spaces-after-bullet-regexp
1104 org-list-two-spaces-after-bullet-regexp bullet
))
1107 (if (string-match "\\S-+\\([ \t]*\\)" bullet
)
1108 (replace-match spaces nil nil bullet
1)
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
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."
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.
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
)))
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.
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.
1162 (let ((pos (car e
)))
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
))))
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
))))))
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
1185 (dolist (ov (car overlays
))
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.
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."
1208 (let ((item (point))
1210 (cdr (assq 'plain-list-item org-blank-before-new-entry
)))
1215 ;; Count blank lines above beginning of line.
1217 (count-lines (goto-char (point-at-bol))
1218 (progn (skip-chars-backward " \r\t\n")
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
)))
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
)))
1242 ;; Are there blank lines inside the list so far?
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.
1248 "^[ \t]*$" (org-list-get-item-end-before-blank item struct
) t
))
1250 ;; Default choice: no blank line.
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
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
))
1275 (looking-at org-list-full-item-re
)
1278 ((not (match-beginning 4)) (match-end 0))
1279 ;; Ignore tag in a non-descriptive list.
1280 ((save-match-data (string-match "[.)]" (match-string 1)))
1281 (match-beginning 4))
1283 (goto-char (match-end 4))
1284 (skip-chars-forward " \t")
1286 (split-line-p (org-get-alist-option org-M-RET-may-split-line
'item
))
1287 (blank-nb (org-list-separating-blank-lines-number
1289 ;; 2. Build the new item to be created. Concatenate same
1290 ;; bullet as item, checkbox, text AFTER-BULLET if
1291 ;; provided, and text cut from point to end of item
1292 ;; (TEXT-CUT) to form item's BODY. TEXT-CUT depends on
1293 ;; BEFOREP and SPLIT-LINE-P. The difference of size
1294 ;; between what was cut and what was inserted in buffer
1295 ;; is stored in SIZE-OFFSET.
1296 (ind (org-list-get-ind item struct
))
1297 (ind-size (if indent-tabs-mode
1298 (+ (/ ind tab-width
) (mod ind tab-width
))
1300 (bullet (org-list-bullet-string (org-list-get-bullet item struct
)))
1301 (box (when checkbox
"[ ]"))
1303 (and (not beforep
) split-line-p
1306 ;; If POS is greater than ITEM-END, then point is
1307 ;; in some white lines after the end of the list.
1308 ;; Those must be removed, or they will be left,
1309 ;; stacking up after the list.
1310 (when (< item-end pos
)
1311 (delete-region (1- item-end
) (point-at-eol)))
1312 (skip-chars-backward " \r\t\n")
1314 (delete-and-extract-region pos item-end-no-blank
))))
1315 (body (concat bullet
(when box
(concat box
" ")) after-bullet
1317 (if (string-match "\\`[ \t]+" text-cut
)
1318 (replace-match "" t t text-cut
)
1320 (item-sep (make-string (1+ blank-nb
) ?
\n))
1321 (item-size (+ ind-size
(length body
) (length item-sep
)))
1322 (size-offset (- item-size
(length text-cut
))))
1323 ;; 4. Insert effectively item into buffer.
1325 (org-indent-to-column ind
)
1326 (insert body item-sep
)
1327 ;; 5. Add new item to STRUCT.
1329 (let ((p (car e
)) (end (nth 6 e
)))
1331 ;; Before inserted item, positions don't change but
1332 ;; an item ending after insertion has its end shifted
1335 (when (> end item
) (setcar (nthcdr 6 e
) (+ end size-offset
))))
1336 ;; Trivial cases where current item isn't split in
1337 ;; two. Just shift every item after new one by
1339 ((or beforep
(not split-line-p
))
1340 (setcar e
(+ p item-size
))
1341 (setcar (nthcdr 6 e
) (+ end item-size
)))
1342 ;; Item is split in two: elements before POS are just
1343 ;; shifted by ITEM-SIZE. In the case item would end
1344 ;; after split POS, ending is only shifted by
1347 (setcar e
(+ p item-size
))
1349 (setcar (nthcdr 6 e
) (+ end item-size
))
1350 (setcar (nthcdr 6 e
) (+ end size-offset
))))
1351 ;; Elements after POS are moved into new item.
1352 ;; Length of ITEM-SEP has to be removed as ITEM-SEP
1353 ;; doesn't appear in buffer yet.
1355 (setcar e
(+ p size-offset
(- item pos
(length item-sep
))))
1356 (if (= end item-end
)
1357 (setcar (nthcdr 6 e
) (+ item item-size
))
1358 (setcar (nthcdr 6 e
)
1360 (- item pos
(length item-sep
))))))
1361 ;; Elements at ITEM-END or after are only shifted by
1363 (t (setcar e
(+ p size-offset
))
1364 (setcar (nthcdr 6 e
) (+ end size-offset
))))))
1366 (push (list item ind bullet nil box nil
(+ item item-size
)) struct
)
1367 (setq struct
(sort struct
(lambda (e1 e2
) (< (car e1
) (car e2
)))))
1368 ;; 6. If not BEFOREP, new item must appear after ITEM, so
1369 ;; exchange ITEM with the next item in list. Position cursor
1370 ;; after bullet, counter, checkbox, and label.
1373 (setq struct
(org-list-swap-items item
(+ item item-size
) struct
))
1374 (goto-char (org-list-get-next-item
1375 item struct
(org-list-prevs-alist struct
))))
1378 (defun org-list-delete-item (item struct
)
1379 "Remove ITEM from the list and return the new structure.
1381 STRUCT is the list structure."
1382 (let* ((end (org-list-get-item-end item struct
))
1383 (beg (if (= (org-list-get-bottom-point struct
) end
)
1384 ;; If ITEM ends with the list, delete blank lines
1388 (skip-chars-backward " \r\t\n")
1389 (min (1+ (point-at-eol)) (point-max)))
1391 ;; Remove item from buffer.
1392 (delete-region beg end
)
1393 ;; Remove item from structure and shift others items accordingly.
1394 ;; Don't forget to shift also ending position when appropriate.
1395 (let ((size (- end beg
)))
1396 (delq nil
(mapcar (lambda (e)
1397 (let ((pos (car e
)))
1400 (let ((end-e (nth 6 e
)))
1404 (append (butlast e
) (list beg
)))
1406 (append (butlast e
) (list (- end-e size
)))))))
1410 (append (butlast (cdr e
))
1411 (list (- (nth 6 e
) size
))))))))
1414 (defun org-list-send-item (item dest struct
)
1415 "Send ITEM to destination DEST.
1417 STRUCT is the list structure.
1419 DEST can have various values.
1421 If DEST is a buffer position, the function will assume it points
1422 to another item in the same list as ITEM, and will move the
1423 latter just before the former.
1425 If DEST is `begin' (respectively `end'), ITEM will be moved at
1426 the beginning (respectively end) of the list it belongs to.
1428 If DEST is a string like \"N\", where N is an integer, ITEM will
1429 be moved at the Nth position in the list.
1431 If DEST is `kill', ITEM will be deleted and its body will be
1432 added to the kill-ring.
1434 If DEST is `delete', ITEM will be deleted.
1436 Visibility of item is preserved.
1438 This function returns, destructively, the new list structure."
1439 (let* ((prevs (org-list-prevs-alist struct
))
1440 (item-end (org-list-get-item-end item struct
))
1441 ;; Grab full item body minus its bullet.
1448 (regexp-quote (org-list-get-bullet item struct
))))
1451 ;; Change DEST into a buffer position. A trick is needed
1452 ;; when ITEM is meant to be sent at the end of the list.
1453 ;; Indeed, by setting locally `org-M-RET-may-split-line' to
1454 ;; nil and insertion point (INS-POINT) to the first line's
1455 ;; end of the last item, we ensure the new item will be
1456 ;; inserted after the last item, and not after any of its
1457 ;; hypothetical sub-items.
1459 ((or (eq dest
'kill
) (eq dest
'delete
)))
1461 (setq dest
(org-list-get-list-begin item struct prevs
)))
1463 (setq dest
(org-list-get-list-end item struct prevs
))
1465 (goto-char (org-list-get-last-item item struct prevs
))
1467 ((string-match "\\`[0-9]+\\'" dest
)
1468 (let* ((all (org-list-get-all-items item struct prevs
))
1470 (index (mod (string-to-number dest
) len
)))
1471 (if (not (zerop index
))
1472 (setq dest
(nth (1- index
) all
))
1473 ;; Send ITEM at the end of the list.
1474 (setq dest
(org-list-get-list-end item struct prevs
))
1477 (org-list-get-last-item item struct prevs
))
1480 (org-M-RET-may-split-line nil
)
1481 ;; Store inner overlays (to preserve visibility).
1482 (overlays (org-remove-if (lambda (o) (or (< (overlay-start o
) item
)
1483 (> (overlay-end o
) item
)))
1484 (overlays-in item item-end
))))
1486 ((eq dest
'delete
) (org-list-delete-item item struct
))
1489 (org-list-delete-item item struct
))
1490 ((and (integerp dest
) (/= item ins-point
))
1491 (setq item
(copy-marker item
))
1492 (setq struct
(org-list-insert-item ins-point struct prevs nil body
))
1493 ;; 1. Structure returned by `org-list-insert-item' may not be
1494 ;; accurate, as it cannot see sub-items included in BODY.
1495 ;; Thus, first compute the real structure so far.
1497 (cons (marker-position item
)
1498 (org-list-get-subtree (marker-position item
) struct
)))
1499 (new-end (org-list-get-item-end (point) struct
))
1500 (old-end (org-list-get-item-end (marker-position item
) struct
))
1502 (shift (- (point) item
)))
1503 ;; 1.1. Remove the item just created in structure.
1504 (setq struct
(delete (assq new-item struct
) struct
))
1505 ;; 1.2. Copy ITEM and any of its sub-items at NEW-ITEM.
1510 (let* ((cell (assq e struct
))
1514 (append (butlast (cdr cell
))
1515 (list (if (= end old-end
)
1519 #'car-less-than-car
)))
1520 ;; 2. Restore inner overlays.
1521 (dolist (o overlays
)
1523 (+ (overlay-start o
) (- (point) item
))
1524 (+ (overlay-end o
) (- (point) item
))))
1525 ;; 3. Eventually delete extra copy of the item and clean marker.
1526 (prog1 (org-list-delete-item (marker-position item
) struct
)
1527 (move-marker item nil
)))
1530 (defun org-list-struct-outdent (start end struct parents
)
1531 "Outdent items between positions START and END.
1533 STRUCT is the list structure. PARENTS is the alist of items'
1534 parents, as returned by `org-list-parents-alist'.
1536 START is included, END excluded."
1539 (let* ((item (car cell
))
1540 (parent (cdr cell
)))
1542 ;; Item not yet in zone: keep association.
1543 ((< item start
) cell
)
1544 ;; Item out of zone: follow associations in ACC.
1546 (let ((convert (and parent
(assq parent acc
))))
1547 (if convert
(cons item
(cdr convert
)) cell
)))
1548 ;; Item has no parent: error
1550 (error "Cannot outdent top-level items"))
1551 ;; Parent is outdented: keep association.
1553 (push (cons parent item
) acc
) cell
)
1555 ;; Parent isn't outdented: reparent to grand-parent.
1556 (let ((grand-parent (org-list-get-parent
1557 parent struct parents
)))
1558 (push (cons parent item
) acc
)
1559 (cons item grand-parent
))))))))
1560 (mapcar out parents
)))
1562 (defun org-list-struct-indent (start end struct parents prevs
)
1563 "Indent items between positions START and END.
1565 STRUCT is the list structure. PARENTS is the alist of parents
1566 and PREVS is the alist of previous items, returned by,
1567 respectively, `org-list-parents-alist' and
1568 `org-list-prevs-alist'.
1570 START is included and END excluded.
1572 STRUCT may be modified if `org-list-demote-modify-bullet' matches
1573 bullets between START and END."
1575 (set-assoc (lambda (cell) (push cell acc
) cell
))
1576 (change-bullet-maybe
1581 ;; Normalize ordered bullets.
1582 (let ((bul (org-trim
1583 (org-list-get-bullet item struct
))))
1584 (cond ((string-match "[A-Z]\\." bul
) "A.")
1585 ((string-match "[A-Z])" bul
) "A)")
1586 ((string-match "[a-z]\\." bul
) "a.")
1587 ((string-match "[a-z])" bul
) "a)")
1588 ((string-match "[0-9]\\." bul
) "1.")
1589 ((string-match "[0-9])" bul
) "1)")
1591 org-list-demote-modify-bullet
))))
1592 (when new-bul-p
(org-list-set-bullet item struct new-bul-p
))))))
1595 (let* ((item (car cell
))
1596 (parent (cdr cell
)))
1598 ;; Item not yet in zone: keep association.
1599 ((< item start
) cell
)
1601 ;; Item out of zone: follow associations in ACC.
1602 (let ((convert (assq parent acc
)))
1603 (if convert
(cons item
(cdr convert
)) cell
)))
1605 ;; Item is in zone...
1606 (let ((prev (org-list-get-prev-item item struct prevs
)))
1607 ;; Check if bullet needs to be changed.
1608 (funcall change-bullet-maybe item
)
1610 ;; First item indented but not parent: error
1611 ((and (not prev
) (< parent start
))
1612 (error "Cannot indent the first item of a list"))
1613 ;; First item and parent indented: keep same
1615 ((not prev
) (funcall set-assoc cell
))
1616 ;; Previous item not indented: reparent to it.
1617 ((< prev start
) (funcall set-assoc
(cons item prev
)))
1618 ;; Previous item indented: reparent like it.
1621 (cons item
(cdr (assq prev acc
)))))))))))))
1622 (mapcar ind parents
)))
1626 ;;; Repairing structures
1628 (defun org-list-use-alpha-bul-p (first struct prevs
)
1629 "Non-nil if list starting at FIRST can have alphabetical bullets.
1631 STRUCT is list structure. PREVS is the alist of previous items,
1632 as returned by `org-list-prevs-alist'."
1633 (and org-list-allow-alphabetical
1635 (let ((item first
) (ascii 64) (case-fold-search nil
))
1636 ;; Pretend that bullets are uppercase and check if alphabet
1637 ;; is sufficient, taking counters into account.
1639 (let ((bul (org-list-get-bullet item struct
))
1640 (count (org-list-get-counter item struct
)))
1641 ;; Virtually determine current bullet
1642 (if (and count
(string-match "[a-zA-Z]" count
))
1643 ;; Counters are not case-sensitive.
1644 (setq ascii
(string-to-char (upcase count
)))
1645 (setq ascii
(1+ ascii
)))
1646 ;; Test if bullet would be over z or Z.
1649 (setq item
(org-list-get-next-item item struct prevs
)))))
1650 ;; All items checked. All good.
1653 (defun org-list-inc-bullet-maybe (bullet)
1654 "Increment BULLET if applicable."
1655 (let ((case-fold-search nil
))
1657 ;; Num bullet: increment it.
1658 ((string-match "[0-9]+" bullet
)
1660 (number-to-string (1+ (string-to-number (match-string 0 bullet
))))
1662 ;; Alpha bullet: increment it.
1663 ((string-match "[A-Za-z]" bullet
)
1665 (char-to-string (1+ (string-to-char (match-string 0 bullet
))))
1667 ;; Unordered bullet: leave it.
1670 (defun org-list-struct-fix-bul (struct prevs
)
1671 "Verify and correct bullets in STRUCT.
1672 PREVS is the alist of previous items, as returned by
1673 `org-list-prevs-alist'.
1675 This function modifies STRUCT."
1676 (let ((case-fold-search nil
)
1679 ;; Set bullet of ITEM in STRUCT, depending on the type of
1680 ;; first item of the list, the previous bullet and counter
1683 (let* ((prev (org-list-get-prev-item item struct prevs
))
1684 (prev-bul (and prev
(org-list-get-bullet prev struct
)))
1685 (counter (org-list-get-counter item struct
))
1686 (bullet (org-list-get-bullet item struct
))
1687 (alphap (and (not prev
)
1688 (org-list-use-alpha-bul-p item struct prevs
))))
1689 (org-list-set-bullet
1691 (org-list-bullet-string
1693 ;; Alpha counter in alpha list: use counter.
1695 (string-match "[a-zA-Z]" counter
)
1696 (string-match "[a-zA-Z]" prev-bul
))
1697 ;; Use cond to be sure `string-match' is used in
1701 ((string-match "[a-z]" prev-bul
) (downcase counter
))
1702 ((string-match "[A-Z]" prev-bul
) (upcase counter
)))))
1703 (replace-match real-count nil nil prev-bul
)))
1704 ;; Num counter in a num list: use counter.
1706 (string-match "[0-9]+" counter
)
1707 (string-match "[0-9]+" prev-bul
))
1708 (replace-match counter nil nil prev-bul
))
1709 ;; No counter: increase, if needed, previous bullet.
1711 (org-list-inc-bullet-maybe (org-list-get-bullet prev struct
)))
1712 ;; Alpha counter at first item: use counter.
1713 ((and counter
(org-list-use-alpha-bul-p item struct prevs
)
1714 (string-match "[A-Za-z]" counter
)
1715 (string-match "[A-Za-z]" bullet
))
1718 ((string-match "[a-z]" bullet
) (downcase counter
))
1719 ((string-match "[A-Z]" bullet
) (upcase counter
)))))
1720 (replace-match real-count nil nil bullet
)))
1721 ;; Num counter at first item: use counter.
1723 (string-match "[0-9]+" counter
)
1724 (string-match "[0-9]+" bullet
))
1725 (replace-match counter nil nil bullet
))
1726 ;; First bullet is alpha uppercase: use "A".
1727 ((and alphap
(string-match "[A-Z]" bullet
))
1728 (replace-match "A" nil nil bullet
))
1729 ;; First bullet is alpha lowercase: use "a".
1730 ((and alphap
(string-match "[a-z]" bullet
))
1731 (replace-match "a" nil nil bullet
))
1732 ;; First bullet is num: use "1".
1733 ((string-match "\\([0-9]+\\|[A-Za-z]\\)" bullet
)
1734 (replace-match "1" nil nil bullet
))
1735 ;; Not an ordered list: keep bullet.
1737 (mapc fix-bul
(mapcar 'car struct
))))
1739 (defun org-list-struct-fix-ind (struct parents
&optional bullet-size
)
1740 "Verify and correct indentation in STRUCT.
1742 PARENTS is the alist of parents, as returned by
1743 `org-list-parents-alist'.
1745 If numeric optional argument BULLET-SIZE is set, assume all
1746 bullets in list have this length to determine new indentation.
1748 This function modifies STRUCT."
1749 (let* ((ancestor (org-list-get-top-point struct
))
1750 (top-ind (org-list-get-ind ancestor struct
))
1753 (let ((parent (org-list-get-parent item struct parents
)))
1755 ;; Indent like parent + length of parent's bullet +
1758 item struct
(+ (or bullet-size
1760 (org-list-get-bullet parent struct
)))
1761 (org-list-get-ind parent struct
)
1762 org-list-indent-offset
))
1763 ;; If no parent, indent like top-point.
1764 (org-list-set-ind item struct top-ind
))))))
1765 (mapc new-ind
(mapcar 'car
(cdr struct
)))))
1767 (defun org-list-struct-fix-box (struct parents prevs
&optional ordered
)
1768 "Verify and correct checkboxes in STRUCT.
1770 PARENTS is the alist of parents and PREVS is the alist of
1771 previous items, as returned by, respectively,
1772 `org-list-parents-alist' and `org-list-prevs-alist'.
1774 If ORDERED is non-nil, a checkbox can only be checked when every
1775 checkbox before it is checked too. If there was an attempt to
1776 break this rule, the function will return the blocking item. In
1777 all others cases, the return value will be nil.
1779 This function modifies STRUCT."
1780 (let ((all-items (mapcar 'car struct
))
1785 (mapcar (lambda (child)
1786 (org-list-get-checkbox child struct
))
1787 (org-list-get-children item struct parents
))))
1788 (org-list-set-checkbox
1791 ((and (member "[ ]" box-list
) (member "[X]" box-list
)) "[-]")
1792 ((member "[-]" box-list
) "[-]")
1793 ((member "[X]" box-list
) "[X]")
1794 ((member "[ ]" box-list
) "[ ]")
1795 ;; Parent has no boxed child: leave box as-is.
1796 (t (org-list-get-checkbox item struct
))))))))
1798 ;; 1. List all parents with a checkbox.
1801 (let* ((parent (org-list-get-parent e struct parents
))
1802 (parent-box-p (org-list-get-checkbox parent struct
)))
1803 (when (and parent-box-p
(not (memq parent parent-list
)))
1804 (push parent parent-list
))))
1806 ;; 2. Sort those parents by decreasing indentation.
1807 (setq parent-list
(sort parent-list
1809 (> (org-list-get-ind e1 struct
)
1810 (org-list-get-ind e2 struct
)))))
1811 ;; 3. For each parent, get all children's checkboxes to determine
1812 ;; and set its checkbox accordingly.
1813 (mapc set-parent-box parent-list
)
1814 ;; 4. If ORDERED is set, see if we need to uncheck some boxes.
1817 (mapcar (lambda (e) (org-list-get-checkbox e struct
)) all-items
))
1818 (after-unchecked (member "[ ]" box-list
)))
1819 ;; There are boxes checked after an unchecked one: fix that.
1820 (when (member "[X]" after-unchecked
)
1821 (let ((index (- (length struct
) (length after-unchecked
))))
1823 (when (org-list-get-checkbox e struct
)
1824 (org-list-set-checkbox e struct
"[ ]")))
1825 (nthcdr index all-items
))
1826 ;; Verify once again the structure, without ORDERED.
1827 (org-list-struct-fix-box struct parents prevs nil
)
1828 ;; Return blocking item.
1829 (nth index all-items
)))))))
1831 (defun org-list-struct-fix-item-end (struct)
1832 "Verify and correct each item end position in STRUCT.
1834 This function modifies STRUCT."
1835 (let (end-list acc-end
)
1837 (let* ((pos (car e
))
1838 (ind-pos (org-list-get-ind pos struct
))
1839 (end-pos (org-list-get-item-end pos struct
)))
1840 (unless (assq end-pos struct
)
1841 ;; To determine real ind of an ending position that is
1842 ;; not at an item, we have to find the item it belongs
1843 ;; to: it is the last item (ITEM-UP), whose ending is
1844 ;; further than the position we're interested in.
1845 (let ((item-up (assoc-default end-pos acc-end
'>)))
1847 ;; Else part is for the bottom point.
1848 (if item-up
(+ (org-list-get-ind item-up struct
) 2) 0)
1851 (push (cons ind-pos pos
) end-list
)
1852 (push (cons end-pos pos
) acc-end
)))
1854 (setq end-list
(sort end-list
(lambda (e1 e2
) (< (cdr e1
) (cdr e2
)))))
1855 (org-list-struct-assoc-end struct end-list
)))
1857 (defun org-list-struct-apply-struct (struct old-struct
)
1858 "Apply set difference between STRUCT and OLD-STRUCT to the buffer.
1860 OLD-STRUCT is the structure before any modifications, and STRUCT
1861 the structure to be applied. The function will only modify parts
1862 of the list which have changed.
1864 Initial position of cursor is restored after the changes."
1865 (let* ((origin (point-marker))
1866 (inlinetask-re (and (featurep 'org-inlinetask
)
1867 (org-inlinetask-outline-regexp)))
1868 (item-re (org-item-re))
1871 ;; Shift the indentation between END and BEG by DELTA.
1872 ;; Start from the line before END.
1873 (lambda (end beg delta
)
1875 (skip-chars-backward " \r\t\n")
1877 (while (or (> (point) beg
)
1878 (and (= (point) beg
)
1879 (not (looking-at item-re
))))
1881 ;; Skip inline tasks.
1882 ((and inlinetask-re
(looking-at inlinetask-re
))
1883 (org-inlinetask-goto-beginning))
1884 ;; Shift only non-empty lines.
1885 ((org-looking-at-p "^[ \t]*\\S-")
1886 (org-indent-line-to (+ (org-get-indentation) delta
))))
1887 (forward-line -
1)))))
1890 ;; Replace ITEM first line elements with new elements from
1891 ;; STRUCT, if appropriate.
1894 (let* ((new-ind (org-list-get-ind item struct
))
1895 (old-ind (org-get-indentation))
1896 (new-bul (org-list-bullet-string
1897 (org-list-get-bullet item struct
)))
1898 (old-bul (org-list-get-bullet item old-struct
))
1899 (new-box (org-list-get-checkbox item struct
)))
1900 (looking-at org-list-full-item-re
)
1901 ;; a. Replace bullet
1902 (unless (equal old-bul new-bul
)
1903 (replace-match new-bul nil nil nil
1))
1904 ;; b. Replace checkbox.
1906 ((equal (match-string 3) new-box
))
1907 ((and (match-string 3) new-box
)
1908 (replace-match new-box nil nil nil
3))
1910 (looking-at ".*?\\([ \t]*\\[[ X-]\\]\\)")
1911 (replace-match "" nil nil nil
1))
1912 (t (let ((counterp (match-end 2)))
1913 (goto-char (if counterp
(1+ counterp
) (match-end 1)))
1914 (insert (concat new-box
(unless counterp
" "))))))
1915 ;; c. Indent item to appropriate column.
1916 (unless (= new-ind old-ind
)
1917 (delete-region (goto-char (point-at-bol))
1918 (progn (skip-chars-forward " \t") (point)))
1919 (indent-to new-ind
)))))))
1920 ;; 1. First get list of items and position endings. We maintain
1921 ;; two alists: ITM-SHIFT, determining indentation shift needed
1922 ;; at item, and END-LIST, a pseudo-alist where key is ending
1923 ;; position and value point.
1924 (let (end-list acc-end itm-shift all-ends sliced-struct
)
1925 (dolist (e old-struct
)
1926 (let* ((pos (car e
))
1927 (ind-pos (org-list-get-ind pos struct
))
1928 (ind-old (org-list-get-ind pos old-struct
))
1929 (bul-pos (org-list-get-bullet pos struct
))
1930 (bul-old (org-list-get-bullet pos old-struct
))
1931 (ind-shift (- (+ ind-pos
(length bul-pos
))
1932 (+ ind-old
(length bul-old
))))
1933 (end-pos (org-list-get-item-end pos old-struct
)))
1934 (push (cons pos ind-shift
) itm-shift
)
1935 (unless (assq end-pos old-struct
)
1936 ;; To determine real ind of an ending position that
1937 ;; is not at an item, we have to find the item it
1938 ;; belongs to: it is the last item (ITEM-UP), whose
1939 ;; ending is further than the position we're
1941 (let ((item-up (assoc-default end-pos acc-end
#'>)))
1942 (push (cons end-pos item-up
) end-list
)))
1943 (push (cons end-pos pos
) acc-end
)))
1944 ;; 2. Slice the items into parts that should be shifted by the
1945 ;; same amount of indentation. Each slice follow the pattern
1946 ;; (END BEG DELTA). Slices are returned in reverse order.
1947 (setq all-ends
(sort (append (mapcar #'car itm-shift
)
1948 (org-uniquify (mapcar #'car end-list
)))
1950 acc-end
(nreverse acc-end
))
1951 (while (cdr all-ends
)
1952 (let* ((up (pop all-ends
))
1953 (down (car all-ends
))
1954 (itemp (assq up struct
))
1956 (if itemp
(cdr (assq up itm-shift
))
1957 ;; If we're not at an item, there's a child of the
1958 ;; item point belongs to above. Make sure the less
1959 ;; indented line in this slice has the same column
1961 (let* ((child (cdr (assq up acc-end
)))
1962 (ind (org-list-get-ind child struct
))
1963 (min-ind most-positive-fixnum
))
1966 (while (< (point) down
)
1967 ;; Ignore empty lines. Also ignore blocks and
1968 ;; drawers contents.
1969 (unless (org-looking-at-p "[ \t]*$")
1970 (setq min-ind
(min (org-get-indentation) min-ind
))
1972 ((and (looking-at "#\\+BEGIN\\(:\\|_\\S-+\\)")
1974 (format "^[ \t]*#\\+END%s[ \t]*$"
1977 ((and (looking-at org-drawer-regexp
)
1978 (re-search-forward "^[ \t]*:END:[ \t]*$"
1982 (push (list down up delta
) sliced-struct
)))
1983 ;; 3. Shift each slice in buffer, provided delta isn't 0, from
1984 ;; end to beginning. Take a special action when beginning is
1986 (dolist (e sliced-struct
)
1987 (unless (zerop (nth 2 e
)) (apply shift-body-ind e
))
1988 (let* ((beg (nth 1 e
))
1989 (cell (assq beg struct
)))
1990 (unless (or (not cell
) (equal cell
(assq beg old-struct
)))
1991 (funcall modify-item beg
)))))
1992 ;; 4. Go back to initial position and clean marker.
1994 (move-marker origin nil
)))
1996 (defun org-list-write-struct (struct parents
&optional old-struct
)
1997 "Correct bullets, checkboxes and indentation in list at point.
1999 STRUCT is the list structure. PARENTS is the alist of parents,
2000 as returned by `org-list-parents-alist'.
2002 When non-nil, optional argument OLD-STRUCT is the reference
2003 structure of the list. It should be provided whenever STRUCT
2004 doesn't correspond anymore to the real list in buffer."
2005 ;; Order of functions matters here: checkboxes and endings need
2006 ;; correct indentation to be set, and indentation needs correct
2009 ;; 0. Save a copy of structure before modifications
2010 (let ((old-struct (or old-struct
(copy-tree struct
))))
2011 ;; 1. Set a temporary, but coherent with PARENTS, indentation in
2012 ;; order to get items endings and bullets properly
2013 (org-list-struct-fix-ind struct parents
2)
2014 ;; 2. Fix each item end to get correct prevs alist.
2015 (org-list-struct-fix-item-end struct
)
2016 ;; 3. Get bullets right.
2017 (let ((prevs (org-list-prevs-alist struct
)))
2018 (org-list-struct-fix-bul struct prevs
)
2019 ;; 4. Now get real indentation.
2020 (org-list-struct-fix-ind struct parents
)
2021 ;; 5. Eventually fix checkboxes.
2022 (org-list-struct-fix-box struct parents prevs
))
2023 ;; 6. Apply structure modifications to buffer.
2024 (org-list-struct-apply-struct struct old-struct
)))
2030 (defun org-apply-on-list (function init-value
&rest args
)
2031 "Call FUNCTION on each item of the list at point.
2032 FUNCTION must be called with at least one argument: INIT-VALUE,
2033 that will contain the value returned by the function at the
2034 previous item, plus ARGS extra arguments.
2036 FUNCTION is applied on items in reverse order.
2038 As an example, \(org-apply-on-list \(lambda \(result\) \(1+ result\)\) 0\)
2039 will return the number of items in the current list.
2041 Sublists of the list are skipped. Cursor is always at the
2042 beginning of the item."
2043 (let* ((struct (org-list-struct))
2044 (prevs (org-list-prevs-alist struct
))
2045 (item (copy-marker (point-at-bol)))
2046 (all (org-list-get-all-items (marker-position item
) struct prevs
))
2050 (setq value
(apply function value args
)))
2053 (move-marker item nil
)
2056 (defun org-list-set-item-visibility (item struct view
)
2057 "Set visibility of ITEM in STRUCT to VIEW.
2059 Possible values are: `folded', `children' or `subtree'. See
2060 `org-cycle' for more information."
2063 (let ((item-end (org-list-get-item-end-before-blank item struct
)))
2065 (outline-flag-region (save-excursion (goto-char item
) (point-at-eol))
2067 ((eq view
'children
)
2068 ;; First show everything.
2069 (org-list-set-item-visibility item struct
'subtree
)
2070 ;; Then fold every child.
2071 (let* ((parents (org-list-parents-alist struct
))
2072 (children (org-list-get-children item struct parents
)))
2074 (org-list-set-item-visibility e struct
'folded
))
2078 (let ((item-end (org-list-get-item-end item struct
)))
2079 (outline-flag-region item item-end nil
)))))
2081 (defun org-list-item-body-column (item)
2082 "Return column at which body of ITEM should start."
2085 (looking-at "[ \t]*\\(\\S-+\\)\\(.*[ \t]+::\\)?\\([ \t]+\\|$\\)")
2086 (if (match-beginning 2)
2087 (let ((start (1+ (match-end 2)))
2088 (ind (org-get-indentation)))
2089 (if (> start
(+ ind org-description-max-indent
)) (+ ind
5) start
))
2090 (+ (progn (goto-char (match-end 1)) (current-column))
2091 (if (and org-list-two-spaces-after-bullet-regexp
2092 (org-string-match-p org-list-two-spaces-after-bullet-regexp
2099 ;;; Interactive functions
2101 (defalias 'org-list-get-item-begin
'org-in-item-p
)
2103 (defun org-beginning-of-item ()
2104 "Go to the beginning of the current item.
2105 Throw an error when not in a list."
2107 (let ((begin (org-in-item-p)))
2108 (if begin
(goto-char begin
) (error "Not in an item"))))
2110 (defun org-beginning-of-item-list ()
2111 "Go to the beginning item of the current list or sublist.
2112 Throw an error when not in a list."
2114 (let ((begin (org-in-item-p)))
2116 (error "Not in an item")
2118 (let* ((struct (org-list-struct))
2119 (prevs (org-list-prevs-alist struct
)))
2120 (goto-char (org-list-get-list-begin begin struct prevs
))))))
2122 (defun org-end-of-item-list ()
2123 "Go to the end of the current list or sublist.
2124 Throw an error when not in a list."
2126 (let ((begin (org-in-item-p)))
2128 (error "Not in an item")
2130 (let* ((struct (org-list-struct))
2131 (prevs (org-list-prevs-alist struct
)))
2132 (goto-char (org-list-get-list-end begin struct prevs
))))))
2134 (defun org-end-of-item ()
2135 "Go to the end of the current item.
2136 Throw an error when not in a list."
2138 (let ((begin (org-in-item-p)))
2140 (error "Not in an item")
2142 (let ((struct (org-list-struct)))
2143 (goto-char (org-list-get-item-end begin struct
))))))
2145 (defun org-previous-item ()
2146 "Move to the beginning of the previous item.
2147 Throw an error when not in a list. Also throw an error when at
2148 first item, unless `org-list-use-circular-motion' is non-nil."
2150 (let ((item (org-in-item-p)))
2152 (error "Not in an item")
2154 (let* ((struct (org-list-struct))
2155 (prevs (org-list-prevs-alist struct
))
2156 (prevp (org-list-get-prev-item item struct prevs
)))
2158 (prevp (goto-char prevp
))
2159 (org-list-use-circular-motion
2160 (goto-char (org-list-get-last-item item struct prevs
)))
2161 (t (error "On first item")))))))
2163 (defun org-next-item ()
2164 "Move to the beginning of the next item.
2165 Throw an error when not in a list. Also throw an error when at
2166 last item, unless `org-list-use-circular-motion' is non-nil."
2168 (let ((item (org-in-item-p)))
2170 (error "Not in an item")
2172 (let* ((struct (org-list-struct))
2173 (prevs (org-list-prevs-alist struct
))
2174 (prevp (org-list-get-next-item item struct prevs
)))
2176 (prevp (goto-char prevp
))
2177 (org-list-use-circular-motion
2178 (goto-char (org-list-get-first-item item struct prevs
)))
2179 (t (error "On last item")))))))
2181 (defun org-move-item-down ()
2182 "Move the item at point down, i.e. swap with following item.
2183 Sub-items (items with larger indentation) are considered part of
2184 the item, so this really moves item trees."
2186 (unless (org-at-item-p) (error "Not at an item"))
2187 (let* ((col (current-column))
2188 (item (point-at-bol))
2189 (struct (org-list-struct))
2190 (prevs (org-list-prevs-alist struct
))
2191 (next-item (org-list-get-next-item (point-at-bol) struct prevs
)))
2192 (unless (or next-item org-list-use-circular-motion
)
2193 (user-error "Cannot move this item further down"))
2195 (setq struct
(org-list-send-item item
'begin struct
))
2196 (setq struct
(org-list-swap-items item next-item struct
))
2198 (org-list-get-next-item item struct
(org-list-prevs-alist struct
))))
2199 (org-list-write-struct struct
(org-list-parents-alist struct
))
2200 (org-move-to-column col
)))
2202 (defun org-move-item-up ()
2203 "Move the item at point up, i.e. swap with previous item.
2204 Sub-items (items with larger indentation) are considered part of
2205 the item, so this really moves item trees."
2207 (unless (org-at-item-p) (error "Not at an item"))
2208 (let* ((col (current-column))
2209 (item (point-at-bol))
2210 (struct (org-list-struct))
2211 (prevs (org-list-prevs-alist struct
))
2212 (prev-item (org-list-get-prev-item (point-at-bol) struct prevs
)))
2213 (unless (or prev-item org-list-use-circular-motion
)
2214 (user-error "Cannot move this item further up"))
2216 (setq struct
(org-list-send-item item
'end struct
))
2217 (setq struct
(org-list-swap-items prev-item item struct
)))
2218 (org-list-write-struct struct
(org-list-parents-alist struct
))
2219 (org-move-to-column col
)))
2221 (defun org-insert-item (&optional checkbox
)
2222 "Insert a new item at the current level.
2223 If cursor is before first character after bullet of the item, the
2224 new item will be created before the current one.
2226 If CHECKBOX is non-nil, add a checkbox next to the bullet.
2228 Return t when things worked, nil when we are not in an item, or
2230 (let ((itemp (org-in-item-p))
2232 ;; If cursor isn't is a list or if list is invisible, return nil.
2233 (unless (or (not itemp
)
2236 (outline-invisible-p)))
2239 (org-at-item-timer-p))
2240 ;; Timer list: delegate to `org-timer-item'.
2241 (progn (org-timer-item) t
)
2242 (let* ((struct (save-excursion (goto-char itemp
)
2244 (prevs (org-list-prevs-alist struct
))
2245 ;; If we're in a description list, ask for the new term.
2246 (desc (when (eq (org-list-get-list-type itemp struct prevs
)
2249 (setq struct
(org-list-insert-item pos struct prevs checkbox desc
))
2250 (org-list-write-struct struct
(org-list-parents-alist struct
))
2251 (when checkbox
(org-update-checkbox-count-maybe))
2252 (looking-at org-list-full-item-re
)
2253 (goto-char (if (and (match-beginning 4)
2255 (string-match "[.)]" (match-string 1))))
2258 (if desc
(backward-char 1))
2261 (defun org-list-repair ()
2262 "Fix indentation, bullets and checkboxes in the list at point."
2264 (unless (org-at-item-p) (error "This is not a list"))
2265 (let* ((struct (org-list-struct))
2266 (parents (org-list-parents-alist struct
)))
2267 (org-list-write-struct struct parents
)))
2269 (defun org-cycle-list-bullet (&optional which
)
2270 "Cycle through the different itemize/enumerate bullets.
2271 This cycle the entire list level through the sequence:
2273 `-' -> `+' -> `*' -> `1.' -> `1)'
2275 If WHICH is a valid string, use that as the new bullet. If WHICH
2276 is an integer, 0 means `-', 1 means `+' etc. If WHICH is
2277 `previous', cycle backwards."
2279 (unless (org-at-item-p) (error "Not at an item"))
2282 (let* ((struct (org-list-struct))
2283 (parents (org-list-parents-alist struct
))
2284 (prevs (org-list-prevs-alist struct
))
2285 (list-beg (org-list-get-first-item (point) struct prevs
))
2286 (bullet (org-list-get-bullet list-beg struct
))
2287 (alpha-p (org-list-use-alpha-bul-p list-beg struct prevs
))
2288 (case-fold-search nil
)
2290 ((string-match "[a-z]\\." bullet
) "a.")
2291 ((string-match "[a-z])" bullet
) "a)")
2292 ((string-match "[A-Z]\\." bullet
) "A.")
2293 ((string-match "[A-Z])" bullet
) "A)")
2294 ((string-match "\\." bullet
) "1.")
2295 ((string-match ")" bullet
) "1)")
2296 (t (org-trim bullet
))))
2297 ;; Compute list of possible bullets, depending on context.
2300 ;; *-bullets are not allowed at column 0.
2301 (unless (looking-at "\\S-") '("*"))
2302 ;; Description items cannot be numbered.
2303 (unless (or (eq org-plain-list-ordered-item-terminator ?\
))
2304 (org-at-item-description-p))
2306 (unless (or (eq org-plain-list-ordered-item-terminator ?.
)
2307 (org-at-item-description-p))
2309 (unless (or (not alpha-p
)
2310 (eq org-plain-list-ordered-item-terminator ?\
))
2311 (org-at-item-description-p))
2313 (unless (or (not alpha-p
)
2314 (eq org-plain-list-ordered-item-terminator ?.
)
2315 (org-at-item-description-p))
2317 (len (length bullet-list
))
2318 (item-index (- len
(length (member current bullet-list
))))
2319 (get-value (lambda (index) (nth (mod index len
) bullet-list
)))
2321 ((member which bullet-list
) which
)
2322 ((numberp which
) (funcall get-value which
))
2323 ((eq 'previous which
) (funcall get-value
(1- item-index
)))
2324 (t (funcall get-value
(1+ item-index
))))))
2325 ;; Use a short variation of `org-list-write-struct' as there's
2326 ;; no need to go through all the steps.
2327 (let ((old-struct (copy-tree struct
)))
2328 (org-list-set-bullet list-beg struct
(org-list-bullet-string new
))
2329 (org-list-struct-fix-bul struct prevs
)
2330 (org-list-struct-fix-ind struct parents
)
2331 (org-list-struct-apply-struct struct old-struct
)))))
2333 (defun org-toggle-checkbox (&optional toggle-presence
)
2334 "Toggle the checkbox in the current line.
2335 With prefix arg TOGGLE-PRESENCE, add or remove checkboxes. With
2336 double prefix, set checkbox to [-].
2338 When there is an active region, toggle status or presence of the
2339 first checkbox there, and make every item inside have the same
2340 status or presence, respectively.
2342 If the cursor is in a headline, apply this to all checkbox items
2343 in the text below the heading, taking as reference the first item
2344 in subtree, ignoring drawers."
2351 (keyword-re (concat "^[ \t]*\\<\\(" org-scheduled-string
2352 "\\|" org-deadline-string
2353 "\\|" org-closed-string
2354 "\\|" org-clock-string
"\\)"
2355 " *[[<]\\([^]>]+\\)[]>]"))
2356 (orderedp (org-entry-get nil
"ORDERED"))
2358 ;; In a region, start at first item in region.
2360 ((org-region-active-p)
2361 (let ((limit (region-end)))
2362 (goto-char (region-beginning))
2363 (if (org-list-search-forward (org-item-beginning-re) limit t
)
2364 (setq lim-up
(point-at-bol))
2365 (error "No item in region"))
2366 (setq lim-down
(copy-marker limit
))))
2368 ;; On an heading, start at first item after drawers and
2369 ;; time-stamps (scheduled, etc.).
2370 (let ((limit (save-excursion (outline-next-heading) (point))))
2372 (while (or (looking-at org-drawer-regexp
)
2373 (looking-at keyword-re
))
2374 (if (looking-at keyword-re
)
2376 (re-search-forward "^[ \t]*:END:" limit nil
)))
2377 (if (org-list-search-forward (org-item-beginning-re) limit t
)
2378 (setq lim-up
(point-at-bol))
2379 (error "No item in subtree"))
2380 (setq lim-down
(copy-marker limit
))))
2381 ;; Just one item: set SINGLEP flag.
2384 (setq lim-up
(point-at-bol)
2385 lim-down
(copy-marker (point-at-eol))))
2386 (t (error "Not at an item or heading, and no active region"))))
2387 ;; Determine the checkbox going to be applied to all items
2392 (let ((cbox (and (org-at-item-checkbox-p) (match-string 1))))
2394 ((equal toggle-presence
'(16)) "[-]")
2395 ((equal toggle-presence
'(4))
2396 (unless cbox
"[ ]"))
2397 ((equal "[X]" cbox
) "[ ]")
2399 ;; When an item is found within bounds, grab the full list at
2400 ;; point structure, then: (1) set check-box of all its items
2401 ;; within bounds to REF-CHECKBOX, (2) fix check-boxes of the
2402 ;; whole list, (3) move point after the list.
2404 (while (and (< (point) lim-down
)
2405 (org-list-search-forward (org-item-beginning-re)
2407 (let* ((struct (org-list-struct))
2408 (struct-copy (copy-tree struct
))
2409 (parents (org-list-parents-alist struct
))
2410 (prevs (org-list-prevs-alist struct
))
2411 (bottom (copy-marker (org-list-get-bottom-point struct
)))
2412 (items-to-toggle (org-remove-if
2413 (lambda (e) (or (< e lim-up
) (> e lim-down
)))
2414 (mapcar 'car struct
))))
2415 (mapc (lambda (e) (org-list-set-checkbox
2417 ;; If there is no box at item, leave as-is
2418 ;; unless function was called with C-u prefix.
2419 (let ((cur-box (org-list-get-checkbox e struct
)))
2420 (if (or cur-box
(equal toggle-presence
'(4)))
2424 (setq block-item
(org-list-struct-fix-box
2425 struct parents prevs orderedp
))
2426 ;; Report some problems due to ORDERED status of subtree.
2427 ;; If only one box was being checked, throw an error, else,
2428 ;; only signal problems.
2430 ((and singlep block-item
(> lim-up block-item
))
2432 "Checkbox blocked because of unchecked box at line %d"
2433 (org-current-line block-item
)))
2436 "Checkboxes were removed due to unchecked box at line %d"
2437 (org-current-line block-item
))))
2439 (move-marker bottom nil
)
2440 (org-list-struct-apply-struct struct struct-copy
)))
2441 (move-marker lim-down nil
)))
2442 (org-update-checkbox-count-maybe))
2444 (defun org-reset-checkbox-state-subtree ()
2445 "Reset all checkboxes in an entry subtree."
2447 (if (org-before-first-heading-p)
2448 (error "Not inside a tree")
2451 (org-narrow-to-subtree)
2453 (goto-char (point-min))
2454 (let ((end (point-max)))
2455 (while (< (point) end
)
2456 (when (org-at-item-checkbox-p)
2457 (replace-match "[ ]" t t nil
1))
2458 (beginning-of-line 2)))
2459 (org-update-checkbox-count-maybe 'all
)))))
2461 (defun org-update-checkbox-count (&optional all
)
2462 "Update the checkbox statistics in the current section.
2463 This will find all statistic cookies like [57%] and [6/12] and
2464 update them with the current numbers.
2466 With optional prefix argument ALL, do this for the whole buffer."
2469 (let ((cookie-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
2470 (box-re "^[ \t]*\\([-+*]\\|\\([0-9]+\\|[A-Za-z]\\)[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?\\(\\[[- X]\\]\\)")
2472 (or (not org-checkbox-hierarchical-statistics
)
2473 (string-match "\\<recursive\\>"
2474 (or (org-entry-get nil
"COOKIE_DATA") ""))))
2476 (cons (point-min) (point-max))
2477 (cons (or (ignore-errors (org-back-to-heading t
) (point))
2479 (save-excursion (outline-next-heading) (point)))))
2482 ;; Return number of checked boxes and boxes of all types
2483 ;; in all structures in STRUCTS. If RECURSIVEP is
2484 ;; non-nil, also count boxes in sub-lists. If ITEM is
2485 ;; nil, count across the whole structure, else count only
2486 ;; across subtree whose ancestor is ITEM.
2487 (lambda (item structs recursivep
)
2488 (let ((c-on 0) (c-all 0))
2491 (let* ((pre (org-list-prevs-alist s
))
2492 (par (org-list-parents-alist s
))
2495 ((and recursivep item
) (org-list-get-subtree item s
))
2496 (recursivep (mapcar 'car s
))
2497 (item (org-list-get-children item s par
))
2498 (t (org-list-get-all-items
2499 (org-list-get-top-point s
) s pre
))))
2500 (cookies (delq nil
(mapcar
2502 (org-list-get-checkbox e s
))
2504 (setq c-all
(+ (length cookies
) c-all
)
2505 c-on
(+ (org-count "[X]" cookies
) c-on
))))
2507 (cons c-on c-all
)))))
2509 cookies-list structs-bak box-num
)
2510 (goto-char (car bounds
))
2511 ;; 1. Build an alist for each cookie found within BOUNDS. The
2512 ;; key will be position at beginning of cookie and values
2513 ;; ending position, format of cookie, and a cell whose car is
2514 ;; number of checked boxes to report, and cdr total number of
2516 (while (re-search-forward cookie-re
(cdr bounds
) t
)
2521 (match-beginning 1) ; cookie start
2522 (match-end 1) ; cookie end
2523 (match-string 2) ; percent?
2525 ;; Cookie is at an heading, but specifically for todo,
2526 ;; not for checkboxes: skip it.
2527 ((and (org-at-heading-p)
2528 (string-match "\\<todo\\>"
2530 (or (org-entry-get nil
"COOKIE_DATA") ""))))
2532 ;; Cookie is at an heading, but all lists before next
2533 ;; heading already have been read. Use data collected
2534 ;; in STRUCTS-BAK. This should only happen when
2535 ;; heading has more than one cookie on it.
2536 ((and (org-at-heading-p)
2537 (<= (save-excursion (outline-next-heading) (point))
2539 (funcall count-boxes nil structs-bak recursivep
))
2540 ;; Cookie is at a fresh heading. Grab structure of
2541 ;; every list containing a checkbox between point and
2542 ;; next headline, and save them in STRUCTS-BAK.
2544 (setq backup-end
(save-excursion
2545 (outline-next-heading) (point))
2547 (while (org-list-search-forward box-re backup-end
'move
)
2548 (let* ((struct (org-list-struct))
2549 (bottom (org-list-get-bottom-point struct
)))
2550 (push struct structs-bak
)
2551 (goto-char bottom
)))
2552 (funcall count-boxes nil structs-bak recursivep
))
2553 ;; Cookie is at an item, and we already have list
2554 ;; structure stored in STRUCTS-BAK.
2555 ((and (org-at-item-p)
2556 (< (point-at-bol) backup-end
)
2557 ;; Only lists in no special context are stored.
2558 (not (nth 2 (org-list-context))))
2559 (funcall count-boxes
(point-at-bol) structs-bak recursivep
))
2560 ;; Cookie is at an item, but we need to compute list
2563 (let ((struct (org-list-struct)))
2564 (setq backup-end
(org-list-get-bottom-point struct
)
2565 structs-bak
(list struct
)))
2566 (funcall count-boxes
(point-at-bol) structs-bak recursivep
))
2567 ;; Else, cookie found is at a wrong place. Skip it.
2568 (t (throw 'skip nil
))))
2570 ;; 2. Apply alist to buffer, in reverse order so positions stay
2571 ;; unchanged after cookie modifications.
2572 (mapc (lambda (cookie)
2573 (let* ((beg (car cookie
))
2574 (end (nth 1 cookie
))
2575 (percentp (nth 2 cookie
))
2576 (checked (car (nth 3 cookie
)))
2577 (total (cdr (nth 3 cookie
)))
2579 (format "[%d%%]" (/ (* 100 checked
)
2581 (format "[%d/%d]" checked total
))))
2584 (delete-region (point) (+ (point) (- end beg
)))
2585 (when org-auto-align-tags
(org-fix-tags-on-the-fly))))
2588 (defun org-get-checkbox-statistics-face ()
2589 "Select the face for checkbox statistics.
2590 The face will be `org-done' when all relevant boxes are checked.
2591 Otherwise it will be `org-todo'."
2593 (if (equal (match-string 1) "100%")
2594 'org-checkbox-statistics-done
2595 'org-checkbox-statistics-todo
)
2596 (if (and (> (match-end 2) (match-beginning 2))
2597 (equal (match-string 2) (match-string 3)))
2598 'org-checkbox-statistics-done
2599 'org-checkbox-statistics-todo
)))
2601 (defun org-update-checkbox-count-maybe (&optional all
)
2602 "Update checkbox statistics unless turned off by user.
2603 With an optional argument ALL, update them in the whole buffer."
2604 (when (cdr (assq 'checkbox org-list-automatic-rules
))
2605 (org-update-checkbox-count all
))
2606 (run-hooks 'org-checkbox-statistics-hook
))
2608 (defvar org-last-indent-begin-marker
(make-marker))
2609 (defvar org-last-indent-end-marker
(make-marker))
2610 (defun org-list-indent-item-generic (arg no-subtree struct
)
2611 "Indent a local list item including its children.
2612 When number ARG is a negative, item will be outdented, otherwise
2613 it will be indented.
2615 If a region is active, all items inside will be moved.
2617 If NO-SUBTREE is non-nil, only indent the item itself, not its
2620 STRUCT is the list structure.
2622 Return t if successful."
2624 (let* ((regionp (org-region-active-p))
2625 (rbeg (and regionp
(region-beginning)))
2626 (rend (and regionp
(region-end)))
2627 (top (org-list-get-top-point struct
))
2628 (parents (org-list-parents-alist struct
))
2629 (prevs (org-list-prevs-alist struct
))
2630 ;; Are we going to move the whole list?
2633 (= top
(point-at-bol))
2634 (cdr (assq 'indent org-list-automatic-rules
))
2637 "First item of list cannot move without its subtree")
2639 ;; Determine begin and end points of zone to indent. If moving
2640 ;; more than one item, save them for subsequent moves.
2641 (unless (and (memq last-command
'(org-shiftmetaright org-shiftmetaleft
))
2642 (memq this-command
'(org-shiftmetaright org-shiftmetaleft
)))
2645 (set-marker org-last-indent-begin-marker rbeg
)
2646 (set-marker org-last-indent-end-marker rend
))
2647 (set-marker org-last-indent-begin-marker
(point-at-bol))
2648 (set-marker org-last-indent-end-marker
2650 (specialp (org-list-get-bottom-point struct
))
2651 (no-subtree (1+ (point-at-bol)))
2652 (t (org-list-get-item-end (point-at-bol) struct
))))))
2653 (let* ((beg (marker-position org-last-indent-begin-marker
))
2654 (end (marker-position org-last-indent-end-marker
)))
2656 ;; Special case: moving top-item with indent rule.
2658 (let* ((level-skip (org-level-increment))
2659 (offset (if (< arg
0) (- level-skip
) level-skip
))
2660 (top-ind (org-list-get-ind beg struct
))
2661 (old-struct (copy-tree struct
)))
2662 (if (< (+ top-ind offset
) 0)
2663 (error "Cannot outdent beyond margin")
2664 ;; Change bullet if necessary.
2665 (when (and (= (+ top-ind offset
) 0)
2667 (org-list-get-bullet beg struct
)))
2668 (org-list-set-bullet beg struct
2669 (org-list-bullet-string "-")))
2670 ;; Shift every item by OFFSET and fix bullets. Then
2671 ;; apply changes to buffer.
2673 (let ((ind (org-list-get-ind (car e
) struct
)))
2674 (org-list-set-ind (car e
) struct
(+ ind offset
))))
2676 (org-list-struct-fix-bul struct prevs
)
2677 (org-list-struct-apply-struct struct old-struct
))))
2680 ;; If only one item is moved, it mustn't have a child.
2683 (org-list-has-child-p beg struct
))
2684 ;; If a subtree or region is moved, the last item
2685 ;; of the subtree mustn't have a child.
2686 (let ((last-item (caar
2689 (lambda (e) (>= (car e
) end
))
2691 (org-list-has-child-p last-item struct
))))
2692 (error "Cannot outdent an item without its children"))
2697 (org-list-struct-outdent beg end struct parents
)
2698 (org-list-struct-indent beg end struct parents prevs
))))
2699 (org-list-write-struct struct new-parents
))
2700 (org-update-checkbox-count-maybe))))))
2703 (defun org-outdent-item ()
2704 "Outdent a local list item, but not its children.
2705 If a region is active, all items inside will be moved."
2707 (let ((regionp (org-region-active-p)))
2709 ((or (org-at-item-p)
2711 (save-excursion (goto-char (region-beginning))
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-indent-item ()
2721 "Indent a local list item, but not its children.
2722 If a region is active, all items inside will be moved."
2724 (let ((regionp (org-region-active-p)))
2726 ((or (org-at-item-p)
2728 (save-excursion (goto-char (region-beginning))
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 t struct
)))
2734 (regionp (error "Region not starting at an item"))
2735 (t (error "Not at an item")))))
2737 (defun org-outdent-item-tree ()
2738 "Outdent a local list item including its children.
2739 If a region is active, all items inside will be moved."
2741 (let ((regionp (org-region-active-p)))
2743 ((or (org-at-item-p)
2745 (save-excursion (goto-char (region-beginning))
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 (defun org-indent-item-tree ()
2755 "Indent a local list item including its children.
2756 If a region is active, all items inside will be moved."
2758 (let ((regionp (org-region-active-p)))
2760 ((or (org-at-item-p)
2762 (save-excursion (goto-char (region-beginning))
2764 (let ((struct (if (not regionp
) (org-list-struct)
2765 (save-excursion (goto-char (region-beginning))
2766 (org-list-struct)))))
2767 (org-list-indent-item-generic 1 nil struct
)))
2768 (regionp (error "Region not starting at an item"))
2769 (t (error "Not at an item")))))
2771 (defvar org-tab-ind-state
)
2772 (defun org-cycle-item-indentation ()
2773 "Cycle levels of indentation of an empty item.
2774 The first run indents the item, if applicable. Subsequent runs
2775 outdent it at meaningful levels in the list. When done, item is
2776 put back at its original position with its original bullet.
2778 Return t at each successful move."
2779 (when (org-at-item-p)
2780 (let* ((org-adapt-indentation nil
)
2781 (struct (org-list-struct))
2782 (ind (org-list-get-ind (point-at-bol) struct
))
2783 (bullet (org-trim (buffer-substring (point-at-bol) (point-at-eol)))))
2784 ;; Accept empty items or if cycle has already started.
2785 (when (or (eq last-command
'org-cycle-item-indentation
)
2786 (and (save-excursion
2788 (looking-at org-list-full-item-re
))
2789 (>= (match-end 0) (save-excursion
2790 (goto-char (org-list-get-item-end
2791 (point-at-bol) struct
))
2792 (skip-chars-backward " \r\t\n")
2794 (setq this-command
'org-cycle-item-indentation
)
2795 ;; When in the middle of the cycle, try to outdent first. If
2796 ;; it fails, and point is still at initial position, indent.
2797 ;; Else, re-create it at its original position.
2798 (if (eq last-command
'org-cycle-item-indentation
)
2800 ((ignore-errors (org-list-indent-item-generic -
1 t struct
)))
2801 ((and (= ind
(car org-tab-ind-state
))
2802 (ignore-errors (org-list-indent-item-generic 1 t struct
))))
2803 (t (delete-region (point-at-bol) (point-at-eol))
2804 (org-indent-to-column (car org-tab-ind-state
))
2805 (insert (cdr org-tab-ind-state
) " ")
2807 (setq this-command
'identity
)))
2808 ;; If a cycle is starting, remember indentation and bullet,
2809 ;; then try to indent. If it fails, try to outdent.
2810 (setq org-tab-ind-state
(cons ind bullet
))
2812 ((ignore-errors (org-list-indent-item-generic 1 t struct
)))
2813 ((ignore-errors (org-list-indent-item-generic -
1 t struct
)))
2814 (t (user-error "Cannot move item"))))
2817 (defun org-sort-list (&optional with-case sorting-type getkey-func compare-func
)
2819 The cursor may be at any item of the list that should be sorted.
2820 Sublists are not sorted. Checkboxes, if any, are ignored.
2822 Sorting can be alphabetically, numerically, by date/time as given
2823 by a time stamp, by a property or by priority.
2825 Comparing entries ignores case by default. However, with an
2826 optional argument WITH-CASE, the sorting considers case as well.
2828 The command prompts for the sorting type unless it has been given
2829 to the function through the SORTING-TYPE argument, which needs to
2830 be a character, \(?n ?N ?a ?A ?t ?T ?f ?F ?x ?X). Here is the
2831 detailed meaning of each character:
2833 n Numerically, by converting the beginning of the item to a number.
2834 a Alphabetically. Only the first line of item is checked.
2835 t By date/time, either the first active time stamp in the entry, if
2836 any, or by the first inactive one. In a timer list, sort the timers.
2837 x By \"checked\" status of a check list.
2839 Capital letters will reverse the sort order.
2841 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies
2842 a function to be called with point at the beginning of the
2843 record. It must return either a string or a number that should
2844 serve as the sorting key for that record. It will then use
2845 COMPARE-FUNC to compare entries.
2847 Sorting is done against the visible part of the headlines, it
2848 ignores hidden links."
2850 (let* ((case-func (if with-case
'identity
'downcase
))
2851 (struct (org-list-struct))
2852 (prevs (org-list-prevs-alist struct
))
2853 (start (org-list-get-list-begin (point-at-bol) struct prevs
))
2854 (end (org-list-get-list-end (point-at-bol) struct prevs
))
2859 "Sort plain list: [a]lpha [n]umeric [t]ime [f]unc [x]checked A/N/T/F/X means reversed:")
2860 (read-char-exclusive))))
2863 (and (= (downcase sorting-type
) ?f
)
2864 (intern (org-icompleting-read "Sort using function: "
2865 obarray
'fboundp t nil nil
))))))
2866 (message "Sorting items...")
2868 (narrow-to-region start end
)
2869 (goto-char (point-min))
2870 (let* ((dcst (downcase sorting-type
))
2871 (case-fold-search nil
)
2872 (now (current-time))
2874 ((= dcst ?a
) 'string
<)
2875 ((= dcst ?f
) compare-func
)
2877 ((= dcst ?x
) 'string
<)))
2878 (next-record (lambda ()
2879 (skip-chars-forward " \r\t\n")
2880 (or (eobp) (beginning-of-line))))
2881 (end-record (lambda ()
2882 (goto-char (org-list-get-item-end-before-blank
2886 (when (looking-at "[ \t]*[-+*0-9.)]+\\([ \t]+\\[[- X]\\]\\)?[ \t]+")
2890 (org-sort-remove-invisible
2891 (buffer-substring (match-end 0) (point-at-eol)))))
2894 (org-sort-remove-invisible
2896 (match-end 0) (point-at-eol)))))
2899 ;; If it is a timer list, convert timer to seconds
2900 ((org-at-item-timer-p)
2901 (org-timer-hms-to-secs (match-string 1)))
2902 ((or (save-excursion
2903 (re-search-forward org-ts-regexp
(point-at-eol) t
))
2904 (save-excursion (re-search-forward org-ts-regexp-both
2906 (org-time-string-to-seconds (match-string 0)))
2907 (t (org-float-time now
))))
2908 ((= dcst ?x
) (or (and (stringp (match-string 1))
2913 (let ((value (funcall getkey-func
)))
2915 (funcall case-func value
)
2917 (error "Invalid key function `%s'" getkey-func
)))
2918 (t (error "Invalid sorting type `%c'" sorting-type
)))))))
2919 (sort-subr (/= dcst sorting-type
)
2925 ;; Read and fix list again, as `sort-subr' probably destroyed
2928 (run-hooks 'org-after-sorting-entries-or-items-hook
)
2929 (message "Sorting items...done")))))
2933 ;;; Send and receive lists
2935 (defun org-list-parse-list (&optional delete
)
2936 "Parse the list at point and maybe DELETE it.
2938 Return a list whose car is a symbol of list type, among
2939 `ordered', `unordered' and `descriptive'. Then, each item is
2940 a list whose car is counter, and cdr are strings and other
2941 sub-lists. Inside strings, check-boxes are replaced by
2942 \"[CBON]\", \"[CBOFF]\" and \"[CBTRANS]\".
2944 For example, the following list:
2949 more text in first item
2955 \(nil \"first item\"
2957 \(nil \"sub-item one\"\)
2958 \(nil \"[CBON] sub-item two\"\)\)
2959 \"more text in first item\"\)
2960 \(3 \"last item\"\)\)
2962 Point is left at list end."
2963 (let* ((struct (org-list-struct))
2964 (prevs (org-list-prevs-alist struct
))
2965 (parents (org-list-parents-alist struct
))
2966 (top (org-list-get-top-point struct
))
2967 (bottom (org-list-get-bottom-point struct
))
2969 parse-item
; for byte-compiler
2972 ;; Return text between BEG and END, trimmed, with
2973 ;; checkboxes replaced.
2975 (let ((text (org-trim (buffer-substring beg end
))))
2976 (if (string-match "\\`\\[\\([-X ]\\)\\]" text
)
2978 (let ((box (match-string 1 text
)))
2980 ((equal box
" ") "CBOFF")
2981 ((equal box
"-") "CBTRANS")
2987 ;; Return a list whose car is list type and cdr a list of
2990 (cons (org-list-get-list-type (car e
) struct prevs
)
2991 (mapcar parse-item e
)))))
2994 ;; Return a list containing counter of item, if any, text
2995 ;; and any sublist inside it.
2997 (let ((start (save-excursion
2999 (looking-at "[ \t]*\\S-+\\([ \t]+\\[@\\(start:\\)?\\([0-9]+\\|[a-zA-Z]\\)\\]\\)?[ \t]*")
3001 ;; Get counter number. For alphabetic counter, get
3002 ;; its position in the alphabet.
3003 (counter (let ((c (org-list-get-counter e struct
)))
3006 ((string-match "[A-Za-z]" c
)
3007 (- (string-to-char (upcase (match-string 0 c
)))
3009 ((string-match "[0-9]+" c
)
3010 (string-to-number (match-string 0 c
))))))
3011 (childp (org-list-has-child-p e struct
))
3012 (end (org-list-get-item-end e struct
)))
3013 ;; If item has a child, store text between bullet and
3014 ;; next child, then recursively parse all sublists. At
3015 ;; the end of each sublist, check for the presence of
3016 ;; text belonging to the original item.
3018 (let* ((children (org-list-get-children e struct parents
))
3019 (body (list (funcall get-text start childp
))))
3021 (let* ((first (car children
))
3022 (sub (org-list-get-all-items first struct prevs
))
3023 (last-c (car (last sub
)))
3024 (last-end (org-list-get-item-end last-c struct
)))
3025 (push (funcall parse-sublist sub
) body
)
3026 ;; Remove children from the list just parsed.
3027 (setq children
(cdr (member last-c children
)))
3028 ;; There is a chunk of text belonging to the
3029 ;; item if last child doesn't end where next
3030 ;; child starts or where item ends.
3031 (unless (= (or (car children
) end
) last-end
)
3032 (push (funcall get-text
3033 last-end
(or (car children
) end
))
3035 (cons counter
(nreverse body
)))
3036 (list counter
(funcall get-text start end
))))))))
3037 ;; Store output, take care of cursor position and deletion of
3038 ;; list, then return output.
3039 (setq out
(funcall parse-sublist
(org-list-get-all-items top struct prevs
)))
3042 (delete-region top bottom
)
3043 (when (and (not (looking-at "[ \t]*$")) (looking-at org-list-end-re
))
3044 (replace-match "")))
3047 (defun org-list-make-subtree ()
3048 "Convert the plain list at point into a subtree."
3050 (if (not (ignore-errors (goto-char (org-in-item-p))))
3051 (error "Not in a list")
3052 (let ((list (save-excursion (org-list-parse-list t
))))
3053 (insert (org-list-to-subtree list
)))))
3055 (defun org-list-insert-radio-list ()
3056 "Insert a radio list template appropriate for this major mode."
3058 (let* ((e (assq major-mode org-list-radio-list-templates
))
3061 (unless e
(error "No radio list setup defined for %s" major-mode
))
3062 (setq name
(read-string "List name: "))
3063 (while (string-match "%n" txt
)
3064 (setq txt
(replace-match name t t txt
)))
3065 (or (bolp) (insert "\n"))
3070 (defun org-list-send-list (&optional maybe
)
3071 "Send a transformed version of this list to the receiver position.
3072 With argument MAYBE, fail quietly if no transformation is defined
3076 (unless (org-at-item-p) (error "Not at a list item"))
3078 (re-search-backward "#\\+ORGLST" nil t
)
3079 (unless (looking-at "\\(?:[ \t]\\)?#\\+ORGLST:[ \t]+SEND[ \t]+\\(\\S-+\\)[ \t]+\\(\\S-+\\)")
3080 (if maybe
(throw 'exit nil
)
3081 (error "Don't know how to transform this list"))))
3082 (let* ((name (match-string 1))
3083 (transform (intern (match-string 2)))
3087 "\\(\\\\end{comment}\\|@end ignore\\|-->\\)" nil t
)
3088 (match-beginning 0)))
3091 (re-search-backward "#\\+ORGLST" nil t
)
3092 (re-search-forward (org-item-beginning-re) bottom-point t
)
3093 (match-beginning 0)))
3094 (plain-list (buffer-substring-no-properties top-point bottom-point
))
3096 (unless (fboundp transform
)
3097 (error "No such transformation function %s" transform
))
3098 (let ((txt (funcall transform plain-list
)))
3099 ;; Find the insertion place
3101 (goto-char (point-min))
3102 (unless (re-search-forward
3103 (concat "BEGIN RECEIVE ORGLST +"
3105 "\\([ \t]\\|$\\)") nil t
)
3106 (error "Don't know where to insert translated list"))
3107 (goto-char (match-beginning 0))
3108 (beginning-of-line 2)
3110 (unless (re-search-forward (concat "END RECEIVE ORGLST +" name
) nil t
)
3111 (error "Cannot find end of insertion region"))
3112 (delete-region beg
(point-at-bol))
3115 (message "List converted and installed at receiver location"))))
3117 (defsubst org-list-item-trim-br
(item)
3118 "Trim line breaks in a list ITEM."
3119 (setq item
(replace-regexp-in-string "\n +" " " item
)))
3121 (defun org-list-to-generic (list params
)
3122 "Convert a LIST parsed through `org-list-parse-list' to other formats.
3123 Valid parameters PARAMS are:
3125 :ustart String to start an unordered list
3126 :uend String to end an unordered list
3128 :ostart String to start an ordered list
3129 :oend String to end an ordered list
3131 :dstart String to start a descriptive list
3132 :dend String to end a descriptive list
3133 :dtstart String to start a descriptive term
3134 :dtend String to end a descriptive term
3135 :ddstart String to start a description
3136 :ddend String to end a description
3138 :splice When set to t, return only list body lines, don't wrap
3139 them into :[u/o]start and :[u/o]end. Default is nil.
3141 :istart String to start a list item.
3142 :icount String to start an item with a counter.
3143 :iend String to end a list item
3144 :isep String to separate items
3145 :lsep String to separate sublists
3146 :csep String to separate text from a sub-list
3148 :cboff String to insert for an unchecked check-box
3149 :cbon String to insert for a checked check-box
3150 :cbtrans String to insert for a check-box in transitional state
3152 :nobr Non-nil means remove line breaks in lists items.
3154 Alternatively, each parameter can also be a form returning
3155 a string. These sexp can use keywords `counter' and `depth',
3156 representing respectively counter associated to the current
3157 item, and depth of the current sub-list, starting at 0.
3158 Obviously, `counter' is only available for parameters applying to
3162 (splicep (plist-get p
:splice
))
3163 (ostart (plist-get p
:ostart
))
3164 (oend (plist-get p
:oend
))
3165 (ustart (plist-get p
:ustart
))
3166 (uend (plist-get p
:uend
))
3167 (dstart (plist-get p
:dstart
))
3168 (dend (plist-get p
:dend
))
3169 (dtstart (plist-get p
:dtstart
))
3170 (dtend (plist-get p
:dtend
))
3171 (ddstart (plist-get p
:ddstart
))
3172 (ddend (plist-get p
:ddend
))
3173 (istart (plist-get p
:istart
))
3174 (icount (plist-get p
:icount
))
3175 (iend (plist-get p
:iend
))
3176 (isep (plist-get p
:isep
))
3177 (lsep (plist-get p
:lsep
))
3178 (csep (plist-get p
:csep
))
3179 (cbon (plist-get p
:cbon
))
3180 (cboff (plist-get p
:cboff
))
3181 (cbtrans (plist-get p
:cbtrans
))
3182 (nobr (plist-get p
:nobr
))
3183 export-sublist
; for byte-compiler
3186 ;; Export an item ITEM of type TYPE, at DEPTH. First
3187 ;; string in item is treated in a special way as it can
3188 ;; bring extra information that needs to be processed.
3189 (lambda (item type depth
)
3190 (let* ((counter (pop item
))
3193 ((eq type
'descriptive
)
3194 ;; Stick DTSTART to ISTART by
3195 ;; left-trimming the latter.
3196 (concat (let ((s (eval istart
)))
3197 (or (and (string-match "[ \t\n\r]+\\'" s
)
3198 (replace-match "" t t s
))
3201 ((and counter
(eq type
'ordered
))
3202 (concat (eval icount
) "%s"))
3203 (t (concat (eval istart
) "%s")))
3206 ;; Replace checkbox if any is found.
3208 ((string-match "\\[CBON\\]" first
)
3209 (setq first
(replace-match cbon t t first
)))
3210 ((string-match "\\[CBOFF\\]" first
)
3211 (setq first
(replace-match cboff t t first
)))
3212 ((string-match "\\[CBTRANS\\]" first
)
3213 (setq first
(replace-match cbtrans t t first
))))
3214 ;; Replace line breaks if required
3215 (when nobr
(setq first
(org-list-item-trim-br first
)))
3216 ;; Insert descriptive term if TYPE is `descriptive'.
3217 (when (eq type
'descriptive
)
3218 (let* ((complete (string-match "^\\(.*\\)[ \t]+::" first
))
3221 (org-trim (match-string 1 first
)))
3224 (org-trim (substring first
(match-end 0)))
3226 (setq first
(concat (eval dtstart
) term
(eval dtend
)
3227 (eval ddstart
) desc
))))
3230 (mapconcat (lambda (e)
3232 (funcall export-sublist e
(1+ depth
))))
3233 item
(or (eval csep
) "")))))))
3236 ;; Export sublist SUB at DEPTH.
3238 (let* ((type (car sub
))
3243 (concat (eval ostart
) "%s" (eval oend
)))
3244 ((eq type
'descriptive
)
3245 (concat (eval dstart
) "%s" (eval dend
)))
3246 (t (concat (eval ustart
) "%s" (eval uend
))))
3248 (format fmt
(mapconcat (lambda (e)
3249 (funcall export-item e type depth
))
3250 items
(or (eval isep
) ""))))))))
3251 (concat (funcall export-sublist list
0) "\n")))
3253 (defun org-list-to-latex (list &optional params
)
3254 "Convert LIST into a LaTeX list.
3255 LIST is as string representing the list to transform, as Org
3256 syntax. Return converted list as a string."
3258 (org-export-string-as list
'latex t
))
3260 (defun org-list-to-html (list)
3261 "Convert LIST into a HTML list.
3262 LIST is as string representing the list to transform, as Org
3263 syntax. Return converted list as a string."
3265 (org-export-string-as list
'html t
))
3267 (defun org-list-to-texinfo (list &optional params
)
3268 "Convert LIST into a Texinfo list.
3269 LIST is as string representing the list to transform, as Org
3270 syntax. Return converted list as a string."
3271 (require 'ox-texinfo
)
3272 (org-export-string-as list
'texinfo t
))
3274 (defun org-list-to-subtree (list &optional params
)
3275 "Convert LIST into an Org subtree.
3276 LIST is as returned by `org-list-parse-list'. PARAMS is a property list
3277 with overruling parameters for `org-list-to-generic'."
3278 (let* ((rule (cdr (assq 'heading org-blank-before-new-entry
)))
3279 (level (org-reduced-level (or (org-current-level) 0)))
3280 (blankp (or (eq rule t
)
3281 (and (eq rule
'auto
)
3283 (outline-previous-heading)
3284 (org-previous-line-empty-p)))))
3287 ;; Return the string for the heading, depending on depth D
3288 ;; of current sub-list.
3290 (let ((oddeven-level (+ level d
1)))
3291 (concat (make-string (if org-odd-levels-only
3292 (1- (* 2 oddeven-level
))
3296 (org-list-to-generic
3300 :dtstart
" " :dtend
" "
3301 :istart
(funcall get-stars depth
)
3302 :icount
(funcall get-stars depth
)
3303 :isep
(if blankp
"\n\n" "\n")
3304 :csep
(if blankp
"\n\n" "\n")
3305 :cbon
"DONE" :cboff
"TODO" :cbtrans
"TODO")
3310 ;;; org-list.el ends here