org-indent.el 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. ;;; org-indent.el --- Dynamic indentation for Org -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2009-2017 Free Software Foundation, Inc.
  3. ;;
  4. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  5. ;; Keywords: outlines, hypermedia, calendar, wp
  6. ;; Homepage: http://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 <http://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-hide-leading-stars-before-indent-mode nil
  68. "Used locally.")
  69. (defvar org-indent-modified-headline-flag nil
  70. "Non-nil means the last deletion operated on a headline.
  71. It is modified by `org-indent-notify-modified-headline'.")
  72. (defcustom org-indent-boundary-char ?\s
  73. "The end of the virtual indentation strings, a single-character string.
  74. The default is just a space, but if you wish, you can use \"|\" or so.
  75. This can be useful on a terminal window - under a windowing system,
  76. it may be prettier to customize the `org-indent' face."
  77. :group 'org-indent
  78. :type 'character)
  79. (defcustom org-indent-mode-turns-off-org-adapt-indentation t
  80. "Non-nil means setting the variable `org-indent-mode' will \
  81. turn off indentation adaptation.
  82. For details see the variable `org-adapt-indentation'."
  83. :group 'org-indent
  84. :type 'boolean)
  85. (defcustom org-indent-mode-turns-on-hiding-stars t
  86. "Non-nil means setting the variable `org-indent-mode' will \
  87. turn on `org-hide-leading-stars'."
  88. :group 'org-indent
  89. :type 'boolean)
  90. (defcustom org-indent-indentation-per-level 2
  91. "Indentation per level in number of characters."
  92. :group 'org-indent
  93. :type 'integer)
  94. (defface org-indent '((t (:inherit org-hide)))
  95. "Face for outline indentation.
  96. The default is to make it look like whitespace. But you may find it
  97. useful to make it ever so slightly different."
  98. :group 'org-faces)
  99. (defsubst org-indent-remove-properties (beg end)
  100. "Remove indentations between BEG and END."
  101. (org-with-silent-modifications
  102. (remove-text-properties beg end '(line-prefix nil wrap-prefix nil))))
  103. ;;;###autoload
  104. (define-minor-mode org-indent-mode
  105. "When active, indent text according to outline structure.
  106. Internally this works by adding `line-prefix' and `wrap-prefix'
  107. properties, after each buffer modification, on the modified zone.
  108. The process is synchronous. Though, initial indentation of
  109. buffer, which can take a few seconds on large buffers, is done
  110. during idle time."
  111. nil " Ind" nil
  112. (cond
  113. (org-indent-mode
  114. ;; mode was turned on.
  115. (setq-local indent-tabs-mode nil)
  116. (setq-local org-indent--initial-marker (copy-marker 1))
  117. (when org-indent-mode-turns-off-org-adapt-indentation
  118. (setq-local org-adapt-indentation nil))
  119. (when org-indent-mode-turns-on-hiding-stars
  120. (setq-local org-hide-leading-stars-before-indent-mode
  121. org-hide-leading-stars)
  122. (setq-local org-hide-leading-stars t))
  123. (add-hook 'filter-buffer-substring-functions
  124. (lambda (fun start end delete)
  125. (org-indent-remove-properties-from-string
  126. (funcall fun start end delete)))
  127. nil t)
  128. (add-hook 'after-change-functions 'org-indent-refresh-maybe nil 'local)
  129. (add-hook 'before-change-functions
  130. 'org-indent-notify-modified-headline nil 'local)
  131. (and font-lock-mode (org-restart-font-lock))
  132. (org-indent-remove-properties (point-min) (point-max))
  133. ;; Submit current buffer to initialize agent. If it's the first
  134. ;; buffer submitted, also start the agent. Current buffer is
  135. ;; pushed in both cases to avoid a race condition.
  136. (if org-indent-agentized-buffers
  137. (push (current-buffer) org-indent-agentized-buffers)
  138. (push (current-buffer) org-indent-agentized-buffers)
  139. (setq org-indent-agent-timer
  140. (run-with-idle-timer 0.2 t #'org-indent-initialize-agent))))
  141. (t
  142. ;; mode was turned off (or we refused to turn it on)
  143. (kill-local-variable 'org-adapt-indentation)
  144. (setq org-indent-agentized-buffers
  145. (delq (current-buffer) org-indent-agentized-buffers))
  146. (when (markerp org-indent--initial-marker)
  147. (set-marker org-indent--initial-marker nil))
  148. (when (boundp 'org-hide-leading-stars-before-indent-mode)
  149. (setq-local org-hide-leading-stars
  150. org-hide-leading-stars-before-indent-mode))
  151. (remove-hook 'filter-buffer-substring-functions
  152. (lambda (fun start end delete)
  153. (org-indent-remove-properties-from-string
  154. (funcall fun start end delete))))
  155. (remove-hook 'after-change-functions 'org-indent-refresh-maybe 'local)
  156. (remove-hook 'before-change-functions
  157. 'org-indent-notify-modified-headline 'local)
  158. (org-with-wide-buffer
  159. (org-indent-remove-properties (point-min) (point-max)))
  160. (and font-lock-mode (org-restart-font-lock))
  161. (redraw-display))))
  162. (defun org-indent-indent-buffer ()
  163. "Add indentation properties to the accessible part of the buffer."
  164. (interactive)
  165. (if (not (derived-mode-p 'org-mode))
  166. (error "Not in Org mode")
  167. (message "Setting buffer indentation. It may take a few seconds...")
  168. (org-indent-remove-properties (point-min) (point-max))
  169. (org-indent-add-properties (point-min) (point-max))
  170. (message "Indentation of buffer set.")))
  171. (defun org-indent-remove-properties-from-string (string)
  172. "Remove indentation properties from STRING."
  173. (remove-text-properties 0 (length string)
  174. '(line-prefix nil wrap-prefix nil) string)
  175. string)
  176. (defun org-indent-initialize-agent ()
  177. "Start or resume current buffer initialization.
  178. Only buffers in `org-indent-agentized-buffers' trigger an action.
  179. When no more buffer is being watched, the agent suppress itself."
  180. (when org-indent-agent-resume-timer
  181. (cancel-timer org-indent-agent-resume-timer))
  182. (setq org-indent-agentized-buffers
  183. (cl-remove-if-not #'buffer-live-p org-indent-agentized-buffers))
  184. (cond
  185. ;; Job done: kill agent.
  186. ((not org-indent-agentized-buffers) (cancel-timer org-indent-agent-timer))
  187. ;; Current buffer is agentized: start/resume initialization
  188. ;; somewhat aggressively.
  189. ((memq (current-buffer) org-indent-agentized-buffers)
  190. (org-indent-initialize-buffer (current-buffer)
  191. org-indent-agent-active-delay))
  192. ;; Else, start/resume initialization of the last agentized buffer,
  193. ;; softly.
  194. (t (org-indent-initialize-buffer (car org-indent-agentized-buffers)
  195. org-indent-agent-passive-delay))))
  196. (defun org-indent-initialize-buffer (buffer delay)
  197. "Set virtual indentation for the buffer BUFFER, asynchronously.
  198. Give hand to other idle processes if it takes longer than DELAY,
  199. a time value."
  200. (with-current-buffer buffer
  201. (when org-indent-mode
  202. (org-with-wide-buffer
  203. (let ((interruptp
  204. ;; Always nil unless interrupted.
  205. (catch 'interrupt
  206. (and org-indent--initial-marker
  207. (marker-position org-indent--initial-marker)
  208. (equal (marker-buffer org-indent--initial-marker)
  209. buffer)
  210. (org-indent-add-properties org-indent--initial-marker
  211. (point-max)
  212. delay)
  213. nil))))
  214. (move-marker org-indent--initial-marker interruptp)
  215. ;; Job is complete: un-agentize buffer.
  216. (unless interruptp
  217. (setq org-indent-agentized-buffers
  218. (delq buffer org-indent-agentized-buffers))))))))
  219. (defun org-indent-set-line-properties (level indentation &optional heading)
  220. "Set prefix properties on current line an move to next one.
  221. LEVEL is the current level of heading. INDENTATION is the
  222. expected indentation when wrapping line.
  223. When optional argument HEADING is non-nil, assume line is at
  224. a heading. Moreover, if is is `inlinetask', the first star will
  225. have `org-warning' face."
  226. (let* ((stars (if (<= level 1) ""
  227. (make-string (* (1- org-indent-indentation-per-level)
  228. (1- level))
  229. ?*)))
  230. (line
  231. (cond
  232. ((and (bound-and-true-p org-inlinetask-show-first-star)
  233. (eq heading 'inlinetask))
  234. (concat org-indent-inlinetask-first-star
  235. (org-add-props (substring stars 1) nil 'face 'org-hide)))
  236. (heading (org-add-props stars nil 'face 'org-hide))
  237. (t (concat (org-add-props (concat stars (make-string level ?*))
  238. nil 'face 'org-indent)
  239. (and (> level 0)
  240. (char-to-string org-indent-boundary-char))))))
  241. (wrap
  242. (org-add-props
  243. (concat stars
  244. (make-string level ?*)
  245. (if heading " "
  246. (make-string (+ indentation (min level 1)) ?\s)))
  247. nil 'face 'org-indent)))
  248. ;; Add properties down to the next line to indent empty lines.
  249. (add-text-properties (line-beginning-position) (line-beginning-position 2)
  250. `(line-prefix ,line wrap-prefix ,wrap)))
  251. (forward-line))
  252. (defun org-indent-add-properties (beg end &optional delay)
  253. "Add indentation properties between BEG and END.
  254. When DELAY is non-nil, it must be a time value. In that case,
  255. the process is asynchronous and can be interrupted, either by
  256. user request, or after DELAY. This is done by throwing the
  257. `interrupt' tag along with the buffer position where the process
  258. stopped."
  259. (save-match-data
  260. (org-with-wide-buffer
  261. (goto-char beg)
  262. (beginning-of-line)
  263. ;; Initialize prefix at BEG, according to current entry's level.
  264. (let* ((case-fold-search t)
  265. (limited-re (org-get-limited-outline-regexp))
  266. (level (or (org-current-level) 0))
  267. (time-limit (and delay (time-add (current-time) delay))))
  268. ;; For each line, set `line-prefix' and `wrap-prefix'
  269. ;; properties depending on the type of line (headline, inline
  270. ;; task, item or other).
  271. (org-with-silent-modifications
  272. (while (and (<= (point) end) (not (eobp)))
  273. (cond
  274. ;; When in asynchronous mode, check if interrupt is
  275. ;; required.
  276. ((and delay (input-pending-p)) (throw 'interrupt (point)))
  277. ;; In asynchronous mode, take a break of
  278. ;; `org-indent-agent-resume-delay' every DELAY to avoid
  279. ;; blocking any other idle timer or process output.
  280. ((and delay (time-less-p time-limit (current-time)))
  281. (setq org-indent-agent-resume-timer
  282. (run-with-idle-timer
  283. (time-add (current-idle-time) org-indent-agent-resume-delay)
  284. nil #'org-indent-initialize-agent))
  285. (throw 'interrupt (point)))
  286. ;; Headline or inline task.
  287. ((looking-at org-outline-regexp)
  288. (let* ((nstars (- (match-end 0) (match-beginning 0) 1))
  289. (type (or (looking-at-p limited-re) 'inlinetask)))
  290. (org-indent-set-line-properties nstars 0 type)
  291. ;; At an headline, define new value for LEVEL.
  292. (unless (eq type 'inlinetask) (setq level nstars))))
  293. ;; List item: `wrap-prefix' is set where body starts.
  294. ((org-at-item-p)
  295. (org-indent-set-line-properties
  296. level (org-list-item-body-column (point))))
  297. ;; Regular line.
  298. (t
  299. (org-indent-set-line-properties level (org-get-indentation))))))))))
  300. (defun org-indent-notify-modified-headline (beg end)
  301. "Set `org-indent-modified-headline-flag' depending on context.
  302. BEG and END are the positions of the beginning and end of the
  303. range of deleted text.
  304. This function is meant to be called by `before-change-functions'.
  305. Flag will be non-nil if command is going to modify or delete an
  306. headline."
  307. (when org-indent-mode
  308. (setq org-indent-modified-headline-flag
  309. (org-with-wide-buffer
  310. (goto-char beg)
  311. (save-match-data
  312. (or (and (org-at-heading-p) (< beg (match-end 0)))
  313. (re-search-forward
  314. (org-with-limited-levels org-outline-regexp-bol) end t)))))))
  315. (defun org-indent-refresh-maybe (beg end _)
  316. "Refresh indentation properties in an adequate portion of buffer.
  317. BEG and END are the positions of the beginning and end of the
  318. range of inserted text. DUMMY is an unused argument.
  319. This function is meant to be called by `after-change-functions'."
  320. (when org-indent-mode
  321. (save-match-data
  322. ;; If a headline was modified or inserted, set properties until
  323. ;; next headline.
  324. (org-with-wide-buffer
  325. (if (or org-indent-modified-headline-flag
  326. (save-excursion
  327. (goto-char beg)
  328. (beginning-of-line)
  329. (re-search-forward
  330. (org-with-limited-levels org-outline-regexp-bol) end t)))
  331. (let ((end (save-excursion
  332. (goto-char end)
  333. (org-with-limited-levels (outline-next-heading))
  334. (point))))
  335. (setq org-indent-modified-headline-flag nil)
  336. (org-indent-add-properties beg end))
  337. ;; Otherwise, only set properties on modified area.
  338. (org-indent-add-properties beg end))))))
  339. (provide 'org-indent)
  340. ;; Local variables:
  341. ;; generated-autoload-file: "org-loaddefs.el"
  342. ;; End:
  343. ;;; org-indent.el ends here