1 ;;; org-list.el --- Plain lists for Org-mode
3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <carsten at orgmode dot org>
6 ;; Bastien Guerry <bzg AT altern DOT org>
7 ;; Keywords: outlines, hypermedia, calendar, wp
8 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
29 ;; This file contains the code dealing with plain lists in Org-mode.
36 (defvar org-blank-before-new-entry
)
37 (defvar org-M-RET-may-split-line
)
39 (declare-function org-invisible-p
"org" ())
40 (declare-function org-on-heading-p
"org" (&optional invisible-ok
))
41 (declare-function outline-next-heading
"outline" ())
42 (declare-function outline-back-to-heading
"outline" (&optional invisible-ok
))
43 (declare-function org-back-to-heading
"org" (&optional invisible-ok
))
44 (declare-function org-back-over-empty-lines
"org" ())
45 (declare-function org-skip-whitespace
"org" ())
46 (declare-function org-trim
"org" (s))
47 (declare-function org-get-indentation
"org" (&optional line
))
48 (declare-function org-timer-item
"org-timer" (&optional arg
))
50 (defgroup org-plain-lists nil
51 "Options concerning plain lists in Org-mode."
52 :tag
"Org Plain lists"
53 :group
'org-structure
)
55 (defcustom org-cycle-include-plain-lists nil
56 "Non-nil means, include plain lists into visibility cycling.
57 This means that during cycling, plain list items will *temporarily* be
58 interpreted as outline headlines with a level given by 1000+i where i is the
59 indentation of the bullet. In all other operations, plain list items are
60 not seen as headlines. For example, you cannot assign a TODO keyword to
62 :group
'org-plain-lists
65 (defcustom org-plain-list-ordered-item-terminator t
66 "The character that makes a line with leading number an ordered list item.
67 Valid values are ?. and ?\). To get both terminators, use t. While
68 ?. may look nicer, it creates the danger that a line with leading
69 number may be incorrectly interpreted as an item. ?\) therefore is
71 :group
'org-plain-lists
72 :type
'(choice (const :tag
"dot like in \"2.\"" ?.
)
73 (const :tag
"paren like in \"2)\"" ?\
))
74 (const :tab
"both" t
)))
76 (defcustom org-list-two-spaces-after-bullet-regexp nil
77 "A regular expression matching bullets that should have 2 spaces after them.
78 When nil, no bullet will have two spaces after them.
79 When a string, it will be used as a regular expression. When the bullet
80 type of a list is changed, the new bullet type will be matched against this
81 regexp. If it matches, there will be two spaces instead of one after
82 the bullet in each item of he list."
83 :group
'org-plain-list
85 (const :tag
"never" nil
)
88 (defcustom org-empty-line-terminates-plain-lists nil
89 "Non-nil means, an empty line ends all plain list levels.
90 When nil, empty lines are part of the preceeding item."
91 :group
'org-plain-lists
94 (defcustom org-auto-renumber-ordered-lists t
95 "Non-nil means, automatically renumber ordered plain lists.
96 Renumbering happens when the sequence have been changed with
97 \\[org-shiftmetaup] or \\[org-shiftmetadown]. After other editing commands,
98 use \\[org-ctrl-c-ctrl-c] to trigger renumbering."
99 :group
'org-plain-lists
102 (defcustom org-provide-checkbox-statistics t
103 "Non-nil means, update checkbox statistics after insert and toggle.
104 When this is set, checkbox statistics is updated each time you either insert
105 a new checkbox with \\[org-insert-todo-heading] or toggle a checkbox
106 with \\[org-ctrl-c-ctrl-c\\]."
107 :group
'org-plain-lists
110 (defcustom org-description-max-indent
20
111 "Maximum indentation for the second line of a description list.
112 When the indentation would be larger than this, it will become
113 5 characters instead."
114 :group
'org-plain-lists
117 (defvar org-list-beginning-re
118 "^\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) +\\(.*\\)$")
120 (defcustom org-list-radio-list-templates
121 '((latex-mode "% BEGIN RECEIVE ORGLST %n
122 % END RECEIVE ORGLST %n
124 #+ORGLST: SEND %n org-list-to-latex
127 (texinfo-mode "@c BEGIN RECEIVE ORGLST %n
128 @c END RECEIVE ORGLST %n
130 #+ORGLST: SEND %n org-list-to-texinfo
133 (html-mode "<!-- BEGIN RECEIVE ORGLST %n -->
134 <!-- END RECEIVE ORGLST %n -->
136 #+ORGLST: SEND %n org-list-to-html
139 "Templates for radio lists in different major modes.
140 All occurrences of %n in a template will be replaced with the name of the
141 list, obtained by prompting the user."
142 :group
'org-plain-lists
144 (list (symbol :tag
"Major mode")
145 (string :tag
"Format"))))
147 ;;;; Plain list items, including checkboxes
151 (defun org-at-item-p ()
152 "Is point in a line starting a hand-formatted item?"
153 (let ((llt org-plain-list-ordered-item-terminator
))
155 (goto-char (point-at-bol))
158 ((eq llt t
) "\\([ \t]*\\([-+]\\|\\([0-9]+[.)]\\)\\)\\|[ \t]+\\*\\)\\( \\|$\\)")
159 ((= llt ?.
) "\\([ \t]*\\([-+]\\|\\([0-9]+\\.\\)\\)\\|[ \t]+\\*\\)\\( \\|$\\)")
160 ((= llt ?\
)) "\\([ \t]*\\([-+]\\|\\([0-9]+))\\)\\|[ \t]+\\*\\)\\( \\|$\\)")
161 (t (error "Invalid value of `org-plain-list-ordered-item-terminator'")))))))
163 (defun org-in-item-p ()
164 "It the cursor inside a plain list item.
165 Does not have to be the first line."
169 (org-beginning-of-item)
174 (defun org-insert-item (&optional checkbox
)
175 "Insert a new item at the current level.
176 Return t when things worked, nil when we are not in an item."
177 (when (save-excursion
180 (org-beginning-of-item)
182 (if (org-invisible-p) (error "Invisible item"))
185 (let* ((bul (match-string 0))
186 (descp (save-excursion (goto-char (match-beginning 0))
187 (beginning-of-line 1)
189 (and (looking-at "[ \t]*\\(.*?\\) ::")
193 (string-match "^[-+*][ \t]+[0-9]+:[0-9]+:[0-9]+$"
195 (eow (save-excursion (beginning-of-line 1) (looking-at "[ \t]*")
197 (blank (cdr (assq 'plain-list-item org-blank-before-new-entry
)))
199 (if descp
(setq checkbox nil
))
201 (progn (org-timer-item) t
)
203 ((and (org-at-item-p) (<= (point) eow
))
205 (beginning-of-line 1)
206 (open-line (if blank
2 1)))
208 (beginning-of-line 1))
210 (unless (org-get-alist-option org-M-RET-may-split-line
'item
)
212 (delete-horizontal-space))
213 (newline (if blank
2 1))))
215 (if checkbox
"[ ]" "")
216 (if descp
(concat (if checkbox
" " "")
217 (read-string "Term: ") " :: ") ""))
221 (unless (= (point) pos
) (just-one-space) (backward-delete-char 1)))
222 (org-maybe-renumber-ordered-list)
223 (and checkbox
(org-update-checkbox-count-maybe))
228 (defun org-at-item-checkbox-p ()
229 "Is point at a line starting a plain-list item with a checklet?"
232 (goto-char (match-end 0))
233 (skip-chars-forward " \t")
234 (looking-at "\\[[- X]\\]"))))
236 (defun org-toggle-checkbox (&optional arg
)
237 "Toggle the checkbox in the current line."
240 (let (beg end status
(firstnew 'unknown
))
242 ((org-region-active-p)
243 (setq beg
(region-beginning) end
(region-end)))
245 (setq beg
(point) end
(save-excursion (outline-next-heading) (point))))
246 ((org-at-item-checkbox-p)
250 ((member (match-string 0) '("[ ]" "[-]")) "[X]")
255 (t (error "Not at a checkbox or heading, and no active region")))
258 (while (< (point) end
)
259 (when (org-at-item-checkbox-p)
260 (setq status
(equal (match-string 0) "[X]"))
261 (when (eq firstnew
'unknown
)
262 (setq firstnew
(not status
)))
264 (if (if arg
(not status
) firstnew
) "[X]" "[ ]") t t
))
265 (beginning-of-line 2)))))
266 (org-update-checkbox-count-maybe))
268 (defun org-update-checkbox-count-maybe ()
269 "Update checkbox statistics unless turned off by user."
270 (when org-provide-checkbox-statistics
271 (org-update-checkbox-count)))
273 (defun org-update-checkbox-count (&optional all
)
274 "Update the checkbox statistics in the current section.
275 This will find all statistic cookies like [57%] and [6/12] and update them
276 with the current numbers. With optional prefix argument ALL, do this for
280 (let* ((buffer-invisibility-spec (org-inhibit-invisibility)) ; Emacs 21
281 (beg (condition-case nil
282 (progn (org-back-to-heading) (point))
283 (error (point-min))))
284 (end (move-marker (make-marker)
285 (progn (outline-next-heading) (point))))
286 (re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
287 (re-box "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +\\(\\[[- X]\\]\\)")
288 (re-find (concat re
"\\|" re-box
))
289 beg-cookie end-cookie is-percent c-on c-off lim
290 eline curr-ind next-ind continue-from startsearch
294 (goto-char (point-min))
295 (outline-next-heading)
296 (setq beg
(point) end
(point-max)))
298 ;; find each statistic cookie
299 (while (re-search-backward re-find beg t
)
300 (setq beg-cookie
(match-beginning 1)
301 end-cookie
(match-end 1)
302 cstat
(+ cstat
(if end-cookie
1 0))
303 startsearch
(point-at-eol)
304 continue-from
(point-at-bol)
305 is-percent
(match-beginning 2)
307 ((org-on-heading-p) (outline-next-heading) (point))
308 ((org-at-item-p) (org-end-of-item) (point))
313 ;; find first checkbox for this cookie and gather
314 ;; statistics from all that are at this indentation level
315 (goto-char startsearch
)
316 (if (re-search-forward re-box lim t
)
318 (org-beginning-of-item)
319 (setq curr-ind
(org-get-indentation))
320 (setq next-ind curr-ind
)
321 (while (and (bolp) (org-at-item-p) (= curr-ind next-ind
))
322 (save-excursion (end-of-line) (setq eline
(point)))
323 (if (re-search-forward re-box eline t
)
324 (if (member (match-string 2) '("[ ]" "[-]"))
325 (setq c-off
(1+ c-off
))
326 (setq c-on
(1+ c-on
))
330 (setq next-ind
(org-get-indentation))
332 (goto-char continue-from
)
335 (delete-region beg-cookie end-cookie
)
336 (goto-char beg-cookie
)
339 (format "[%d%%]" (/ (* 100 c-on
) (max 1 (+ c-on c-off
))))
340 (format "[%d/%d]" c-on
(+ c-on c-off
)))))
341 ;; update items checkbox if it has one
342 (when (org-at-item-p)
343 (org-beginning-of-item)
344 (when (and (> (+ c-on c-off
) 0)
345 (re-search-forward re-box
(point-at-eol) t
))
346 (setq beg-cookie
(match-beginning 2)
347 end-cookie
(match-end 2))
348 (delete-region beg-cookie end-cookie
)
349 (goto-char beg-cookie
)
350 (cond ((= c-off
0) (insert "[X]"))
351 ((= c-on
0) (insert "[ ]"))
354 (goto-char continue-from
))
355 (when (interactive-p)
356 (message "Checkbox statistics updated %s (%d places)"
357 (if all
"in entire file" "in current outline entry") cstat
)))))
359 (defun org-get-checkbox-statistics-face ()
360 "Select the face for checkbox statistics.
361 The face will be `org-done' when all relevant boxes are checked. Otherwise
362 it will be `org-todo'."
364 (if (equal (match-string 1) "100%") 'org-done
'org-todo
)
365 (if (and (> (match-end 2) (match-beginning 2))
366 (equal (match-string 2) (match-string 3)))
370 (defun org-beginning-of-item ()
371 "Go to the beginning of the current hand-formatted item.
372 If the cursor is not in an item, throw an error."
375 (limit (save-excursion
378 (org-back-to-heading)
379 (beginning-of-line 2) (point))
380 (error (point-min)))))
381 (ind-empty (if org-empty-line-terminates-plain-lists
0 10000))
384 (beginning-of-line 1)
385 (beginning-of-line 1)
386 (skip-chars-forward " \t")
387 (setq ind
(current-column))
390 (beginning-of-line 0)
391 (if (or (bobp) (< (point) limit
)) (throw 'exit nil
))
393 (if (looking-at "[ \t]*$")
394 (setq ind1 ind-empty
)
395 (skip-chars-forward " \t")
396 (setq ind1
(current-column)))
398 (progn (beginning-of-line 1) (throw 'exit
(org-at-item-p))))))
401 (error "Not in an item")))))
403 (defun org-end-of-item ()
404 "Go to the end of the current hand-formatted item.
405 If the cursor is not in an item, throw an error."
409 (ind-empty (if org-empty-line-terminates-plain-lists
0 10000))
410 (limit (save-excursion (outline-next-heading) (point)))
412 (org-beginning-of-item)
413 (skip-chars-forward " \t")
417 (beginning-of-line 2)
418 (if (eobp) (throw 'exit
(point)))
419 (if (>= (point) limit
) (throw 'exit
(point-at-bol)))
420 (if (looking-at "[ \t]*$")
421 (setq ind1 ind-empty
)
422 (skip-chars-forward " \t")
423 (setq ind1
(current-column)))
425 (throw 'exit
(point-at-bol)))))))
429 (error "Not in an item"))))
431 (defun org-next-item ()
432 "Move to the beginning of the next item in the current plain list.
433 Error if not at a plain list, or if this is the last item in the list."
435 (let (ind ind1
(pos (point)))
436 (org-beginning-of-item)
437 (setq ind
(org-get-indentation))
439 (setq ind1
(org-get-indentation))
440 (unless (and (org-at-item-p) (= ind ind1
))
442 (error "On last item"))))
444 (defun org-previous-item ()
445 "Move to the beginning of the previous item in the current plain list.
446 Error if not at a plain list, or if this is the first item in the list."
448 (let (beg ind ind1
(pos (point)))
449 (org-beginning-of-item)
451 (setq ind
(org-get-indentation))
455 (beginning-of-line 0)
456 (if (looking-at "[ \t]*$")
458 (if (<= (setq ind1
(org-get-indentation)) ind
)
461 (if (or (not (org-at-item-p))
464 (org-beginning-of-item))
465 (error (goto-char pos
)
466 (error "On first item")))))
468 (defun org-first-list-item-p ()
469 "Is this heading the item in a plain list?"
470 (unless (org-at-item-p)
471 (error "Not at a plain list item"))
472 (org-beginning-of-item)
473 (= (point) (save-excursion (org-beginning-of-item-list))))
475 (defun org-move-item-down ()
476 "Move the plain list item at point down, i.e. swap with following item.
477 Subitems (items with larger indentation) are considered part of the item,
478 so this really moves item trees."
480 (let ((col (current-column))
482 beg beg0 end end0 ind ind1 txt ne-end ne-beg
)
483 (org-beginning-of-item)
486 (setq ne-beg
(org-back-over-empty-lines))
489 (setq ind
(org-get-indentation))
492 (setq ind1
(org-get-indentation))
493 (setq ne-end
(org-back-over-empty-lines))
496 (when (and (org-first-list-item-p) (< ne-end ne-beg
))
497 ;; include less whitespace
500 (forward-line (- ne-beg ne-end
))
503 (if (and (org-at-item-p) (= ind ind1
))
506 (org-back-over-empty-lines)
507 (setq txt
(buffer-substring beg end
))
509 (delete-region beg end
))
512 (goto-char pos
) (org-skip-whitespace)
513 (org-maybe-renumber-ordered-list)
514 (move-to-column col
))
517 (error "Cannot move this item further down"))))
519 (defun org-move-item-up (arg)
520 "Move the plain list item at point up, i.e. swap with previous item.
521 Subitems (items with larger indentation) are considered part of the item,
522 so this really moves item trees."
524 (let ((col (current-column)) (pos (point))
525 beg beg0 end ind ind1 txt
526 ne-beg ne-ins ins-end
)
527 (org-beginning-of-item)
529 (setq ind
(org-get-indentation))
531 (setq ne-beg
(org-back-over-empty-lines))
535 (org-back-over-empty-lines)
540 (beginning-of-line 0)
541 (if (looking-at "[ \t]*$")
542 (if org-empty-line-terminates-plain-lists
545 (error "Cannot move this item further up"))
547 (if (<= (setq ind1
(org-get-indentation)) ind
)
550 (org-beginning-of-item)
551 (error (goto-char beg0
)
553 (error "Cannot move this item further up")))
554 (setq ind1
(org-get-indentation))
555 (if (and (org-at-item-p) (= ind ind1
))
557 (setq ne-ins
(org-back-over-empty-lines))
558 (setq txt
(buffer-substring beg end
))
560 (delete-region beg end
))
563 (setq ins-end
(point))
564 (goto-char pos
) (org-skip-whitespace)
566 (when (and (org-first-list-item-p) (> ne-ins ne-beg
))
567 ;; Move whitespace back to beginning
570 (let ((kill-whole-line t
))
571 (kill-line (- ne-ins ne-beg
)) (point)))
572 (insert (make-string (- ne-ins ne-beg
) ?
\n)))
574 (org-maybe-renumber-ordered-list)
575 (move-to-column col
))
578 (error "Cannot move this item further up"))))
580 (defun org-maybe-renumber-ordered-list ()
581 "Renumber the ordered list at point if setup allows it.
582 This tests the user option `org-auto-renumber-ordered-lists' before
583 doing the renumbering."
585 (when (and org-auto-renumber-ordered-lists
587 (if (match-beginning 3)
588 (org-renumber-ordered-list 1)
589 (org-fix-bullet-type))))
591 (defun org-maybe-renumber-ordered-list-safe ()
594 (org-maybe-renumber-ordered-list))
597 (defun org-cycle-list-bullet (&optional which
)
598 "Cycle through the different itemize/enumerate bullets.
599 This cycle the entire list level through the sequence:
601 `-' -> `+' -> `*' -> `1.' -> `1)'
603 If WHICH is a string, use that as the new bullet. If WHICH is an integer,
604 0 means `-', 1 means `+' etc."
607 (org-beginning-of-item-list)
609 (beginning-of-line 1)
610 (let ((current (match-string 0))
611 (prevp (eq which
'previous
))
614 ((and (numberp which
)
615 (nth (1- which
) '("-" "+" "*" "1." "1)"))))
616 ((string-match "-" current
) (if prevp
"1)" "+"))
617 ((string-match "\\+" current
)
618 (if prevp
"-" (if (looking-at "\\S-") "1." "*")))
619 ((string-match "\\*" current
) (if prevp
"+" "1."))
620 ((string-match "\\." current
)
621 (if prevp
(if (looking-at "\\S-") "+" "*") "1)"))
622 ((string-match ")" current
) (if prevp
"1." "-"))
623 (t (error "This should not happen"))))
624 (and (looking-at "\\([ \t]*\\)\\(\\S-+\\)")
625 (setq old
(match-string 2))
626 (replace-match (concat "\\1" new
)))
627 (org-shift-item-indentation (- (length new
) (length old
)))
628 (org-fix-bullet-type)
629 (org-maybe-renumber-ordered-list))))
631 (defun org-get-string-indentation (s)
632 "What indentation has S due to SPACE and TAB at the beginning of the string?"
633 (let ((n -
1) (i 0) (w tab-width
) c
)
635 (while (< (setq n
(1+ n
)) (length s
))
637 (cond ((= c ?\
) (setq i
(1+ i
)))
638 ((= c ?
\t) (setq i
(* (/ (+ w i
) w
) w
)))
639 (t (throw 'exit t
)))))
642 (defun org-renumber-ordered-list (arg)
643 "Renumber an ordered plain list.
644 Cursor needs to be in the first line of an item, the line that starts
645 with something like \"1.\" or \"2)\"."
647 (unless (and (org-at-item-p)
649 (error "This is not an ordered list"))
650 (let ((line (org-current-line))
651 (col (current-column))
652 (ind (org-get-string-indentation
653 (buffer-substring (point-at-bol) (match-beginning 3))))
654 ;; (term (substring (match-string 3) -1))
657 ;; find where this list begins
658 (org-beginning-of-item-list)
660 (looking-at "[ \t]*[0-9]+\\([.)]\\)")
661 (setq fmt
(concat "%d" (match-string 1)))
662 (beginning-of-line 0)
663 ;; walk forward and replace these numbers
667 (if bobp
(setq bobp nil
) (beginning-of-line 2))
668 (if (eobp) (throw 'exit nil
))
669 (if (looking-at "[ \t]*$") (throw 'next nil
))
670 (skip-chars-forward " \t") (setq ind1
(current-column))
671 (if (> ind1 ind
) (throw 'next t
))
672 (if (< ind1 ind
) (throw 'exit t
))
673 (if (not (org-at-item-p)) (throw 'exit nil
))
674 (setq old
(match-string 2))
675 (delete-region (match-beginning 2) (match-end 2))
676 (goto-char (match-beginning 2))
677 (insert (setq new
(format fmt
(setq n
(1+ n
)))))
678 (org-shift-item-indentation (- (length new
) (length old
))))))
680 (org-move-to-column col
)))
682 (defun org-fix-bullet-type ()
683 "Make sure all items in this list have the same bullet as the first item.
684 Also, fix the indentation."
686 (unless (org-at-item-p) (error "This is not a list"))
687 (let ((line (org-current-line))
688 (col (current-column))
689 (ind (current-indentation))
690 ind1 bullet oldbullet
)
691 ;; find where this list begins
692 (org-beginning-of-item-list)
693 (beginning-of-line 1)
694 ;; find out what the bullet type is
695 (looking-at "[ \t]*\\(\\S-+\\)")
696 (setq bullet
(concat (match-string 1) " "))
697 (if (and org-list-two-spaces-after-bullet-regexp
698 (string-match org-list-two-spaces-after-bullet-regexp bullet
))
699 (setq bullet
(concat bullet
" ")))
700 ;; walk forward and replace these numbers
701 (beginning-of-line 0)
705 (beginning-of-line 2)
706 (if (eobp) (throw 'exit nil
))
707 (if (looking-at "[ \t]*$") (throw 'next nil
))
708 (skip-chars-forward " \t") (setq ind1
(current-column))
709 (if (> ind1 ind
) (throw 'next t
))
710 (if (< ind1 ind
) (throw 'exit t
))
711 (if (not (org-at-item-p)) (throw 'exit nil
))
712 (skip-chars-forward " \t")
713 (looking-at "\\S-+ *")
714 (setq oldbullet
(match-string 0))
715 (replace-match bullet
)
716 (org-shift-item-indentation (- (length bullet
) (length oldbullet
))))))
718 (org-move-to-column col
)
719 (if (string-match "[0-9]" bullet
)
720 (org-renumber-ordered-list 1))))
722 (defun org-shift-item-indentation (delta)
723 "Shift the indentation in current item by DELTA."
725 (let ((beg (point-at-bol))
726 (end (progn (org-end-of-item) (point)))
729 (beginning-of-line 0)
730 (while (> (point) beg
)
731 (when (looking-at "[ \t]*\\S-")
732 ;; this is not an empty line
733 (setq i
(org-get-indentation))
734 (if (and (> i
0) (> (setq i
(+ i delta
)) 0))
736 (beginning-of-line 0)))))
738 (defun org-beginning-of-item-list ()
739 "Go to the beginning of the current item list.
740 I.e. to the first item in this list."
742 (org-beginning-of-item)
743 (let ((pos (point-at-bol))
744 (ind (org-get-indentation))
746 ;; find where this list begins
750 (beginning-of-line 0)
751 (if (looking-at "[ \t]*$")
752 (throw (if (bobp) 'exit
'next
) t
))
753 (skip-chars-forward " \t") (setq ind1
(current-column))
756 (not (org-at-item-p)))
757 (and (= (point-at-bol) (point-min))
758 (setq pos
(point-min))))
760 (when (org-at-item-p) (setq pos
(point-at-bol)))))))
764 (defun org-end-of-item-list ()
765 "Go to the end of the current item list.
766 I.e. to the text after the last item."
768 (org-beginning-of-item)
769 (let ((pos (point-at-bol))
770 (ind (org-get-indentation))
772 ;; find where this list begins
776 (beginning-of-line 2)
777 (if (looking-at "[ \t]*$")
778 (throw (if (eobp) 'exit
'next
) t
))
779 (skip-chars-forward " \t") (setq ind1
(current-column))
782 (not (org-at-item-p)))
785 (setq pos
(point-at-bol))
790 (defvar org-last-indent-begin-marker
(make-marker))
791 (defvar org-last-indent-end-marker
(make-marker))
793 (defun org-outdent-item (arg)
794 "Outdent a local list item."
796 (org-indent-item (- arg
)))
798 (defun org-indent-item (arg)
799 "Indent a local list item."
801 (unless (org-at-item-p)
802 (error "Not on an item"))
804 (let (beg end ind ind1 tmp delta ind-down ind-up
)
805 (if (memq last-command
'(org-shiftmetaright org-shiftmetaleft
))
806 (setq beg org-last-indent-begin-marker
807 end org-last-indent-end-marker
)
808 (org-beginning-of-item)
809 (setq beg
(move-marker org-last-indent-begin-marker
(point)))
811 (setq end
(move-marker org-last-indent-end-marker
(point))))
813 (setq tmp
(org-item-indent-positions)
818 (if ind-down
(- ind-down ind
) 2)
819 (if ind-up
(- ind-up ind
) -
2)))
820 (if (< (+ delta ind
) 0) (error "Cannot outdent beyond margin"))
821 (while (< (point) end
)
822 (beginning-of-line 1)
823 (skip-chars-forward " \t") (setq ind1
(current-column))
824 (delete-region (point-at-bol) (point))
825 (or (eolp) (org-indent-to-column (+ ind1 delta
)))
826 (beginning-of-line 2))))
827 (org-fix-bullet-type)
828 (org-maybe-renumber-ordered-list-safe)
830 (beginning-of-line 0)
831 (condition-case nil
(org-beginning-of-item) (error nil
))
832 (org-maybe-renumber-ordered-list-safe)))
834 (defun org-item-indent-positions ()
835 "Return indentation for plain list items.
836 This returns a list with three values: The current indentation, the
837 parent indentation and the indentation a child should have.
838 Assumes cursor in item line."
839 (let* ((bolpos (point-at-bol))
840 (ind (org-get-indentation))
843 (org-beginning-of-item-list)
844 (skip-chars-backward "\n\r \t")
845 (when (org-in-item-p)
846 (org-beginning-of-item)
847 (setq ind-up
(org-get-indentation))))
851 ((and (condition-case nil
(progn (org-previous-item) t
)
853 (or (forward-char 1) t
)
854 (re-search-forward "^\\([ \t]*\\([-+]\\|\\([0-9]+[.)]\\)\\)\\|[ \t]+\\*\\)\\( \\|$\\)" bolpos t
))
855 (setq ind-down
(org-get-indentation)))
856 ((and (goto-char pos
)
858 (goto-char (match-end 0))
859 (skip-chars-forward " \t")
860 (setq ind-down
(current-column)))))
861 (list ind ind-up ind-down
)))
864 ;;; Send and receive lists
866 (defun org-list-parse-list (&optional delete
)
867 "Parse the list at point and maybe DELETE it.
868 Return a list containing first level items as strings and
869 sublevels as a list of strings."
870 (let* ((item-beginning (org-list-item-beginning))
871 (start (car item-beginning
))
872 (end (org-list-end (cdr item-beginning
)))
873 output itemsep ltype
)
874 (while (re-search-forward org-list-beginning-re end t
)
875 (goto-char (match-beginning 3))
877 (cond ((string-match "[0-9]" (match-string 2))
878 (setq itemsep
"[0-9]+\\(?:\\.\\|)\\)"
880 ((string-match "^.*::" (match-string 0))
881 (setq itemsep
"[-+]" ltype
'descriptive
))
882 (t (setq itemsep
"[-+]" ltype
'unordered
))))
883 (let* ((indent1 (match-string 1))
884 (nextitem (save-excursion
886 (or (and (re-search-forward
887 (concat "^" indent1 itemsep
" *?") end t
)
888 (match-beginning 0)) end
))))
889 (item (buffer-substring
891 (or (and (re-search-forward
892 org-list-beginning-re end t
)
893 (goto-char (match-beginning 0)))
895 (nextindent (match-string 1))
896 (item (org-trim item
))
897 (item (if (string-match "^\\[.+\\]" item
)
898 (replace-match "\\\\texttt{\\&}"
901 (when (> (length nextindent
)
903 (narrow-to-region (point) nextitem
)
904 (push (org-list-parse-list) output
)
906 (when delete
(delete-region start end
))
907 (setq output
(nreverse output
))
908 (push ltype output
)))
910 (defun org-list-item-beginning ()
911 "Find the beginning of the list item.
912 Return a cons which car is the beginning position of the item and
913 cdr is the indentation string."
915 (if (not (or (looking-at org-list-beginning-re
)
917 org-list-beginning-re nil t
)))
918 (progn (goto-char (point-min)) (point))
919 (cons (match-beginning 0) (match-string 1)))))
921 (defun org-list-end (indent)
922 "Return the position of the end of the list.
923 INDENT is the indentation of the list."
926 (while (or (looking-at org-list-beginning-re
)
927 (looking-at (concat "^" indent
"[ \t]+\\|^$")))
928 (if (eq (point) (point-max))
929 (throw 'exit
(point-max)))
930 (forward-line 1))) (point)))
932 (defun org-list-insert-radio-list ()
933 "Insert a radio list template appropriate for this major mode."
935 (let* ((e (assq major-mode org-list-radio-list-templates
))
938 (unless e
(error "No radio list setup defined for %s" major-mode
))
939 (setq name
(read-string "List name: "))
940 (while (string-match "%n" txt
)
941 (setq txt
(replace-match name t t txt
)))
942 (or (bolp) (insert "\n"))
947 (defun org-list-send-list (&optional maybe
)
948 "Send a tranformed version of this list to the receiver position.
949 With argument MAYBE, fail quietly if no transformation is defined for
953 (unless (org-at-item-p) (error "Not at a list"))
955 (goto-char (car (org-list-item-beginning)))
956 (beginning-of-line 0)
957 (unless (looking-at "#\\+ORGLST: *SEND +\\([a-zA-Z0-9_]+\\) +\\([^ \t\r\n]+\\)\\( +.*\\)?")
960 (error "Don't know how to transform this list"))))
961 (let* ((name (match-string 1))
962 (item-beginning (org-list-item-beginning))
963 (transform (intern (match-string 2)))
964 (txt (buffer-substring-no-properties
966 (org-list-end (cdr item-beginning
))))
967 (list (org-list-parse-list))
969 (unless (fboundp transform
)
970 (error "No such transformation function %s" transform
))
971 (setq txt
(funcall transform list
))
972 ;; Find the insertion place
974 (goto-char (point-min))
975 (unless (re-search-forward
976 (concat "BEGIN RECEIVE ORGLST +" name
"\\([ \t]\\|$\\)") nil t
)
977 (error "Don't know where to insert translated list"))
978 (goto-char (match-beginning 0))
979 (beginning-of-line 2)
981 (unless (re-search-forward (concat "END RECEIVE ORGLST +" name
) nil t
)
982 (error "Cannot find end of insertion region"))
983 (beginning-of-line 1)
984 (delete-region beg
(point))
987 (message "List converted and installed at receiver location"))))
989 (defun org-list-to-generic (list params
)
990 "Convert a LIST parsed through `org-list-parse-list' to other formats.
992 Valid parameters PARAMS are
994 :ustart String to start an unordered list
995 :uend String to end an unordered list
997 :ostart String to start an ordered list
998 :oend String to end an ordered list
1000 :dstart String to start a descriptive list
1001 :dend String to end a descriptive list
1002 :dtstart String to start a descriptive term
1003 :dtend String to end a descriptive term
1004 :ddstart String to start a description
1005 :ddend String to end a description
1007 :splice When set to t, return only list body lines, don't wrap
1008 them into :[u/o]start and :[u/o]end. Default is nil.
1010 :istart String to start a list item
1011 :iend String to end a list item
1012 :isep String to separate items
1013 :lsep String to separate sublists"
1015 (let* ((p params
) sublist
1016 (splicep (plist-get p
:splice
))
1017 (ostart (plist-get p
:ostart
))
1018 (oend (plist-get p
:oend
))
1019 (ustart (plist-get p
:ustart
))
1020 (uend (plist-get p
:uend
))
1021 (dstart (plist-get p
:dstart
))
1022 (dend (plist-get p
:dend
))
1023 (dtstart (plist-get p
:dtstart
))
1024 (dtend (plist-get p
:dtend
))
1025 (ddstart (plist-get p
:ddstart
))
1026 (ddend (plist-get p
:ddend
))
1027 (istart (plist-get p
:istart
))
1028 (iend (plist-get p
:iend
))
1029 (isep (plist-get p
:isep
))
1030 (lsep (plist-get p
:lsep
)))
1032 (cond ((eq (car list
) 'ordered
)
1033 (concat ostart
"\n%s" oend
"\n"))
1034 ((eq (car list
) 'unordered
)
1035 (concat ustart
"\n%s" uend
"\n"))
1036 ((eq (car list
) 'descriptive
)
1037 (concat dstart
"\n%s" dend
"\n"))))
1038 rtn term defstart defend
)
1039 (while (setq sublist
(pop list
))
1040 (cond ((symbolp sublist
) nil
)
1042 (when (string-match "^\\(.*\\) ::" sublist
)
1043 (setq term
(org-trim (format (concat dtstart
"%s" dtend
)
1044 (match-string 1 sublist
))))
1045 (setq sublist
(substring sublist
(1+ (length term
)))))
1046 (setq rtn
(concat rtn istart term ddstart
1047 sublist ddend iend isep
)))
1048 (t (setq rtn
(concat rtn
;; previous list
1049 lsep
;; list separator
1050 (org-list-to-generic sublist p
)
1051 lsep
;; list separator
1053 (format wrapper rtn
))))
1055 (defun org-list-to-latex (list)
1056 "Convert LIST into a LaTeX list."
1057 (org-list-to-generic
1058 list
'(:splicep nil
:ostart
"\\begin{enumerate}" :oend
"\\end{enumerate}"
1059 :ustart
"\\begin{itemize}" :uend
"\\end{itemize}"
1060 :dstart
"\\begin{description}" :dend
"\\end{description}"
1061 :dtstart
"[" :dtend
"]"
1062 :ddstart
"" :ddend
""
1063 :istart
"\\item " :iend
""
1064 :isep
"\n" :lsep
"\n")))
1066 (defun org-list-to-html (list)
1067 "Convert LIST into a HTML list."
1068 (org-list-to-generic
1069 list
'(:splicep nil
:ostart
"<ol>" :oend
"</ol>"
1070 :ustart
"<ul>" :uend
"</ul>"
1071 :dstart
"<dl>" :dend
"</dl>"
1072 :dtstart
"<dt>" :dtend
"</dt>"
1073 :ddstart
"<dd>" :ddend
"</dd>"
1074 :istart
"<li>" :iend
"</li>"
1075 :isep
"\n" :lsep
"\n")))
1077 (defun org-list-to-texinfo (list)
1078 "Convert LIST into a Texinfo list."
1079 (org-list-to-generic
1080 list
'(:splicep nil
:ostart
"@itemize @minus" :oend
"@end itemize"
1081 :ustart
"@enumerate" :uend
"@end enumerate"
1082 :dstart
"@table" :dend
"@end table"
1083 :dtstart
"@item " :dtend
"\n"
1084 :ddstart
"" :ddend
""
1085 :istart
"@item\n" :iend
""
1086 :isep
"\n" :lsep
"\n")))
1090 ;; arch-tag: 73cf50c1-200f-4d1d-8a53-4e842a5b11c8
1091 ;;; org-list.el ends here