org-indent.el 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. ;;; org-indent.el --- Dynamic indentation for Org -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2009-2021 Free Software Foundation, Inc.
  3. ;;
  4. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  5. ;; Keywords: outlines, hypermedia, calendar, wp
  6. ;; Homepage: https://orgmode.org
  7. ;;
  8. ;; This file is part of GNU Emacs.
  9. ;;
  10. ;; GNU Emacs is free software: you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation, either version 3 of the License, or
  13. ;; (at your option) any later version.
  14. ;;
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. ;; GNU General Public License for more details.
  19. ;;
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
  22. ;;
  23. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  24. ;;
  25. ;;; Commentary:
  26. ;; This is an implementation of dynamic virtual indentation. It works
  27. ;; by adding text properties to a buffer to make sure lines are
  28. ;; indented according to outline structure.
  29. ;;
  30. ;; The process is synchronous, toggled at every buffer modification.
  31. ;; Though, the initialization (indentation of text already in the
  32. ;; buffer), which can take a few seconds in large buffers, happens on
  33. ;; idle time.
  34. ;;
  35. ;;; Code:
  36. (require 'org-macs)
  37. (require 'org-compat)
  38. (require 'org)
  39. (require 'cl-lib)
  40. (declare-function org-inlinetask-get-task-level "org-inlinetask" ())
  41. (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
  42. (declare-function org-list-item-body-column "org-list" (item))
  43. (defvar org-inlinetask-show-first-star)
  44. (defgroup org-indent nil
  45. "Options concerning dynamic virtual outline indentation."
  46. :tag "Org Indent"
  47. :group 'org)
  48. (defvar org-indent-inlinetask-first-star (org-add-props "*" '(face org-warning))
  49. "First star of inline tasks, with correct face.")
  50. (defvar org-indent-agent-timer nil
  51. "Timer running the initialize agent.")
  52. (defvar org-indent-agentized-buffers nil
  53. "List of buffers watched by the initialize agent.")
  54. (defvar org-indent-agent-resume-timer nil
  55. "Timer to reschedule agent after switching to other idle processes.")
  56. (defvar org-indent-agent-active-delay '(0 2 0)
  57. "Time to run agent before switching to other idle processes.
  58. Delay used when the buffer to initialize is current.")
  59. (defvar org-indent-agent-passive-delay '(0 0 400000)
  60. "Time to run agent before switching to other idle processes.
  61. Delay used when the buffer to initialize isn't current.")
  62. (defvar org-indent-agent-resume-delay '(0 0 100000)
  63. "Minimal time for other idle processes before switching back to agent.")
  64. (defvar org-indent--initial-marker nil
  65. "Position of initialization before interrupt.
  66. This is used locally in each buffer being initialized.")
  67. (defvar org-indent-modified-headline-flag nil
  68. "Non-nil means the last deletion operated on a headline.
  69. It is modified by `org-indent-notify-modified-headline'.")
  70. (defcustom org-indent-boundary-char ?\s
  71. "The end of the virtual indentation strings, a single-character string.
  72. The default is just a space, but if you wish, you can use \"|\" or so.
  73. This can be useful on a terminal window - under a windowing system,
  74. it may be prettier to customize the `org-indent' face."
  75. :group 'org-indent
  76. :type 'character)
  77. (defcustom org-indent-mode-turns-off-org-adapt-indentation t
  78. "Non-nil means setting the variable `org-indent-mode' will \
  79. turn off indentation adaptation.
  80. For details see the variable `org-adapt-indentation'."
  81. :group 'org-indent
  82. :type 'boolean)
  83. (defcustom org-indent-mode-turns-on-hiding-stars t
  84. "Non-nil means setting the variable `org-indent-mode' will \
  85. turn on `org-hide-leading-stars'."
  86. :group 'org-indent
  87. :type 'boolean)
  88. (defcustom org-indent-indentation-per-level 2
  89. "Indentation per level in number of characters."
  90. :group 'org-indent
  91. :type 'integer)
  92. (defface org-indent '((t (:inherit org-hide)))
  93. "Face for outline indentation.
  94. The default is to make it look like whitespace. But you may find it
  95. useful to make it ever so slightly different."
  96. :group 'org-faces)
  97. (defvar org-indent--text-line-prefixes nil
  98. "Vector containing line prefixes strings for regular text.")
  99. (defvar org-indent--heading-line-prefixes nil
  100. "Vector containing line prefix strings for headlines.")
  101. (defvar org-indent--inlinetask-line-prefixes nil
  102. "Vector containing line prefix strings for inline tasks.")
  103. (defconst org-indent--deepest-level 50
  104. "Maximum theoretical headline depth.")
  105. (defun org-indent--compute-prefixes ()
  106. "Compute prefix strings for regular text and headlines."
  107. (setq org-indent--heading-line-prefixes
  108. (make-vector org-indent--deepest-level nil))
  109. (setq org-indent--inlinetask-line-prefixes
  110. (make-vector org-indent--deepest-level nil))
  111. (setq org-indent--text-line-prefixes
  112. (make-vector org-indent--deepest-level nil))
  113. (dotimes (n org-indent--deepest-level)
  114. (let ((indentation (if (<= n 1) 0
  115. (* (1- org-indent-indentation-per-level)
  116. (1- n)))))
  117. ;; Headlines line prefixes.
  118. (let ((heading-prefix (make-string indentation ?*)))
  119. (aset org-indent--heading-line-prefixes
  120. n
  121. (org-add-props heading-prefix nil 'face 'org-indent))
  122. ;; Inline tasks line prefixes
  123. (aset org-indent--inlinetask-line-prefixes
  124. n
  125. (cond ((<= n 1) "")
  126. ((bound-and-true-p org-inlinetask-show-first-star)
  127. (concat org-indent-inlinetask-first-star
  128. (substring heading-prefix 1)))
  129. (t (org-add-props heading-prefix nil 'face 'org-indent)))))
  130. ;; Text line prefixes.
  131. (aset org-indent--text-line-prefixes
  132. n
  133. (org-add-props
  134. (concat (make-string (+ n indentation) ?\s)
  135. (and (> n 0)
  136. (char-to-string org-indent-boundary-char)))
  137. nil 'face 'org-indent)))))
  138. (defsubst org-indent-remove-properties (beg end)
  139. "Remove indentations between BEG and END."
  140. (with-silent-modifications
  141. (remove-text-properties beg end '(line-prefix nil wrap-prefix nil))))
  142. ;;;###autoload
  143. (define-minor-mode org-indent-mode
  144. "When active, indent text according to outline structure.
  145. Internally this works by adding `line-prefix' and `wrap-prefix'
  146. properties, after each buffer modification, on the modified zone.
  147. The process is synchronous. Though, initial indentation of
  148. buffer, which can take a few seconds on large buffers, is done
  149. during idle time."
  150. nil " Ind" nil
  151. (cond
  152. (org-indent-mode
  153. ;; mode was turned on.
  154. (setq-local indent-tabs-mode nil)
  155. (setq-local org-indent--initial-marker (copy-marker 1))
  156. (when org-indent-mode-turns-off-org-adapt-indentation
  157. ;; Don't turn off `org-adapt-indentation' when its value is
  158. ;; 'headline-data, just indent headline data specially.
  159. (or (eq org-adapt-indentation 'headline-data)
  160. (setq-local org-adapt-indentation nil)))
  161. (when org-indent-mode-turns-on-hiding-stars
  162. (setq-local org-hide-leading-stars t))
  163. (org-indent--compute-prefixes)
  164. (if (boundp 'filter-buffer-substring-functions)
  165. (add-hook 'filter-buffer-substring-functions
  166. (lambda (fun start end delete)
  167. (org-indent-remove-properties-from-string
  168. (funcall fun start end delete)))
  169. nil t)
  170. ;; Emacs >= 24.4.
  171. (add-function :filter-return (local 'filter-buffer-substring-function)
  172. #'org-indent-remove-properties-from-string))
  173. (add-hook 'after-change-functions 'org-indent-refresh-maybe nil 'local)
  174. (add-hook 'before-change-functions
  175. 'org-indent-notify-modified-headline nil 'local)
  176. (and font-lock-mode (org-restart-font-lock))
  177. (org-indent-remove-properties (point-min) (point-max))
  178. ;; Submit current buffer to initialize agent. If it's the first
  179. ;; buffer submitted, also start the agent. Current buffer is
  180. ;; pushed in both cases to avoid a race condition.
  181. (if org-indent-agentized-buffers
  182. (push (current-buffer) org-indent-agentized-buffers)
  183. (push (current-buffer) org-indent-agentized-buffers)
  184. (setq org-indent-agent-timer
  185. (run-with-idle-timer 0.2 t #'org-indent-initialize-agent))))
  186. (t
  187. ;; Mode was turned off (or we refused to turn it on)
  188. (kill-local-variable 'org-adapt-indentation)
  189. (setq org-indent-agentized-buffers
  190. (delq (current-buffer) org-indent-agentized-buffers))
  191. (when (markerp org-indent--initial-marker)
  192. (set-marker org-indent--initial-marker nil))
  193. (when (local-variable-p 'org-hide-leading-stars)
  194. (kill-local-variable 'org-hide-leading-stars))
  195. (if (boundp 'filter-buffer-substring-functions)
  196. (remove-hook 'filter-buffer-substring-functions
  197. (lambda (fun start end delete)
  198. (org-indent-remove-properties-from-string
  199. (funcall fun start end delete))))
  200. (remove-function (local 'filter-buffer-substring-function)
  201. #'org-indent-remove-properties-from-string))
  202. (remove-hook 'after-change-functions 'org-indent-refresh-maybe 'local)
  203. (remove-hook 'before-change-functions
  204. 'org-indent-notify-modified-headline 'local)
  205. (org-with-wide-buffer
  206. (org-indent-remove-properties (point-min) (point-max)))
  207. (and font-lock-mode (org-restart-font-lock))
  208. (redraw-display))))
  209. (defun org-indent-indent-buffer ()
  210. "Add indentation properties to the accessible part of the buffer."
  211. (interactive)
  212. (if (not (derived-mode-p 'org-mode))
  213. (error "Not in Org mode")
  214. (message "Setting buffer indentation. It may take a few seconds...")
  215. (org-indent-remove-properties (point-min) (point-max))
  216. (org-indent-add-properties (point-min) (point-max))
  217. (message "Indentation of buffer set.")))
  218. (defun org-indent-remove-properties-from-string (string)
  219. "Remove indentation properties from STRING."
  220. (remove-text-properties 0 (length string)
  221. '(line-prefix nil wrap-prefix nil) string)
  222. string)
  223. (defun org-indent-initialize-agent ()
  224. "Start or resume current buffer initialization.
  225. Only buffers in `org-indent-agentized-buffers' trigger an action.
  226. When no more buffer is being watched, the agent suppress itself."
  227. (when org-indent-agent-resume-timer
  228. (cancel-timer org-indent-agent-resume-timer))
  229. (setq org-indent-agentized-buffers
  230. (cl-remove-if-not #'buffer-live-p org-indent-agentized-buffers))
  231. (cond
  232. ;; Job done: kill agent.
  233. ((not org-indent-agentized-buffers) (cancel-timer org-indent-agent-timer))
  234. ;; Current buffer is agentized: start/resume initialization
  235. ;; somewhat aggressively.
  236. ((memq (current-buffer) org-indent-agentized-buffers)
  237. (org-indent-initialize-buffer (current-buffer)
  238. org-indent-agent-active-delay))
  239. ;; Else, start/resume initialization of the last agentized buffer,
  240. ;; softly.
  241. (t (org-indent-initialize-buffer (car org-indent-agentized-buffers)
  242. org-indent-agent-passive-delay))))
  243. (defun org-indent-initialize-buffer (buffer delay)
  244. "Set virtual indentation for the buffer BUFFER, asynchronously.
  245. Give hand to other idle processes if it takes longer than DELAY,
  246. a time value."
  247. (with-current-buffer buffer
  248. (when org-indent-mode
  249. (org-with-wide-buffer
  250. (let ((interruptp
  251. ;; Always nil unless interrupted.
  252. (catch 'interrupt
  253. (and org-indent--initial-marker
  254. (marker-position org-indent--initial-marker)
  255. (equal (marker-buffer org-indent--initial-marker)
  256. buffer)
  257. (org-indent-add-properties org-indent--initial-marker
  258. (point-max)
  259. delay)
  260. nil))))
  261. (move-marker org-indent--initial-marker interruptp)
  262. ;; Job is complete: un-agentize buffer.
  263. (unless interruptp
  264. (setq org-indent-agentized-buffers
  265. (delq buffer org-indent-agentized-buffers))))))))
  266. (defun org-indent-set-line-properties (level indentation &optional heading)
  267. "Set prefix properties on current line an move to next one.
  268. LEVEL is the current level of heading. INDENTATION is the
  269. expected indentation when wrapping line.
  270. When optional argument HEADING is non-nil, assume line is at
  271. a heading. Moreover, if it is `inlinetask', the first star will
  272. have `org-warning' face."
  273. (let* ((line (aref (pcase heading
  274. (`nil org-indent--text-line-prefixes)
  275. (`inlinetask org-indent--inlinetask-line-prefixes)
  276. (_ org-indent--heading-line-prefixes))
  277. level))
  278. (wrap
  279. (org-add-props
  280. (concat line
  281. (if heading (concat (make-string level ?*) " ")
  282. (make-string indentation ?\s)))
  283. nil 'face 'org-indent)))
  284. ;; Add properties down to the next line to indent empty lines.
  285. (add-text-properties (line-beginning-position) (line-beginning-position 2)
  286. `(line-prefix ,line wrap-prefix ,wrap)))
  287. (forward-line))
  288. (defun org-indent-add-properties (beg end &optional delay)
  289. "Add indentation properties between BEG and END.
  290. When DELAY is non-nil, it must be a time value. In that case,
  291. the process is asynchronous and can be interrupted, either by
  292. user request, or after DELAY. This is done by throwing the
  293. `interrupt' tag along with the buffer position where the process
  294. stopped."
  295. (save-match-data
  296. (org-with-wide-buffer
  297. (goto-char beg)
  298. (beginning-of-line)
  299. ;; Initialize prefix at BEG, according to current entry's level.
  300. (let* ((case-fold-search t)
  301. (limited-re (org-get-limited-outline-regexp))
  302. (level (or (org-current-level) 0))
  303. (time-limit (and delay (org-time-add nil delay))))
  304. ;; For each line, set `line-prefix' and `wrap-prefix'
  305. ;; properties depending on the type of line (headline, inline
  306. ;; task, item or other).
  307. (with-silent-modifications
  308. (while (and (<= (point) end) (not (eobp)))
  309. (cond
  310. ;; When in asynchronous mode, check if interrupt is
  311. ;; required.
  312. ((and delay (input-pending-p)) (throw 'interrupt (point)))
  313. ;; In asynchronous mode, take a break of
  314. ;; `org-indent-agent-resume-delay' every DELAY to avoid
  315. ;; blocking any other idle timer or process output.
  316. ((and delay (org-time-less-p time-limit nil))
  317. (setq org-indent-agent-resume-timer
  318. (run-with-idle-timer
  319. (time-add (current-idle-time) org-indent-agent-resume-delay)
  320. nil #'org-indent-initialize-agent))
  321. (throw 'interrupt (point)))
  322. ;; Headline or inline task.
  323. ((looking-at org-outline-regexp)
  324. (let* ((nstars (- (match-end 0) (match-beginning 0) 1))
  325. (type (or (looking-at-p limited-re) 'inlinetask)))
  326. (org-indent-set-line-properties nstars 0 type)
  327. ;; At an headline, define new value for LEVEL.
  328. (unless (eq type 'inlinetask) (setq level nstars))))
  329. ;; List item: `wrap-prefix' is set where body starts.
  330. ((org-at-item-p)
  331. (org-indent-set-line-properties
  332. level (org-list-item-body-column (point))))
  333. ;; Regular line.
  334. (t
  335. (org-indent-set-line-properties
  336. level
  337. (current-indentation)
  338. ;; When adapt indentation is 'headline-data, use
  339. ;; `org-indent--heading-line-prefixes' for setting
  340. ;; headline data indentation.
  341. (and (eq org-adapt-indentation 'headline-data)
  342. (or (org-at-planning-p)
  343. (org-at-clock-log-p)
  344. (looking-at-p org-property-start-re)
  345. (looking-at-p org-property-end-re)
  346. (looking-at-p org-property-re))))))))))))
  347. (defun org-indent-notify-modified-headline (beg end)
  348. "Set `org-indent-modified-headline-flag' depending on context.
  349. BEG and END are the positions of the beginning and end of the
  350. range of deleted text.
  351. This function is meant to be called by `before-change-functions'.
  352. Flag will be non-nil if command is going to modify or delete an
  353. headline."
  354. (when org-indent-mode
  355. (setq org-indent-modified-headline-flag
  356. (org-with-wide-buffer
  357. (goto-char beg)
  358. (save-match-data
  359. (or (and (org-at-heading-p) (< beg (match-end 0)))
  360. (re-search-forward
  361. (org-with-limited-levels org-outline-regexp-bol) end t)))))))
  362. (defun org-indent-refresh-maybe (beg end _)
  363. "Refresh indentation properties in an adequate portion of buffer.
  364. BEG and END are the positions of the beginning and end of the
  365. range of inserted text. DUMMY is an unused argument.
  366. This function is meant to be called by `after-change-functions'."
  367. (when org-indent-mode
  368. (save-match-data
  369. ;; If a headline was modified or inserted, set properties until
  370. ;; next headline.
  371. (org-with-wide-buffer
  372. (if (or org-indent-modified-headline-flag
  373. (save-excursion
  374. (goto-char beg)
  375. (beginning-of-line)
  376. (re-search-forward
  377. (org-with-limited-levels org-outline-regexp-bol) end t)))
  378. (let ((end (save-excursion
  379. (goto-char end)
  380. (org-with-limited-levels (outline-next-heading))
  381. (point))))
  382. (setq org-indent-modified-headline-flag nil)
  383. (org-indent-add-properties beg end))
  384. ;; Otherwise, only set properties on modified area.
  385. (org-indent-add-properties beg end))))))
  386. (provide 'org-indent)
  387. ;; Local variables:
  388. ;; generated-autoload-file: "org-loaddefs.el"
  389. ;; End:
  390. ;;; org-indent.el ends here