org-list.el 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003
  1. ;;; org-list.el --- Plain lists for Org-mode
  2. ;;
  3. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
  4. ;; Free Software Foundation, Inc.
  5. ;;
  6. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  7. ;; Bastien Guerry <bzg AT altern DOT org>
  8. ;; Keywords: outlines, hypermedia, calendar, wp
  9. ;; Homepage: http://orgmode.org
  10. ;; Version: 7.4
  11. ;;
  12. ;; This file is part of GNU Emacs.
  13. ;;
  14. ;; GNU Emacs is free software: you can redistribute it and/or modify
  15. ;; it under the terms of the GNU General Public License as published by
  16. ;; the Free Software Foundation, either version 3 of the License, or
  17. ;; (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.
  22. ;; You should have received a copy of the GNU General Public License
  23. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  24. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  25. ;;
  26. ;;; Commentary:
  27. ;; This file contains the code dealing with plain lists in Org-mode.
  28. ;; The fundamental idea behind lists work is to use structures. A
  29. ;; structure is a snapshot of the list, in the shape of data tree (see
  30. ;; `org-list-struct').
  31. ;; Once the list structure is stored, it is possible to make changes
  32. ;; directly on it or get useful information about the list, with the
  33. ;; two helper functions, namely `org-list-parents-alist' and
  34. ;; `org-list-prevs-alist', and using accessors or methods.
  35. ;; Structure is eventually applied to the buffer with
  36. ;; `org-list-write-struct'. This function repairs (bullets,
  37. ;; indentation, checkboxes) the structure before applying it. It
  38. ;; should be called near the end of any function working on
  39. ;; structures.
  40. ;; Thus, a function applying to lists should usually follow this
  41. ;; template:
  42. ;; 1. Verify point is in a list and grab item beginning (with the same
  43. ;; function `org-in-item-p'). If the function requires the cursor
  44. ;; to be at item's bullet, `org-at-item-p' is more selective. If
  45. ;; the cursor is amidst the buffer, it is possible to find the
  46. ;; closest item with `org-list-search-backward', or
  47. ;; `org-list-search-forward', applied to `org-item-beginning-re'.
  48. ;; 2. Get list structure with `org-list-struct'.
  49. ;; 3. Compute one, or both, helper functions,
  50. ;; (`org-list-parents-alist', `org-list-prevs-alist') depending on
  51. ;; needed accessors.
  52. ;; 4. Proceed with the modifications, using methods and accessors.
  53. ;; 5. Verify and apply structure to buffer, using
  54. ;; `org-list-write-struct'. Possibly use
  55. ;; `org-update-checkbox-count-maybe' if checkboxes might have been
  56. ;; modified.
  57. ;; Computing a list structure can be a costly operation on huge lists
  58. ;; (a few thousand lines long). Thus, code should follow the rule :
  59. ;; "collect once, use many". As a corollary, it is usally a bad idea
  60. ;; to use directly an interactive function inside the code, as those,
  61. ;; being independant entities, read the whole list structure another
  62. ;; time.
  63. ;;; Code:
  64. (eval-when-compile
  65. (require 'cl))
  66. (require 'org-macs)
  67. (require 'org-compat)
  68. (defvar org-blank-before-new-entry)
  69. (defvar org-complex-heading-regexp)
  70. (defvar org-description-max-indent)
  71. (defvar org-drawer-regexp)
  72. (defvar org-drawers)
  73. (defvar org-M-RET-may-split-line)
  74. (defvar org-odd-levels-only)
  75. (defvar org-outline-regexp)
  76. (defvar org-ts-regexp)
  77. (defvar org-ts-regexp-both)
  78. (declare-function org-at-heading-p "org" (&optional ignored))
  79. (declare-function org-back-over-empty-lines "org" ())
  80. (declare-function org-back-to-heading "org" (&optional invisible-ok))
  81. (declare-function org-combine-plists "org" (&rest plists))
  82. (declare-function org-count "org" (cl-item cl-seq))
  83. (declare-function org-current-level "org" ())
  84. (declare-function org-entry-get "org"
  85. (pom property &optional inherit literal-nil))
  86. (declare-function org-get-indentation "org" (&optional line))
  87. (declare-function org-icompleting-read "org" (&rest args))
  88. (declare-function org-in-regexp "org" (re &optional nlines visually))
  89. (declare-function org-in-regexps-block-p "org"
  90. (start-re end-re &optional bound))
  91. (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
  92. (declare-function org-inlinetask-goto-end "org-inlinetask" ())
  93. (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
  94. (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
  95. (declare-function org-level-increment "org" ())
  96. (declare-function org-narrow-to-subtree "org" ())
  97. (declare-function org-on-heading-p "org" (&optional invisible-ok))
  98. (declare-function org-previous-line-empty-p "org" ())
  99. (declare-function org-remove-if "org" (predicate seq))
  100. (declare-function org-show-subtree "org" ())
  101. (declare-function org-time-string-to-seconds "org" (s))
  102. (declare-function org-timer-hms-to-secs "org-timer" (hms))
  103. (declare-function org-timer-item "org-timer" (&optional arg))
  104. (declare-function org-trim "org" (s))
  105. (declare-function org-uniquify "org" (list))
  106. (declare-function outline-invisible-p "outline" (&optional pos))
  107. (declare-function outline-next-heading "outline" ())
  108. (declare-function outline-previous-heading "outline" ())
  109. ;;; Configuration variables
  110. (defgroup org-plain-lists nil
  111. "Options concerning plain lists in Org-mode."
  112. :tag "Org Plain lists"
  113. :group 'org-structure)
  114. (defcustom org-cycle-include-plain-lists t
  115. "When t, make TAB cycle visibility on plain list items.
  116. Cycling plain lists works only when the cursor is on a plain list
  117. item. When the cursor is on an outline heading, plain lists are
  118. treated as text. This is the most stable way of handling this,
  119. which is why it is the default.
  120. When this is the symbol `integrate', then during cycling, plain
  121. list items will *temporarily* be interpreted as outline headlines
  122. with a level given by 1000+i where i is the indentation of the
  123. bullet. This setting can lead to strange effects when switching
  124. visibility to `children', because the first \"child\" in a
  125. subtree decides what children should be listed. If that first
  126. \"child\" is a plain list item with an implied large level
  127. number, all true children and grand children of the outline
  128. heading will be exposed in a children' view."
  129. :group 'org-plain-lists
  130. :type '(choice
  131. (const :tag "Never" nil)
  132. (const :tag "With cursor in plain list (recommended)" t)
  133. (const :tag "As children of outline headings" integrate)))
  134. (defcustom org-list-demote-modify-bullet nil
  135. "Default bullet type installed when demoting an item.
  136. This is an association list, for each bullet type, this alist will point
  137. to the bullet that should be used when this item is demoted.
  138. For example,
  139. (setq org-list-demote-modify-bullet
  140. '((\"+\" . \"-\") (\"-\" . \"+\") (\"*\" . \"+\")))
  141. will make
  142. + Movies
  143. + Silence of the Lambs
  144. + My Cousin Vinny
  145. + Books
  146. + The Hunt for Red October
  147. + The Road to Omaha
  148. into
  149. + Movies
  150. - Silence of the Lambs
  151. - My Cousin Vinny
  152. + Books
  153. - The Hunt for Red October
  154. - The Road to Omaha"
  155. :group 'org-plain-lists
  156. :type '(repeat
  157. (cons
  158. (choice :tag "If the current bullet is "
  159. (const "-")
  160. (const "+")
  161. (const "*")
  162. (const "1.")
  163. (const "1)"))
  164. (choice :tag "demotion will change it to"
  165. (const "-")
  166. (const "+")
  167. (const "*")
  168. (const "1.")
  169. (const "1)")))))
  170. (defcustom org-plain-list-ordered-item-terminator t
  171. "The character that makes a line with leading number an ordered list item.
  172. Valid values are ?. and ?\). To get both terminators, use t. While
  173. ?. may look nicer, it creates the danger that a line with leading
  174. number may be incorrectly interpreted as an item. ?\) therefore is
  175. the safe choice."
  176. :group 'org-plain-lists
  177. :type '(choice (const :tag "dot like in \"2.\"" ?.)
  178. (const :tag "paren like in \"2)\"" ?\))
  179. (const :tab "both" t)))
  180. (defcustom org-alphabetical-lists nil
  181. "Non-nil means single character alphabetical bullets are allowed.
  182. Both uppercase and lowercase are handled. Lists with more than 26
  183. items will fallback to standard numbering. Alphabetical counters
  184. like \"[@c]\" will be recognized."
  185. :group 'org-plain-lists
  186. :type 'boolean)
  187. (defcustom org-list-two-spaces-after-bullet-regexp nil
  188. "A regular expression matching bullets that should have 2 spaces after them.
  189. When nil, no bullet will have two spaces after them.
  190. When a string, it will be used as a regular expression. When the
  191. bullet type of a list is changed, the new bullet type will be
  192. matched against this regexp. If it matches, there will be two
  193. spaces instead of one after the bullet in each item of the list."
  194. :group 'org-plain-lists
  195. :type '(choice
  196. (const :tag "never" nil)
  197. (regexp)))
  198. (defcustom org-list-ending-method 'both
  199. "Determine where plain lists should end.
  200. Valid values are: `regexp', `indent' or `both'.
  201. When set to `regexp', Org will look into two variables,
  202. `org-empty-line-terminates-plain-lists' and the more general
  203. `org-list-end-regexp', to determine what will end lists.
  204. When set to `indent', a list will end whenever a line following
  205. an item, but not starting one, is less or equally indented than
  206. the first item of the list.
  207. When set to `both', each of the preceding methods is applied to
  208. determine lists endings. This is the default method."
  209. :group 'org-plain-lists
  210. :type '(choice
  211. (const :tag "With a regexp defining ending" regexp)
  212. (const :tag "With indentation of regular (no bullet) text" indent)
  213. (const :tag "With both methods" both)))
  214. (defcustom org-empty-line-terminates-plain-lists nil
  215. "Non-nil means an empty line ends all plain list levels.
  216. This variable only makes sense if `org-list-ending-method' is set
  217. to `regexp' or `both'. This is then equivalent to set
  218. `org-list-end-regexp' to \"^[ \\t]*$\"."
  219. :group 'org-plain-lists
  220. :type 'boolean)
  221. (defcustom org-list-end-regexp "^[ \t]*\n[ \t]*\n"
  222. "Regexp matching the end of all plain list levels.
  223. It must start with \"^\" and end with \"\\n\". It defaults to 2
  224. blank lines. `org-empty-line-terminates-plain-lists' has
  225. precedence over it."
  226. :group 'org-plain-lists
  227. :type 'string)
  228. (defcustom org-list-automatic-rules '((bullet . t)
  229. (checkbox . t)
  230. (indent . t))
  231. "Non-nil means apply set of rules when acting on lists.
  232. By default, automatic actions are taken when using
  233. \\[org-meta-return], \\[org-metaright], \\[org-metaleft],
  234. \\[org-shiftmetaright], \\[org-shiftmetaleft],
  235. \\[org-ctrl-c-minus], \\[org-toggle-checkbox] or
  236. \\[org-insert-todo-heading]. You can disable individually these
  237. rules by setting them to nil. Valid rules are:
  238. bullet when non-nil, cycling bullet do not allow lists at
  239. column 0 to have * as a bullet and descriptions lists
  240. to be numbered.
  241. checkbox when non-nil, checkbox statistics is updated each time
  242. you either insert a new checkbox or toggle a checkbox.
  243. It also prevents from inserting a checkbox in a
  244. description item.
  245. indent when non-nil, indenting or outdenting list top-item
  246. with its subtree will move the whole list and
  247. outdenting a list whose bullet is * to column 0 will
  248. change that bullet to \"-\"."
  249. :group 'org-plain-lists
  250. :type '(alist :tag "Sets of rules"
  251. :key-type
  252. (choice
  253. (const :tag "Bullet" bullet)
  254. (const :tag "Checkbox" checkbox)
  255. (const :tag "Indent" indent))
  256. :value-type
  257. (boolean :tag "Activate" :value t)))
  258. (defvar org-checkbox-statistics-hook nil
  259. "Hook that is run whenever Org thinks checkbox statistics should be updated.
  260. This hook runs even if checkbox rule in
  261. `org-list-automatic-rules' does not apply, so it can be used to
  262. implement alternative ways of collecting statistics
  263. information.")
  264. (defcustom org-hierarchical-checkbox-statistics t
  265. "Non-nil means checkbox statistics counts only the state of direct children.
  266. When nil, all boxes below the cookie are counted.
  267. This can be set to nil on a per-node basis using a COOKIE_DATA property
  268. with the word \"recursive\" in the value."
  269. :group 'org-plain-lists
  270. :type 'boolean)
  271. (defcustom org-description-max-indent 20
  272. "Maximum indentation for the second line of a description list.
  273. When the indentation would be larger than this, it will become
  274. 5 characters instead."
  275. :group 'org-plain-lists
  276. :type 'integer)
  277. (defcustom org-list-radio-list-templates
  278. '((latex-mode "% BEGIN RECEIVE ORGLST %n
  279. % END RECEIVE ORGLST %n
  280. \\begin{comment}
  281. #+ORGLST: SEND %n org-list-to-latex
  282. -
  283. \\end{comment}\n")
  284. (texinfo-mode "@c BEGIN RECEIVE ORGLST %n
  285. @c END RECEIVE ORGLST %n
  286. @ignore
  287. #+ORGLST: SEND %n org-list-to-texinfo
  288. -
  289. @end ignore\n")
  290. (html-mode "<!-- BEGIN RECEIVE ORGLST %n -->
  291. <!-- END RECEIVE ORGLST %n -->
  292. <!--
  293. #+ORGLST: SEND %n org-list-to-html
  294. -
  295. -->\n"))
  296. "Templates for radio lists in different major modes.
  297. All occurrences of %n in a template will be replaced with the name of the
  298. list, obtained by prompting the user."
  299. :group 'org-plain-lists
  300. :type '(repeat
  301. (list (symbol :tag "Major mode")
  302. (string :tag "Format"))))
  303. (defvar org-list-forbidden-blocks '("example" "verse" "src")
  304. "Names of blocks where lists are not allowed.
  305. Names must be in lower case.")
  306. (defvar org-list-export-context '(block inlinetask)
  307. "Context types where lists will be interpreted during export.
  308. Valid types are `drawer', `inlinetask' and `block'. More
  309. specifically, type `block' is determined by the variable
  310. `org-list-forbidden-blocks'.")
  311. ;;; Predicates and regexps
  312. (defconst org-list-end-re (if org-empty-line-terminates-plain-lists
  313. "^[ \t]*\n"
  314. org-list-end-regexp)
  315. "Regex corresponding to the end of a list.
  316. It depends on `org-empty-line-terminates-plain-lists'.")
  317. (defconst org-list-full-item-re
  318. (concat "^[ \t]*\\(\\(?:[-+*]\\|\\(?:[0-9]+\\|[A-Za-z]\\)[.)]\\)[ \t]*\\)"
  319. "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\]\\)?"
  320. "\\(?:\\(\\[[ X-]\\]\\)[ \t]+\\)?"
  321. "\\(?:\\(.*\\)[ \t]+::[ \t]+\\)?")
  322. "Matches a list item and puts everything into groups:
  323. group 1: bullet
  324. group 2: counter
  325. group 3: checkbox
  326. group 4: description tag")
  327. (defun org-item-re ()
  328. "Return the correct regular expression for plain lists."
  329. (let ((term (cond
  330. ((eq org-plain-list-ordered-item-terminator t) "[.)]")
  331. ((= org-plain-list-ordered-item-terminator ?\)) ")")
  332. ((= org-plain-list-ordered-item-terminator ?.) "\\.")
  333. (t "[.)]")))
  334. (alpha (if org-alphabetical-lists "\\|[A-Za-z]" "")))
  335. (concat "\\([ \t]*\\([-+]\\|\\(\\([0-9]+" alpha "\\)" term
  336. "\\)\\)\\|[ \t]+\\*\\)\\([ \t]+\\|$\\)")))
  337. (defsubst org-item-beginning-re ()
  338. "Regexp matching the beginning of a plain list item."
  339. (concat "^" (org-item-re)))
  340. (defun org-list-at-regexp-after-bullet-p (regexp)
  341. "Is point at a list item with REGEXP after bullet?"
  342. (and (org-at-item-p)
  343. (save-excursion
  344. (goto-char (match-end 0))
  345. ;; Ignore counter if any
  346. (when (looking-at "\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?")
  347. (goto-char (match-end 0)))
  348. (looking-at regexp))))
  349. (defun org-in-item-p ()
  350. "Return item beginning position when in a plain list, nil otherwise.
  351. This checks `org-list-ending-method'."
  352. (save-excursion
  353. (beginning-of-line)
  354. (let* ((case-fold-search t)
  355. (context (org-list-context))
  356. (lim-up (car context))
  357. (inlinetask-re (and (featurep 'org-inlinetask)
  358. (org-inlinetask-outline-regexp)))
  359. (item-re (org-item-re))
  360. ;; Indentation isn't meaningful when point starts at an empty
  361. ;; line or an inline task.
  362. (ind-ref (if (or (looking-at "^[ \t]*$")
  363. (and inlinetask-re (looking-at inlinetask-re)))
  364. 10000
  365. (org-get-indentation))))
  366. (cond
  367. ((eq (nth 2 context) 'invalid) nil)
  368. ((looking-at item-re) (point))
  369. (t
  370. ;; Detect if cursor in amidst `org-list-end-re'. First, count
  371. ;; number HL of hard lines it takes, then call `org-in-regexp'
  372. ;; to compute its boundaries END-BOUNDS. When point is
  373. ;; in-between, move cursor before regexp beginning.
  374. (let ((hl 0) (i -1) end-bounds)
  375. (when (and (not (eq org-list-ending-method 'indent))
  376. (progn
  377. (while (setq i (string-match
  378. "[\r\n]" org-list-end-re (1+ i)))
  379. (setq hl (1+ hl)))
  380. (setq end-bounds (org-in-regexp org-list-end-re hl)))
  381. (>= (point) (car end-bounds))
  382. (< (point) (cdr end-bounds)))
  383. (goto-char (car end-bounds))
  384. (forward-line -1)))
  385. ;; Look for an item, less indented that reference line if
  386. ;; `org-list-ending-method' isn't `regexp'.
  387. (catch 'exit
  388. (while t
  389. (let ((ind (org-get-indentation)))
  390. (cond
  391. ;; This is exactly what we want.
  392. ((and (looking-at item-re)
  393. (or (< ind ind-ref)
  394. (eq org-list-ending-method 'regexp)))
  395. (throw 'exit (point)))
  396. ;; At upper bound of search or looking at the end of a
  397. ;; previous list: search is over.
  398. ((<= (point) lim-up) (throw 'exit nil))
  399. ((and (not (eq org-list-ending-method 'indent))
  400. (looking-at org-list-end-re))
  401. (throw 'exit nil))
  402. ;; Skip blocks, drawers, inline-tasks, blank lines
  403. ((looking-at "^[ \t]*#\\+end_")
  404. (re-search-backward "^[ \t]*#\\+begin_" nil t))
  405. ((looking-at "^[ \t]*:END:")
  406. (re-search-backward org-drawer-regexp nil t)
  407. (beginning-of-line))
  408. ((and inlinetask-re (looking-at inlinetask-re))
  409. (org-inlinetask-goto-beginning)
  410. (forward-line -1))
  411. ((looking-at "^[ \t]*$") (forward-line -1))
  412. ;; Text at column 0 cannot belong to a list: stop.
  413. ((zerop ind) (throw 'exit nil))
  414. ;; Normal text less indented than reference line, take
  415. ;; it as new reference.
  416. ((< ind ind-ref)
  417. (setq ind-ref ind)
  418. (forward-line -1))
  419. (t (forward-line -1)))))))))))
  420. (defun org-at-item-p ()
  421. "Is point in a line starting a hand-formatted item?"
  422. (save-excursion
  423. (beginning-of-line)
  424. (and (not (eq (nth 2 (org-list-context)) 'invalid))
  425. (looking-at (org-item-re)))))
  426. (defun org-at-item-bullet-p ()
  427. "Is point at the bullet of a plain list item?"
  428. (and (org-at-item-p)
  429. (not (member (char-after) '(?\ ?\t)))
  430. (< (point) (match-end 0))))
  431. (defun org-at-item-timer-p ()
  432. "Is point at a line starting a plain list item with a timer?"
  433. (org-list-at-regexp-after-bullet-p
  434. "\\([0-9]+:[0-9]+:[0-9]+\\)[ \t]+::[ \t]+"))
  435. (defun org-at-item-description-p ()
  436. "Is point at a description list item?"
  437. (org-list-at-regexp-after-bullet-p "\\(\\S-.+\\)[ \t]+::[ \t]+"))
  438. (defun org-at-item-checkbox-p ()
  439. "Is point at a line starting a plain-list item with a checklet?"
  440. (org-list-at-regexp-after-bullet-p "\\(\\[[- X]\\]\\)[ \t]+"))
  441. (defun org-at-item-counter-p ()
  442. "Is point at a line starting a plain-list item with a counter?"
  443. (and (org-at-item-p)
  444. (looking-at org-list-full-item-re)
  445. (match-string 2)))
  446. ;;; Structures and helper functions
  447. (defun org-list-context ()
  448. "Determine context, and its boundaries, around point.
  449. Context will be a cell like (MIN MAX CONTEXT) where MIN and MAX
  450. are boundaries and CONTEXT is a symbol among `drawer', `block',
  451. `invalid', `inlinetask' and nil.
  452. Contexts `block' and `invalid' refer to
  453. `org-list-forbidden-blocks'."
  454. (save-match-data
  455. (save-excursion
  456. (beginning-of-line)
  457. (let* ((outline-regexp (org-get-limited-outline-regexp))
  458. ;; Can't use org-drawers-regexp as this function might be
  459. ;; called in buffers not in Org mode
  460. (drawers-re (concat "^[ \t]*:\\("
  461. (mapconcat 'regexp-quote org-drawers "\\|")
  462. "\\):[ \t]*$"))
  463. (case-fold-search t)
  464. ;; Compute position of surrounding headings. This is the
  465. ;; default context.
  466. (heading
  467. (save-excursion
  468. (list
  469. (or (and (org-at-heading-p) (point-at-bol))
  470. (outline-previous-heading)
  471. (point-min))
  472. (or (outline-next-heading)
  473. (point-max))
  474. nil)))
  475. (prev-head (car heading))
  476. (next-head (nth 1 heading))
  477. ;; Is point inside a drawer?
  478. (drawerp
  479. (when (and (org-in-regexps-block-p
  480. drawers-re "^[ \t]*:END:" prev-head)
  481. (save-excursion
  482. (beginning-of-line)
  483. (and (not (looking-at drawers-re))
  484. (not (looking-at "^[ \t]*:END:")))))
  485. (save-excursion
  486. (list
  487. (progn
  488. (re-search-backward drawers-re prev-head t)
  489. (1+ (point-at-eol)))
  490. (if (re-search-forward "^[ \t]*:END:" next-head t)
  491. (1- (point-at-bol))
  492. next-head)
  493. 'drawer))))
  494. ;; Is point strictly in a block, and of which type?
  495. (blockp
  496. (save-excursion
  497. (when (and (org-in-regexps-block-p
  498. "^[ \t]*#\\+begin_" "^[ \t]*#\\+end_" prev-head)
  499. (save-excursion
  500. (beginning-of-line)
  501. (not (looking-at
  502. "^[ \t]*#\\+\\(begin\\|end\\)_"))))
  503. (list
  504. (progn
  505. (re-search-backward
  506. "^[ \t]*#\\+begin_\\(\\S-+\\)" prev-head t)
  507. (1+ (point-at-eol)))
  508. (save-match-data
  509. (if (re-search-forward "^[ \t]*#\\+end_" next-head t)
  510. (1- (point-at-bol))
  511. next-head))
  512. (if (member (downcase (match-string 1))
  513. org-list-forbidden-blocks)
  514. 'invalid
  515. 'block)))))
  516. ;; Is point in an inlinetask?
  517. (inlinetaskp
  518. (when (and (featurep 'org-inlinetask)
  519. (org-inlinetask-in-task-p)
  520. (not (looking-at "^\\*+")))
  521. (save-excursion
  522. (list
  523. (progn (org-inlinetask-goto-beginning)
  524. (1+ (point-at-eol)))
  525. (progn
  526. (org-inlinetask-goto-end)
  527. (forward-line -1)
  528. (1- (point-at-bol)))
  529. 'inlinetask))))
  530. ;; List actual candidates
  531. (context-list
  532. (delq nil (list heading drawerp blockp inlinetaskp))))
  533. ;; Return the closest context around
  534. (assq (apply 'max (mapcar 'car context-list)) context-list)))))
  535. (defun org-list-struct ()
  536. "Return structure of list at point.
  537. A list structure is an alist where key is point at item, and
  538. values are:
  539. 1. indentation,
  540. 2. bullet with trailing whitespace,
  541. 3. bullet counter, if any,
  542. 4. checkbox, if any,
  543. 5. position at item end,
  544. 6. description tag, if any.
  545. Thus the following list, where numbers in parens are
  546. point-at-bol:
  547. - [X] first item (1)
  548. 1. sub-item 1 (18)
  549. 5. [@5] sub-item 2 (34)
  550. some other text belonging to first item (55)
  551. - last item (97)
  552. + tag :: description (109)
  553. (131)
  554. will get the following structure:
  555. \(\(1 0 \"- \" nil \"[X]\" nil 97\)
  556. \(18 2 \"1. \" nil nil nil 34\)
  557. \(34 2 \"5. \" \"5\" nil nil 55\)
  558. \(97 0 \"- \" nil nil nil 131\)
  559. \(109 2 \"+ \" nil nil \"tag\" 131\)
  560. Assume point is at an item."
  561. (save-excursion
  562. (beginning-of-line)
  563. (let* ((case-fold-search t)
  564. (context (org-list-context))
  565. (lim-up (car context))
  566. (lim-down (nth 1 context))
  567. (text-min-ind 10000)
  568. (item-re (org-item-re))
  569. (drawers-re (concat "^[ \t]*:\\("
  570. (mapconcat 'regexp-quote org-drawers "\\|")
  571. "\\):[ \t]*$"))
  572. (inlinetask-re (and (featurep 'org-inlinetask)
  573. (org-inlinetask-outline-regexp)))
  574. (beg-cell (cons (point) (org-get-indentation)))
  575. ind itm-lst itm-lst-2 end-lst end-lst-2 struct
  576. (assoc-at-point
  577. (function
  578. ;; Return association at point.
  579. (lambda (ind)
  580. (looking-at org-list-full-item-re)
  581. (list (point)
  582. ind
  583. (match-string-no-properties 1) ; bullet
  584. (match-string-no-properties 2) ; counter
  585. (match-string-no-properties 3) ; checkbox
  586. (match-string-no-properties 4))))) ; description tag
  587. (end-before-blank
  588. (function
  589. ;; Ensure list ends at the first blank line.
  590. (lambda ()
  591. (skip-chars-backward " \r\t\n")
  592. (min (1+ (point-at-eol)) lim-down)))))
  593. ;; 1. Read list from starting item to its beginning, and save
  594. ;; top item position and indentation in BEG-CELL. Also store
  595. ;; ending position of items in END-LST.
  596. (save-excursion
  597. (catch 'exit
  598. (while t
  599. (let ((ind (+ (or (get-text-property (point) 'original-indentation) 0)
  600. (org-get-indentation))))
  601. (cond
  602. ((<= (point) lim-up)
  603. ;; At upward limit: if we ended at an item, store it,
  604. ;; else dimiss useless data recorded above BEG-CELL.
  605. ;; Jump to part 2.
  606. (throw 'exit
  607. (setq itm-lst
  608. (if (or (not (looking-at item-re))
  609. (get-text-property (point) 'org-example))
  610. (memq (assq (car beg-cell) itm-lst) itm-lst)
  611. (setq beg-cell (cons (point) ind))
  612. (cons (funcall assoc-at-point ind) itm-lst)))))
  613. ;; At a verbatim block, go before its beginning. Move
  614. ;; from eol to ensure `previous-single-property-change'
  615. ;; will return a value.
  616. ((get-text-property (point) 'org-example)
  617. (goto-char (previous-single-property-change
  618. (point-at-eol) 'org-example nil lim-up))
  619. (forward-line -1))
  620. ;; Looking at a list ending regexp. Dismiss useless
  621. ;; data recorded above BEG-CELL. Jump to part 2.
  622. ((and (not (eq org-list-ending-method 'indent))
  623. (looking-at org-list-end-re))
  624. (throw 'exit
  625. (setq itm-lst
  626. (memq (assq (car beg-cell) itm-lst) itm-lst))))
  627. ;; Skip blocks, drawers, inline tasks, blank lines
  628. ;; along the way.
  629. ((looking-at "^[ \t]*#\\+end_")
  630. (re-search-backward "^[ \t]*#\\+begin_" nil t))
  631. ((looking-at "^[ \t]*:END:")
  632. (re-search-backward drawers-re nil t)
  633. (beginning-of-line))
  634. ((and inlinetask-re (looking-at inlinetask-re))
  635. (org-inlinetask-goto-beginning)
  636. (forward-line -1))
  637. ((looking-at "^[ \t]*$")
  638. (forward-line -1))
  639. ((looking-at item-re)
  640. ;; Point is at an item. Add data to ITM-LST. It may
  641. ;; also end a previous item: save it in END-LST. If
  642. ;; ind is less or equal than BEG-CELL and there is no
  643. ;; end at this ind or lesser, this item becomes the
  644. ;; new BEG-CELL.
  645. (push (funcall assoc-at-point ind) itm-lst)
  646. (push (cons ind (point)) end-lst)
  647. (when (or (and (eq org-list-ending-method 'regexp)
  648. (<= ind (cdr beg-cell)))
  649. (< ind text-min-ind))
  650. (setq beg-cell (cons (point) ind)))
  651. (forward-line -1))
  652. ;; From there, point is not at an item. Unless ending
  653. ;; method is `regexp', interpret line's indentation:
  654. ;; - text at column 0 is necessarily out of any list.
  655. ;; Dismiss data recorded above BEG-CELL. Jump to
  656. ;; part 2.
  657. ;; - any other case, it can possibly be an ending
  658. ;; position for an item above. Save it and proceed.
  659. ((eq org-list-ending-method 'regexp) (forward-line -1))
  660. ((zerop ind)
  661. (throw 'exit
  662. (setq itm-lst
  663. (memq (assq (car beg-cell) itm-lst) itm-lst))))
  664. (t
  665. (when (< ind text-min-ind) (setq text-min-ind ind))
  666. (push (cons ind (point)) end-lst)
  667. (forward-line -1)))))))
  668. ;; 2. Read list from starting point to its end, that is until we
  669. ;; get out of context, or a non-item line is less or equally
  670. ;; indented that BEG-CELL's cdr. Also store ending position
  671. ;; of items in END-LST-2.
  672. (catch 'exit
  673. (while t
  674. (let ((ind (+ (or (get-text-property (point) 'original-indentation) 0)
  675. (org-get-indentation))))
  676. (cond
  677. ((>= (point) lim-down)
  678. ;; At downward limit: this is de facto the end of the
  679. ;; list. Save point as an ending position, and jump to
  680. ;; part 3.
  681. (throw 'exit
  682. (push (cons 0 (funcall end-before-blank)) end-lst-2)))
  683. ;; At a verbatim block, move to its end. Point is at bol
  684. ;; and 'org-example property is set by whole lines:
  685. ;; `next-single-property-change' always return a value.
  686. ((get-text-property (point) 'org-example)
  687. (goto-char
  688. (next-single-property-change (point) 'org-example nil lim-down)))
  689. ;; Looking at a list ending regexp. Save point as an
  690. ;; ending position and jump to part 3.
  691. ((and (not (eq org-list-ending-method 'indent))
  692. (looking-at org-list-end-re))
  693. (throw 'exit (push (cons 0 (point)) end-lst-2)))
  694. ;; Skip blocks, drawers, inline tasks and blank lines
  695. ;; along the way
  696. ((looking-at "^[ \t]*#\\+begin_")
  697. (re-search-forward "^[ \t]*#\\+end_")
  698. (forward-line 1))
  699. ((looking-at drawers-re)
  700. (re-search-forward "^[ \t]*:END:" nil t)
  701. (forward-line 1))
  702. ((and inlinetask-re (looking-at inlinetask-re))
  703. (org-inlinetask-goto-end))
  704. ((looking-at "^[ \t]*$")
  705. (forward-line 1))
  706. ((looking-at item-re)
  707. ;; Point is at an item. Add data to ITM-LST-2. It may also
  708. ;; end a previous item, so save it in END-LST-2.
  709. (push (funcall assoc-at-point ind) itm-lst-2)
  710. (push (cons ind (point)) end-lst-2)
  711. (forward-line 1))
  712. ;; From there, point is not at an item. If ending method
  713. ;; is not `regexp', two situations are of interest:
  714. ;; - ind is lesser or equal than BEG-CELL's. The list is
  715. ;; over. Store point as an ending position and jump to
  716. ;; part 3.
  717. ;; - ind is lesser or equal than previous item's. This
  718. ;; is an ending position. Store it and proceed.
  719. ((eq org-list-ending-method 'regexp) (forward-line 1))
  720. ((<= ind (cdr beg-cell))
  721. (throw 'exit
  722. (push (cons 0 (funcall end-before-blank)) end-lst-2)))
  723. ((<= ind (nth 1 (car itm-lst-2)))
  724. (push (cons ind (point)) end-lst-2)
  725. (forward-line 1))
  726. (t (forward-line 1))))))
  727. (setq struct (append itm-lst (cdr (nreverse itm-lst-2))))
  728. (setq end-lst (append end-lst (cdr (nreverse end-lst-2))))
  729. ;; 3. Correct ill-formed lists by ensuring top item is the least
  730. ;; indented.
  731. (let ((min-ind (nth 1 (car struct))))
  732. (mapc (lambda (item)
  733. (let ((ind (nth 1 item))
  734. (bul (nth 2 item)))
  735. (when (< ind min-ind)
  736. (setcar (cdr item) min-ind)
  737. ;; Modify bullet to be sure item will be modified
  738. (setcar (nthcdr 2 item) (org-trim bul)))))
  739. struct))
  740. ;; 4. Associate each item to its end pos.
  741. (org-list-struct-assoc-end struct end-lst)
  742. ;; 5. Return STRUCT
  743. struct)))
  744. (defun org-list-struct-assoc-end (struct end-list)
  745. "Associate proper ending point to items in STRUCT.
  746. END-LIST is a pseudo-alist where car is indentation and cdr is
  747. ending position.
  748. This function modifies STRUCT."
  749. (let ((endings end-list))
  750. (mapc
  751. (lambda (elt)
  752. (let ((pos (car elt))
  753. (ind (nth 1 elt)))
  754. ;; Remove end candidates behind current item
  755. (while (or (<= (cdar endings) pos))
  756. (pop endings))
  757. ;; Add end position to item assoc
  758. (let ((old-end (nthcdr 6 elt))
  759. (new-end (assoc-default ind endings '<=)))
  760. (if old-end
  761. (setcar old-end new-end)
  762. (setcdr elt (append (cdr elt) (list new-end)))))))
  763. struct)))
  764. (defun org-list-prevs-alist (struct)
  765. "Return alist between item and previous item in STRUCT."
  766. (let ((item-end-alist (mapcar (lambda (e) (cons (car e) (nth 6 e)))
  767. struct)))
  768. (mapcar (lambda (e)
  769. (let ((prev (car (rassq (car e) item-end-alist))))
  770. (cons (car e) prev)))
  771. struct)))
  772. (defun org-list-parents-alist (struct)
  773. "Return alist between item and parent in STRUCT."
  774. (let ((ind-to-ori (list (list (nth 1 (car struct)))))
  775. (prev-pos (list (caar struct))))
  776. (cons prev-pos
  777. (mapcar (lambda (item)
  778. (let ((pos (car item))
  779. (ind (nth 1 item))
  780. (prev-ind (caar ind-to-ori)))
  781. (push pos prev-pos)
  782. (cond
  783. ((> prev-ind ind)
  784. (setq ind-to-ori
  785. (member (assq ind ind-to-ori) ind-to-ori))
  786. (cons pos (cdar ind-to-ori)))
  787. ((< prev-ind ind)
  788. (let ((origin (nth 1 prev-pos)))
  789. (push (cons ind origin) ind-to-ori)
  790. (cons pos origin)))
  791. (t (cons pos (cdar ind-to-ori))))))
  792. (cdr struct)))))
  793. ;;; Accessors
  794. (defsubst org-list-get-nth (n key struct)
  795. "Return the Nth value of KEY in STRUCT."
  796. (nth n (assq key struct)))
  797. (defun org-list-set-nth (n key struct new)
  798. "Set the Nth value of KEY in STRUCT to NEW.
  799. \nThis function modifies STRUCT."
  800. (setcar (nthcdr n (assq key struct)) new))
  801. (defsubst org-list-get-ind (item struct)
  802. "Return indentation of ITEM in STRUCT."
  803. (org-list-get-nth 1 item struct))
  804. (defun org-list-set-ind (item struct ind)
  805. "Set indentation of ITEM in STRUCT to IND.
  806. \nThis function modifies STRUCT."
  807. (org-list-set-nth 1 item struct ind))
  808. (defsubst org-list-get-bullet (item struct)
  809. "Return bullet of ITEM in STRUCT."
  810. (org-list-get-nth 2 item struct))
  811. (defun org-list-set-bullet (item struct bullet)
  812. "Set bullet of ITEM in STRUCT to BULLET.
  813. \nThis function modifies STRUCT."
  814. (org-list-set-nth 2 item struct bullet))
  815. (defsubst org-list-get-counter (item struct)
  816. "Return counter of ITEM in STRUCT."
  817. (org-list-get-nth 3 item struct))
  818. (defsubst org-list-get-checkbox (item struct)
  819. "Return checkbox of ITEM in STRUCT or nil."
  820. (org-list-get-nth 4 item struct))
  821. (defun org-list-set-checkbox (item struct checkbox)
  822. "Set checkbox of ITEM in STRUCT to CHECKBOX.
  823. \nThis function modifies STRUCT."
  824. (org-list-set-nth 4 item struct checkbox))
  825. (defsubst org-list-get-tag (item struct)
  826. "Return end position of ITEM in STRUCT."
  827. (org-list-get-nth 5 item struct))
  828. (defun org-list-get-item-end (item struct)
  829. "Return end position of ITEM in STRUCT."
  830. (org-list-get-nth 6 item struct))
  831. (defun org-list-get-item-end-before-blank (item struct)
  832. "Return point at end of ITEM in STRUCT, before any blank line.
  833. Point returned is at end of line."
  834. (save-excursion
  835. (goto-char (org-list-get-item-end item struct))
  836. (skip-chars-backward " \r\t\n")
  837. (point-at-eol)))
  838. (defun org-list-get-parent (item struct parents)
  839. "Return parent of ITEM or nil.
  840. STRUCT is the list structure. PARENTS is the alist of parents, as
  841. returned by `org-list-parents-alist'."
  842. (let ((parents (or parents (org-list-parents-alist struct))))
  843. (cdr (assq item parents))))
  844. (defun org-list-has-child-p (item struct)
  845. "Non-nil if ITEM has a child.
  846. STRUCT is the list structure.
  847. Value returned is the position of the first child of ITEM."
  848. (let ((ind (org-list-get-ind item struct))
  849. (child-maybe (car (nth 1 (member (assq item struct) struct)))))
  850. (when (and child-maybe
  851. (< ind (org-list-get-ind child-maybe struct)))
  852. child-maybe)))
  853. (defun org-list-get-next-item (item struct prevs)
  854. "Return next item in same sub-list as ITEM, or nil.
  855. STRUCT is the list structure. PREVS is the alist of previous
  856. items, as returned by `org-list-prevs-alist'."
  857. (car (rassq item prevs)))
  858. (defun org-list-get-prev-item (item struct prevs)
  859. "Return previous item in same sub-list as ITEM, or nil.
  860. STRUCT is the list structure. PREVS is the alist of previous
  861. items, as returned by `org-list-prevs-alist'."
  862. (cdr (assq item prevs)))
  863. (defun org-list-get-subtree (item struct)
  864. "List all items having ITEM as a common ancestor, or nil.
  865. STRUCT is the list structure."
  866. (let* ((item-end (org-list-get-item-end item struct))
  867. (sub-struct (cdr (member (assq item struct) struct)))
  868. subtree)
  869. (catch 'exit
  870. (mapc (lambda (e)
  871. (let ((pos (car e)))
  872. (if (< pos item-end) (push pos subtree) (throw 'exit nil))))
  873. sub-struct))
  874. (nreverse subtree)))
  875. (defun org-list-get-all-items (item struct prevs)
  876. "List all items in the same sub-list as ITEM.
  877. STRUCT is the list structure. PREVS is the alist of previous
  878. items, as returned by `org-list-prevs-alist'."
  879. (let ((prev-item item)
  880. (next-item item)
  881. before-item after-item)
  882. (while (setq prev-item (org-list-get-prev-item prev-item struct prevs))
  883. (push prev-item before-item))
  884. (while (setq next-item (org-list-get-next-item next-item struct prevs))
  885. (push next-item after-item))
  886. (append before-item (list item) (nreverse after-item))))
  887. (defun org-list-get-children (item struct parents)
  888. "List all children of ITEM, or nil.
  889. STRUCT is the list structure. PARENTS is the alist of parents, as
  890. returned by `org-list-parents-alist'."
  891. (let (all child)
  892. (while (setq child (car (rassq item parents)))
  893. (setq parents (cdr (member (assq child parents) parents)))
  894. (push child all))
  895. (nreverse all)))
  896. (defun org-list-get-top-point (struct)
  897. "Return point at beginning of list.
  898. STRUCT is the list structure."
  899. (caar struct))
  900. (defun org-list-get-bottom-point (struct)
  901. "Return point at bottom of list.
  902. STRUCT is the list structure."
  903. (apply 'max
  904. (mapcar (lambda (e) (org-list-get-item-end (car e) struct)) struct)))
  905. (defun org-list-get-list-begin (item struct prevs)
  906. "Return point at beginning of sub-list ITEM belongs.
  907. STRUCT is the list structure. PREVS is the alist of previous
  908. items, as returned by `org-list-prevs-alist'."
  909. (let ((first-item item) prev-item)
  910. (while (setq prev-item (org-list-get-prev-item first-item struct prevs))
  911. (setq first-item prev-item))
  912. first-item))
  913. (defalias 'org-list-get-first-item 'org-list-get-list-begin)
  914. (defun org-list-get-last-item (item struct prevs)
  915. "Return point at last item of sub-list ITEM belongs.
  916. STRUCT is the list structure. PREVS is the alist of previous
  917. items, as returned by `org-list-prevs-alist'."
  918. (let ((last-item item) next-item)
  919. (while (setq next-item (org-list-get-next-item last-item struct prevs))
  920. (setq last-item next-item))
  921. last-item))
  922. (defun org-list-get-list-end (item struct prevs)
  923. "Return point at end of sub-list ITEM belongs.
  924. STRUCT is the list structure. PREVS is the alist of previous
  925. items, as returned by `org-list-prevs-alist'."
  926. (org-list-get-item-end (org-list-get-last-item item struct prevs) struct))
  927. (defun org-list-get-list-type (item struct prevs)
  928. "Return the type of the list containing ITEM, as a symbol.
  929. STRUCT is the list structure. PREVS is the alist of previous
  930. items, as returned by `org-list-prevs-alist'.
  931. Possible types are `descriptive', `ordered' and `unordered'. The
  932. type is determined by the first item of the list."
  933. (let ((first (org-list-get-list-begin item struct prevs)))
  934. (cond
  935. ((org-list-get-tag first struct) 'descriptive)
  936. ((string-match "[[:alnum:]]" (org-list-get-bullet first struct)) 'ordered)
  937. (t 'unordered))))
  938. ;;; Searching
  939. (defun org-list-search-generic (search re bound noerr)
  940. "Search a string in valid contexts for lists.
  941. Arguments SEARCH, RE, BOUND and NOERR are similar to those used
  942. in `re-search-forward'."
  943. (catch 'exit
  944. (let ((origin (point)))
  945. (while t
  946. ;; 1. No match: return to origin or bound, depending on NOERR.
  947. (unless (funcall search re bound noerr)
  948. (throw 'exit (and (goto-char (if (memq noerr '(t nil)) origin bound))
  949. nil)))
  950. ;; 2. Match in an `invalid' context: continue searching. Else,
  951. ;; return point.
  952. (unless (eq (org-list-context) 'invalid) (throw 'exit (point)))))))
  953. (defun org-list-search-backward (regexp &optional bound noerror)
  954. "Like `re-search-backward' but stop only where lists are recognized.
  955. Arguments REGEXP, BOUND and NOERROR are similar to those used in
  956. `re-search-backward'."
  957. (org-list-search-generic #'re-search-backward
  958. regexp (or bound (point-min)) noerror))
  959. (defun org-list-search-forward (regexp &optional bound noerror)
  960. "Like `re-search-forward' but stop only where lists are recognized.
  961. Arguments REGEXP, BOUND and NOERROR are similar to those used in
  962. `re-search-forward'."
  963. (org-list-search-generic #'re-search-forward
  964. regexp (or bound (point-max)) noerror))
  965. ;;; Methods on structures
  966. (defsubst org-list-bullet-string (bullet)
  967. "Return BULLET with the correct number of whitespaces.
  968. It determines the number of whitespaces to append by looking at
  969. `org-list-two-spaces-after-bullet-regexp'."
  970. (save-match-data
  971. (let ((spaces (if (and org-list-two-spaces-after-bullet-regexp
  972. (string-match
  973. org-list-two-spaces-after-bullet-regexp bullet))
  974. " "
  975. " ")))
  976. (string-match "\\S-+\\([ \t]*\\)" bullet)
  977. (replace-match spaces nil nil bullet 1))))
  978. (defun org-list-separating-blank-lines-number (pos struct prevs)
  979. "Return number of blank lines that should separate items in list.
  980. POS is the position at item beginning to be considered.
  981. STRUCT is the list structure. PREVS is the alist of previous
  982. items, as returned by `org-list-prevs-alist'.
  983. Assume point is at item's beginning. If the item is alone, apply
  984. some heuristics to guess the result."
  985. (save-excursion
  986. (let ((insert-blank-p
  987. (cdr (assq 'plain-list-item org-blank-before-new-entry)))
  988. usr-blank)
  989. (cond
  990. ;; Trivial cases where there should be none.
  991. ((or (and (not (eq org-list-ending-method 'indent))
  992. org-empty-line-terminates-plain-lists)
  993. (not insert-blank-p)) 0)
  994. ;; When `org-blank-before-new-entry' says so, it is 1.
  995. ((eq insert-blank-p t) 1)
  996. ;; plain-list-item is 'auto. Count blank lines separating
  997. ;; neighbours items in list.
  998. (t (let ((next-p (org-list-get-next-item (point) struct prevs)))
  999. (cond
  1000. ;; Is there a next item?
  1001. (next-p (goto-char next-p)
  1002. (org-back-over-empty-lines))
  1003. ;; Is there a previous item?
  1004. ((org-list-get-prev-item (point) struct prevs)
  1005. (org-back-over-empty-lines))
  1006. ;; User inserted blank lines, trust him
  1007. ((and (> pos (org-list-get-item-end-before-blank pos struct))
  1008. (> (save-excursion
  1009. (goto-char pos)
  1010. (skip-chars-backward " \t")
  1011. (setq usr-blank (org-back-over-empty-lines))) 0))
  1012. usr-blank)
  1013. ;; Are there blank lines inside the item ?
  1014. ((save-excursion
  1015. (org-list-search-forward
  1016. "^[ \t]*$" (org-list-get-item-end-before-blank pos struct) t))
  1017. 1)
  1018. ;; No parent: no blank line.
  1019. (t 0))))))))
  1020. (defun org-list-insert-item (pos struct prevs &optional checkbox after-bullet)
  1021. "Insert a new list item at POS and return the new structure.
  1022. If POS is before first character after bullet of the item, the
  1023. new item will be created before the current one.
  1024. STRUCT is the list structure. PREVS is the the alist of previous
  1025. items, as returned by `org-list-prevs-alist'.
  1026. Insert a checkbox if CHECKBOX is non-nil, and string AFTER-BULLET
  1027. after the bullet. Cursor will be after this text once the
  1028. function ends.
  1029. This function modifies STRUCT."
  1030. (let ((case-fold-search t))
  1031. ;; 1. Get information about list: structure, usual helper
  1032. ;; functions, position of point with regards to item start
  1033. ;; (BEFOREP), blank lines number separating items (BLANK-NB),
  1034. ;; position of split (POS) if we're allowed to (SPLIT-LINE-P).
  1035. (let* ((item (goto-char (org-list-get-item-begin)))
  1036. (item-end (org-list-get-item-end item struct))
  1037. (item-end-no-blank (org-list-get-item-end-before-blank item struct))
  1038. (beforep (and (looking-at org-list-full-item-re)
  1039. (<= pos (match-end 0))))
  1040. (split-line-p (org-get-alist-option org-M-RET-may-split-line 'item))
  1041. (blank-nb (org-list-separating-blank-lines-number
  1042. item struct prevs))
  1043. ;; 2. Build the new item to be created. Concatenate same
  1044. ;; bullet as item, checkbox, text AFTER-BULLET if
  1045. ;; provided, and text cut from point to end of item
  1046. ;; (TEXT-CUT) to form item's BODY. TEXT-CUT depends on
  1047. ;; BEFOREP and SPLIT-LINE-P. The difference of size
  1048. ;; between what was cut and what was inserted in buffer
  1049. ;; is stored in SIZE-OFFSET.
  1050. (ind (org-list-get-ind item struct))
  1051. (bullet (org-list-bullet-string (org-list-get-bullet item struct)))
  1052. (box (when checkbox "[ ]"))
  1053. (text-cut
  1054. (and (not beforep) split-line-p
  1055. (progn
  1056. (goto-char pos)
  1057. (skip-chars-backward " \r\t\n")
  1058. (setq pos (point))
  1059. (delete-and-extract-region pos item-end-no-blank))))
  1060. (body (concat bullet (when box (concat box " ")) after-bullet
  1061. (or (and text-cut
  1062. (if (string-match "\\`[ \t]+" text-cut)
  1063. (replace-match "" t t text-cut)
  1064. text-cut))
  1065. "")))
  1066. (item-sep (make-string (1+ blank-nb) ?\n))
  1067. (item-size (+ ind (length body) (length item-sep)))
  1068. (size-offset (- item-size (length text-cut))))
  1069. ;; 4. Insert effectively item into buffer
  1070. (goto-char item)
  1071. (org-indent-to-column ind)
  1072. (insert body)
  1073. (insert item-sep)
  1074. ;; 5. Add new item to STRUCT.
  1075. (mapc (lambda (e)
  1076. (let ((p (car e))
  1077. (end (nth 6 e)))
  1078. (cond
  1079. ;; Before inserted item, positions don't change but
  1080. ;; an item ending after insertion has its end shifted
  1081. ;; by SIZE-OFFSET.
  1082. ((< p item)
  1083. (when (> end item) (setcar (nthcdr 6 e) (+ end size-offset))))
  1084. ;; Trivial cases where current item isn't split in
  1085. ;; two. Just shift every item after new one by
  1086. ;; ITEM-SIZE.
  1087. ((or beforep (not split-line-p))
  1088. (setcar e (+ p item-size))
  1089. (setcar (nthcdr 6 e) (+ end item-size)))
  1090. ;; Item is split in two: elements before POS are just
  1091. ;; shifted by ITEM-SIZE. In the case item would end
  1092. ;; after split POS, ending is only shifted by
  1093. ;; SIZE-OFFSET.
  1094. ((< p pos)
  1095. (setcar e (+ p item-size))
  1096. (if (< end pos)
  1097. (setcar (nthcdr 6 e) (+ end item-size))
  1098. (setcar (nthcdr 6 e) (+ end size-offset))))
  1099. ;; Elements after POS are moved into new item. Length
  1100. ;; of ITEM-SEP has to be removed as ITEM-SEP
  1101. ;; doesn't appear in buffer yet.
  1102. ((< p item-end)
  1103. (setcar e (+ p size-offset (- item pos (length item-sep))))
  1104. (if (= end item-end)
  1105. (setcar (nthcdr 6 e) (+ item item-size))
  1106. (setcar (nthcdr 6 e)
  1107. (+ end size-offset
  1108. (- item pos (length item-sep))))))
  1109. ;; Elements at ITEM-END or after are only shifted by
  1110. ;; SIZE-OFFSET.
  1111. (t (setcar e (+ p size-offset))
  1112. (setcar (nthcdr 6 e) (+ end size-offset))))))
  1113. struct)
  1114. (push (list item ind bullet nil box nil (+ item item-size)) struct)
  1115. (setq struct (sort struct (lambda (e1 e2) (< (car e1) (car e2)))))
  1116. ;; 6. If not BEFOREP, new item must appear after ITEM, so
  1117. ;; exchange ITEM with the next item in list. Position cursor
  1118. ;; after bullet, counter, checkbox, and label.
  1119. (if beforep
  1120. (goto-char item)
  1121. (setq struct (org-list-exchange-items item (+ item item-size) struct))
  1122. (goto-char (org-list-get-next-item
  1123. item struct (org-list-prevs-alist struct))))
  1124. struct)))
  1125. (defun org-list-exchange-items (beg-A beg-B struct)
  1126. "Swap item starting at BEG-A with item starting at BEG-B in STRUCT.
  1127. Blank lines at the end of items are left in place. Return the new
  1128. structure after the changes.
  1129. Assume BEG-A is lesser than BEG-B and that BEG-A and BEG-B belong
  1130. to the same sub-list.
  1131. This function modifies STRUCT."
  1132. (save-excursion
  1133. (let* ((end-A-no-blank (org-list-get-item-end-before-blank beg-A struct))
  1134. (end-B-no-blank (org-list-get-item-end-before-blank beg-B struct))
  1135. (end-A (org-list-get-item-end beg-A struct))
  1136. (end-B (org-list-get-item-end beg-B struct))
  1137. (size-A (- end-A-no-blank beg-A))
  1138. (size-B (- end-B-no-blank beg-B))
  1139. (body-A (buffer-substring beg-A end-A-no-blank))
  1140. (body-B (buffer-substring beg-B end-B-no-blank))
  1141. (between-A-no-blank-and-B (buffer-substring end-A-no-blank beg-B))
  1142. (sub-A (cons beg-A (org-list-get-subtree beg-A struct)))
  1143. (sub-B (cons beg-B (org-list-get-subtree beg-B struct))))
  1144. ;; 1. Move effectively items in buffer.
  1145. (goto-char beg-A)
  1146. (delete-region beg-A end-B-no-blank)
  1147. (insert (concat body-B between-A-no-blank-and-B body-A))
  1148. ;; 2. Now modify struct. No need to re-read the list, the
  1149. ;; transformation is just a shift of positions. Some special
  1150. ;; attention is required for items ending at END-A and END-B
  1151. ;; as empty spaces are not moved there. In others words, item
  1152. ;; BEG-A will end with whitespaces that were at the end of
  1153. ;; BEG-B and the same applies to BEG-B.
  1154. (mapc (lambda (e)
  1155. (let ((pos (car e)))
  1156. (cond
  1157. ((< pos beg-A))
  1158. ((memq pos sub-A)
  1159. (let ((end-e (nth 6 e)))
  1160. (setcar e (+ pos (- end-B-no-blank end-A-no-blank)))
  1161. (setcar (nthcdr 6 e)
  1162. (+ end-e (- end-B-no-blank end-A-no-blank)))
  1163. (when (= end-e end-A) (setcar (nthcdr 6 e) end-B))))
  1164. ((memq pos sub-B)
  1165. (let ((end-e (nth 6 e)))
  1166. (setcar e (- (+ pos beg-A) beg-B))
  1167. (setcar (nthcdr 6 e) (+ end-e (- beg-A beg-B)))
  1168. (when (= end-e end-B)
  1169. (setcar (nthcdr 6 e)
  1170. (+ beg-A size-B (- end-A end-A-no-blank))))))
  1171. ((< pos beg-B)
  1172. (let ((end-e (nth 6 e)))
  1173. (setcar e (+ pos (- size-B size-A)))
  1174. (setcar (nthcdr 6 e) (+ end-e (- size-B size-A))))))))
  1175. struct)
  1176. (sort struct (lambda (e1 e2) (< (car e1) (car e2)))))))
  1177. (defun org-list-struct-outdent (start end struct parents)
  1178. "Outdent items between positions START and END.
  1179. STRUCT is the list structure. PARENTS is the alist of items'
  1180. parents, as returned by `org-list-parents-alist'.
  1181. START is included, END excluded."
  1182. (let* (acc
  1183. (out (lambda (cell)
  1184. (let* ((item (car cell))
  1185. (parent (cdr cell)))
  1186. (cond
  1187. ;; Item not yet in zone: keep association
  1188. ((< item start) cell)
  1189. ;; Item out of zone: follow associations in acc
  1190. ((>= item end)
  1191. (let ((convert (and parent (assq parent acc))))
  1192. (if convert (cons item (cdr convert)) cell)))
  1193. ;; Item has no parent: error
  1194. ((not parent)
  1195. (error "Cannot outdent top-level items"))
  1196. ;; Parent is outdented: keep association
  1197. ((>= parent start)
  1198. (push (cons parent item) acc) cell)
  1199. (t
  1200. ;; Parent isn't outdented: reparent to grand-parent
  1201. (let ((grand-parent (org-list-get-parent
  1202. parent struct parents)))
  1203. (push (cons parent item) acc)
  1204. (cons item grand-parent))))))))
  1205. (mapcar out parents)))
  1206. (defun org-list-struct-indent (start end struct parents prevs)
  1207. "Indent items between positions START and END.
  1208. STRUCT is the list structure. PARENTS is the alist of parents and
  1209. PREVS is the alist of previous items, returned by, respectively,
  1210. `org-list-parents-alist' and `org-list-prevs-alist'.
  1211. START is included and END excluded.
  1212. STRUCT may be modified if `org-list-demote-modify-bullet' matches
  1213. bullets between START and END."
  1214. (let* (acc
  1215. (set-assoc (lambda (cell) (push cell acc) cell))
  1216. (change-bullet-maybe
  1217. (function
  1218. (lambda (item)
  1219. (let* ((bul (org-trim (org-list-get-bullet item struct)))
  1220. (new-bul-p (cdr (assoc bul org-list-demote-modify-bullet))))
  1221. (when new-bul-p (org-list-set-bullet item struct new-bul-p))))))
  1222. (ind
  1223. (lambda (cell)
  1224. (let* ((item (car cell))
  1225. (parent (cdr cell)))
  1226. (cond
  1227. ;; Item not yet in zone: keep association
  1228. ((< item start) cell)
  1229. ((>= item end)
  1230. ;; Item out of zone: follow associations in acc
  1231. (let ((convert (assq parent acc)))
  1232. (if convert (cons item (cdr convert)) cell)))
  1233. (t
  1234. ;; Item is in zone...
  1235. (let ((prev (org-list-get-prev-item item struct prevs)))
  1236. ;; Check if bullet needs to be changed
  1237. (funcall change-bullet-maybe item)
  1238. (cond
  1239. ;; First item indented but not parent: error
  1240. ((and (not prev) (< parent start))
  1241. (error "Cannot indent the first item of a list"))
  1242. ;; First item and parent indented: keep same parent
  1243. ((not prev) (funcall set-assoc cell))
  1244. ;; Previous item not indented: reparent to it
  1245. ((< prev start) (funcall set-assoc (cons item prev)))
  1246. ;; Previous item indented: reparent like it
  1247. (t
  1248. (funcall set-assoc
  1249. (cons item (cdr (assq prev acc)))))))))))))
  1250. (mapcar ind parents)))
  1251. ;;; Repairing structures
  1252. (defun org-list-use-alpha-bul-p (first struct prevs)
  1253. "Non-nil if list starting at FIRST can have alphabetical bullets.
  1254. STRUCT is list structure. PREVS is the alist of previous items,
  1255. as returned by `org-list-prevs-alist'."
  1256. (and org-alphabetical-lists
  1257. (catch 'exit
  1258. (let ((item first) (ascii 64) (case-fold-search nil))
  1259. ;; Pretend that bullets are uppercase and check if alphabet
  1260. ;; is sufficient, taking counters into account.
  1261. (while item
  1262. (let ((bul (org-list-get-bullet item struct))
  1263. (count (org-list-get-counter item struct)))
  1264. ;; Virtually determine current bullet
  1265. (if (and count (string-match "[a-zA-Z]" count))
  1266. ;; Counters are not case-sensitive.
  1267. (setq ascii (string-to-char (upcase count)))
  1268. (setq ascii (1+ ascii)))
  1269. ;; Test if bullet would be over z or Z.
  1270. (if (> ascii 90)
  1271. (throw 'exit nil)
  1272. (setq item (org-list-get-next-item item struct prevs)))))
  1273. ;; All items checked. All good.
  1274. t))))
  1275. (defun org-list-inc-bullet-maybe (bullet)
  1276. "Increment BULLET if applicable."
  1277. (let ((case-fold-search nil))
  1278. (cond
  1279. ;; Num bullet: increment it.
  1280. ((string-match "[0-9]+" bullet)
  1281. (replace-match
  1282. (number-to-string (1+ (string-to-number (match-string 0 bullet))))
  1283. nil nil bullet))
  1284. ;; Alpha bullet: increment it.
  1285. ((string-match "[A-Za-z]" bullet)
  1286. (replace-match
  1287. (char-to-string (1+ (string-to-char (match-string 0 bullet))))
  1288. nil nil bullet))
  1289. ;; Unordered bullet: leave it.
  1290. (t bullet))))
  1291. (defun org-list-struct-fix-bul (struct prevs)
  1292. "Verify and correct bullets in STRUCT.
  1293. PREVS is the alist of previous items, as returned by
  1294. `org-list-prevs-alist'.
  1295. This function modifies STRUCT."
  1296. (let ((case-fold-search nil)
  1297. (fix-bul
  1298. (function
  1299. ;; Set bullet of ITEM in STRUCT, depending on the type of
  1300. ;; first item of the list, the previous bullet and counter
  1301. ;; if any.
  1302. (lambda (item)
  1303. (let* ((prev (org-list-get-prev-item item struct prevs))
  1304. (prev-bul (and prev (org-list-get-bullet prev struct)))
  1305. (counter (org-list-get-counter item struct))
  1306. (bullet (org-list-get-bullet item struct))
  1307. (alphap (and (not prev)
  1308. (org-list-use-alpha-bul-p item struct prevs))))
  1309. (org-list-set-bullet
  1310. item struct
  1311. (org-list-bullet-string
  1312. (cond
  1313. ;; Alpha counter in alpha list: use counter.
  1314. ((and prev counter
  1315. (string-match "[a-zA-Z]" counter)
  1316. (string-match "[a-zA-Z]" prev-bul))
  1317. ;; Use cond to be sure `string-match' is used in
  1318. ;; both cases.
  1319. (let ((real-count
  1320. (cond
  1321. ((string-match "[a-z]" prev-bul) (downcase counter))
  1322. ((string-match "[A-Z]" prev-bul) (upcase counter)))))
  1323. (replace-match real-count nil nil prev-bul)))
  1324. ;; Num counter in a num list: use counter.
  1325. ((and prev counter
  1326. (string-match "[0-9]+" counter)
  1327. (string-match "[0-9]+" prev-bul))
  1328. (replace-match counter nil nil prev-bul))
  1329. ;; No counter: increase, if needed, previous bullet.
  1330. (prev
  1331. (org-list-inc-bullet-maybe (org-list-get-bullet prev struct)))
  1332. ;; Alpha counter at first item: use counter.
  1333. ((and counter (org-list-use-alpha-bul-p item struct prevs)
  1334. (string-match "[A-Za-z]" counter)
  1335. (string-match "[A-Za-z]" bullet))
  1336. (let ((real-count
  1337. (cond
  1338. ((string-match "[a-z]" bullet) (downcase counter))
  1339. ((string-match "[A-Z]" bullet) (upcase counter)))))
  1340. (replace-match real-count nil nil bullet)))
  1341. ;; Num counter at first item: use counter.
  1342. ((and counter
  1343. (string-match "[0-9]+" counter)
  1344. (string-match "[0-9]+" bullet))
  1345. (replace-match counter nil nil bullet))
  1346. ;; First bullet is alpha uppercase: use "A".
  1347. ((and alphap (string-match "[A-Z]" bullet))
  1348. (replace-match "A" nil nil bullet))
  1349. ;; First bullet is alpha lowercase: use "a".
  1350. ((and alphap (string-match "[a-z]" bullet))
  1351. (replace-match "a" nil nil bullet))
  1352. ;; First bullet is num: use "1".
  1353. ((string-match "\\([0-9]+\\|[A-Za-z]\\)" bullet)
  1354. (replace-match "1" nil nil bullet))
  1355. ;; Not an ordered list: keep bullet.
  1356. (t bullet)))))))))
  1357. (mapc fix-bul (mapcar 'car struct))))
  1358. (defun org-list-struct-fix-ind (struct parents &optional bullet-size)
  1359. "Verify and correct indentation in STRUCT.
  1360. PARENTS is the alist of parents, as returned by
  1361. `org-list-parents-alist'.
  1362. If numeric optional argument BULLET-SIZE is set, assume all
  1363. bullets in list have this length to determine new indentation.
  1364. This function modifies STRUCT."
  1365. (let* ((ancestor (org-list-get-top-point struct))
  1366. (top-ind (org-list-get-ind ancestor struct))
  1367. (new-ind
  1368. (lambda (item)
  1369. (let ((parent (org-list-get-parent item struct parents)))
  1370. (if parent
  1371. ;; Indent like parent + length of parent's bullet
  1372. (org-list-set-ind
  1373. item struct (+ (or bullet-size
  1374. (length
  1375. (org-list-get-bullet parent struct)))
  1376. (org-list-get-ind parent struct)))
  1377. ;; If no parent, indent like top-point
  1378. (org-list-set-ind item struct top-ind))))))
  1379. (mapc new-ind (mapcar 'car (cdr struct)))))
  1380. (defun org-list-struct-fix-box (struct parents prevs &optional ordered)
  1381. "Verify and correct checkboxes in STRUCT.
  1382. PARENTS is the alist of parents and PREVS is the alist of
  1383. previous items, as returned by, respectively,
  1384. `org-list-parents-alist' and `org-list-prevs-alist'.
  1385. If ORDERED is non-nil, a checkbox can only be checked when every
  1386. checkbox before it is checked too. If there was an attempt to
  1387. break this rule, the function will return the blocking item. In
  1388. all others cases, the return value will be nil.
  1389. This function modifies STRUCT."
  1390. (let ((all-items (mapcar 'car struct))
  1391. (set-parent-box
  1392. (function
  1393. (lambda (item)
  1394. (let* ((box-list
  1395. (mapcar (lambda (child)
  1396. (org-list-get-checkbox child struct))
  1397. (org-list-get-children item struct parents))))
  1398. (org-list-set-checkbox
  1399. item struct
  1400. (cond
  1401. ((and (member "[ ]" box-list) (member "[X]" box-list)) "[-]")
  1402. ((member "[-]" box-list) "[-]")
  1403. ((member "[X]" box-list) "[X]")
  1404. ((member "[ ]" box-list) "[ ]")
  1405. ;; parent has no boxed child: leave box as-is
  1406. (t (org-list-get-checkbox item struct))))))))
  1407. parent-list)
  1408. ;; 1. List all parents with a checkbox
  1409. (mapc
  1410. (lambda (e)
  1411. (let* ((parent (org-list-get-parent e struct parents))
  1412. (parent-box-p (org-list-get-checkbox parent struct)))
  1413. (when (and parent-box-p (not (memq parent parent-list)))
  1414. (push parent parent-list))))
  1415. all-items)
  1416. ;; 2. Sort those parents by decreasing indentation
  1417. (setq parent-list (sort parent-list
  1418. (lambda (e1 e2)
  1419. (> (org-list-get-ind e1 struct)
  1420. (org-list-get-ind e2 struct)))))
  1421. ;; 3. For each parent, get all children's checkboxes to determine
  1422. ;; and set its checkbox accordingly
  1423. (mapc set-parent-box parent-list)
  1424. ;; 4. If ORDERED is set, see if we need to uncheck some boxes
  1425. (when ordered
  1426. (let* ((box-list
  1427. (mapcar (lambda (e) (org-list-get-checkbox e struct)) all-items))
  1428. (after-unchecked (member "[ ]" box-list)))
  1429. ;; there are boxes checked after an unchecked one: fix that
  1430. (when (member "[X]" after-unchecked)
  1431. (let ((index (- (length struct) (length after-unchecked))))
  1432. (mapc (lambda (e) (org-list-set-checkbox e struct "[ ]"))
  1433. (nthcdr index all-items))
  1434. ;; Verify once again the structure, without ORDERED
  1435. (org-list-struct-fix-box struct parents prevs nil)
  1436. ;; return blocking item
  1437. (nth index all-items)))))))
  1438. (defun org-list-struct-apply-struct (struct old-struct)
  1439. "Apply set-difference between STRUCT and OLD-STRUCT to the buffer.
  1440. OLD-STRUCT is the structure before any modifications, and STRUCT
  1441. the structure to be applied. The function will only modify parts
  1442. of the list which have changed.
  1443. Initial position of cursor is restored after the changes."
  1444. (let* ((pos (copy-marker (point)))
  1445. (inlinetask-re (and (featurep 'org-inlinetask)
  1446. (org-inlinetask-outline-regexp)))
  1447. (item-re (org-item-re))
  1448. (box-rule-p (cdr (assq 'checkbox org-list-automatic-rules)))
  1449. (shift-body-ind
  1450. (function
  1451. ;; Shift the indentation between END and BEG by DELTA.
  1452. ;; Start from the line before END.
  1453. (lambda (end beg delta)
  1454. (goto-char end)
  1455. (skip-chars-backward " \r\t\n")
  1456. (beginning-of-line)
  1457. (while (or (> (point) beg)
  1458. (and (= (point) beg)
  1459. (not (looking-at item-re))))
  1460. (cond
  1461. ;; Skip inline tasks
  1462. ((and inlinetask-re (looking-at inlinetask-re))
  1463. (org-inlinetask-goto-beginning))
  1464. ;; Shift only non-empty lines
  1465. ((org-looking-at-p "^[ \t]*\\S-")
  1466. (let ((i (org-get-indentation)))
  1467. (org-indent-line-to (+ i delta)))))
  1468. (forward-line -1)))))
  1469. (modify-item
  1470. (function
  1471. ;; Replace ITEM first line elements with new elements from
  1472. ;; STRUCT, if appropriate.
  1473. (lambda (item)
  1474. (goto-char item)
  1475. (let* ((new-ind (org-list-get-ind item struct))
  1476. (old-ind (org-get-indentation))
  1477. (new-bul (org-list-bullet-string
  1478. (org-list-get-bullet item struct)))
  1479. (old-bul (org-list-get-bullet item old-struct))
  1480. (new-box (org-list-get-checkbox item struct)))
  1481. (looking-at org-list-full-item-re)
  1482. ;; a. Replace bullet
  1483. (unless (equal old-bul new-bul)
  1484. (replace-match new-bul nil nil nil 1))
  1485. ;; b. Replace checkbox
  1486. (cond
  1487. ((and new-box box-rule-p
  1488. (save-match-data (org-at-item-description-p)))
  1489. (message "Cannot add a checkbox to a description list item"))
  1490. ((equal (match-string 3) new-box))
  1491. ((and (match-string 3) new-box)
  1492. (replace-match new-box nil nil nil 3))
  1493. ((match-string 3)
  1494. (goto-char (or (match-end 2) (match-end 1)))
  1495. (looking-at "\\[[ X-]\\][ \t]+")
  1496. (replace-match ""))
  1497. (t (goto-char (or (match-end 2) (match-end 1)))
  1498. (insert (concat new-box " "))))
  1499. ;; c. Indent item to appropriate column
  1500. (unless (= new-ind old-ind)
  1501. (delete-region (goto-char (point-at-bol))
  1502. (progn (skip-chars-forward " \t") (point)))
  1503. (indent-to new-ind)))))))
  1504. ;; 1. First get list of items and position endings. We maintain
  1505. ;; two alists: ITM-SHIFT, determining indentation shift needed
  1506. ;; at item, and END-POS, a pseudo-alist where key is ending
  1507. ;; position and value point
  1508. (let (end-list acc-end itm-shift all-ends sliced-struct)
  1509. (mapc (lambda (e)
  1510. (let* ((pos (car e))
  1511. (ind-pos (org-list-get-ind pos struct))
  1512. (ind-old (org-list-get-ind pos old-struct))
  1513. (bul-pos (org-list-get-bullet pos struct))
  1514. (bul-old (org-list-get-bullet pos old-struct))
  1515. (ind-shift (- (+ ind-pos (length bul-pos))
  1516. (+ ind-old (length bul-old))))
  1517. (end-pos (org-list-get-item-end pos old-struct)))
  1518. (push (cons pos ind-shift) itm-shift)
  1519. (unless (assq end-pos old-struct)
  1520. ;; To determine real ind of an ending position that is
  1521. ;; not at an item, we have to find the item it belongs
  1522. ;; to: it is the last item (ITEM-UP), whose ending is
  1523. ;; further than the position we're interested in.
  1524. (let ((item-up (assoc-default end-pos acc-end '>)))
  1525. (push (cons end-pos item-up) end-list)))
  1526. (push (cons end-pos pos) acc-end)))
  1527. old-struct)
  1528. ;; 2. Slice the items into parts that should be shifted by the
  1529. ;; same amount of indentation. The slices are returned in
  1530. ;; reverse order so changes modifying buffer do not change
  1531. ;; positions they refer to.
  1532. (setq all-ends (sort (append (mapcar 'car itm-shift)
  1533. (org-uniquify (mapcar 'car end-list)))
  1534. '<))
  1535. (while (cdr all-ends)
  1536. (let* ((up (pop all-ends))
  1537. (down (car all-ends))
  1538. (ind (if (assq up struct)
  1539. (cdr (assq up itm-shift))
  1540. (cdr (assq (cdr (assq up end-list)) itm-shift)))))
  1541. (push (list down up ind) sliced-struct)))
  1542. ;; 3. Shift each slice in buffer, provided delta isn't 0, from
  1543. ;; end to beginning. Take a special action when beginning is
  1544. ;; at item bullet.
  1545. (mapc (lambda (e)
  1546. (unless (zerop (nth 2 e)) (apply shift-body-ind e))
  1547. (let* ((beg (nth 1 e))
  1548. (cell (assq beg struct)))
  1549. (unless (or (not cell) (equal cell (assq beg old-struct)))
  1550. (funcall modify-item beg))))
  1551. sliced-struct))
  1552. ;; 4. Go back to initial position
  1553. (goto-char pos)))
  1554. (defun org-list-write-struct (struct parents)
  1555. "Correct bullets, checkboxes and indentation in list at point.
  1556. STRUCT is the list structure. PARENTS is the alist of parents, as
  1557. returned by `org-list-parents-alist'."
  1558. ;; Order of functions matters here: checkboxes and endings need
  1559. ;; correct indentation to be set, and indentation needs correct
  1560. ;; bullets.
  1561. ;;
  1562. ;; 0. Save a copy of structure before modifications
  1563. (let ((old-struct (copy-tree struct)))
  1564. ;; 1. Set a temporary, but coherent with PARENTS, indentation in
  1565. ;; order to get items endings and bullets properly
  1566. (org-list-struct-fix-ind struct parents 2)
  1567. ;; 2. Get pseudo-alist of ending positions and sort it by position.
  1568. ;; Then associate them to the structure.
  1569. (let (end-list acc-end)
  1570. (mapc (lambda (e)
  1571. (let* ((pos (car e))
  1572. (ind-pos (org-list-get-ind pos struct))
  1573. (end-pos (org-list-get-item-end pos struct)))
  1574. (unless (assq end-pos struct)
  1575. ;; To determine real ind of an ending position that is
  1576. ;; not at an item, we have to find the item it belongs
  1577. ;; to: it is the last item (ITEM-UP), whose ending is
  1578. ;; further than the position we're interested in.
  1579. (let ((item-up (assoc-default end-pos acc-end '>)))
  1580. (push (cons
  1581. ;; Else part is for the bottom point
  1582. (if item-up (+ (org-list-get-ind item-up struct) 2) 0)
  1583. end-pos)
  1584. end-list)))
  1585. (push (cons ind-pos pos) end-list)
  1586. (push (cons end-pos pos) acc-end)))
  1587. struct)
  1588. (setq end-list (sort end-list (lambda (e1 e2) (< (cdr e1) (cdr e2)))))
  1589. (org-list-struct-assoc-end struct end-list))
  1590. ;; 3. Get bullets right
  1591. (let ((prevs (org-list-prevs-alist struct)))
  1592. (org-list-struct-fix-bul struct prevs)
  1593. ;; 4. Now get real indentation
  1594. (org-list-struct-fix-ind struct parents)
  1595. ;; 5. Eventually fix checkboxes
  1596. (org-list-struct-fix-box struct parents prevs))
  1597. ;; 6. Apply structure modifications to buffer
  1598. (org-list-struct-apply-struct struct old-struct)))
  1599. ;;; Misc Tools
  1600. (defun org-apply-on-list (function init-value &rest args)
  1601. "Call FUNCTION on each item of the list at point.
  1602. FUNCTION must be called with at least one argument: INIT-VALUE,
  1603. that will contain the value returned by the function at the
  1604. previous item, plus ARGS extra arguments.
  1605. FUNCTION is applied on items in reverse order.
  1606. As an example, \(org-apply-on-list \(lambda \(result\) \(1+ result\)\) 0\)
  1607. will return the number of items in the current list.
  1608. Sublists of the list are skipped. Cursor is always at the
  1609. beginning of the item."
  1610. (let* ((struct (org-list-struct))
  1611. (prevs (org-list-prevs-alist struct))
  1612. (item (copy-marker (point-at-bol)))
  1613. (all (org-list-get-all-items (marker-position item) struct prevs))
  1614. (value init-value))
  1615. (mapc (lambda (e)
  1616. (goto-char e)
  1617. (setq value (apply function value args)))
  1618. (nreverse all))
  1619. (goto-char item)
  1620. value))
  1621. (defun org-list-set-item-visibility (item struct view)
  1622. "Set visibility of ITEM in STRUCT to VIEW.
  1623. Possible values are: `folded', `children' or `subtree'. See
  1624. `org-cycle' for more information."
  1625. (cond
  1626. ((eq view 'folded)
  1627. (let ((item-end (org-list-get-item-end-before-blank item struct)))
  1628. ;; Hide from eol
  1629. (outline-flag-region (save-excursion (goto-char item) (point-at-eol))
  1630. item-end t)))
  1631. ((eq view 'children)
  1632. ;; First show everything.
  1633. (org-list-set-item-visibility item struct 'subtree)
  1634. ;; Then fold every child.
  1635. (let* ((parents (org-list-parents-alist struct))
  1636. (children (org-list-get-children item struct parents)))
  1637. (mapc (lambda (e)
  1638. (org-list-set-item-visibility e struct 'folded))
  1639. children)))
  1640. ((eq view 'subtree)
  1641. ;; Show everything
  1642. (let ((item-end (org-list-get-item-end item struct)))
  1643. (outline-flag-region item item-end nil)))))
  1644. (defun org-list-item-body-column (item)
  1645. "Return column at which body of ITEM should start."
  1646. (let (bpos bcol tpos tcol)
  1647. (save-excursion
  1648. (goto-char item)
  1649. (looking-at "[ \t]*\\(\\S-+\\)\\(.*[ \t]+::\\)?[ \t]+")
  1650. (setq bpos (match-beginning 1) tpos (match-end 0)
  1651. bcol (progn (goto-char bpos) (current-column))
  1652. tcol (progn (goto-char tpos) (current-column)))
  1653. (when (> tcol (+ bcol org-description-max-indent))
  1654. (setq tcol (+ bcol 5))))
  1655. tcol))
  1656. ;;; Interactive functions
  1657. (defalias 'org-list-get-item-begin 'org-in-item-p)
  1658. (defun org-beginning-of-item ()
  1659. "Go to the beginning of the current item.
  1660. Throw an error when not in a list."
  1661. (interactive)
  1662. (let ((begin (org-in-item-p)))
  1663. (if begin (goto-char begin) (error "Not in an item"))))
  1664. (defun org-beginning-of-item-list ()
  1665. "Go to the beginning item of the current list or sublist.
  1666. Throw an error when not in a list."
  1667. (interactive)
  1668. (let ((begin (org-in-item-p)))
  1669. (if (not begin)
  1670. (error "Not in an item")
  1671. (goto-char begin)
  1672. (let* ((struct (org-list-struct))
  1673. (prevs (org-list-prevs-alist struct)))
  1674. (goto-char (org-list-get-list-begin begin struct prevs))))))
  1675. (defun org-end-of-item-list ()
  1676. "Go to the end of the current list or sublist.
  1677. Throw an error when not in a list."
  1678. (interactive)
  1679. (let ((begin (org-in-item-p)))
  1680. (if (not begin)
  1681. (error "Not in an item")
  1682. (goto-char begin)
  1683. (let* ((struct (org-list-struct))
  1684. (prevs (org-list-prevs-alist struct)))
  1685. (goto-char (org-list-get-list-end begin struct prevs))))))
  1686. (defun org-end-of-item ()
  1687. "Go to the end of the current item.
  1688. Throw an error when not in a list."
  1689. (interactive)
  1690. (let ((begin (org-in-item-p)))
  1691. (if (not begin)
  1692. (error "Not in an item")
  1693. (goto-char begin)
  1694. (let ((struct (org-list-struct)))
  1695. (goto-char (org-list-get-item-end begin struct))))))
  1696. (defun org-previous-item ()
  1697. "Move to the beginning of the previous item.
  1698. Throw an error when not in a list, or at first item."
  1699. (interactive)
  1700. (let ((begin (org-in-item-p)))
  1701. (if (not begin)
  1702. (error "Not in an item")
  1703. (goto-char begin)
  1704. (let* ((struct (org-list-struct))
  1705. (prevs (org-list-prevs-alist struct))
  1706. (prevp (org-list-get-prev-item begin struct prevs)))
  1707. (if prevp (goto-char prevp) (error "On first item"))))))
  1708. (defun org-next-item ()
  1709. "Move to the beginning of the next item.
  1710. Throw an error when not in a plain list, or at last item."
  1711. (interactive)
  1712. (let ((begin (org-in-item-p)))
  1713. (if (not begin)
  1714. (error "Not in an item")
  1715. (goto-char begin)
  1716. (let* ((struct (org-list-struct))
  1717. (prevs (org-list-prevs-alist struct))
  1718. (prevp (org-list-get-next-item begin struct prevs)))
  1719. (if prevp (goto-char prevp) (error "On last item"))))))
  1720. (defun org-move-item-down ()
  1721. "Move the item at point down, i.e. swap with following item.
  1722. Subitems (items with larger indentation) are considered part of
  1723. the item, so this really moves item trees."
  1724. (interactive)
  1725. (unless (org-at-item-p) (error "Not at an item"))
  1726. (let* ((pos (point))
  1727. (col (current-column))
  1728. (actual-item (point-at-bol))
  1729. (struct (org-list-struct))
  1730. (prevs (org-list-prevs-alist struct))
  1731. (next-item (org-list-get-next-item (point-at-bol) struct prevs)))
  1732. (if (not next-item)
  1733. (progn
  1734. (goto-char pos)
  1735. (error "Cannot move this item further down"))
  1736. (setq struct
  1737. (org-list-exchange-items actual-item next-item struct))
  1738. ;; Use a short variation of `org-list-write-struct' as there's
  1739. ;; no need to go through all the steps.
  1740. (let ((old-struct (copy-tree struct))
  1741. (prevs (org-list-prevs-alist struct))
  1742. (parents (org-list-parents-alist struct)))
  1743. (org-list-struct-fix-bul struct prevs)
  1744. (org-list-struct-fix-ind struct parents)
  1745. (org-list-struct-apply-struct struct old-struct)
  1746. (goto-char (org-list-get-next-item (point-at-bol) struct prevs)))
  1747. (org-move-to-column col))))
  1748. (defun org-move-item-up ()
  1749. "Move the item at point up, i.e. swap with previous item.
  1750. Subitems (items with larger indentation) are considered part of
  1751. the item, so this really moves item trees."
  1752. (interactive)
  1753. (unless (org-at-item-p) (error "Not at an item"))
  1754. (let* ((pos (point))
  1755. (col (current-column))
  1756. (actual-item (point-at-bol))
  1757. (struct (org-list-struct))
  1758. (prevs (org-list-prevs-alist struct))
  1759. (prev-item (org-list-get-prev-item (point-at-bol) struct prevs)))
  1760. (if (not prev-item)
  1761. (progn
  1762. (goto-char pos)
  1763. (error "Cannot move this item further up"))
  1764. (setq struct
  1765. (org-list-exchange-items prev-item actual-item struct))
  1766. ;; Use a short variation of `org-list-write-struct' as there's
  1767. ;; no need to go through all the steps.
  1768. (let ((old-struct (copy-tree struct))
  1769. (prevs (org-list-prevs-alist struct))
  1770. (parents (org-list-parents-alist struct)))
  1771. (org-list-struct-fix-bul struct prevs)
  1772. (org-list-struct-fix-ind struct parents)
  1773. (org-list-struct-apply-struct struct old-struct))
  1774. (org-move-to-column col))))
  1775. (defun org-insert-item (&optional checkbox)
  1776. "Insert a new item at the current level.
  1777. If cursor is before first character after bullet of the item, the
  1778. new item will be created before the current one.
  1779. If CHECKBOX is non-nil, add a checkbox next to the bullet.
  1780. Return t when things worked, nil when we are not in an item, or
  1781. item is invisible."
  1782. (let ((itemp (org-in-item-p))
  1783. (pos (point)))
  1784. ;; If cursor isn't is a list or if list is invisible, return nil.
  1785. (unless (or (not itemp)
  1786. (save-excursion
  1787. (goto-char itemp)
  1788. (outline-invisible-p)))
  1789. (if (save-excursion
  1790. (goto-char itemp)
  1791. (org-at-item-timer-p))
  1792. ;; Timer list: delegate to `org-timer-item'.
  1793. (progn (org-timer-item) t)
  1794. (goto-char itemp)
  1795. (let* ((struct (org-list-struct))
  1796. (prevs (org-list-prevs-alist struct))
  1797. ;; If we're in a description list, ask for the new term.
  1798. (desc (when (org-list-get-tag itemp struct)
  1799. (concat (read-string "Term: ") " :: ")))
  1800. ;; Don't insert a checkbox if checkbox rule is applied
  1801. ;; and it is a description item.
  1802. (checkp (and checkbox
  1803. (or (not desc)
  1804. (not (cdr (assq 'checkbox
  1805. org-list-automatic-rules)))))))
  1806. (setq struct
  1807. (org-list-insert-item pos struct prevs checkp desc))
  1808. (org-list-write-struct struct (org-list-parents-alist struct))
  1809. (when checkp (org-update-checkbox-count-maybe))
  1810. (looking-at org-list-full-item-re)
  1811. (goto-char (match-end 0))
  1812. t)))))
  1813. (defun org-list-repair ()
  1814. "Fix indentation, bullets and checkboxes is the list at point."
  1815. (interactive)
  1816. (unless (org-at-item-p) (error "This is not a list"))
  1817. (let* ((struct (org-list-struct))
  1818. (parents (org-list-parents-alist struct)))
  1819. (org-list-write-struct struct parents)))
  1820. (defun org-cycle-list-bullet (&optional which)
  1821. "Cycle through the different itemize/enumerate bullets.
  1822. This cycle the entire list level through the sequence:
  1823. `-' -> `+' -> `*' -> `1.' -> `1)'
  1824. If WHICH is a valid string, use that as the new bullet. If WHICH
  1825. is an integer, 0 means `-', 1 means `+' etc. If WHICH is
  1826. `previous', cycle backwards."
  1827. (interactive "P")
  1828. (unless (org-at-item-p) (error "Not at an item"))
  1829. (save-excursion
  1830. (beginning-of-line)
  1831. (let* ((struct (org-list-struct))
  1832. (parents (org-list-parents-alist struct))
  1833. (prevs (org-list-prevs-alist struct))
  1834. (list-beg (org-list-get-first-item (point) struct prevs))
  1835. (bullet (org-list-get-bullet list-beg struct))
  1836. (bullet-rule-p (cdr (assq 'bullet org-list-automatic-rules)))
  1837. (alpha-p (org-list-use-alpha-bul-p list-beg struct prevs))
  1838. (case-fold-search nil)
  1839. (current (cond
  1840. ((string-match "[a-z]\\." bullet) "a.")
  1841. ((string-match "[a-z])" bullet) "a)")
  1842. ((string-match "[A-Z]\\." bullet) "A.")
  1843. ((string-match "[A-Z])" bullet) "A)")
  1844. ((string-match "\\." bullet) "1.")
  1845. ((string-match ")" bullet) "1)")
  1846. (t (org-trim bullet))))
  1847. ;; Compute list of possible bullets, depending on context
  1848. (bullet-list
  1849. (append '("-" "+" )
  1850. ;; *-bullets are not allowed at column 0
  1851. (unless (and bullet-rule-p
  1852. (looking-at "\\S-")) '("*"))
  1853. ;; Description items cannot be numbered
  1854. (unless (or (eq org-plain-list-ordered-item-terminator ?\))
  1855. (and bullet-rule-p (org-at-item-description-p)))
  1856. '("1."))
  1857. (unless (or (eq org-plain-list-ordered-item-terminator ?.)
  1858. (and bullet-rule-p (org-at-item-description-p)))
  1859. '("1)"))
  1860. (unless (or (not alpha-p)
  1861. (eq org-plain-list-ordered-item-terminator ?\))
  1862. (and bullet-rule-p (org-at-item-description-p)))
  1863. '("a." "A."))
  1864. (unless (or (not alpha-p)
  1865. (eq org-plain-list-ordered-item-terminator ?.)
  1866. (and bullet-rule-p (org-at-item-description-p)))
  1867. '("a)" "A)"))))
  1868. (len (length bullet-list))
  1869. (item-index (- len (length (member current bullet-list))))
  1870. (get-value (lambda (index) (nth (mod index len) bullet-list)))
  1871. (new (cond
  1872. ((member which bullet-list) which)
  1873. ((numberp which) (funcall get-value which))
  1874. ((eq 'previous which) (funcall get-value (1- item-index)))
  1875. (t (funcall get-value (1+ item-index))))))
  1876. ;; Use a short variation of `org-list-write-struct' as there's
  1877. ;; no need to go through all the steps.
  1878. (let ((old-struct (copy-tree struct)))
  1879. (org-list-set-bullet list-beg struct (org-list-bullet-string new))
  1880. (org-list-struct-fix-bul struct prevs)
  1881. (org-list-struct-fix-ind struct parents)
  1882. (org-list-struct-apply-struct struct old-struct)))))
  1883. (defun org-toggle-checkbox (&optional toggle-presence)
  1884. "Toggle the checkbox in the current line.
  1885. With prefix arg TOGGLE-PRESENCE, add or remove checkboxes. With
  1886. double prefix, set checkbox to [-].
  1887. When there is an active region, toggle status or presence of the
  1888. first checkbox there, and make every item inside have the same
  1889. status or presence, respectively.
  1890. If the cursor is in a headline, apply this to all checkbox items
  1891. in the text below the heading, taking as reference the first item
  1892. in subtree, ignoring drawers."
  1893. (interactive "P")
  1894. (save-excursion
  1895. (let* (singlep
  1896. block-item
  1897. lim-up
  1898. lim-down
  1899. (orderedp (org-entry-get nil "ORDERED"))
  1900. (bounds
  1901. ;; In a region, start at first item in region
  1902. (cond
  1903. ((org-region-active-p)
  1904. (let ((limit (region-end)))
  1905. (goto-char (region-beginning))
  1906. (if (org-list-search-forward (org-item-beginning-re) limit t)
  1907. (setq lim-up (point-at-bol))
  1908. (error "No item in region"))
  1909. (setq lim-down (copy-marker limit))))
  1910. ((org-on-heading-p)
  1911. ;; On an heading, start at first item after drawers
  1912. (let ((limit (save-excursion (outline-next-heading) (point))))
  1913. (forward-line 1)
  1914. (when (looking-at org-drawer-regexp)
  1915. (re-search-forward "^[ \t]*:END:" limit nil))
  1916. (if (org-list-search-forward (org-item-beginning-re) limit t)
  1917. (setq lim-up (point-at-bol))
  1918. (error "No item in subtree"))
  1919. (setq lim-down (copy-marker limit))))
  1920. ;; Just one item: set singlep flag
  1921. ((org-at-item-p)
  1922. (setq singlep t)
  1923. (setq lim-up (point-at-bol)
  1924. lim-down (point-at-eol)))
  1925. (t (error "Not at an item or heading, and no active region"))))
  1926. ;; Determine the checkbox going to be applied to all items
  1927. ;; within bounds
  1928. (ref-checkbox
  1929. (progn
  1930. (goto-char lim-up)
  1931. (let ((cbox (and (org-at-item-checkbox-p) (match-string 1))))
  1932. (cond
  1933. ((equal toggle-presence '(16)) "[-]")
  1934. ((equal toggle-presence '(4))
  1935. (unless cbox "[ ]"))
  1936. ((equal "[ ]" cbox) "[X]")
  1937. (t "[ ]"))))))
  1938. ;; When an item is found within bounds, grab the full list at
  1939. ;; point structure, then: 1. set checkbox of all its items
  1940. ;; within bounds to ref-checkbox; 2. fix checkboxes of the whole
  1941. ;; list; 3. move point after the list.
  1942. (goto-char lim-up)
  1943. (while (and (< (point) lim-down)
  1944. (org-list-search-forward (org-item-beginning-re)
  1945. lim-down 'move))
  1946. (let* ((struct (org-list-struct))
  1947. (struct-copy (copy-tree struct))
  1948. (parents (org-list-parents-alist struct))
  1949. (prevs (org-list-prevs-alist struct))
  1950. (bottom (copy-marker (org-list-get-bottom-point struct)))
  1951. (items-to-toggle (org-remove-if
  1952. (lambda (e) (or (< e lim-up) (> e lim-down)))
  1953. (mapcar 'car (cdr struct)))))
  1954. (mapc (lambda (e) (org-list-set-checkbox
  1955. e struct
  1956. ;; if there is no box at item, leave as-is
  1957. ;; unless function was called with C-u prefix
  1958. (let ((cur-box (org-list-get-checkbox e struct)))
  1959. (if (or cur-box (equal toggle-presence '(4)))
  1960. ref-checkbox
  1961. cur-box))))
  1962. items-to-toggle)
  1963. (setq block-item (org-list-struct-fix-box
  1964. struct parents prevs orderedp))
  1965. ;; Report some problems due to ORDERED status of subtree. If
  1966. ;; only one box was being checked, throw an error, else,
  1967. ;; only signal problems.
  1968. (cond
  1969. ((and singlep block-item (> lim-up block-item))
  1970. (error
  1971. "Checkbox blocked because of unchecked box at line %d"
  1972. (org-current-line block-item)))
  1973. (block-item
  1974. (message
  1975. "Checkboxes were removed due to unchecked box at line %d"
  1976. (org-current-line block-item))))
  1977. (goto-char bottom)
  1978. (org-list-struct-apply-struct struct struct-copy))))
  1979. (org-update-checkbox-count-maybe)))
  1980. (defun org-reset-checkbox-state-subtree ()
  1981. "Reset all checkboxes in an entry subtree."
  1982. (interactive "*")
  1983. (save-restriction
  1984. (save-excursion
  1985. (org-narrow-to-subtree)
  1986. (org-show-subtree)
  1987. (goto-char (point-min))
  1988. (let ((end (point-max)))
  1989. (while (< (point) end)
  1990. (when (org-at-item-checkbox-p)
  1991. (replace-match "[ ]" t t nil 1))
  1992. (beginning-of-line 2))))
  1993. (org-update-checkbox-count-maybe)))
  1994. (defun org-update-checkbox-count (&optional all)
  1995. "Update the checkbox statistics in the current section.
  1996. This will find all statistic cookies like [57%] and [6/12] and
  1997. update them with the current numbers.
  1998. With optional prefix argument ALL, do this for the whole buffer."
  1999. (interactive "P")
  2000. (save-excursion
  2001. (let ((cookie-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
  2002. (box-re "^[ \t]*\\([-+*]\\|\\([0-9]+\\|[A-Za-z]\\)[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?\\(\\[[- X]\\]\\)")
  2003. (recursivep
  2004. (or (not org-hierarchical-checkbox-statistics)
  2005. (string-match "\\<recursive\\>"
  2006. (or (org-entry-get nil "COOKIE_DATA") ""))))
  2007. (bounds (if all
  2008. (cons (point-min) (point-max))
  2009. (cons (or (ignore-errors (org-back-to-heading) (point))
  2010. (point-min))
  2011. (save-excursion (outline-next-heading) (point)))))
  2012. (count-boxes
  2013. (function
  2014. ;; Return number of checked boxes and boxes of all types
  2015. ;; in all structures in STRUCTS. If RECURSIVEP is non-nil,
  2016. ;; also count boxes in sub-lists. If ITEM is nil, count
  2017. ;; across the whole structure, else count only across
  2018. ;; subtree whose ancestor is ITEM.
  2019. (lambda (item structs recursivep)
  2020. (let ((c-on 0) (c-all 0))
  2021. (mapc
  2022. (lambda (s)
  2023. (let* ((pre (org-list-prevs-alist s))
  2024. (par (org-list-parents-alist s))
  2025. (items
  2026. (cond
  2027. ((and recursivep item) (org-list-get-subtree item s))
  2028. (recursivep (mapcar 'car s))
  2029. (item (org-list-get-children item s par))
  2030. (t (org-list-get-all-items
  2031. (org-list-get-top-point s) s pre))))
  2032. (cookies (delq nil (mapcar
  2033. (lambda (e)
  2034. (org-list-get-checkbox e s))
  2035. items))))
  2036. (setq c-all (+ (length cookies) c-all)
  2037. c-on (+ (org-count "[X]" cookies) c-on))))
  2038. structs)
  2039. (cons c-on c-all)))))
  2040. (backup-end 1)
  2041. cookies-list structs-bak box-num)
  2042. (goto-char (car bounds))
  2043. ;; 1. Build an alist for each cookie found within BOUNDS. The
  2044. ;; key will be position at beginning of cookie and values
  2045. ;; ending position, format of cookie, and a cell whose car is
  2046. ;; number of checked boxes to report, and cdr total number of
  2047. ;; boxes.
  2048. (while (re-search-forward cookie-re (cdr bounds) t)
  2049. (catch 'skip
  2050. (save-excursion
  2051. (push
  2052. (list
  2053. (match-beginning 1) ; cookie start
  2054. (match-end 1) ; cookie end
  2055. (match-string 2) ; percent?
  2056. (cond ; boxes count
  2057. ;; Cookie is at an heading, but specifically for todo,
  2058. ;; not for checkboxes: skip it.
  2059. ((and (org-on-heading-p)
  2060. (string-match "\\<todo\\>"
  2061. (downcase
  2062. (or (org-entry-get nil "COOKIE_DATA") ""))))
  2063. (throw 'skip nil))
  2064. ;; Cookie is at an heading, but all lists before next
  2065. ;; heading already have been read. Use data collected
  2066. ;; in STRUCTS-BAK. This should only happen when heading
  2067. ;; has more than one cookie on it.
  2068. ((and (org-on-heading-p)
  2069. (<= (save-excursion (outline-next-heading) (point))
  2070. backup-end))
  2071. (funcall count-boxes nil structs-bak recursivep))
  2072. ;; Cookie is at a fresh heading. Grab structure of
  2073. ;; every list containing a checkbox between point and
  2074. ;; next headline, and save them in STRUCTS-BAK.
  2075. ((org-on-heading-p)
  2076. (setq backup-end (save-excursion
  2077. (outline-next-heading) (point)))
  2078. (while (org-list-search-forward box-re backup-end 'move)
  2079. (let* ((struct (org-list-struct))
  2080. (bottom (org-list-get-bottom-point struct)))
  2081. (push struct structs-bak)
  2082. (goto-char bottom)))
  2083. (funcall count-boxes nil structs-bak recursivep))
  2084. ;; Cookie is at an item, and we already have list
  2085. ;; structure stored in STRUCTS-BAK.
  2086. ((and (org-at-item-p)
  2087. (< (point-at-bol) backup-end)
  2088. ;; Only lists in no special context are stored.
  2089. (not (nth 2 (org-list-context))))
  2090. (funcall count-boxes (point-at-bol) structs-bak recursivep))
  2091. ;; Cookie is at an item, but we need to compute list
  2092. ;; structure.
  2093. ((org-at-item-p)
  2094. (let ((struct (org-list-struct)))
  2095. (setq backup-end (org-list-get-bottom-point struct)
  2096. structs-bak (list struct)))
  2097. (funcall count-boxes (point-at-bol) structs-bak recursivep))
  2098. ;; Else, cookie found is at a wrong place. Skip it.
  2099. (t (throw 'skip nil))))
  2100. cookies-list))))
  2101. ;; 2. Apply alist to buffer, in reverse order so positions stay
  2102. ;; unchanged after cookie modifications.
  2103. (mapc (lambda (cookie)
  2104. (let* ((beg (car cookie))
  2105. (end (nth 1 cookie))
  2106. (percentp (nth 2 cookie))
  2107. (checked (car (nth 3 cookie)))
  2108. (total (cdr (nth 3 cookie)))
  2109. (new (if percentp
  2110. (format "[%d%%]" (/ (* 100 checked)
  2111. (max 1 total)))
  2112. (format "[%d/%d]" checked total))))
  2113. (goto-char beg)
  2114. (insert new)
  2115. (delete-region (point) (+ (point) (- end beg)))))
  2116. cookies-list))))
  2117. (defun org-get-checkbox-statistics-face ()
  2118. "Select the face for checkbox statistics.
  2119. The face will be `org-done' when all relevant boxes are checked.
  2120. Otherwise it will be `org-todo'."
  2121. (if (match-end 1)
  2122. (if (equal (match-string 1) "100%")
  2123. 'org-checkbox-statistics-done
  2124. 'org-checkbox-statistics-todo)
  2125. (if (and (> (match-end 2) (match-beginning 2))
  2126. (equal (match-string 2) (match-string 3)))
  2127. 'org-checkbox-statistics-done
  2128. 'org-checkbox-statistics-todo)))
  2129. (defun org-update-checkbox-count-maybe ()
  2130. "Update checkbox statistics unless turned off by user."
  2131. (when (cdr (assq 'checkbox org-list-automatic-rules))
  2132. (org-update-checkbox-count))
  2133. (run-hooks 'org-checkbox-statistics-hook))
  2134. (defvar org-last-indent-begin-marker (make-marker))
  2135. (defvar org-last-indent-end-marker (make-marker))
  2136. (defun org-list-indent-item-generic (arg no-subtree struct)
  2137. "Indent a local list item including its children.
  2138. When number ARG is a negative, item will be outdented, otherwise
  2139. it will be indented.
  2140. If a region is active, all items inside will be moved.
  2141. If NO-SUBTREE is non-nil, only indent the item itself, not its
  2142. children.
  2143. STRUCT is the list structure.
  2144. Return t if successful."
  2145. (save-excursion
  2146. (beginning-of-line)
  2147. (let* ((regionp (org-region-active-p))
  2148. (rbeg (and regionp (region-beginning)))
  2149. (rend (and regionp (region-end)))
  2150. (top (org-list-get-top-point struct))
  2151. (parents (org-list-parents-alist struct))
  2152. (prevs (org-list-prevs-alist struct))
  2153. ;; Are we going to move the whole list?
  2154. (specialp
  2155. (and (= top (point))
  2156. (cdr (assq 'indent org-list-automatic-rules))
  2157. (if no-subtree
  2158. (error
  2159. "First item of list cannot move without its subtree")
  2160. t))))
  2161. ;; Determine begin and end points of zone to indent. If moving
  2162. ;; more than one item, save them for subsequent moves.
  2163. (unless (and (memq last-command '(org-shiftmetaright org-shiftmetaleft))
  2164. (memq this-command '(org-shiftmetaright org-shiftmetaleft)))
  2165. (if regionp
  2166. (progn
  2167. (set-marker org-last-indent-begin-marker rbeg)
  2168. (set-marker org-last-indent-end-marker rend))
  2169. (set-marker org-last-indent-begin-marker (point))
  2170. (set-marker org-last-indent-end-marker
  2171. (cond
  2172. (specialp (org-list-get-bottom-point struct))
  2173. (no-subtree (1+ (point)))
  2174. (t (org-list-get-item-end (point) struct))))))
  2175. (let* ((beg (marker-position org-last-indent-begin-marker))
  2176. (end (marker-position org-last-indent-end-marker)))
  2177. (cond
  2178. ;; Special case: moving top-item with indent rule
  2179. (specialp
  2180. (let* ((level-skip (org-level-increment))
  2181. (offset (if (< arg 0) (- level-skip) level-skip))
  2182. (top-ind (org-list-get-ind beg struct))
  2183. (old-struct (copy-tree struct)))
  2184. (if (< (+ top-ind offset) 0)
  2185. (error "Cannot outdent beyond margin")
  2186. ;; Change bullet if necessary
  2187. (when (and (= (+ top-ind offset) 0)
  2188. (string-match "*"
  2189. (org-list-get-bullet beg struct)))
  2190. (org-list-set-bullet beg struct
  2191. (org-list-bullet-string "-")))
  2192. ;; Shift every item by OFFSET and fix bullets. Then
  2193. ;; apply changes to buffer.
  2194. (mapc (lambda (e)
  2195. (let ((ind (org-list-get-ind (car e) struct)))
  2196. (org-list-set-ind (car e) struct (+ ind offset))))
  2197. struct)
  2198. (org-list-struct-fix-bul struct prevs)
  2199. (org-list-struct-apply-struct struct old-struct))))
  2200. ;; Forbidden move:
  2201. ((and (< arg 0)
  2202. ;; If only one item is moved, it mustn't have a child
  2203. (or (and no-subtree
  2204. (not regionp)
  2205. (org-list-has-child-p beg struct))
  2206. ;; If a subtree or region is moved, the last item
  2207. ;; of the subtree mustn't have a child
  2208. (let ((last-item (caar
  2209. (reverse
  2210. (org-remove-if
  2211. (lambda (e) (>= (car e) end))
  2212. struct)))))
  2213. (org-list-has-child-p last-item struct))))
  2214. (error "Cannot outdent an item without its children"))
  2215. ;; Normal shifting
  2216. (t
  2217. (let* ((new-parents
  2218. (if (< arg 0)
  2219. (org-list-struct-outdent beg end struct parents)
  2220. (org-list-struct-indent beg end struct parents prevs))))
  2221. (org-list-write-struct struct new-parents))
  2222. (org-update-checkbox-count-maybe))))))
  2223. t)
  2224. (defun org-outdent-item ()
  2225. "Outdent a local list item, but not its children.
  2226. If a region is active, all items inside will be moved."
  2227. (interactive)
  2228. (if (org-at-item-p)
  2229. (let ((struct (org-list-struct)))
  2230. (org-list-indent-item-generic -1 t struct))
  2231. (error "Not at an item")))
  2232. (defun org-indent-item ()
  2233. "Indent a local list item, but not its children.
  2234. If a region is active, all items inside will be moved."
  2235. (interactive)
  2236. (if (org-at-item-p)
  2237. (let ((struct (org-list-struct)))
  2238. (org-list-indent-item-generic 1 t struct))
  2239. (error "Not at an item")))
  2240. (defun org-outdent-item-tree ()
  2241. "Outdent a local list item including its children.
  2242. If a region is active, all items inside will be moved."
  2243. (interactive)
  2244. (let ((regionp (org-region-active-p)))
  2245. (cond
  2246. ((or (org-at-item-p)
  2247. (and (org-region-active-p)
  2248. (goto-char (region-beginning))
  2249. (org-at-item-p)))
  2250. (let ((struct (org-list-struct)))
  2251. (org-list-indent-item-generic -1 nil struct)))
  2252. (regionp (error "Region not starting at an item"))
  2253. (t (error "Not at an item")))))
  2254. (defun org-indent-item-tree ()
  2255. "Indent a local list item including its children.
  2256. If a region is active, all items inside will be moved."
  2257. (interactive)
  2258. (let ((regionp (org-region-active-p)))
  2259. (cond
  2260. ((or (org-at-item-p)
  2261. (and (org-region-active-p)
  2262. (goto-char (region-beginning))
  2263. (org-at-item-p)))
  2264. (let ((struct (org-list-struct)))
  2265. (org-list-indent-item-generic 1 nil struct)))
  2266. (regionp (error "Region not starting at an item"))
  2267. (t (error "Not at an item")))))
  2268. (defvar org-tab-ind-state)
  2269. (defun org-cycle-item-indentation ()
  2270. "Cycle levels of indentation of an empty item.
  2271. The first run indents the item, if applicable. Subsequents runs
  2272. outdent it at meaningful levels in the list. When done, item is
  2273. put back at its original position with its original bullet.
  2274. Return t at each successful move."
  2275. (when (org-at-item-p)
  2276. (let* ((org-adapt-indentation nil)
  2277. (struct (org-list-struct))
  2278. (ind (org-list-get-ind (point-at-bol) struct))
  2279. (bullet (org-list-get-bullet (point-at-bol) struct)))
  2280. ;; Accept empty items or if cycle has already started.
  2281. (when (or (eq last-command 'org-cycle-item-indentation)
  2282. (and (save-excursion
  2283. (beginning-of-line)
  2284. (looking-at org-list-full-item-re))
  2285. (>= (match-end 0) (save-excursion
  2286. (goto-char (org-list-get-item-end
  2287. (point-at-bol) struct))
  2288. (skip-chars-backward " \r\t\n")
  2289. (point)))))
  2290. (setq this-command 'org-cycle-item-indentation)
  2291. ;; When in the middle of the cycle, try to outdent first. If it
  2292. ;; fails, and point is still at initial position, indent. Else,
  2293. ;; go back to original position.
  2294. (if (eq last-command 'org-cycle-item-indentation)
  2295. (cond
  2296. ((ignore-errors (org-list-indent-item-generic -1 t struct)))
  2297. ((and (= ind (car org-tab-ind-state))
  2298. (ignore-errors (org-list-indent-item-generic 1 t struct))))
  2299. (t (delete-region (point-at-bol) (point-at-eol))
  2300. (org-indent-to-column (car org-tab-ind-state))
  2301. (insert (cdr org-tab-ind-state))
  2302. ;; Break cycle
  2303. (setq this-command 'identity)))
  2304. ;; If a cycle is starting, remember indentation and bullet,
  2305. ;; then try to indent. If it fails, try to outdent.
  2306. (setq org-tab-ind-state (cons ind bullet))
  2307. (cond
  2308. ((ignore-errors (org-list-indent-item-generic 1 t struct)))
  2309. ((ignore-errors (org-list-indent-item-generic -1 t struct)))
  2310. (t (error "Cannot move item"))))
  2311. t))))
  2312. (defun org-sort-list (&optional with-case sorting-type getkey-func compare-func)
  2313. "Sort list items.
  2314. The cursor may be at any item of the list that should be sorted.
  2315. Sublists are not sorted. Checkboxes, if any, are ignored.
  2316. Sorting can be alphabetically, numerically, by date/time as given by
  2317. a time stamp, by a property or by priority.
  2318. Comparing entries ignores case by default. However, with an
  2319. optional argument WITH-CASE, the sorting considers case as well.
  2320. The command prompts for the sorting type unless it has been given
  2321. to the function through the SORTING-TYPE argument, which needs to
  2322. be a character, \(?n ?N ?a ?A ?t ?T ?f ?F). Here is the precise
  2323. meaning of each character:
  2324. n Numerically, by converting the beginning of the item to a number.
  2325. a Alphabetically. Only the first line of item is checked.
  2326. t By date/time, either the first active time stamp in the entry, if
  2327. any, or by the first inactive one. In a timer list, sort the timers.
  2328. Capital letters will reverse the sort order.
  2329. If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a
  2330. function to be called with point at the beginning of the record.
  2331. It must return either a string or a number that should serve as
  2332. the sorting key for that record. It will then use COMPARE-FUNC to
  2333. compare entries."
  2334. (interactive "P")
  2335. (let* ((case-func (if with-case 'identity 'downcase))
  2336. (struct (org-list-struct))
  2337. (prevs (org-list-prevs-alist struct))
  2338. (start (org-list-get-list-begin (point-at-bol) struct prevs))
  2339. (end (org-list-get-list-end (point-at-bol) struct prevs))
  2340. (sorting-type
  2341. (progn
  2342. (message
  2343. "Sort plain list: [a]lpha [n]umeric [t]ime [f]unc A/N/T/F means reversed:")
  2344. (read-char-exclusive)))
  2345. (getkey-func (and (= (downcase sorting-type) ?f)
  2346. (org-icompleting-read "Sort using function: "
  2347. obarray 'fboundp t nil nil)
  2348. (intern getkey-func))))
  2349. (message "Sorting items...")
  2350. (save-restriction
  2351. (narrow-to-region start end)
  2352. (goto-char (point-min))
  2353. (let* ((dcst (downcase sorting-type))
  2354. (case-fold-search nil)
  2355. (now (current-time))
  2356. (sort-func (cond
  2357. ((= dcst ?a) 'string<)
  2358. ((= dcst ?f) compare-func)
  2359. ((= dcst ?t) '<)
  2360. (t nil)))
  2361. (next-record (lambda ()
  2362. (skip-chars-forward " \r\t\n")
  2363. (beginning-of-line)))
  2364. (end-record (lambda ()
  2365. (goto-char (org-list-get-item-end-before-blank
  2366. (point) struct))))
  2367. (value-to-sort
  2368. (lambda ()
  2369. (when (looking-at "[ \t]*[-+*0-9.)]+\\([ \t]+\\[[- X]\\]\\)?[ \t]+")
  2370. (cond
  2371. ((= dcst ?n)
  2372. (string-to-number (buffer-substring (match-end 0)
  2373. (point-at-eol))))
  2374. ((= dcst ?a)
  2375. (buffer-substring (match-end 0) (point-at-eol)))
  2376. ((= dcst ?t)
  2377. (cond
  2378. ;; If it is a timer list, convert timer to seconds
  2379. ((org-at-item-timer-p)
  2380. (org-timer-hms-to-secs (match-string 1)))
  2381. ((or (re-search-forward org-ts-regexp (point-at-eol) t)
  2382. (re-search-forward org-ts-regexp-both
  2383. (point-at-eol) t))
  2384. (org-time-string-to-seconds (match-string 0)))
  2385. (t (org-float-time now))))
  2386. ((= dcst ?f)
  2387. (if getkey-func
  2388. (let ((value (funcall getkey-func)))
  2389. (if (stringp value)
  2390. (funcall case-func value)
  2391. value))
  2392. (error "Invalid key function `%s'" getkey-func)))
  2393. (t (error "Invalid sorting type `%c'" sorting-type)))))))
  2394. (sort-subr (/= dcst sorting-type)
  2395. next-record
  2396. end-record
  2397. value-to-sort
  2398. nil
  2399. sort-func)
  2400. ;; Read and fix list again, as `sort-subr' probably destroyed
  2401. ;; its structure.
  2402. (org-list-repair)
  2403. (run-hooks 'org-after-sorting-entries-or-items-hook)
  2404. (message "Sorting items...done")))))
  2405. ;;; Send and receive lists
  2406. (defun org-list-parse-list (&optional delete)
  2407. "Parse the list at point and maybe DELETE it.
  2408. Return a list whose car is a symbol of list type, among
  2409. `ordered', `unordered' and `descriptive'. Then, each item is a
  2410. list whose car is counter, and cdr are strings and other
  2411. sub-lists. Inside strings, checkboxes are replaced by \"[CBON]\"
  2412. and \"[CBOFF]\".
  2413. For example, the following list:
  2414. 1. first item
  2415. + sub-item one
  2416. + [X] sub-item two
  2417. more text in first item
  2418. 2. [@3] last item
  2419. will be parsed as:
  2420. \(ordered
  2421. \(nil \"first item\"
  2422. \(unordered
  2423. \(nil \"sub-item one\"\)
  2424. \(nil \"[CBON] sub-item two\"\)\)
  2425. \"more text in first item\"\)
  2426. \(3 \"last item\"\)\)
  2427. Point is left at list end."
  2428. (let* ((struct (org-list-struct))
  2429. (prevs (org-list-prevs-alist struct))
  2430. (parents (org-list-parents-alist struct))
  2431. (top (org-list-get-top-point struct))
  2432. (bottom (org-list-get-bottom-point struct))
  2433. out
  2434. parse-item ; for byte-compiler
  2435. (get-text
  2436. (function
  2437. ;; Return text between BEG and END, trimmed, with
  2438. ;; checkboxes replaced.
  2439. (lambda (beg end)
  2440. (let ((text (org-trim (buffer-substring beg end))))
  2441. (if (string-match "\\`\\[\\([X ]\\)\\]" text)
  2442. (replace-match
  2443. (if (equal (match-string 1 text) " ") "CBOFF" "CBON")
  2444. t nil text 1)
  2445. text)))))
  2446. (parse-sublist
  2447. (function
  2448. ;; Return a list whose car is list type and cdr a list of
  2449. ;; items' body.
  2450. (lambda (e)
  2451. (cons (org-list-get-list-type (car e) struct prevs)
  2452. (mapcar parse-item e)))))
  2453. (parse-item
  2454. (function
  2455. ;; Return a list containing counter of item, if any, text
  2456. ;; and any sublist inside it.
  2457. (lambda (e)
  2458. (let ((start (save-excursion
  2459. (goto-char e)
  2460. (looking-at "[ \t]*\\S-+[ \t]+\\(\\[@[:[:alnum:]]+\\][ \t]*\\)?")
  2461. (match-end 0)))
  2462. ;; Get counter number. For alphabetic counter, get
  2463. ;; its position in the alphabet.
  2464. (counter (let ((c (org-list-get-counter e struct)))
  2465. (cond
  2466. ((not c) nil)
  2467. ((string-match "[A-Za-z]" c)
  2468. (- (string-to-char (upcase (match-string 0 c)))
  2469. 64))
  2470. ((string-match "[0-9]+" c)
  2471. (string-to-number (match-string 0 c))))))
  2472. (childp (org-list-has-child-p e struct))
  2473. (end (org-list-get-item-end e struct)))
  2474. ;; If item has a child, store text between bullet and
  2475. ;; next child, then recursively parse all sublists. At
  2476. ;; the end of each sublist, check for the presence of
  2477. ;; text belonging to the original item.
  2478. (if childp
  2479. (let* ((children (org-list-get-children e struct parents))
  2480. (body (list (funcall get-text start childp))))
  2481. (while children
  2482. (let* ((first (car children))
  2483. (sub (org-list-get-all-items first struct prevs))
  2484. (last-c (car (last sub)))
  2485. (last-end (org-list-get-item-end last-c struct)))
  2486. (push (funcall parse-sublist sub) body)
  2487. ;; Remove children from the list just parsed.
  2488. (setq children (cdr (member last-c children)))
  2489. ;; There is a chunk of text belonging to the
  2490. ;; item if last child doesn't end where next
  2491. ;; child starts or where item ends.
  2492. (unless (= (or (car children) end) last-end)
  2493. (push (funcall get-text
  2494. last-end (or (car children) end))
  2495. body))))
  2496. (cons counter (nreverse body)))
  2497. (list counter (funcall get-text start end))))))))
  2498. ;; Store output, take care of cursor position and deletion of
  2499. ;; list, then return output.
  2500. (setq out (funcall parse-sublist (org-list-get-all-items top struct prevs)))
  2501. (goto-char top)
  2502. (when delete
  2503. (delete-region top bottom)
  2504. (when (and (not (eq org-list-ending-method 'indent))
  2505. (looking-at org-list-end-re))
  2506. (replace-match "\n")))
  2507. out))
  2508. (defun org-list-make-subtree ()
  2509. "Convert the plain list at point into a subtree."
  2510. (interactive)
  2511. (if (not (ignore-errors (goto-char (org-in-item-p))))
  2512. (error "Not in a list")
  2513. (let ((list (save-excursion (org-list-parse-list t))))
  2514. (insert (org-list-to-subtree list)))))
  2515. (defun org-list-insert-radio-list ()
  2516. "Insert a radio list template appropriate for this major mode."
  2517. (interactive)
  2518. (let* ((e (assq major-mode org-list-radio-list-templates))
  2519. (txt (nth 1 e))
  2520. name pos)
  2521. (unless e (error "No radio list setup defined for %s" major-mode))
  2522. (setq name (read-string "List name: "))
  2523. (while (string-match "%n" txt)
  2524. (setq txt (replace-match name t t txt)))
  2525. (or (bolp) (insert "\n"))
  2526. (setq pos (point))
  2527. (insert txt)
  2528. (goto-char pos)))
  2529. (defun org-list-send-list (&optional maybe)
  2530. "Send a transformed version of this list to the receiver position.
  2531. With argument MAYBE, fail quietly if no transformation is defined for
  2532. this list."
  2533. (interactive)
  2534. (catch 'exit
  2535. (unless (org-at-item-p) (error "Not at a list item"))
  2536. (save-excursion
  2537. (re-search-backward "#\\+ORGLST" nil t)
  2538. (unless (looking-at "[ \t]*#\\+ORGLST[: \t][ \t]*SEND[ \t]+\\([^ \t\r\n]+\\)[ \t]+\\([^ \t\r\n]+\\)\\([ \t]+.*\\)?")
  2539. (if maybe
  2540. (throw 'exit nil)
  2541. (error "Don't know how to transform this list"))))
  2542. (let* ((name (match-string 1))
  2543. (transform (intern (match-string 2)))
  2544. (bottom-point
  2545. (save-excursion
  2546. (re-search-forward
  2547. "\\(\\\\end{comment}\\|@end ignore\\|-->\\)" nil t)
  2548. (match-beginning 0)))
  2549. (top-point
  2550. (progn
  2551. (re-search-backward "#\\+ORGLST" nil t)
  2552. (re-search-forward (org-item-beginning-re) bottom-point t)
  2553. (match-beginning 0)))
  2554. (list (save-restriction
  2555. (narrow-to-region top-point bottom-point)
  2556. (org-list-parse-list)))
  2557. beg txt)
  2558. (unless (fboundp transform)
  2559. (error "No such transformation function %s" transform))
  2560. (let ((txt (funcall transform list)))
  2561. ;; Find the insertion place
  2562. (save-excursion
  2563. (goto-char (point-min))
  2564. (unless (re-search-forward
  2565. (concat "BEGIN RECEIVE ORGLST +"
  2566. name
  2567. "\\([ \t]\\|$\\)") nil t)
  2568. (error "Don't know where to insert translated list"))
  2569. (goto-char (match-beginning 0))
  2570. (beginning-of-line 2)
  2571. (setq beg (point))
  2572. (unless (re-search-forward (concat "END RECEIVE ORGLST +" name) nil t)
  2573. (error "Cannot find end of insertion region"))
  2574. (delete-region beg (point-at-bol))
  2575. (goto-char beg)
  2576. (insert txt "\n")))
  2577. (message "List converted and installed at receiver location"))))
  2578. (defun org-list-to-generic (list params)
  2579. "Convert a LIST parsed through `org-list-parse-list' to other formats.
  2580. Valid parameters PARAMS are
  2581. :ustart String to start an unordered list
  2582. :uend String to end an unordered list
  2583. :ostart String to start an ordered list
  2584. :oend String to end an ordered list
  2585. :dstart String to start a descriptive list
  2586. :dend String to end a descriptive list
  2587. :dtstart String to start a descriptive term
  2588. :dtend String to end a descriptive term
  2589. :ddstart String to start a description
  2590. :ddend String to end a description
  2591. :splice When set to t, return only list body lines, don't wrap
  2592. them into :[u/o]start and :[u/o]end. Default is nil.
  2593. :istart String to start a list item.
  2594. :icount String to start an item with a counter.
  2595. :iend String to end a list item
  2596. :isep String to separate items
  2597. :lsep String to separate sublists
  2598. :csep String to separate text from a sub-list
  2599. :cboff String to insert for an unchecked checkbox
  2600. :cbon String to insert for a checked checkbox
  2601. Alternatively, each parameter can also be a form returning a
  2602. string. These sexp can use keywords `counter' and `depth',
  2603. reprensenting respectively counter associated to the current
  2604. item, and depth of the current sub-list, starting at 0.
  2605. Obviously, `counter' is only available for parameters applying to
  2606. items."
  2607. (interactive)
  2608. (let* ((p params)
  2609. (splicep (plist-get p :splice))
  2610. (ostart (plist-get p :ostart))
  2611. (oend (plist-get p :oend))
  2612. (ustart (plist-get p :ustart))
  2613. (uend (plist-get p :uend))
  2614. (dstart (plist-get p :dstart))
  2615. (dend (plist-get p :dend))
  2616. (dtstart (plist-get p :dtstart))
  2617. (dtend (plist-get p :dtend))
  2618. (ddstart (plist-get p :ddstart))
  2619. (ddend (plist-get p :ddend))
  2620. (istart (plist-get p :istart))
  2621. (icount (plist-get p :icount))
  2622. (iend (plist-get p :iend))
  2623. (isep (plist-get p :isep))
  2624. (lsep (plist-get p :lsep))
  2625. (csep (plist-get p :csep))
  2626. (cbon (plist-get p :cbon))
  2627. (cboff (plist-get p :cboff))
  2628. export-sublist ; for byte-compiler
  2629. (export-item
  2630. (function
  2631. ;; Export an item ITEM of type TYPE, at DEPTH. First string
  2632. ;; in item is treated in a special way as it can bring
  2633. ;; extra information that needs to be processed.
  2634. (lambda (item type depth)
  2635. (let* ((counter (pop item))
  2636. (fmt (concat (cond
  2637. ((eq type 'descriptive)
  2638. (concat (org-trim (eval istart)) "%s"
  2639. (eval ddend)))
  2640. ((and counter (eq type 'ordered))
  2641. (concat (eval icount) "%s"))
  2642. (t (concat (eval istart) "%s")))
  2643. (eval iend)))
  2644. (first (car item)))
  2645. ;; Replace checkbox if any is found.
  2646. (cond
  2647. ((string-match "\\[CBON\\]" first)
  2648. (setq first (replace-match cbon t t first)))
  2649. ((string-match "\\[CBOFF\\]" first)
  2650. (setq first (replace-match cboff t t first)))
  2651. ((string-match "\\[-\\]" first)
  2652. (setq first (replace-match "$\\boxminus$" t t first))))
  2653. ;; Insert descriptive term if TYPE is `descriptive'.
  2654. (when (and (eq type 'descriptive)
  2655. (string-match "^\\(.*\\)[ \t]+::" first))
  2656. (setq first (concat
  2657. (eval dtstart) (org-trim (match-string 1 first))
  2658. (eval dtend) (eval ddstart)
  2659. (org-trim (substring first (match-end 0))) "")))
  2660. (setcar item first)
  2661. (format fmt
  2662. (mapconcat (lambda (e)
  2663. (if (stringp e) e
  2664. (funcall export-sublist e (1+ depth))))
  2665. item (or (eval csep) "")))))))
  2666. (export-sublist
  2667. (function
  2668. ;; Export sublist SUB at DEPTH
  2669. (lambda (sub depth)
  2670. (let* ((type (car sub))
  2671. (items (cdr sub))
  2672. (fmt (concat (cond
  2673. (splicep "%s")
  2674. ((eq type 'ordered)
  2675. (concat (eval ostart) "\n%s" (eval oend)))
  2676. ((eq type 'descriptive)
  2677. (concat (eval dstart) "\n%s" (eval dend)))
  2678. (t (concat (eval ustart) "\n%s" (eval uend))))
  2679. (eval lsep))))
  2680. (format fmt (mapconcat (lambda (e)
  2681. (funcall export-item e type depth))
  2682. items (or (eval isep) ""))))))))
  2683. (concat (funcall export-sublist list 0) "\n")))
  2684. (defun org-list-to-latex (list &optional params)
  2685. "Convert LIST into a LaTeX list.
  2686. LIST is as returned by `org-list-parse-list'. PARAMS is a property list
  2687. with overruling parameters for `org-list-to-generic'."
  2688. (org-list-to-generic
  2689. list
  2690. (org-combine-plists
  2691. '(:splice nil :ostart "\\begin{enumerate}" :oend "\\end{enumerate}"
  2692. :ustart "\\begin{itemize}" :uend "\\end{itemize}"
  2693. :dstart "\\begin{description}" :dend "\\end{description}"
  2694. :dtstart "[" :dtend "] "
  2695. :istart "\\item " :iend "\n"
  2696. :icount (let ((enum (nth depth '("i" "ii" "iii" "iv"))))
  2697. (if enum
  2698. (format "\\setcounter{enum%s}{%s}\n\\item "
  2699. enum counter)
  2700. "\\item "))
  2701. :csep "\n"
  2702. :cbon "\\texttt{[X]}" :cboff "\\texttt{[ ]}")
  2703. params)))
  2704. (defun org-list-to-html (list &optional params)
  2705. "Convert LIST into a HTML list.
  2706. LIST is as returned by `org-list-parse-list'. PARAMS is a property list
  2707. with overruling parameters for `org-list-to-generic'."
  2708. (org-list-to-generic
  2709. list
  2710. (org-combine-plists
  2711. '(:splice nil :ostart "<ol>" :oend "\n</ol>"
  2712. :ustart "<ul>" :uend "\n</ul>"
  2713. :dstart "<dl>" :dend "</dl>"
  2714. :dtstart "<dt>" :dtend "</dt>\n"
  2715. :ddstart "<dd>" :ddend "</dd>"
  2716. :istart "<li>" :iend "\n</li>"
  2717. :icount (format "<li value=\"%s\">" counter)
  2718. :isep "\n" :lsep "\n" :csep "\n"
  2719. :cbon "<code>[X]</code>" :cboff "<code>[ ]</code>")
  2720. params)))
  2721. (defun org-list-to-texinfo (list &optional params)
  2722. "Convert LIST into a Texinfo list.
  2723. LIST is as returned by `org-list-parse-list'. PARAMS is a property list
  2724. with overruling parameters for `org-list-to-generic'."
  2725. (org-list-to-generic
  2726. list
  2727. (org-combine-plists
  2728. '(:splice nil :ostart "@itemize @minus" :oend "@end itemize"
  2729. :ustart "@enumerate" :uend "@end enumerate"
  2730. :dstart "@table @asis" :dend "@end table"
  2731. :dtstart " " :dtend "\n"
  2732. :istart "@item\n" :iend "\n"
  2733. :icount "@item\n"
  2734. :csep "\n"
  2735. :cbon "@code{[X]}" :cboff "@code{[ ]}")
  2736. params)))
  2737. (defun org-list-to-subtree (list &optional params)
  2738. "Convert LIST into an Org subtree.
  2739. LIST is as returned by `org-list-parse-list'. PARAMS is a property list
  2740. with overruling parameters for `org-list-to-generic'."
  2741. (let* ((rule (cdr (assq 'heading org-blank-before-new-entry)))
  2742. (level (or (org-current-level) 0))
  2743. (blankp (or (eq rule t)
  2744. (and (eq rule 'auto)
  2745. (save-excursion
  2746. (outline-previous-heading)
  2747. (org-previous-line-empty-p)))))
  2748. (get-stars
  2749. (function
  2750. ;; Return the string for the heading, depending on depth D
  2751. ;; of current sub-list.
  2752. (lambda (d)
  2753. (concat
  2754. (make-string (+ level
  2755. (if org-odd-levels-only (* 2 (1+ d)) (1+ d)))
  2756. ?*)
  2757. " ")))))
  2758. (org-list-to-generic
  2759. list
  2760. (org-combine-plists
  2761. '(:splice t
  2762. :dtstart " " :dtend " "
  2763. :istart (funcall get-stars depth)
  2764. :icount (funcall get-stars depth)
  2765. :isep (if blankp "\n\n" "\n")
  2766. :csep (if blankp "\n\n" "\n")
  2767. :cbon "DONE" :cboff "TODO")
  2768. params))))
  2769. (provide 'org-list)
  2770. ;; arch-tag: 73cf50c1-200f-4d1d-8a53-4e842a5b11c8
  2771. ;;; org-list.el ends here