org-list.el 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129
  1. ;;; org-list.el --- Plain lists for Org-mode
  2. ;;
  3. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
  4. ;;
  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
  9. ;; Version: TAG=6.18a
  10. ;;
  11. ;; This file is part of GNU Emacs.
  12. ;;
  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.
  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.
  21. ;; You should have received a copy of the GNU General Public License
  22. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  23. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  24. ;;
  25. ;;; Commentary:
  26. ;; This file contains the code dealing with plain lists in Org-mode.
  27. ;;; Code:
  28. (require 'org-macs)
  29. (require 'org-compat)
  30. (defvar org-blank-before-new-entry)
  31. (defvar org-M-RET-may-split-line)
  32. (declare-function org-invisible-p "org" ())
  33. (declare-function org-on-heading-p "org" (&optional invisible-ok))
  34. (declare-function outline-next-heading "outline" ())
  35. (declare-function outline-back-to-heading "outline" (&optional invisible-ok))
  36. (declare-function org-back-to-heading "org" (&optional invisible-ok))
  37. (declare-function org-back-over-empty-lines "org" ())
  38. (declare-function org-skip-whitespace "org" ())
  39. (declare-function org-trim "org" (s))
  40. (declare-function org-get-indentation "org" (&optional line))
  41. (declare-function org-timer-item "org-timer" (&optional arg))
  42. (declare-function org-combine-plists "org" (&rest plists))
  43. (defgroup org-plain-lists nil
  44. "Options concerning plain lists in Org-mode."
  45. :tag "Org Plain lists"
  46. :group 'org-structure)
  47. (defcustom org-cycle-include-plain-lists nil
  48. "Non-nil means, include plain lists into visibility cycling.
  49. This means that during cycling, plain list items will *temporarily* be
  50. interpreted as outline headlines with a level given by 1000+i where i is the
  51. indentation of the bullet. In all other operations, plain list items are
  52. not seen as headlines. For example, you cannot assign a TODO keyword to
  53. such an item."
  54. :group 'org-plain-lists
  55. :type 'boolean)
  56. (defcustom org-plain-list-ordered-item-terminator t
  57. "The character that makes a line with leading number an ordered list item.
  58. Valid values are ?. and ?\). To get both terminators, use t. While
  59. ?. may look nicer, it creates the danger that a line with leading
  60. number may be incorrectly interpreted as an item. ?\) therefore is
  61. the safe choice."
  62. :group 'org-plain-lists
  63. :type '(choice (const :tag "dot like in \"2.\"" ?.)
  64. (const :tag "paren like in \"2)\"" ?\))
  65. (const :tab "both" t)))
  66. (defcustom org-list-two-spaces-after-bullet-regexp nil
  67. "A regular expression matching bullets that should have 2 spaces after them.
  68. When nil, no bullet will have two spaces after them.
  69. When a string, it will be used as a regular expression. When the bullet
  70. type of a list is changed, the new bullet type will be matched against this
  71. regexp. If it matches, there will be two spaces instead of one after
  72. the bullet in each item of he list."
  73. :group 'org-plain-list
  74. :type '(choice
  75. (const :tag "never" nil)
  76. (regexp)))
  77. (defcustom org-empty-line-terminates-plain-lists nil
  78. "Non-nil means, an empty line ends all plain list levels.
  79. When nil, empty lines are part of the preceeding item."
  80. :group 'org-plain-lists
  81. :type 'boolean)
  82. (defcustom org-auto-renumber-ordered-lists t
  83. "Non-nil means, automatically renumber ordered plain lists.
  84. Renumbering happens when the sequence have been changed with
  85. \\[org-shiftmetaup] or \\[org-shiftmetadown]. After other editing commands,
  86. use \\[org-ctrl-c-ctrl-c] to trigger renumbering."
  87. :group 'org-plain-lists
  88. :type 'boolean)
  89. (defcustom org-provide-checkbox-statistics t
  90. "Non-nil means, update checkbox statistics after insert and toggle.
  91. When this is set, checkbox statistics is updated each time you either insert
  92. a new checkbox with \\[org-insert-todo-heading] or toggle a checkbox
  93. with \\[org-ctrl-c-ctrl-c\\]."
  94. :group 'org-plain-lists
  95. :type 'boolean)
  96. (defcustom org-description-max-indent 20
  97. "Maximum indentation for the second line of a description list.
  98. When the indentation would be larger than this, it will become
  99. 5 characters instead."
  100. :group 'org-plain-lists
  101. :type 'integer)
  102. (defvar org-list-beginning-re
  103. "^\\([ \t]*\\)\\([-+*]\\|[0-9]+[.)]\\) +\\(.*\\)$")
  104. (defcustom org-list-radio-list-templates
  105. '((latex-mode "% BEGIN RECEIVE ORGLST %n
  106. % END RECEIVE ORGLST %n
  107. \\begin{comment}
  108. #+ORGLST: SEND %n org-list-to-latex
  109. | | |
  110. \\end{comment}\n")
  111. (texinfo-mode "@c BEGIN RECEIVE ORGLST %n
  112. @c END RECEIVE ORGLST %n
  113. @ignore
  114. #+ORGLST: SEND %n org-list-to-texinfo
  115. | | |
  116. @end ignore\n")
  117. (html-mode "<!-- BEGIN RECEIVE ORGLST %n -->
  118. <!-- END RECEIVE ORGLST %n -->
  119. <!--
  120. #+ORGLST: SEND %n org-list-to-html
  121. | | |
  122. -->\n"))
  123. "Templates for radio lists in different major modes.
  124. All occurrences of %n in a template will be replaced with the name of the
  125. list, obtained by prompting the user."
  126. :group 'org-plain-lists
  127. :type '(repeat
  128. (list (symbol :tag "Major mode")
  129. (string :tag "Format"))))
  130. ;;;; Plain list items, including checkboxes
  131. ;;; Plain list items
  132. (defun org-at-item-p ()
  133. "Is point in a line starting a hand-formatted item?"
  134. (let ((llt org-plain-list-ordered-item-terminator))
  135. (save-excursion
  136. (goto-char (point-at-bol))
  137. (looking-at
  138. (cond
  139. ((eq llt t) "\\([ \t]*\\([-+]\\|\\([0-9]+[.)]\\)\\)\\|[ \t]+\\*\\)\\( \\|$\\)")
  140. ((= llt ?.) "\\([ \t]*\\([-+]\\|\\([0-9]+\\.\\)\\)\\|[ \t]+\\*\\)\\( \\|$\\)")
  141. ((= llt ?\)) "\\([ \t]*\\([-+]\\|\\([0-9]+))\\)\\|[ \t]+\\*\\)\\( \\|$\\)")
  142. (t (error "Invalid value of `org-plain-list-ordered-item-terminator'")))))))
  143. (defun org-in-item-p ()
  144. "It the cursor inside a plain list item.
  145. Does not have to be the first line."
  146. (save-excursion
  147. (condition-case nil
  148. (progn
  149. (org-beginning-of-item)
  150. (org-at-item-p)
  151. t)
  152. (error nil))))
  153. (defun org-insert-item (&optional checkbox)
  154. "Insert a new item at the current level.
  155. Return t when things worked, nil when we are not in an item."
  156. (when (save-excursion
  157. (condition-case nil
  158. (progn
  159. (org-beginning-of-item)
  160. (org-at-item-p)
  161. (if (org-invisible-p) (error "Invisible item"))
  162. t)
  163. (error nil)))
  164. (let* ((bul (match-string 0))
  165. (descp (save-excursion (goto-char (match-beginning 0))
  166. (beginning-of-line 1)
  167. (save-match-data
  168. (and (looking-at "[ \t]*\\(.*?\\) ::")
  169. (match-string 1)))))
  170. (empty-line-p (save-excursion
  171. (goto-char (match-beginning 0))
  172. (and (not (bobp))
  173. (or (beginning-of-line 0) t)
  174. (save-match-data
  175. (looking-at "[ \t]*$")))))
  176. (timerp (and descp
  177. (save-match-data
  178. (string-match "^[-+*][ \t]+[0-9]+:[0-9]+:[0-9]+$"
  179. descp))))
  180. (eow (save-excursion (beginning-of-line 1) (looking-at "[ \t]*")
  181. (match-end 0)))
  182. (blank-a (cdr (assq 'plain-list-item org-blank-before-new-entry)))
  183. (blank (if (eq blank-a 'auto) empty-line-p blank-a))
  184. pos)
  185. (if descp (setq checkbox nil))
  186. (if timerp
  187. (progn (org-timer-item) t)
  188. (cond
  189. ((and (org-at-item-p) (<= (point) eow))
  190. ;; before the bullet
  191. (beginning-of-line 1)
  192. (open-line (if blank 2 1)))
  193. ((<= (point) eow)
  194. (beginning-of-line 1))
  195. (t
  196. (unless (org-get-alist-option org-M-RET-may-split-line 'item)
  197. (end-of-line 1)
  198. (delete-horizontal-space))
  199. (newline (if blank 2 1))))
  200. (insert bul
  201. (if checkbox "[ ]" "")
  202. (if descp (concat (if checkbox " " "")
  203. (read-string "Term: ") " :: ") ""))
  204. (just-one-space)
  205. (setq pos (point))
  206. (end-of-line 1)
  207. (unless (= (point) pos) (just-one-space) (backward-delete-char 1)))
  208. (org-maybe-renumber-ordered-list)
  209. (and checkbox (org-update-checkbox-count-maybe))
  210. t)))
  211. ;;; Checkboxes
  212. (defun org-at-item-checkbox-p ()
  213. "Is point at a line starting a plain-list item with a checklet?"
  214. (and (org-at-item-p)
  215. (save-excursion
  216. (goto-char (match-end 0))
  217. (skip-chars-forward " \t")
  218. (looking-at "\\[[- X]\\]"))))
  219. (defun org-toggle-checkbox (&optional arg)
  220. "Toggle the checkbox in the current line."
  221. (interactive "P")
  222. (catch 'exit
  223. (let (beg end status (firstnew 'unknown))
  224. (cond
  225. ((org-region-active-p)
  226. (setq beg (region-beginning) end (region-end)))
  227. ((org-on-heading-p)
  228. (setq beg (point) end (save-excursion (outline-next-heading) (point))))
  229. ((org-at-item-checkbox-p)
  230. (let ((pos (point)))
  231. (replace-match
  232. (cond (arg "[-]")
  233. ((member (match-string 0) '("[ ]" "[-]")) "[X]")
  234. (t "[ ]"))
  235. t t)
  236. (goto-char pos))
  237. (throw 'exit t))
  238. (t (error "Not at a checkbox or heading, and no active region")))
  239. (save-excursion
  240. (goto-char beg)
  241. (while (< (point) end)
  242. (when (org-at-item-checkbox-p)
  243. (setq status (equal (match-string 0) "[X]"))
  244. (when (eq firstnew 'unknown)
  245. (setq firstnew (not status)))
  246. (replace-match
  247. (if (if arg (not status) firstnew) "[X]" "[ ]") t t))
  248. (beginning-of-line 2)))))
  249. (org-update-checkbox-count-maybe))
  250. (defun org-update-checkbox-count-maybe ()
  251. "Update checkbox statistics unless turned off by user."
  252. (when org-provide-checkbox-statistics
  253. (org-update-checkbox-count)))
  254. (defun org-update-checkbox-count (&optional all)
  255. "Update the checkbox statistics in the current section.
  256. This will find all statistic cookies like [57%] and [6/12] and update them
  257. with the current numbers. With optional prefix argument ALL, do this for
  258. the whole buffer."
  259. (interactive "P")
  260. (save-excursion
  261. (let* ((buffer-invisibility-spec (org-inhibit-invisibility)) ; Emacs 21
  262. (beg (condition-case nil
  263. (progn (org-back-to-heading) (point))
  264. (error (point-min))))
  265. (end (move-marker (make-marker)
  266. (progn (outline-next-heading) (point))))
  267. (re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
  268. (re-box "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) +\\(\\[[- X]\\]\\)")
  269. (re-find (concat re "\\|" re-box))
  270. beg-cookie end-cookie is-percent c-on c-off lim
  271. eline curr-ind next-ind continue-from startsearch
  272. (cstat 0)
  273. )
  274. (when all
  275. (goto-char (point-min))
  276. (outline-next-heading)
  277. (setq beg (point) end (point-max)))
  278. (goto-char end)
  279. ;; find each statistic cookie
  280. (while (re-search-backward re-find beg t)
  281. (setq beg-cookie (match-beginning 1)
  282. end-cookie (match-end 1)
  283. cstat (+ cstat (if end-cookie 1 0))
  284. startsearch (point-at-eol)
  285. continue-from (point-at-bol)
  286. is-percent (match-beginning 2)
  287. lim (cond
  288. ((org-on-heading-p) (outline-next-heading) (point))
  289. ((org-at-item-p) (org-end-of-item) (point))
  290. (t nil))
  291. c-on 0
  292. c-off 0)
  293. (when lim
  294. ;; find first checkbox for this cookie and gather
  295. ;; statistics from all that are at this indentation level
  296. (goto-char startsearch)
  297. (if (re-search-forward re-box lim t)
  298. (progn
  299. (org-beginning-of-item)
  300. (setq curr-ind (org-get-indentation))
  301. (setq next-ind curr-ind)
  302. (while (and (bolp) (org-at-item-p) (= curr-ind next-ind))
  303. (save-excursion (end-of-line) (setq eline (point)))
  304. (if (re-search-forward re-box eline t)
  305. (if (member (match-string 2) '("[ ]" "[-]"))
  306. (setq c-off (1+ c-off))
  307. (setq c-on (1+ c-on))
  308. )
  309. )
  310. (org-end-of-item)
  311. (setq next-ind (org-get-indentation))
  312. )))
  313. (goto-char continue-from)
  314. ;; update cookie
  315. (when end-cookie
  316. (delete-region beg-cookie end-cookie)
  317. (goto-char beg-cookie)
  318. (insert
  319. (if is-percent
  320. (format "[%d%%]" (/ (* 100 c-on) (max 1 (+ c-on c-off))))
  321. (format "[%d/%d]" c-on (+ c-on c-off)))))
  322. ;; update items checkbox if it has one
  323. (when (org-at-item-p)
  324. (org-beginning-of-item)
  325. (when (and (> (+ c-on c-off) 0)
  326. (re-search-forward re-box (point-at-eol) t))
  327. (setq beg-cookie (match-beginning 2)
  328. end-cookie (match-end 2))
  329. (delete-region beg-cookie end-cookie)
  330. (goto-char beg-cookie)
  331. (cond ((= c-off 0) (insert "[X]"))
  332. ((= c-on 0) (insert "[ ]"))
  333. (t (insert "[-]")))
  334. )))
  335. (goto-char continue-from))
  336. (when (interactive-p)
  337. (message "Checkbox statistics updated %s (%d places)"
  338. (if all "in entire file" "in current outline entry") cstat)))))
  339. (defun org-get-checkbox-statistics-face ()
  340. "Select the face for checkbox statistics.
  341. The face will be `org-done' when all relevant boxes are checked. Otherwise
  342. it will be `org-todo'."
  343. (if (match-end 1)
  344. (if (equal (match-string 1) "100%") 'org-done 'org-todo)
  345. (if (and (> (match-end 2) (match-beginning 2))
  346. (equal (match-string 2) (match-string 3)))
  347. 'org-done
  348. 'org-todo)))
  349. (defun org-beginning-of-item ()
  350. "Go to the beginning of the current hand-formatted item.
  351. If the cursor is not in an item, throw an error."
  352. (interactive)
  353. (let ((pos (point))
  354. (limit (save-excursion
  355. (condition-case nil
  356. (progn
  357. (org-back-to-heading)
  358. (beginning-of-line 2) (point))
  359. (error (point-min)))))
  360. (ind-empty (if org-empty-line-terminates-plain-lists 0 10000))
  361. ind ind1)
  362. (if (org-at-item-p)
  363. (beginning-of-line 1)
  364. (beginning-of-line 1)
  365. (skip-chars-forward " \t")
  366. (setq ind (current-column))
  367. (if (catch 'exit
  368. (while t
  369. (beginning-of-line 0)
  370. (if (or (bobp) (< (point) limit)) (throw 'exit nil))
  371. (if (looking-at "[ \t]*$")
  372. (setq ind1 ind-empty)
  373. (skip-chars-forward " \t")
  374. (setq ind1 (current-column)))
  375. (if (< ind1 ind)
  376. (progn (beginning-of-line 1) (throw 'exit (org-at-item-p))))))
  377. nil
  378. (goto-char pos)
  379. (error "Not in an item")))))
  380. (defun org-end-of-item ()
  381. "Go to the end of the current hand-formatted item.
  382. If the cursor is not in an item, throw an error."
  383. (interactive)
  384. (let* ((pos (point))
  385. ind1
  386. (ind-empty (if org-empty-line-terminates-plain-lists 0 10000))
  387. (limit (save-excursion (outline-next-heading) (point)))
  388. (ind (save-excursion
  389. (org-beginning-of-item)
  390. (skip-chars-forward " \t")
  391. (current-column)))
  392. (end (catch 'exit
  393. (while t
  394. (beginning-of-line 2)
  395. (if (eobp) (throw 'exit (point)))
  396. (if (>= (point) limit) (throw 'exit (point-at-bol)))
  397. (if (looking-at "[ \t]*$")
  398. (setq ind1 ind-empty)
  399. (skip-chars-forward " \t")
  400. (setq ind1 (current-column)))
  401. (if (<= ind1 ind)
  402. (throw 'exit (point-at-bol)))))))
  403. (if end
  404. (goto-char end)
  405. (goto-char pos)
  406. (error "Not in an item"))))
  407. (defun org-next-item ()
  408. "Move to the beginning of the next item in the current plain list.
  409. Error if not at a plain list, or if this is the last item in the list."
  410. (interactive)
  411. (let (ind ind1 (pos (point)))
  412. (org-beginning-of-item)
  413. (setq ind (org-get-indentation))
  414. (org-end-of-item)
  415. (setq ind1 (org-get-indentation))
  416. (unless (and (org-at-item-p) (= ind ind1))
  417. (goto-char pos)
  418. (error "On last item"))))
  419. (defun org-previous-item ()
  420. "Move to the beginning of the previous item in the current plain list.
  421. Error if not at a plain list, or if this is the first item in the list."
  422. (interactive)
  423. (let (beg ind ind1 (pos (point)))
  424. (org-beginning-of-item)
  425. (setq beg (point))
  426. (setq ind (org-get-indentation))
  427. (goto-char beg)
  428. (catch 'exit
  429. (while t
  430. (beginning-of-line 0)
  431. (if (looking-at "[ \t]*$")
  432. nil
  433. (if (<= (setq ind1 (org-get-indentation)) ind)
  434. (throw 'exit t)))))
  435. (condition-case nil
  436. (if (or (not (org-at-item-p))
  437. (< ind1 (1- ind)))
  438. (error "")
  439. (org-beginning-of-item))
  440. (error (goto-char pos)
  441. (error "On first item")))))
  442. (defun org-first-list-item-p ()
  443. "Is this heading the item in a plain list?"
  444. (unless (org-at-item-p)
  445. (error "Not at a plain list item"))
  446. (org-beginning-of-item)
  447. (= (point) (save-excursion (org-beginning-of-item-list))))
  448. (defun org-move-item-down ()
  449. "Move the plain list item at point down, i.e. swap with following item.
  450. Subitems (items with larger indentation) are considered part of the item,
  451. so this really moves item trees."
  452. (interactive)
  453. (let ((col (current-column))
  454. (pos (point))
  455. beg beg0 end end0 ind ind1 txt ne-end ne-beg)
  456. (org-beginning-of-item)
  457. (setq beg0 (point))
  458. (save-excursion
  459. (setq ne-beg (org-back-over-empty-lines))
  460. (setq beg (point)))
  461. (goto-char beg0)
  462. (setq ind (org-get-indentation))
  463. (org-end-of-item)
  464. (setq end0 (point))
  465. (setq ind1 (org-get-indentation))
  466. (setq ne-end (org-back-over-empty-lines))
  467. (setq end (point))
  468. (goto-char beg0)
  469. (when (and (org-first-list-item-p) (< ne-end ne-beg))
  470. ;; include less whitespace
  471. (save-excursion
  472. (goto-char beg)
  473. (forward-line (- ne-beg ne-end))
  474. (setq beg (point))))
  475. (goto-char end0)
  476. (if (and (org-at-item-p) (= ind ind1))
  477. (progn
  478. (org-end-of-item)
  479. (org-back-over-empty-lines)
  480. (setq txt (buffer-substring beg end))
  481. (save-excursion
  482. (delete-region beg end))
  483. (setq pos (point))
  484. (insert txt)
  485. (goto-char pos) (org-skip-whitespace)
  486. (org-maybe-renumber-ordered-list)
  487. (move-to-column col))
  488. (goto-char pos)
  489. (move-to-column col)
  490. (error "Cannot move this item further down"))))
  491. (defun org-move-item-up (arg)
  492. "Move the plain list item at point up, i.e. swap with previous item.
  493. Subitems (items with larger indentation) are considered part of the item,
  494. so this really moves item trees."
  495. (interactive "p")
  496. (let ((col (current-column)) (pos (point))
  497. beg beg0 end ind ind1 txt
  498. ne-beg ne-ins ins-end)
  499. (org-beginning-of-item)
  500. (setq beg0 (point))
  501. (setq ind (org-get-indentation))
  502. (save-excursion
  503. (setq ne-beg (org-back-over-empty-lines))
  504. (setq beg (point)))
  505. (goto-char beg0)
  506. (org-end-of-item)
  507. (org-back-over-empty-lines)
  508. (setq end (point))
  509. (goto-char beg0)
  510. (catch 'exit
  511. (while t
  512. (beginning-of-line 0)
  513. (if (looking-at "[ \t]*$")
  514. (if org-empty-line-terminates-plain-lists
  515. (progn
  516. (goto-char pos)
  517. (error "Cannot move this item further up"))
  518. nil)
  519. (if (<= (setq ind1 (org-get-indentation)) ind)
  520. (throw 'exit t)))))
  521. (condition-case nil
  522. (org-beginning-of-item)
  523. (error (goto-char beg0)
  524. (move-to-column col)
  525. (error "Cannot move this item further up")))
  526. (setq ind1 (org-get-indentation))
  527. (if (and (org-at-item-p) (= ind ind1))
  528. (progn
  529. (setq ne-ins (org-back-over-empty-lines))
  530. (setq txt (buffer-substring beg end))
  531. (save-excursion
  532. (delete-region beg end))
  533. (setq pos (point))
  534. (insert txt)
  535. (setq ins-end (point))
  536. (goto-char pos) (org-skip-whitespace)
  537. (when (and (org-first-list-item-p) (> ne-ins ne-beg))
  538. ;; Move whitespace back to beginning
  539. (save-excursion
  540. (goto-char ins-end)
  541. (let ((kill-whole-line t))
  542. (kill-line (- ne-ins ne-beg)) (point)))
  543. (insert (make-string (- ne-ins ne-beg) ?\n)))
  544. (org-maybe-renumber-ordered-list)
  545. (move-to-column col))
  546. (goto-char pos)
  547. (move-to-column col)
  548. (error "Cannot move this item further up"))))
  549. (defun org-maybe-renumber-ordered-list ()
  550. "Renumber the ordered list at point if setup allows it.
  551. This tests the user option `org-auto-renumber-ordered-lists' before
  552. doing the renumbering."
  553. (interactive)
  554. (when (and org-auto-renumber-ordered-lists
  555. (org-at-item-p))
  556. (if (match-beginning 3)
  557. (org-renumber-ordered-list 1)
  558. (org-fix-bullet-type))))
  559. (defun org-maybe-renumber-ordered-list-safe ()
  560. (condition-case nil
  561. (save-excursion
  562. (org-maybe-renumber-ordered-list))
  563. (error nil)))
  564. (defun org-cycle-list-bullet (&optional which)
  565. "Cycle through the different itemize/enumerate bullets.
  566. This cycle the entire list level through the sequence:
  567. `-' -> `+' -> `*' -> `1.' -> `1)'
  568. If WHICH is a string, use that as the new bullet. If WHICH is an integer,
  569. 0 means `-', 1 means `+' etc."
  570. (interactive "P")
  571. (org-preserve-lc
  572. (org-beginning-of-item-list)
  573. (org-at-item-p)
  574. (beginning-of-line 1)
  575. (let ((current (match-string 0))
  576. (prevp (eq which 'previous))
  577. new old)
  578. (setq new (cond
  579. ((and (numberp which)
  580. (nth (1- which) '("-" "+" "*" "1." "1)"))))
  581. ((string-match "-" current) (if prevp "1)" "+"))
  582. ((string-match "\\+" current)
  583. (if prevp "-" (if (looking-at "\\S-") "1." "*")))
  584. ((string-match "\\*" current) (if prevp "+" "1."))
  585. ((string-match "\\." current)
  586. (if prevp (if (looking-at "\\S-") "+" "*") "1)"))
  587. ((string-match ")" current) (if prevp "1." "-"))
  588. (t (error "This should not happen"))))
  589. (and (looking-at "\\([ \t]*\\)\\(\\S-+\\)")
  590. (setq old (match-string 2))
  591. (replace-match (concat "\\1" new)))
  592. (org-shift-item-indentation (- (length new) (length old)))
  593. (org-fix-bullet-type)
  594. (org-maybe-renumber-ordered-list))))
  595. (defun org-get-string-indentation (s)
  596. "What indentation has S due to SPACE and TAB at the beginning of the string?"
  597. (let ((n -1) (i 0) (w tab-width) c)
  598. (catch 'exit
  599. (while (< (setq n (1+ n)) (length s))
  600. (setq c (aref s n))
  601. (cond ((= c ?\ ) (setq i (1+ i)))
  602. ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
  603. (t (throw 'exit t)))))
  604. i))
  605. (defun org-renumber-ordered-list (arg)
  606. "Renumber an ordered plain list.
  607. Cursor needs to be in the first line of an item, the line that starts
  608. with something like \"1.\" or \"2)\"."
  609. (interactive "p")
  610. (unless (and (org-at-item-p)
  611. (match-beginning 3))
  612. (error "This is not an ordered list"))
  613. (let ((line (org-current-line))
  614. (col (current-column))
  615. (ind (org-get-string-indentation
  616. (buffer-substring (point-at-bol) (match-beginning 3))))
  617. ;; (term (substring (match-string 3) -1))
  618. ind1 (n (1- arg))
  619. fmt bobp old new)
  620. ;; find where this list begins
  621. (org-beginning-of-item-list)
  622. (setq bobp (bobp))
  623. (looking-at "[ \t]*[0-9]+\\([.)]\\)")
  624. (setq fmt (concat "%d" (match-string 1)))
  625. (beginning-of-line 0)
  626. ;; walk forward and replace these numbers
  627. (catch 'exit
  628. (while t
  629. (catch 'next
  630. (if bobp (setq bobp nil) (beginning-of-line 2))
  631. (if (eobp) (throw 'exit nil))
  632. (if (looking-at "[ \t]*$") (throw 'next nil))
  633. (skip-chars-forward " \t") (setq ind1 (current-column))
  634. (if (> ind1 ind) (throw 'next t))
  635. (if (< ind1 ind) (throw 'exit t))
  636. (if (not (org-at-item-p)) (throw 'exit nil))
  637. (setq old (match-string 2))
  638. (delete-region (match-beginning 2) (match-end 2))
  639. (goto-char (match-beginning 2))
  640. (insert (setq new (format fmt (setq n (1+ n)))))
  641. (org-shift-item-indentation (- (length new) (length old))))))
  642. (goto-line line)
  643. (org-move-to-column col)))
  644. (defun org-fix-bullet-type ()
  645. "Make sure all items in this list have the same bullet as the first item.
  646. Also, fix the indentation."
  647. (interactive)
  648. (unless (org-at-item-p) (error "This is not a list"))
  649. (let ((line (org-current-line))
  650. (col (current-column))
  651. (ind (current-indentation))
  652. ind1 bullet oldbullet)
  653. ;; find where this list begins
  654. (org-beginning-of-item-list)
  655. (beginning-of-line 1)
  656. ;; find out what the bullet type is
  657. (looking-at "[ \t]*\\(\\S-+\\)")
  658. (setq bullet (concat (match-string 1) " "))
  659. (if (and org-list-two-spaces-after-bullet-regexp
  660. (string-match org-list-two-spaces-after-bullet-regexp bullet))
  661. (setq bullet (concat bullet " ")))
  662. ;; walk forward and replace these numbers
  663. (beginning-of-line 0)
  664. (catch 'exit
  665. (while t
  666. (catch 'next
  667. (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. (skip-chars-forward " \t")
  675. (looking-at "\\S-+ *")
  676. (setq oldbullet (match-string 0))
  677. (replace-match bullet)
  678. (org-shift-item-indentation (- (length bullet) (length oldbullet))))))
  679. (goto-line line)
  680. (org-move-to-column col)
  681. (if (string-match "[0-9]" bullet)
  682. (org-renumber-ordered-list 1))))
  683. (defun org-shift-item-indentation (delta)
  684. "Shift the indentation in current item by DELTA."
  685. (save-excursion
  686. (let ((beg (point-at-bol))
  687. (end (progn (org-end-of-item) (point)))
  688. i)
  689. (goto-char end)
  690. (beginning-of-line 0)
  691. (while (> (point) beg)
  692. (when (looking-at "[ \t]*\\S-")
  693. ;; this is not an empty line
  694. (setq i (org-get-indentation))
  695. (if (and (> i 0) (> (setq i (+ i delta)) 0))
  696. (indent-line-to i)))
  697. (beginning-of-line 0)))))
  698. (defun org-beginning-of-item-list ()
  699. "Go to the beginning of the current item list.
  700. I.e. to the first item in this list."
  701. (interactive)
  702. (org-beginning-of-item)
  703. (let ((pos (point-at-bol))
  704. (ind (org-get-indentation))
  705. ind1)
  706. ;; find where this list begins
  707. (catch 'exit
  708. (while t
  709. (catch 'next
  710. (beginning-of-line 0)
  711. (if (looking-at "[ \t]*$")
  712. (throw (if (bobp) 'exit 'next) t))
  713. (skip-chars-forward " \t") (setq ind1 (current-column))
  714. (if (or (< ind1 ind)
  715. (and (= ind1 ind)
  716. (not (org-at-item-p)))
  717. (and (= (point-at-bol) (point-min))
  718. (setq pos (point-min))))
  719. (throw 'exit t)
  720. (when (org-at-item-p) (setq pos (point-at-bol)))))))
  721. (goto-char pos)))
  722. (defun org-end-of-item-list ()
  723. "Go to the end of the current item list.
  724. I.e. to the text after the last item."
  725. (interactive)
  726. (org-beginning-of-item)
  727. (let ((pos (point-at-bol))
  728. (ind (org-get-indentation))
  729. ind1)
  730. ;; find where this list begins
  731. (catch 'exit
  732. (while t
  733. (catch 'next
  734. (beginning-of-line 2)
  735. (if (looking-at "[ \t]*$")
  736. (throw (if (eobp) 'exit 'next) t))
  737. (skip-chars-forward " \t") (setq ind1 (current-column))
  738. (if (or (< ind1 ind)
  739. (and (= ind1 ind)
  740. (not (org-at-item-p)))
  741. (eobp))
  742. (progn
  743. (setq pos (point-at-bol))
  744. (throw 'exit t))))))
  745. (goto-char pos)))
  746. (defvar org-last-indent-begin-marker (make-marker))
  747. (defvar org-last-indent-end-marker (make-marker))
  748. (defun org-outdent-item (arg)
  749. "Outdent a local list item."
  750. (interactive "p")
  751. (org-indent-item (- arg)))
  752. (defun org-indent-item (arg)
  753. "Indent a local list item."
  754. (interactive "p")
  755. (unless (org-at-item-p)
  756. (error "Not on an item"))
  757. (save-excursion
  758. (let (beg end ind ind1 tmp delta ind-down ind-up)
  759. (if (memq last-command '(org-shiftmetaright org-shiftmetaleft))
  760. (setq beg org-last-indent-begin-marker
  761. end org-last-indent-end-marker)
  762. (org-beginning-of-item)
  763. (setq beg (move-marker org-last-indent-begin-marker (point)))
  764. (org-end-of-item)
  765. (setq end (move-marker org-last-indent-end-marker (point))))
  766. (goto-char beg)
  767. (setq tmp (org-item-indent-positions)
  768. ind (car tmp)
  769. ind-down (nth 2 tmp)
  770. ind-up (nth 1 tmp)
  771. delta (if (> arg 0)
  772. (if ind-down (- ind-down ind) 2)
  773. (if ind-up (- ind-up ind) -2)))
  774. (if (< (+ delta ind) 0) (error "Cannot outdent beyond margin"))
  775. (while (< (point) end)
  776. (beginning-of-line 1)
  777. (skip-chars-forward " \t") (setq ind1 (current-column))
  778. (delete-region (point-at-bol) (point))
  779. (or (eolp) (org-indent-to-column (+ ind1 delta)))
  780. (beginning-of-line 2))))
  781. (org-fix-bullet-type)
  782. (org-maybe-renumber-ordered-list-safe)
  783. (save-excursion
  784. (beginning-of-line 0)
  785. (condition-case nil (org-beginning-of-item) (error nil))
  786. (org-maybe-renumber-ordered-list-safe)))
  787. (defun org-item-indent-positions ()
  788. "Return indentation for plain list items.
  789. This returns a list with three values: The current indentation, the
  790. parent indentation and the indentation a child should have.
  791. Assumes cursor in item line."
  792. (let* ((bolpos (point-at-bol))
  793. (ind (org-get-indentation))
  794. ind-down ind-up pos)
  795. (save-excursion
  796. (org-beginning-of-item-list)
  797. (skip-chars-backward "\n\r \t")
  798. (when (org-in-item-p)
  799. (org-beginning-of-item)
  800. (setq ind-up (org-get-indentation))))
  801. (setq pos (point))
  802. (save-excursion
  803. (cond
  804. ((and (condition-case nil (progn (org-previous-item) t)
  805. (error nil))
  806. (or (forward-char 1) t)
  807. (re-search-forward "^\\([ \t]*\\([-+]\\|\\([0-9]+[.)]\\)\\)\\|[ \t]+\\*\\)\\( \\|$\\)" bolpos t))
  808. (setq ind-down (org-get-indentation)))
  809. ((and (goto-char pos)
  810. (org-at-item-p))
  811. (goto-char (match-end 0))
  812. (skip-chars-forward " \t")
  813. (setq ind-down (current-column)))))
  814. (list ind ind-up ind-down)))
  815. ;;; Send and receive lists
  816. (defun org-list-parse-list (&optional delete)
  817. "Parse the list at point and maybe DELETE it.
  818. Return a list containing first level items as strings and
  819. sublevels as a list of strings."
  820. (let* ((item-beginning (org-list-item-beginning))
  821. (start (car item-beginning))
  822. (end (org-list-end (cdr item-beginning)))
  823. output itemsep ltype)
  824. (while (re-search-forward org-list-beginning-re end t)
  825. (goto-char (match-beginning 3))
  826. (save-match-data
  827. (cond ((string-match "[0-9]" (match-string 2))
  828. (setq itemsep "[0-9]+\\(?:\\.\\|)\\)"
  829. ltype 'ordered))
  830. ((string-match "^.*::" (match-string 0))
  831. (setq itemsep "[-+]" ltype 'descriptive))
  832. (t (setq itemsep "[-+]" ltype 'unordered))))
  833. (let* ((indent1 (match-string 1))
  834. (nextitem (save-excursion
  835. (save-match-data
  836. (or (and (re-search-forward
  837. (concat "^" indent1 itemsep " *?") end t)
  838. (match-beginning 0)) end))))
  839. (item (buffer-substring
  840. (point)
  841. (or (and (re-search-forward
  842. org-list-beginning-re end t)
  843. (goto-char (match-beginning 0)))
  844. (goto-char end))))
  845. (nextindent (match-string 1))
  846. (item (org-trim item))
  847. (item (if (string-match "^\\[\\([xX ]\\)\\]" item)
  848. (replace-match (if (equal (match-string 1 item) " ")
  849. "[CBOFF]"
  850. "[CBON]")
  851. t nil item)
  852. item)))
  853. (push item output)
  854. (when (> (length nextindent)
  855. (length indent1))
  856. (narrow-to-region (point) nextitem)
  857. (push (org-list-parse-list) output)
  858. (widen))))
  859. (when delete (delete-region start end))
  860. (setq output (nreverse output))
  861. (push ltype output)))
  862. (defun org-list-item-beginning ()
  863. "Find the beginning of the list item.
  864. Return a cons which car is the beginning position of the item and
  865. cdr is the indentation string."
  866. (save-excursion
  867. (if (not (or (looking-at org-list-beginning-re)
  868. (re-search-backward
  869. org-list-beginning-re nil t)))
  870. (progn (goto-char (point-min)) (point))
  871. (cons (match-beginning 0) (match-string 1)))))
  872. (defun org-list-end (indent)
  873. "Return the position of the end of the list.
  874. INDENT is the indentation of the list."
  875. (save-excursion
  876. (catch 'exit
  877. (while (or (looking-at org-list-beginning-re)
  878. (looking-at (concat "^" indent "[ \t]+\\|^$")))
  879. (if (eq (point) (point-max))
  880. (throw 'exit (point-max)))
  881. (forward-line 1))) (point)))
  882. (defun org-list-insert-radio-list ()
  883. "Insert a radio list template appropriate for this major mode."
  884. (interactive)
  885. (let* ((e (assq major-mode org-list-radio-list-templates))
  886. (txt (nth 1 e))
  887. name pos)
  888. (unless e (error "No radio list setup defined for %s" major-mode))
  889. (setq name (read-string "List name: "))
  890. (while (string-match "%n" txt)
  891. (setq txt (replace-match name t t txt)))
  892. (or (bolp) (insert "\n"))
  893. (setq pos (point))
  894. (insert txt)
  895. (goto-char pos)))
  896. (defun org-list-send-list (&optional maybe)
  897. "Send a tranformed version of this list to the receiver position.
  898. With argument MAYBE, fail quietly if no transformation is defined for
  899. this list."
  900. (interactive)
  901. (catch 'exit
  902. (unless (org-at-item-p) (error "Not at a list"))
  903. (save-excursion
  904. (goto-char (car (org-list-item-beginning)))
  905. (beginning-of-line 0)
  906. (unless (looking-at "#\\+ORGLST: *SEND +\\([a-zA-Z0-9_]+\\) +\\([^ \t\r\n]+\\)\\( +.*\\)?")
  907. (if maybe
  908. (throw 'exit nil)
  909. (error "Don't know how to transform this list"))))
  910. (let* ((name (match-string 1))
  911. (item-beginning (org-list-item-beginning))
  912. (transform (intern (match-string 2)))
  913. (txt (buffer-substring-no-properties
  914. (car item-beginning)
  915. (org-list-end (cdr item-beginning))))
  916. (list (org-list-parse-list))
  917. beg)
  918. (unless (fboundp transform)
  919. (error "No such transformation function %s" transform))
  920. (setq txt (funcall transform list))
  921. ;; Find the insertion place
  922. (save-excursion
  923. (goto-char (point-min))
  924. (unless (re-search-forward
  925. (concat "BEGIN RECEIVE ORGLST +" name "\\([ \t]\\|$\\)") nil t)
  926. (error "Don't know where to insert translated list"))
  927. (goto-char (match-beginning 0))
  928. (beginning-of-line 2)
  929. (setq beg (point))
  930. (unless (re-search-forward (concat "END RECEIVE ORGLST +" name) nil t)
  931. (error "Cannot find end of insertion region"))
  932. (beginning-of-line 1)
  933. (delete-region beg (point))
  934. (goto-char beg)
  935. (insert txt "\n"))
  936. (message "List converted and installed at receiver location"))))
  937. (defun org-list-to-generic (list params)
  938. "Convert a LIST parsed through `org-list-parse-list' to other formats.
  939. Valid parameters PARAMS are
  940. :ustart String to start an unordered list
  941. :uend String to end an unordered list
  942. :ostart String to start an ordered list
  943. :oend String to end an ordered list
  944. :dstart String to start a descriptive list
  945. :dend String to end a descriptive list
  946. :dtstart String to start a descriptive term
  947. :dtend String to end a descriptive term
  948. :ddstart String to start a description
  949. :ddend String to end a description
  950. :splice When set to t, return only list body lines, don't wrap
  951. them into :[u/o]start and :[u/o]end. Default is nil.
  952. :istart String to start a list item
  953. :iend String to end a list item
  954. :isep String to separate items
  955. :lsep String to separate sublists
  956. :cboff String to insert for an unchecked checkbox
  957. :cbon String to insert for a checked checkbox"
  958. (interactive)
  959. (let* ((p params) sublist
  960. (splicep (plist-get p :splice))
  961. (ostart (plist-get p :ostart))
  962. (oend (plist-get p :oend))
  963. (ustart (plist-get p :ustart))
  964. (uend (plist-get p :uend))
  965. (dstart (plist-get p :dstart))
  966. (dend (plist-get p :dend))
  967. (dtstart (plist-get p :dtstart))
  968. (dtend (plist-get p :dtend))
  969. (ddstart (plist-get p :ddstart))
  970. (ddend (plist-get p :ddend))
  971. (istart (plist-get p :istart))
  972. (iend (plist-get p :iend))
  973. (isep (plist-get p :isep))
  974. (lsep (plist-get p :lsep))
  975. (cbon (plist-get p :cbon))
  976. (cboff (plist-get p :cboff)))
  977. (let ((wrapper
  978. (cond ((eq (car list) 'ordered)
  979. (concat ostart "\n%s" oend "\n"))
  980. ((eq (car list) 'unordered)
  981. (concat ustart "\n%s" uend "\n"))
  982. ((eq (car list) 'descriptive)
  983. (concat dstart "\n%s" dend "\n"))))
  984. rtn term defstart defend)
  985. (while (setq sublist (pop list))
  986. (cond ((symbolp sublist) nil)
  987. ((stringp sublist)
  988. (when (string-match "^\\(.*\\) ::" sublist)
  989. (setq term (org-trim (format (concat dtstart "%s" dtend)
  990. (match-string 1 sublist))))
  991. (setq sublist (substring sublist (1+ (length term)))))
  992. (if (string-match "\\[CBON\\]" sublist)
  993. (setq sublist (replace-match cbon t t sublist)))
  994. (if (string-match "\\[CBOFF\\]" sublist)
  995. (setq sublist (replace-match cboff t t sublist)))
  996. (setq rtn (concat rtn istart term ddstart
  997. sublist ddend iend isep)))
  998. (t (setq rtn (concat rtn ;; previous list
  999. lsep ;; list separator
  1000. (org-list-to-generic sublist p)
  1001. lsep ;; list separator
  1002. )))))
  1003. (format wrapper rtn))))
  1004. (defun org-list-to-latex (list &optional params)
  1005. "Convert LIST into a LaTeX list.
  1006. LIST is as returnd by `org-list-parse-list'. PARAMS is a property list
  1007. with overruling parameters for `org-list-to-generic'."
  1008. (org-list-to-generic
  1009. list
  1010. (org-combine-plists
  1011. '(:splicep nil :ostart "\\begin{enumerate}" :oend "\\end{enumerate}"
  1012. :ustart "\\begin{itemize}" :uend "\\end{itemize}"
  1013. :dstart "\\begin{description}" :dend "\\end{description}"
  1014. :dtstart "[" :dtend "]"
  1015. :ddstart "" :ddend ""
  1016. :istart "\\item " :iend ""
  1017. :isep "\n" :lsep "\n"
  1018. :cbon "\\texttt{[X]}" :cboff "\\texttt{[ ]}")
  1019. params)))
  1020. (defun org-list-to-html (list &optional params)
  1021. "Convert LIST into a HTML list.
  1022. LIST is as returnd by `org-list-parse-list'. PARAMS is a property list
  1023. with overruling parameters for `org-list-to-generic'."
  1024. (org-list-to-generic
  1025. list
  1026. (org-combine-plists
  1027. '(:splicep nil :ostart "<ol>" :oend "</ol>"
  1028. :ustart "<ul>" :uend "</ul>"
  1029. :dstart "<dl>" :dend "</dl>"
  1030. :dtstart "<dt>" :dtend "</dt>"
  1031. :ddstart "<dd>" :ddend "</dd>"
  1032. :istart "<li>" :iend "</li>"
  1033. :isep "\n" :lsep "\n"
  1034. :cbon "<code>[X]</code>" :cboff "<code>[ ]</code>")
  1035. params)))
  1036. (defun org-list-to-texinfo (list &optional params)
  1037. "Convert LIST into a Texinfo list.
  1038. LIST is as returnd by `org-list-parse-list'. PARAMS is a property list
  1039. with overruling parameters for `org-list-to-generic'."
  1040. (org-list-to-generic
  1041. list
  1042. (org-combine-plists
  1043. '(:splicep nil :ostart "@itemize @minus" :oend "@end itemize"
  1044. :ustart "@enumerate" :uend "@end enumerate"
  1045. :dstart "@table" :dend "@end table"
  1046. :dtstart "@item " :dtend "\n"
  1047. :ddstart "" :ddend ""
  1048. :istart "@item\n" :iend ""
  1049. :isep "\n" :lsep "\n"
  1050. :cbon "@code{[X]}" :cboff "@code{[ ]}")
  1051. params)))
  1052. (provide 'org-list)
  1053. ;; arch-tag: 73cf50c1-200f-4d1d-8a53-4e842a5b11c8
  1054. ;;; org-list.el ends here