org-list.el 35 KB

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