Fix TODO case-sensitivity in `org-get-heading'
[org-mode/org-tableheadings.git] / lisp / org.el
bloba9412eaf824d5cd31c647786d601591b235ffaa6
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2016 Free Software Foundation, Inc.
5 ;;
6 ;; Author: Carsten Dominik <carsten at orgmode dot org>
7 ;; Maintainer: Carsten Dominik <carsten at orgmode dot org>
8 ;; Keywords: outlines, hypermedia, calendar, wp
9 ;; Homepage: http://orgmode.org
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
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.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
29 ;; project planning with a fast and effective plain-text system.
31 ;; Org-mode develops organizational tasks around NOTES files that contain
32 ;; information about projects as plain text. Org-mode is implemented on
33 ;; top of outline-mode, which makes it possible to keep the content of
34 ;; large files well structured. Visibility cycling and structure editing
35 ;; help to work with the tree. Tables are easily created with a built-in
36 ;; table editor. Org-mode supports ToDo items, deadlines, time stamps,
37 ;; and scheduling. It dynamically compiles entries into an agenda that
38 ;; utilizes and smoothly integrates much of the Emacs calendar and diary.
39 ;; Plain text URL-like links connect to websites, emails, Usenet
40 ;; messages, BBDB entries, and any files related to the projects. For
41 ;; printing and sharing of notes, an Org-mode file can be exported as a
42 ;; structured ASCII file, as HTML, or (todo and agenda items only) as an
43 ;; iCalendar file. It can also serve as a publishing tool for a set of
44 ;; linked webpages.
46 ;; Installation and Activation
47 ;; ---------------------------
48 ;; See the corresponding sections in the manual at
50 ;; http://orgmode.org/org.html#Installation
52 ;; Documentation
53 ;; -------------
54 ;; The documentation of Org-mode can be found in the TeXInfo file. The
55 ;; distribution also contains a PDF version of it. At the homepage of
56 ;; Org-mode, you can read the same text online as HTML. There is also an
57 ;; excellent reference card made by Philip Rooke. This card can be found
58 ;; in the etc/ directory of Emacs 22.
60 ;; A list of recent changes can be found at
61 ;; http://orgmode.org/Changes.html
63 ;;; Code:
65 (defvar org-inhibit-highlight-removal nil) ; dynamically scoped param
66 (defvar org-table-formula-constants-local nil
67 "Local version of `org-table-formula-constants'.")
68 (make-variable-buffer-local 'org-table-formula-constants-local)
70 ;;;; Require other packages
72 (eval-when-compile
73 (require 'cl)
74 (require 'gnus-sum))
76 (require 'calendar)
77 (require 'find-func)
78 (require 'format-spec)
80 (or (equal this-command 'eval-buffer)
81 (condition-case nil
82 (load (concat (file-name-directory load-file-name)
83 "org-loaddefs.el")
84 nil t t t)
85 (error
86 (message "WARNING: No org-loaddefs.el file could be found from where org.el is loaded.")
87 (sit-for 3)
88 (message "You need to run \"make\" or \"make autoloads\" from Org lisp directory")
89 (sit-for 3))))
91 (require 'org-macs)
92 (require 'org-compat)
94 ;; `org-outline-regexp' ought to be a defconst but is let-bound in
95 ;; some places -- e.g. see the macro `org-with-limited-levels'.
97 ;; In Org buffers, the value of `outline-regexp' is that of
98 ;; `org-outline-regexp'. The only function still directly relying on
99 ;; `outline-regexp' is `org-overview' so that `org-cycle' can do its
100 ;; job when `orgstruct-mode' is active.
101 (defvar org-outline-regexp "\\*+ "
102 "Regexp to match Org headlines.")
104 (defvar org-outline-regexp-bol "^\\*+ "
105 "Regexp to match Org headlines.
106 This is similar to `org-outline-regexp' but additionally makes
107 sure that we are at the beginning of the line.")
109 (defvar org-heading-regexp "^\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
110 "Matches a headline, putting stars and text into groups.
111 Stars are put in group 1 and the trimmed body in group 2.")
113 ;; Emacs 22 calendar compatibility: Make sure the new variables are available
114 (unless (boundp 'calendar-view-holidays-initially-flag)
115 (org-defvaralias 'calendar-view-holidays-initially-flag
116 'view-calendar-holidays-initially))
117 (unless (boundp 'calendar-view-diary-initially-flag)
118 (org-defvaralias 'calendar-view-diary-initially-flag
119 'view-diary-entries-initially))
120 (unless (boundp 'diary-fancy-buffer)
121 (org-defvaralias 'diary-fancy-buffer 'fancy-diary-buffer))
123 (declare-function cdlatex-environment "ext:cdlatex" (environment item))
124 (declare-function org-add-archive-files "org-archive" (files))
125 (declare-function org-agenda-entry-get-agenda-timestamp "org-agenda" (pom))
126 (declare-function org-agenda-list "org-agenda"
127 (&optional arg start-day span with-hour))
128 (declare-function org-agenda-redo "org-agenda" (&optional all))
129 (declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body) t)
130 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
131 (declare-function org-beamer-mode "ox-beamer" (&optional prefix) t)
132 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
133 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
134 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
135 (declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
136 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
137 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
138 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
139 (declare-function org-clock-update-time-maybe "org-clock" ())
140 (declare-function org-clocktable-shift "org-clock" (dir n))
141 (declare-function org-element-at-point "org-element" ())
142 (declare-function org-element-cache-refresh "org-element" (pos))
143 (declare-function org-element-cache-reset "org-element" (&optional all))
144 (declare-function org-element-contents "org-element" (element))
145 (declare-function org-element-context "org-element" (&optional element))
146 (declare-function org-element-copy "org-element" (datum))
147 (declare-function org-element-interpret-data "org-element" (data))
148 (declare-function org-element-lineage "org-element" (blob &optional types with-self))
149 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
150 (declare-function org-element-parse-buffer "org-element" (&optional granularity visible-only))
151 (declare-function org-element-property "org-element" (property element))
152 (declare-function org-element-put-property "org-element" (element property value))
153 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
154 (declare-function org-element-type "org-element" (element))
155 (declare-function org-element-update-syntax "org-element" ())
156 (declare-function org-id-find-id-file "org-id" (id))
157 (declare-function org-id-get-create "org-id" (&optional force))
158 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
159 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
160 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
161 (declare-function org-plot/gnuplot "org-plot" (&optional params))
162 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
163 (declare-function org-table-align "org-table" ())
164 (declare-function org-table-begin "org-table" (&optional table-type))
165 (declare-function org-table-beginning-of-field "org-table" (&optional n))
166 (declare-function org-table-blank-field "org-table" ())
167 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
168 (declare-function org-table-edit-field "org-table" (arg))
169 (declare-function org-table-end "org-table" (&optional table-type))
170 (declare-function org-table-end-of-field "org-table" (&optional n))
171 (declare-function org-table-insert-row "org-table" (&optional arg))
172 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
173 (declare-function org-table-maybe-eval-formula "org-table" ())
174 (declare-function org-table-maybe-recalculate-line "org-table" ())
175 (declare-function org-table-next-row "org-table" ())
176 (declare-function org-table-paste-rectangle "org-table" ())
177 (declare-function org-table-wrap-region "org-table" (arg))
178 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
179 (declare-function orgtbl-ascii-plot "org-table" (&optional ask))
180 (declare-function orgtbl-mode "org-table" (&optional arg))
182 (defsubst org-uniquify (list)
183 "Non-destructively remove duplicate elements from LIST."
184 (let ((res (copy-sequence list))) (delete-dups res)))
186 (defsubst org-get-at-bol (property)
187 "Get text property PROPERTY at the beginning of line."
188 (get-text-property (point-at-bol) property))
190 (defsubst org-trim (s)
191 "Remove whitespace at the beginning and the end of string S."
192 (replace-regexp-in-string
193 "\\`[ \t\n\r]+" ""
194 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
196 ;; load languages based on value of `org-babel-load-languages'
197 (defvar org-babel-load-languages)
199 ;;;###autoload
200 (defun org-babel-do-load-languages (sym value)
201 "Load the languages defined in `org-babel-load-languages'."
202 (set-default sym value)
203 (mapc (lambda (pair)
204 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
205 (if active
206 (progn
207 (require (intern (concat "ob-" lang))))
208 (progn
209 (funcall 'fmakunbound
210 (intern (concat "org-babel-execute:" lang)))
211 (funcall 'fmakunbound
212 (intern (concat "org-babel-expand-body:" lang)))))))
213 org-babel-load-languages))
215 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
216 ;;;###autoload
217 (defun org-babel-load-file (file &optional compile)
218 "Load Emacs Lisp source code blocks in the Org-mode FILE.
219 This function exports the source code using `org-babel-tangle'
220 and then loads the resulting file using `load-file'. With prefix
221 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
222 file to byte-code before it is loaded."
223 (interactive "fFile to load: \nP")
224 (let* ((age (lambda (file)
225 (float-time
226 (time-subtract (current-time)
227 (nth 5 (or (file-attributes (file-truename file))
228 (file-attributes file)))))))
229 (base-name (file-name-sans-extension file))
230 (exported-file (concat base-name ".el")))
231 ;; tangle if the org-mode file is newer than the elisp file
232 (unless (and (file-exists-p exported-file)
233 (> (funcall age file) (funcall age exported-file)))
234 ;; Tangle-file traversal returns reversed list of tangled files
235 ;; and we want to evaluate the first target.
236 (setq exported-file
237 (car (last (org-babel-tangle-file file exported-file "emacs-lisp")))))
238 (message "%s %s"
239 (if compile
240 (progn (byte-compile-file exported-file 'load)
241 "Compiled and loaded")
242 (progn (load-file exported-file) "Loaded"))
243 exported-file)))
245 (defcustom org-babel-load-languages '((emacs-lisp . t))
246 "Languages which can be evaluated in Org-mode buffers.
247 This list can be used to load support for any of the languages
248 below, note that each language will depend on a different set of
249 system executables and/or Emacs modes. When a language is
250 \"loaded\", then code blocks in that language can be evaluated
251 with `org-babel-execute-src-block' bound by default to C-c
252 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
253 be set to remove code block evaluation from the C-c C-c
254 keybinding. By default only Emacs Lisp (which has no
255 requirements) is loaded."
256 :group 'org-babel
257 :set 'org-babel-do-load-languages
258 :version "24.1"
259 :type '(alist :tag "Babel Languages"
260 :key-type
261 (choice
262 (const :tag "Awk" awk)
263 (const :tag "C" C)
264 (const :tag "R" R)
265 (const :tag "Asymptote" asymptote)
266 (const :tag "Calc" calc)
267 (const :tag "Clojure" clojure)
268 (const :tag "CSS" css)
269 (const :tag "Ditaa" ditaa)
270 (const :tag "Dot" dot)
271 (const :tag "Emacs Lisp" emacs-lisp)
272 (const :tag "Forth" forth)
273 (const :tag "Fortran" fortran)
274 (const :tag "Gnuplot" gnuplot)
275 (const :tag "Haskell" haskell)
276 (const :tag "IO" io)
277 (const :tag "J" J)
278 (const :tag "Java" java)
279 (const :tag "Javascript" js)
280 (const :tag "LaTeX" latex)
281 (const :tag "Ledger" ledger)
282 (const :tag "Lilypond" lilypond)
283 (const :tag "Lisp" lisp)
284 (const :tag "Makefile" makefile)
285 (const :tag "Maxima" maxima)
286 (const :tag "Matlab" matlab)
287 (const :tag "Mscgen" mscgen)
288 (const :tag "Ocaml" ocaml)
289 (const :tag "Octave" octave)
290 (const :tag "Org" org)
291 (const :tag "Perl" perl)
292 (const :tag "Pico Lisp" picolisp)
293 (const :tag "PlantUML" plantuml)
294 (const :tag "Python" python)
295 (const :tag "Ruby" ruby)
296 (const :tag "Sass" sass)
297 (const :tag "Scala" scala)
298 (const :tag "Scheme" scheme)
299 (const :tag "Screen" screen)
300 (const :tag "Shell Script" shell)
301 (const :tag "Shen" shen)
302 (const :tag "Sql" sql)
303 (const :tag "Sqlite" sqlite)
304 (const :tag "ebnf2ps" ebnf2ps))
305 :value-type (boolean :tag "Activate" :value t)))
307 ;;;; Customization variables
308 (defcustom org-clone-delete-id nil
309 "Remove ID property of clones of a subtree.
310 When non-nil, clones of a subtree don't inherit the ID property.
311 Otherwise they inherit the ID property with a new unique
312 identifier."
313 :type 'boolean
314 :version "24.1"
315 :group 'org-id)
317 ;;; Version
318 (org-check-version)
320 ;;;###autoload
321 (defun org-version (&optional here full message)
322 "Show the org-mode version.
323 Interactively, or when MESSAGE is non-nil, show it in echo area.
324 With prefix argument, or when HERE is non-nil, insert it at point.
325 In non-interactive uses, a reduced version string is output unless
326 FULL is given."
327 (interactive (list current-prefix-arg t (not current-prefix-arg)))
328 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
329 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
330 (load-suffixes (list ".el"))
331 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
332 (org-trash (or
333 (and (fboundp 'org-release) (fboundp 'org-git-version))
334 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
335 (load-suffixes save-load-suffixes)
336 (org-version (org-release))
337 (git-version (org-git-version))
338 (version (format "Org-mode version %s (%s @ %s)"
339 org-version
340 git-version
341 (if org-install-dir
342 (if (string= org-dir org-install-dir)
343 org-install-dir
344 (concat "mixed installation! " org-install-dir " and " org-dir))
345 "org-loaddefs.el can not be found!")))
346 (version1 (if full version org-version)))
347 (when here (insert version1))
348 (when message (message "%s" version1))
349 version1))
351 (defconst org-version (org-version))
354 ;;; Syntax Constants
356 ;;;; Block
358 (defconst org-block-regexp
359 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
360 "Regular expression for hiding blocks.")
362 (defconst org-dblock-start-re
363 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
364 "Matches the start line of a dynamic block, with parameters.")
366 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
367 "Matches the end of a dynamic block.")
369 ;;;; Clock and Planning
371 (defconst org-clock-string "CLOCK:"
372 "String used as prefix for timestamps clocking work hours on an item.")
374 (defvar org-closed-string "CLOSED:"
375 "String used as the prefix for timestamps logging closing a TODO entry.")
377 (defvar org-deadline-string "DEADLINE:"
378 "String to mark deadline entries.
379 A deadline is this string, followed by a time stamp. Should be a word,
380 terminated by a colon. You can insert a schedule keyword and
381 a timestamp with \\[org-deadline].")
383 (defvar org-scheduled-string "SCHEDULED:"
384 "String to mark scheduled TODO entries.
385 A schedule is this string, followed by a time stamp. Should be a word,
386 terminated by a colon. You can insert a schedule keyword and
387 a timestamp with \\[org-schedule].")
389 (defconst org-ds-keyword-length
390 (+ 2
391 (apply #'max
392 (mapcar #'length
393 (list org-deadline-string org-scheduled-string
394 org-clock-string org-closed-string))))
395 "Maximum length of the DEADLINE and SCHEDULED keywords.")
397 (defconst org-planning-line-re
398 (concat "^[ \t]*"
399 (regexp-opt
400 (list org-closed-string org-deadline-string org-scheduled-string)
402 "Matches a line with planning info.
403 Matched keyword is in group 1.")
405 (defconst org-clock-line-re
406 (concat "^[ \t]*" org-clock-string)
407 "Matches a line with clock info.")
409 (defconst org-deadline-regexp (concat "\\<" org-deadline-string)
410 "Matches the DEADLINE keyword.")
412 (defconst org-deadline-time-regexp
413 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
414 "Matches the DEADLINE keyword together with a time stamp.")
416 (defconst org-deadline-time-hour-regexp
417 (concat "\\<" org-deadline-string
418 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
419 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
421 (defconst org-deadline-line-regexp
422 (concat "\\<\\(" org-deadline-string "\\).*")
423 "Matches the DEADLINE keyword and the rest of the line.")
425 (defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
426 "Matches the SCHEDULED keyword.")
428 (defconst org-scheduled-time-regexp
429 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
430 "Matches the SCHEDULED keyword together with a time stamp.")
432 (defconst org-scheduled-time-hour-regexp
433 (concat "\\<" org-scheduled-string
434 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
435 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
437 (defconst org-closed-time-regexp
438 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
439 "Matches the CLOSED keyword together with a time stamp.")
441 (defconst org-keyword-time-regexp
442 (concat "\\<"
443 (regexp-opt
444 (list org-scheduled-string org-deadline-string org-closed-string
445 org-clock-string)
447 " *[[<]\\([^]>]+\\)[]>]")
448 "Matches any of the 4 keywords, together with the time stamp.")
450 (defconst org-keyword-time-not-clock-regexp
451 (concat
452 "\\<"
453 (regexp-opt
454 (list org-scheduled-string org-deadline-string org-closed-string) t)
455 " *[[<]\\([^]>]+\\)[]>]")
456 "Matches any of the 3 keywords, together with the time stamp.")
458 (defconst org-maybe-keyword-time-regexp
459 (concat "\\(\\<"
460 (regexp-opt
461 (list org-scheduled-string org-deadline-string org-closed-string
462 org-clock-string)
464 "\\)?"
465 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
466 "\\|"
467 "<%%([^\r\n>]*>\\)")
468 "Matches a timestamp, possibly preceded by a keyword.")
470 (defconst org-all-time-keywords
471 (mapcar (lambda (w) (substring w 0 -1))
472 (list org-scheduled-string org-deadline-string
473 org-clock-string org-closed-string))
474 "List of time keywords.")
476 ;;;; Drawer
478 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
479 "Matches first or last line of a hidden block.
480 Group 1 contains drawer's name or \"END\".")
482 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
483 "Regular expression matching the first line of a property drawer.")
485 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
486 "Regular expression matching the last line of a property drawer.")
488 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
489 "Regular expression matching the first line of a clock drawer.")
491 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
492 "Regular expression matching the last line of a clock drawer.")
494 (defconst org-property-drawer-re
495 (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
496 "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*?"
497 "[ \t]*:END:[ \t]*$")
498 "Matches an entire property drawer.")
500 (defconst org-clock-drawer-re
501 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
502 org-clock-drawer-end-re "\\)\n?")
503 "Matches an entire clock drawer.")
505 ;;;; Headline
507 (defconst org-heading-keyword-regexp-format
508 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
509 "Printf format for a regexp matching a headline with some keyword.
510 This regexp will match the headline of any node which has the
511 exact keyword that is put into the format. The keyword isn't in
512 any group by default, but the stars and the body are.")
514 (defconst org-heading-keyword-maybe-regexp-format
515 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
516 "Printf format for a regexp matching a headline, possibly with some keyword.
517 This regexp can match any headline with the specified keyword, or
518 without a keyword. The keyword isn't in any group by default,
519 but the stars and the body are.")
521 (defconst org-archive-tag "ARCHIVE"
522 "The tag that marks a subtree as archived.
523 An archived subtree does not open during visibility cycling, and does
524 not contribute to the agenda listings.")
526 (defconst org-comment-string "COMMENT"
527 "Entries starting with this keyword will never be exported.
528 An entry can be toggled between COMMENT and normal with
529 \\[org-toggle-comment].")
532 ;;;; LaTeX Environments and Fragments
534 (defconst org-latex-regexps
535 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
536 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
537 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
538 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|$\\)" 2 nil)
539 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|$\\)" 2 nil)
540 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
541 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
542 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
543 "Regular expressions for matching embedded LaTeX.")
545 ;;;; Node Property
547 (defconst org-effort-property "Effort"
548 "The property that is being used to keep track of effort estimates.
549 Effort estimates given in this property need to have the format H:MM.")
551 ;;;; Table
553 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
554 "Detect an org-type or table-type table.")
556 (defconst org-table-line-regexp "^[ \t]*|"
557 "Detect an org-type table line.")
559 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
560 "Detect an org-type table line.")
562 (defconst org-table-hline-regexp "^[ \t]*|-"
563 "Detect an org-type table hline.")
565 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
566 "Detect a table-type table hline.")
568 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
569 "Detect the first line outside a table when searching from within it.
570 This works for both table types.")
572 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
573 "Detect a #+TBLFM line.")
575 ;;;; Timestamp
577 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
578 "Regular expression for fast time stamp matching.")
580 (defconst org-ts-regexp-inactive
581 "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
582 "Regular expression for fast inactive time stamp matching.")
584 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
585 "Regular expression for fast time stamp matching.")
587 (defconst org-ts-regexp0
588 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
589 "Regular expression matching time strings for analysis.
590 This one does not require the space after the date, so it can be used
591 on a string that terminates immediately after the date.")
593 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
594 "Regular expression matching time strings for analysis.")
596 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
597 "Regular expression matching time stamps, with groups.")
599 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
600 "Regular expression matching time stamps (also [..]), with groups.")
602 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
603 "Regular expression matching a time stamp range.")
605 (defconst org-tr-regexp-both
606 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
607 "Regular expression matching a time stamp range.")
609 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
610 org-ts-regexp "\\)?")
611 "Regular expression matching a time stamp or time stamp range.")
613 (defconst org-tsr-regexp-both
614 (concat org-ts-regexp-both "\\(--?-?"
615 org-ts-regexp-both "\\)?")
616 "Regular expression matching a time stamp or time stamp range.
617 The time stamps may be either active or inactive.")
619 (defconst org-repeat-re
620 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
621 "Regular expression for specifying repeated events.
622 After a match, group 1 contains the repeat expression.")
624 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
625 "Formats for `format-time-string' which are used for time stamps.")
628 ;;; The custom variables
630 (defgroup org nil
631 "Outline-based notes management and organizer."
632 :tag "Org"
633 :group 'outlines
634 :group 'calendar)
636 (defcustom org-mode-hook nil
637 "Mode hook for Org-mode, run after the mode was turned on."
638 :group 'org
639 :type 'hook)
641 (defcustom org-load-hook nil
642 "Hook that is run after org.el has been loaded."
643 :group 'org
644 :type 'hook)
646 (defcustom org-log-buffer-setup-hook nil
647 "Hook that is run after an Org log buffer is created."
648 :group 'org
649 :version "24.1"
650 :type 'hook)
652 (defvar org-modules) ; defined below
653 (defvar org-modules-loaded nil
654 "Have the modules been loaded already?")
656 (defun org-load-modules-maybe (&optional force)
657 "Load all extensions listed in `org-modules'."
658 (when (or force (not org-modules-loaded))
659 (mapc (lambda (ext)
660 (condition-case nil (require ext)
661 (error (message "Problems while trying to load feature `%s'" ext))))
662 org-modules)
663 (setq org-modules-loaded t)))
665 (defun org-set-modules (var value)
666 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
667 (set var value)
668 (when (featurep 'org)
669 (org-load-modules-maybe 'force)
670 (org-element-cache-reset 'all)))
672 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
673 "Modules that should always be loaded together with org.el.
675 If a description starts with <C>, the file is not part of Emacs
676 and loading it will require that you have downloaded and properly
677 installed the Org mode distribution.
679 You can also use this system to load external packages (i.e. neither Org
680 core modules, nor modules from the CONTRIB directory). Just add symbols
681 to the end of the list. If the package is called org-xyz.el, then you need
682 to add the symbol `xyz', and the package must have a call to:
684 (provide \\='org-xyz)
686 For export specific modules, see also `org-export-backends'."
687 :group 'org
688 :set 'org-set-modules
689 :version "24.4"
690 :package-version '(Org . "8.0")
691 :type
692 '(set :greedy t
693 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
694 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
695 (const :tag " crypt: Encryption of subtrees" org-crypt)
696 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
697 (const :tag " docview: Links to doc-view buffers" org-docview)
698 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
699 (const :tag " habit: Track your consistency with habits" org-habit)
700 (const :tag " id: Global IDs for identifying entries" org-id)
701 (const :tag " info: Links to Info nodes" org-info)
702 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
703 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
704 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
705 (const :tag " mouse: Additional mouse support" org-mouse)
706 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
707 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
708 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
710 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
711 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
712 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
713 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
714 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
715 (const :tag "C collector: Collect properties into tables" org-collector)
716 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
717 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
718 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
719 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
720 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
721 (const :tag "C eval: Include command output as text" org-eval)
722 (const :tag "C eww: Store link to url of eww" org-eww)
723 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
724 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
725 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
726 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
727 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
728 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
729 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
730 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
731 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
732 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
733 (const :tag "C mew: Links to Mew folders/messages" org-mew)
734 (const :tag "C mtags: Support for muse-like tags" org-mtags)
735 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
736 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
737 (const :tag "C registry: A registry for Org-mode links" org-registry)
738 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
739 (const :tag "C secretary: Team management with org-mode" org-secretary)
740 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
741 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
742 (const :tag "C track: Keep up with Org-mode development" org-track)
743 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
744 (const :tag "C vm: Links to VM folders/messages" org-vm)
745 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
746 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
747 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
749 (defvar org-export-registered-backends) ; From ox.el.
750 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
751 (declare-function org-export-backend-name "ox" (backend) t)
752 (defcustom org-export-backends '(ascii html icalendar latex)
753 "List of export back-ends that should be always available.
755 If a description starts with <C>, the file is not part of Emacs
756 and loading it will require that you have downloaded and properly
757 installed the Org mode distribution.
759 Unlike to `org-modules', libraries in this list will not be
760 loaded along with Org, but only once the export framework is
761 needed.
763 This variable needs to be set before org.el is loaded. If you
764 need to make a change while Emacs is running, use the customize
765 interface or run the following code, where VAL stands for the new
766 value of the variable, after updating it:
768 (progn
769 (setq org-export-registered-backends
770 (org-remove-if-not
771 (lambda (backend)
772 (let ((name (org-export-backend-name backend)))
773 (or (memq name val)
774 (catch \\='parentp
775 (dolist (b val)
776 (and (org-export-derived-backend-p b name)
777 (throw \\='parentp t)))))))
778 org-export-registered-backends))
779 (let ((new-list (mapcar #\\='org-export-backend-name
780 org-export-registered-backends)))
781 (dolist (backend val)
782 (cond
783 ((not (load (format \"ox-%s\" backend) t t))
784 (message \"Problems while trying to load export back-end \\=`%s\\='\"
785 backend))
786 ((not (memq backend new-list)) (push backend new-list))))
787 (set-default \\='org-export-backends new-list)))
789 Adding a back-end to this list will also pull the back-end it
790 depends on, if any."
791 :group 'org
792 :group 'org-export
793 :version "24.4"
794 :package-version '(Org . "8.0")
795 :initialize 'custom-initialize-set
796 :set (lambda (var val)
797 (if (not (featurep 'ox)) (set-default var val)
798 ;; Any back-end not required anymore (not present in VAL and not
799 ;; a parent of any back-end in the new value) is removed from the
800 ;; list of registered back-ends.
801 (setq org-export-registered-backends
802 (org-remove-if-not
803 (lambda (backend)
804 (let ((name (org-export-backend-name backend)))
805 (or (memq name val)
806 (catch 'parentp
807 (dolist (b val)
808 (and (org-export-derived-backend-p b name)
809 (throw 'parentp t)))))))
810 org-export-registered-backends))
811 ;; Now build NEW-LIST of both new back-ends and required
812 ;; parents.
813 (let ((new-list (mapcar #'org-export-backend-name
814 org-export-registered-backends)))
815 (dolist (backend val)
816 (cond
817 ((not (load (format "ox-%s" backend) t t))
818 (message "Problems while trying to load export back-end `%s'"
819 backend))
820 ((not (memq backend new-list)) (push backend new-list))))
821 ;; Set VAR to that list with fixed dependencies.
822 (set-default var new-list))))
823 :type '(set :greedy t
824 (const :tag " ascii Export buffer to ASCII format" ascii)
825 (const :tag " beamer Export buffer to Beamer presentation" beamer)
826 (const :tag " html Export buffer to HTML format" html)
827 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
828 (const :tag " latex Export buffer to LaTeX format" latex)
829 (const :tag " man Export buffer to MAN format" man)
830 (const :tag " md Export buffer to Markdown format" md)
831 (const :tag " odt Export buffer to ODT format" odt)
832 (const :tag " org Export buffer to Org format" org)
833 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
834 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
835 (const :tag "C deck Export buffer to deck.js presentations" deck)
836 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
837 (const :tag "C groff Export buffer to Groff format" groff)
838 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
839 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
840 (const :tag "C s5 Export buffer to s5 presentations" s5)
841 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
843 (eval-after-load 'ox
844 '(mapc
845 (lambda (backend)
846 (condition-case nil (require (intern (format "ox-%s" backend)))
847 (error (message "Problems while trying to load export back-end `%s'"
848 backend))))
849 org-export-backends))
851 (defcustom org-support-shift-select nil
852 "Non-nil means make shift-cursor commands select text when possible.
853 \\<org-mode-map>\
855 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
856 start selecting a region, or enlarge regions started in this way.
857 In Org-mode, in special contexts, these same keys are used for
858 other purposes, important enough to compete with shift selection.
859 Org tries to balance these needs by supporting `shift-select-mode'
860 outside these special contexts, under control of this variable.
862 The default of this variable is nil, to avoid confusing behavior. Shifted
863 cursor keys will then execute Org commands in the following contexts:
864 - on a headline, changing TODO state (left/right) and priority (up/down)
865 - on a time stamp, changing the time
866 - in a plain list item, changing the bullet type
867 - in a property definition line, switching between allowed values
868 - in the BEGIN line of a clock table (changing the time block).
869 Outside these contexts, the commands will throw an error.
871 When this variable is t and the cursor is not in a special
872 context, Org-mode will support shift-selection for making and
873 enlarging regions. To make this more effective, the bullet
874 cycling will no longer happen anywhere in an item line, but only
875 if the cursor is exactly on the bullet.
877 If you set this variable to the symbol `always', then the keys
878 will not be special in headlines, property lines, and item lines,
879 to make shift selection work there as well. If this is what you
880 want, you can use the following alternative commands:
881 `\\[org-todo]' and `\\[org-priority]' \
882 to change TODO state and priority,
883 `\\[universal-argument] \\[universal-argument] \\[org-todo]' \
884 can be used to switch TODO sets,
885 `\\[org-ctrl-c-minus]' to cycle item bullet types,
886 and properties can be edited by hand or in column view.
888 However, when the cursor is on a timestamp, shift-cursor commands
889 will still edit the time stamp - this is just too good to give up.
891 XEmacs user should have this variable set to nil, because
892 `shift-select-mode' is in Emacs 23 or later only."
893 :group 'org
894 :type '(choice
895 (const :tag "Never" nil)
896 (const :tag "When outside special context" t)
897 (const :tag "Everywhere except timestamps" always)))
899 (defcustom org-loop-over-headlines-in-active-region nil
900 "Shall some commands act upon headlines in the active region?
902 When set to t, some commands will be performed in all headlines
903 within the active region.
905 When set to `start-level', some commands will be performed in all
906 headlines within the active region, provided that these headlines
907 are of the same level than the first one.
909 When set to a string, those commands will be performed on the
910 matching headlines within the active region. Such string must be
911 a tags/property/todo match as it is used in the agenda tags view.
913 The list of commands is: `org-schedule', `org-deadline',
914 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
915 `org-archive-to-archive-sibling'. The archiving commands skip
916 already archived entries."
917 :type '(choice (const :tag "Don't loop" nil)
918 (const :tag "All headlines in active region" t)
919 (const :tag "In active region, headlines at the same level than the first one" start-level)
920 (string :tag "Tags/Property/Todo matcher"))
921 :version "24.1"
922 :group 'org-todo
923 :group 'org-archive)
925 (defgroup org-startup nil
926 "Options concerning startup of Org-mode."
927 :tag "Org Startup"
928 :group 'org)
930 (defcustom org-startup-folded t
931 "Non-nil means entering Org-mode will switch to OVERVIEW.
932 This can also be configured on a per-file basis by adding one of
933 the following lines anywhere in the buffer:
935 #+STARTUP: fold (or `overview', this is equivalent)
936 #+STARTUP: nofold (or `showall', this is equivalent)
937 #+STARTUP: content
938 #+STARTUP: showeverything
940 By default, this option is ignored when Org opens agenda files
941 for the first time. If you want the agenda to honor the startup
942 option, set `org-agenda-inhibit-startup' to nil."
943 :group 'org-startup
944 :type '(choice
945 (const :tag "nofold: show all" nil)
946 (const :tag "fold: overview" t)
947 (const :tag "content: all headlines" content)
948 (const :tag "show everything, even drawers" showeverything)))
950 (defcustom org-startup-truncated t
951 "Non-nil means entering Org-mode will set `truncate-lines'.
952 This is useful since some lines containing links can be very long and
953 uninteresting. Also tables look terrible when wrapped."
954 :group 'org-startup
955 :type 'boolean)
957 (defcustom org-startup-indented nil
958 "Non-nil means turn on `org-indent-mode' on startup.
959 This can also be configured on a per-file basis by adding one of
960 the following lines anywhere in the buffer:
962 #+STARTUP: indent
963 #+STARTUP: noindent"
964 :group 'org-structure
965 :type '(choice
966 (const :tag "Not" nil)
967 (const :tag "Globally (slow on startup in large files)" t)))
969 (defcustom org-use-sub-superscripts t
970 "Non-nil means interpret \"_\" and \"^\" for display.
972 If you want to control how Org exports those characters, see
973 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
974 used to be an alias for `org-export-with-sub-superscripts' in
975 Org <8.0, it is not anymore.
977 When this option is turned on, you can use TeX-like syntax for
978 sub- and superscripts within the buffer. Several characters after
979 \"_\" or \"^\" will be considered as a single item - so grouping
980 with {} is normally not needed. For example, the following things
981 will be parsed as single sub- or superscripts:
983 10^24 or 10^tau several digits will be considered 1 item.
984 10^-12 or 10^-tau a leading sign with digits or a word
985 x^2-y^3 will be read as x^2 - y^3, because items are
986 terminated by almost any nonword/nondigit char.
987 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
989 Still, ambiguity is possible. So when in doubt, use {} to enclose
990 the sub/superscript. If you set this variable to the symbol `{}',
991 the braces are *required* in order to trigger interpretations as
992 sub/superscript. This can be helpful in documents that need \"_\"
993 frequently in plain text."
994 :group 'org-startup
995 :version "24.4"
996 :package-version '(Org . "8.0")
997 :type '(choice
998 (const :tag "Always interpret" t)
999 (const :tag "Only with braces" {})
1000 (const :tag "Never interpret" nil)))
1002 (defcustom org-startup-with-beamer-mode nil
1003 "Non-nil means turn on `org-beamer-mode' on startup.
1004 This can also be configured on a per-file basis by adding one of
1005 the following lines anywhere in the buffer:
1007 #+STARTUP: beamer"
1008 :group 'org-startup
1009 :version "24.1"
1010 :type 'boolean)
1012 (defcustom org-startup-align-all-tables nil
1013 "Non-nil means align all tables when visiting a file.
1014 This is useful when the column width in tables is forced with <N> cookies
1015 in table fields. Such tables will look correct only after the first re-align.
1016 This can also be configured on a per-file basis by adding one of
1017 the following lines anywhere in the buffer:
1018 #+STARTUP: align
1019 #+STARTUP: noalign"
1020 :group 'org-startup
1021 :type 'boolean)
1023 (defcustom org-startup-with-inline-images nil
1024 "Non-nil means show inline images when loading a new Org file.
1025 This can also be configured on a per-file basis by adding one of
1026 the following lines anywhere in the buffer:
1027 #+STARTUP: inlineimages
1028 #+STARTUP: noinlineimages"
1029 :group 'org-startup
1030 :version "24.1"
1031 :type 'boolean)
1033 (defcustom org-startup-with-latex-preview nil
1034 "Non-nil means preview LaTeX fragments when loading a new Org file.
1036 This can also be configured on a per-file basis by adding one of
1037 the following lines anywhere in the buffer:
1038 #+STARTUP: latexpreview
1039 #+STARTUP: nolatexpreview"
1040 :group 'org-startup
1041 :version "24.4"
1042 :package-version '(Org . "8.0")
1043 :type 'boolean)
1045 (defcustom org-insert-mode-line-in-empty-file nil
1046 "Non-nil means insert the first line setting Org-mode in empty files.
1047 When the function `org-mode' is called interactively in an empty file, this
1048 normally means that the file name does not automatically trigger Org-mode.
1049 To ensure that the file will always be in Org-mode in the future, a
1050 line enforcing Org-mode will be inserted into the buffer, if this option
1051 has been set."
1052 :group 'org-startup
1053 :type 'boolean)
1055 (defcustom org-replace-disputed-keys nil
1056 "Non-nil means use alternative key bindings for some keys.
1057 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1058 These keys are also used by other packages like shift-selection-mode'
1059 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1060 If you want to use Org-mode together with one of these other modes,
1061 or more generally if you would like to move some Org-mode commands to
1062 other keys, set this variable and configure the keys with the variable
1063 `org-disputed-keys'.
1065 This option is only relevant at load-time of Org-mode, and must be set
1066 *before* org.el is loaded. Changing it requires a restart of Emacs to
1067 become effective."
1068 :group 'org-startup
1069 :type 'boolean)
1071 (defcustom org-use-extra-keys nil
1072 "Non-nil means use extra key sequence definitions for certain commands.
1073 This happens automatically if you run XEmacs or if `window-system'
1074 is nil. This variable lets you do the same manually. You must
1075 set it before loading org.
1077 Example: on Carbon Emacs 22 running graphically, with an external
1078 keyboard on a Powerbook, the default way of setting M-left might
1079 not work for either Alt or ESC. Setting this variable will make
1080 it work for ESC."
1081 :group 'org-startup
1082 :type 'boolean)
1084 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1086 (defcustom org-disputed-keys
1087 '(([(shift up)] . [(meta p)])
1088 ([(shift down)] . [(meta n)])
1089 ([(shift left)] . [(meta -)])
1090 ([(shift right)] . [(meta +)])
1091 ([(control shift right)] . [(meta shift +)])
1092 ([(control shift left)] . [(meta shift -)]))
1093 "Keys for which Org-mode and other modes compete.
1094 This is an alist, cars are the default keys, second element specifies
1095 the alternative to use when `org-replace-disputed-keys' is t.
1097 Keys can be specified in any syntax supported by `define-key'.
1098 The value of this option takes effect only at Org-mode's startup,
1099 therefore you'll have to restart Emacs to apply it after changing."
1100 :group 'org-startup
1101 :type 'alist)
1103 (defun org-key (key)
1104 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1105 Or return the original if not disputed.
1106 Also apply the translations defined in `org-xemacs-key-equivalents'."
1107 (when org-replace-disputed-keys
1108 (let* ((nkey (key-description key))
1109 (x (org-find-if (lambda (x)
1110 (equal (key-description (car x)) nkey))
1111 org-disputed-keys)))
1112 (setq key (if x (cdr x) key))))
1113 (when (featurep 'xemacs)
1114 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1115 key)
1117 (defun org-find-if (predicate seq)
1118 (catch 'exit
1119 (while seq
1120 (if (funcall predicate (car seq))
1121 (throw 'exit (car seq))
1122 (pop seq)))))
1124 (defun org-defkey (keymap key def)
1125 "Define a key, possibly translated, as returned by `org-key'."
1126 (define-key keymap (org-key key) def))
1128 (defcustom org-ellipsis nil
1129 "The ellipsis to use in the Org-mode outline.
1130 When nil, just use the standard three dots.
1131 When a string, use that string instead.
1132 When a face, use the standard 3 dots, but with the specified face.
1133 The change affects only Org-mode (which will then use its own display table).
1134 Changing this requires executing \\[org-mode] in a buffer to become
1135 effective."
1136 :group 'org-startup
1137 :type '(choice (const :tag "Default" nil)
1138 (face :tag "Face" :value org-warning)
1139 (string :tag "String" :value "...#")))
1141 (defvar org-display-table nil
1142 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1144 (defgroup org-keywords nil
1145 "Keywords in Org-mode."
1146 :tag "Org Keywords"
1147 :group 'org)
1149 (defcustom org-closed-keep-when-no-todo nil
1150 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1151 :group 'org-todo
1152 :group 'org-keywords
1153 :version "24.4"
1154 :package-version '(Org . "8.0")
1155 :type 'boolean)
1157 (defgroup org-structure nil
1158 "Options concerning the general structure of Org-mode files."
1159 :tag "Org Structure"
1160 :group 'org)
1162 (defgroup org-reveal-location nil
1163 "Options about how to make context of a location visible."
1164 :tag "Org Reveal Location"
1165 :group 'org-structure)
1167 (defcustom org-show-context-detail '((isearch . lineage)
1168 (bookmark-jump . lineage)
1169 (default . ancestors))
1170 "Alist between context and visibility span when revealing a location.
1172 \\<org-mode-map>Some actions may move point into invisible
1173 locations. As a consequence, Org always expose a neighborhood
1174 around point. How much is shown depends on the initial action,
1175 or context. Valid contexts are
1177 agenda when exposing an entry from the agenda
1178 org-goto when using the command `org-goto' (\\[org-goto])
1179 occur-tree when using the command `org-occur' (\\[org-sparse-tree] /)
1180 tags-tree when constructing a sparse tree based on tags matches
1181 link-search when exposing search matches associated with a link
1182 mark-goto when exposing the jump goal of a mark
1183 bookmark-jump when exposing a bookmark location
1184 isearch when exiting from an incremental search
1185 default default for all contexts not set explicitly
1187 Allowed visibility spans are
1189 minimal show current headline; if point is not on headline,
1190 also show entry
1192 local show current headline, entry and next headline
1194 ancestors show current headline and its direct ancestors; if
1195 point is not on headline, also show entry
1197 lineage show current headline, its direct ancestors and all
1198 their children; if point is not on headline, also show
1199 entry and first child
1201 tree show current headline, its direct ancestors and all
1202 their children; if point is not on headline, also show
1203 entry and all children
1205 canonical show current headline, its direct ancestors along with
1206 their entries and children; if point is not located on
1207 the headline, also show current entry and all children
1209 As special cases, a nil or t value means show all contexts in
1210 `minimal' or `canonical' view, respectively.
1212 Some views can make displayed information very compact, but also
1213 make it harder to edit the location of the match. In such
1214 a case, use the command `org-reveal' (\\[org-reveal]) to show
1215 more context."
1216 :group 'org-reveal-location
1217 :version "25.1"
1218 :package-version '(Org . "8.3")
1219 :type '(choice
1220 (const :tag "Canonical" t)
1221 (const :tag "Minimal" nil)
1222 (repeat :greedy t :tag "Individual contexts"
1223 (cons
1224 (choice :tag "Context"
1225 (const agenda)
1226 (const org-goto)
1227 (const occur-tree)
1228 (const tags-tree)
1229 (const link-search)
1230 (const mark-goto)
1231 (const bookmark-jump)
1232 (const isearch)
1233 (const default))
1234 (choice :tag "Detail level"
1235 (const minimal)
1236 (const local)
1237 (const ancestors)
1238 (const lineage)
1239 (const tree)
1240 (const canonical))))))
1242 (defcustom org-indirect-buffer-display 'other-window
1243 "How should indirect tree buffers be displayed?
1244 This applies to indirect buffers created with the commands
1245 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1246 Valid values are:
1247 current-window Display in the current window
1248 other-window Just display in another window.
1249 dedicated-frame Create one new frame, and re-use it each time.
1250 new-frame Make a new frame each time. Note that in this case
1251 previously-made indirect buffers are kept, and you need to
1252 kill these buffers yourself."
1253 :group 'org-structure
1254 :group 'org-agenda-windows
1255 :type '(choice
1256 (const :tag "In current window" current-window)
1257 (const :tag "In current frame, other window" other-window)
1258 (const :tag "Each time a new frame" new-frame)
1259 (const :tag "One dedicated frame" dedicated-frame)))
1261 (defcustom org-use-speed-commands nil
1262 "Non-nil means activate single letter commands at beginning of a headline.
1263 This may also be a function to test for appropriate locations where speed
1264 commands should be active.
1266 For example, to activate speed commands when the point is on any
1267 star at the beginning of the headline, you can do this:
1269 (setq org-use-speed-commands
1270 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1271 :group 'org-structure
1272 :type '(choice
1273 (const :tag "Never" nil)
1274 (const :tag "At beginning of headline stars" t)
1275 (function)))
1277 (defcustom org-speed-commands-user nil
1278 "Alist of additional speed commands.
1279 This list will be checked before `org-speed-commands-default'
1280 when the variable `org-use-speed-commands' is non-nil
1281 and when the cursor is at the beginning of a headline.
1282 The car if each entry is a string with a single letter, which must
1283 be assigned to `self-insert-command' in the global map.
1284 The cdr is either a command to be called interactively, a function
1285 to be called, or a form to be evaluated.
1286 An entry that is just a list with a single string will be interpreted
1287 as a descriptive headline that will be added when listing the speed
1288 commands in the Help buffer using the `?' speed command."
1289 :group 'org-structure
1290 :type '(repeat :value ("k" . ignore)
1291 (choice :value ("k" . ignore)
1292 (list :tag "Descriptive Headline" (string :tag "Headline"))
1293 (cons :tag "Letter and Command"
1294 (string :tag "Command letter")
1295 (choice
1296 (function)
1297 (sexp))))))
1299 (defcustom org-bookmark-names-plist
1300 '(:last-capture "org-capture-last-stored"
1301 :last-refile "org-refile-last-stored"
1302 :last-capture-marker "org-capture-last-stored-marker")
1303 "Names for bookmarks automatically set by some Org commands.
1304 This can provide strings as names for a number of bookmarks Org sets
1305 automatically. The following keys are currently implemented:
1306 :last-capture
1307 :last-capture-marker
1308 :last-refile
1309 When a key does not show up in the property list, the corresponding bookmark
1310 is not set."
1311 :group 'org-structure
1312 :type 'plist)
1314 (defgroup org-cycle nil
1315 "Options concerning visibility cycling in Org-mode."
1316 :tag "Org Cycle"
1317 :group 'org-structure)
1319 (defcustom org-cycle-skip-children-state-if-no-children t
1320 "Non-nil means skip CHILDREN state in entries that don't have any."
1321 :group 'org-cycle
1322 :type 'boolean)
1324 (defcustom org-cycle-max-level nil
1325 "Maximum level which should still be subject to visibility cycling.
1326 Levels higher than this will, for cycling, be treated as text, not a headline.
1327 When `org-odd-levels-only' is set, a value of N in this variable actually
1328 means 2N-1 stars as the limiting headline.
1329 When nil, cycle all levels.
1330 Note that the limiting level of cycling is also influenced by
1331 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1332 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1333 than its value."
1334 :group 'org-cycle
1335 :type '(choice
1336 (const :tag "No limit" nil)
1337 (integer :tag "Maximum level")))
1339 (defcustom org-hide-block-startup nil
1340 "Non-nil means entering Org-mode will fold all blocks.
1341 This can also be set in on a per-file basis with
1343 #+STARTUP: hideblocks
1344 #+STARTUP: showblocks"
1345 :group 'org-startup
1346 :group 'org-cycle
1347 :type 'boolean)
1349 (defcustom org-cycle-global-at-bob nil
1350 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1351 This makes it possible to do global cycling without having to use S-TAB or
1352 \\[universal-argument] TAB. For this special case to work, the first line
1353 of the buffer must not be a headline -- it may be empty or some other text.
1354 When used in this way, `org-cycle-hook' is disabled temporarily to make
1355 sure the cursor stays at the beginning of the buffer. When this option is
1356 nil, don't do anything special at the beginning of the buffer."
1357 :group 'org-cycle
1358 :type 'boolean)
1360 (defcustom org-cycle-level-after-item/entry-creation t
1361 "Non-nil means cycle entry level or item indentation in new empty entries.
1363 When the cursor is at the end of an empty headline, i.e., with only stars
1364 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1365 and then all possible ancestor states, before returning to the original state.
1366 This makes data entry extremely fast: M-RET to create a new headline,
1367 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1369 When the cursor is at the end of an empty plain list item, one TAB will
1370 make it a subitem, two or more tabs will back up to make this an item
1371 higher up in the item hierarchy."
1372 :group 'org-cycle
1373 :type 'boolean)
1375 (defcustom org-cycle-emulate-tab t
1376 "Where should `org-cycle' emulate TAB.
1377 nil Never
1378 white Only in completely white lines
1379 whitestart Only at the beginning of lines, before the first non-white char
1380 t Everywhere except in headlines
1381 exc-hl-bol Everywhere except at the start of a headline
1382 If TAB is used in a place where it does not emulate TAB, the current subtree
1383 visibility is cycled."
1384 :group 'org-cycle
1385 :type '(choice (const :tag "Never" nil)
1386 (const :tag "Only in completely white lines" white)
1387 (const :tag "Before first char in a line" whitestart)
1388 (const :tag "Everywhere except in headlines" t)
1389 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1391 (defcustom org-cycle-separator-lines 2
1392 "Number of empty lines needed to keep an empty line between collapsed trees.
1393 If you leave an empty line between the end of a subtree and the following
1394 headline, this empty line is hidden when the subtree is folded.
1395 Org-mode will leave (exactly) one empty line visible if the number of
1396 empty lines is equal or larger to the number given in this variable.
1397 So the default 2 means at least 2 empty lines after the end of a subtree
1398 are needed to produce free space between a collapsed subtree and the
1399 following headline.
1401 If the number is negative, and the number of empty lines is at least -N,
1402 all empty lines are shown.
1404 Special case: when 0, never leave empty lines in collapsed view."
1405 :group 'org-cycle
1406 :type 'integer)
1407 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1409 (defcustom org-pre-cycle-hook nil
1410 "Hook that is run before visibility cycling is happening.
1411 The function(s) in this hook must accept a single argument which indicates
1412 the new state that will be set right after running this hook. The
1413 argument is a symbol. Before a global state change, it can have the values
1414 `overview', `content', or `all'. Before a local state change, it can have
1415 the values `folded', `children', or `subtree'."
1416 :group 'org-cycle
1417 :type 'hook)
1419 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1420 org-cycle-hide-drawers
1421 org-cycle-show-empty-lines
1422 org-optimize-window-after-visibility-change)
1423 "Hook that is run after `org-cycle' has changed the buffer visibility.
1424 The function(s) in this hook must accept a single argument which indicates
1425 the new state that was set by the most recent `org-cycle' command. The
1426 argument is a symbol. After a global state change, it can have the values
1427 `overview', `contents', or `all'. After a local state change, it can have
1428 the values `folded', `children', or `subtree'."
1429 :group 'org-cycle
1430 :type 'hook
1431 :version "25.1"
1432 :package-version '(Org . "8.3"))
1434 (defgroup org-edit-structure nil
1435 "Options concerning structure editing in Org-mode."
1436 :tag "Org Edit Structure"
1437 :group 'org-structure)
1439 (defcustom org-odd-levels-only nil
1440 "Non-nil means skip even levels and only use odd levels for the outline.
1441 This has the effect that two stars are being added/taken away in
1442 promotion/demotion commands. It also influences how levels are
1443 handled by the exporters.
1444 Changing it requires restart of `font-lock-mode' to become effective
1445 for fontification also in regions already fontified.
1446 You may also set this on a per-file basis by adding one of the following
1447 lines to the buffer:
1449 #+STARTUP: odd
1450 #+STARTUP: oddeven"
1451 :group 'org-edit-structure
1452 :group 'org-appearance
1453 :type 'boolean)
1455 (defcustom org-adapt-indentation t
1456 "Non-nil means adapt indentation to outline node level.
1458 When this variable is set, Org assumes that you write outlines by
1459 indenting text in each node to align with the headline (after the
1460 stars). The following issues are influenced by this variable:
1462 - The indentation is increased by one space in a demotion
1463 command, and decreased by one in a promotion command. However,
1464 in the latter case, if shifting some line in the entry body
1465 would alter document structure (e.g., insert a new headline),
1466 indentation is not changed at all.
1468 - Property drawers and planning information is inserted indented
1469 when this variable is set. When nil, they will not be indented.
1471 - TAB indents a line relative to current level. The lines below
1472 a headline will be indented when this variable is set.
1474 Note that this is all about true indentation, by adding and
1475 removing space characters. See also `org-indent.el' which does
1476 level-dependent indentation in a virtual way, i.e. at display
1477 time in Emacs."
1478 :group 'org-edit-structure
1479 :type 'boolean)
1481 (defcustom org-special-ctrl-a/e nil
1482 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1484 When t, `C-a' will bring back the cursor to the beginning of the
1485 headline text, i.e. after the stars and after a possible TODO
1486 keyword. In an item, this will be the position after bullet and
1487 check-box, if any. When the cursor is already at that position,
1488 another `C-a' will bring it to the beginning of the line.
1490 `C-e' will jump to the end of the headline, ignoring the presence
1491 of tags in the headline. A second `C-e' will then jump to the
1492 true end of the line, after any tags. This also means that, when
1493 this variable is non-nil, `C-e' also will never jump beyond the
1494 end of the heading of a folded section, i.e. not after the
1495 ellipses.
1497 When set to the symbol `reversed', the first `C-a' or `C-e' works
1498 normally, going to the true line boundary first. Only a directly
1499 following, identical keypress will bring the cursor to the
1500 special positions.
1502 This may also be a cons cell where the behavior for `C-a' and
1503 `C-e' is set separately."
1504 :group 'org-edit-structure
1505 :type '(choice
1506 (const :tag "off" nil)
1507 (const :tag "on: after stars/bullet and before tags first" t)
1508 (const :tag "reversed: true line boundary first" reversed)
1509 (cons :tag "Set C-a and C-e separately"
1510 (choice :tag "Special C-a"
1511 (const :tag "off" nil)
1512 (const :tag "on: after stars/bullet first" t)
1513 (const :tag "reversed: before stars/bullet first" reversed))
1514 (choice :tag "Special C-e"
1515 (const :tag "off" nil)
1516 (const :tag "on: before tags first" t)
1517 (const :tag "reversed: after tags first" reversed)))))
1518 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1520 (defcustom org-special-ctrl-k nil
1521 "Non-nil means `C-k' will behave specially in headlines.
1522 When nil, `C-k' will call the default `kill-line' command.
1523 When t, the following will happen while the cursor is in the headline:
1525 - When the cursor is at the beginning of a headline, kill the entire
1526 line and possible the folded subtree below the line.
1527 - When in the middle of the headline text, kill the headline up to the tags.
1528 - When after the headline text, kill the tags."
1529 :group 'org-edit-structure
1530 :type 'boolean)
1532 (defcustom org-ctrl-k-protect-subtree nil
1533 "Non-nil means, do not delete a hidden subtree with C-k.
1534 When set to the symbol `error', simply throw an error when C-k is
1535 used to kill (part-of) a headline that has hidden text behind it.
1536 Any other non-nil value will result in a query to the user, if it is
1537 OK to kill that hidden subtree. When nil, kill without remorse."
1538 :group 'org-edit-structure
1539 :version "24.1"
1540 :type '(choice
1541 (const :tag "Do not protect hidden subtrees" nil)
1542 (const :tag "Protect hidden subtrees with a security query" t)
1543 (const :tag "Never kill a hidden subtree with C-k" error)))
1545 (defcustom org-special-ctrl-o t
1546 "Non-nil means, make `C-o' insert a row in tables."
1547 :group 'org-edit-structure
1548 :type 'boolean)
1550 (defcustom org-catch-invisible-edits nil
1551 "Check if in invisible region before inserting or deleting a character.
1552 Valid values are:
1554 nil Do not check, so just do invisible edits.
1555 error Throw an error and do nothing.
1556 show Make point visible, and do the requested edit.
1557 show-and-error Make point visible, then throw an error and abort the edit.
1558 smart Make point visible, and do insertion/deletion if it is
1559 adjacent to visible text and the change feels predictable.
1560 Never delete a previously invisible character or add in the
1561 middle or right after an invisible region. Basically, this
1562 allows insertion and backward-delete right before ellipses.
1563 FIXME: maybe in this case we should not even show?"
1564 :group 'org-edit-structure
1565 :version "24.1"
1566 :type '(choice
1567 (const :tag "Do not check" nil)
1568 (const :tag "Throw error when trying to edit" error)
1569 (const :tag "Unhide, but do not do the edit" show-and-error)
1570 (const :tag "Show invisible part and do the edit" show)
1571 (const :tag "Be smart and do the right thing" smart)))
1573 (defcustom org-yank-folded-subtrees t
1574 "Non-nil means when yanking subtrees, fold them.
1575 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1576 it starts with a heading and all other headings in it are either children
1577 or siblings, then fold all the subtrees. However, do this only if no
1578 text after the yank would be swallowed into a folded tree by this action."
1579 :group 'org-edit-structure
1580 :type 'boolean)
1582 (defcustom org-yank-adjusted-subtrees nil
1583 "Non-nil means when yanking subtrees, adjust the level.
1584 With this setting, `org-paste-subtree' is used to insert the subtree, see
1585 this function for details."
1586 :group 'org-edit-structure
1587 :type 'boolean)
1589 (defcustom org-M-RET-may-split-line '((default . t))
1590 "Non-nil means M-RET will split the line at the cursor position.
1591 When nil, it will go to the end of the line before making a
1592 new line.
1593 You may also set this option in a different way for different
1594 contexts. Valid contexts are:
1596 headline when creating a new headline
1597 item when creating a new item
1598 table in a table field
1599 default the value to be used for all contexts not explicitly
1600 customized"
1601 :group 'org-structure
1602 :group 'org-table
1603 :type '(choice
1604 (const :tag "Always" t)
1605 (const :tag "Never" nil)
1606 (repeat :greedy t :tag "Individual contexts"
1607 (cons
1608 (choice :tag "Context"
1609 (const headline)
1610 (const item)
1611 (const table)
1612 (const default))
1613 (boolean)))))
1616 (defcustom org-insert-heading-respect-content nil
1617 "Non-nil means insert new headings after the current subtree.
1618 When nil, the new heading is created directly after the current line.
1619 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1620 this variable on for the duration of the command."
1621 :group 'org-structure
1622 :type 'boolean)
1624 (defcustom org-blank-before-new-entry '((heading . auto)
1625 (plain-list-item . auto))
1626 "Should `org-insert-heading' leave a blank line before new heading/item?
1627 The value is an alist, with `heading' and `plain-list-item' as CAR,
1628 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1629 which case Org will look at the surrounding headings/items and try to
1630 make an intelligent decision whether to insert a blank line or not.
1632 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1633 the setting here is ignored and no empty line is inserted to avoid breaking
1634 the list structure."
1635 :group 'org-edit-structure
1636 :type '(list
1637 (cons (const heading)
1638 (choice (const :tag "Never" nil)
1639 (const :tag "Always" t)
1640 (const :tag "Auto" auto)))
1641 (cons (const plain-list-item)
1642 (choice (const :tag "Never" nil)
1643 (const :tag "Always" t)
1644 (const :tag "Auto" auto)))))
1646 (defcustom org-insert-heading-hook nil
1647 "Hook being run after inserting a new heading."
1648 :group 'org-edit-structure
1649 :type 'hook)
1651 (defcustom org-enable-fixed-width-editor t
1652 "Non-nil means lines starting with \":\" are treated as fixed-width.
1653 This currently only means they are never auto-wrapped.
1654 When nil, such lines will be treated like ordinary lines."
1655 :group 'org-edit-structure
1656 :type 'boolean)
1658 (defcustom org-goto-auto-isearch t
1659 "Non-nil means typing characters in `org-goto' starts incremental search.
1660 When nil, you can use these keybindings to navigate the buffer:
1662 q Quit the org-goto interface
1663 n Go to the next visible heading
1664 p Go to the previous visible heading
1665 f Go one heading forward on same level
1666 b Go one heading backward on same level
1667 u Go one heading up"
1668 :group 'org-edit-structure
1669 :type 'boolean)
1671 (defgroup org-sparse-trees nil
1672 "Options concerning sparse trees in Org-mode."
1673 :tag "Org Sparse Trees"
1674 :group 'org-structure)
1676 (defcustom org-highlight-sparse-tree-matches t
1677 "Non-nil means highlight all matches that define a sparse tree.
1678 The highlights will automatically disappear the next time the buffer is
1679 changed by an edit command."
1680 :group 'org-sparse-trees
1681 :type 'boolean)
1683 (defcustom org-remove-highlights-with-change t
1684 "Non-nil means any change to the buffer will remove temporary highlights.
1685 \\<org-mode-map>\
1686 Such highlights are created by `org-occur' and `org-clock-display'.
1687 When nil, `\\[org-ctrl-c-ctrl-c]' needs to be used \
1688 to get rid of the highlights.
1689 The highlights created by `org-toggle-latex-fragment' always need
1690 `\\[org-toggle-latex-fragment]' to be removed."
1691 :group 'org-sparse-trees
1692 :group 'org-time
1693 :type 'boolean)
1696 (defcustom org-occur-hook '(org-first-headline-recenter)
1697 "Hook that is run after `org-occur' has constructed a sparse tree.
1698 This can be used to recenter the window to show as much of the structure
1699 as possible."
1700 :group 'org-sparse-trees
1701 :type 'hook)
1703 (defgroup org-imenu-and-speedbar nil
1704 "Options concerning imenu and speedbar in Org-mode."
1705 :tag "Org Imenu and Speedbar"
1706 :group 'org-structure)
1708 (defcustom org-imenu-depth 2
1709 "The maximum level for Imenu access to Org-mode headlines.
1710 This also applied for speedbar access."
1711 :group 'org-imenu-and-speedbar
1712 :type 'integer)
1714 (defgroup org-table nil
1715 "Options concerning tables in Org-mode."
1716 :tag "Org Table"
1717 :group 'org)
1719 (defcustom org-enable-table-editor 'optimized
1720 "Non-nil means lines starting with \"|\" are handled by the table editor.
1721 When nil, such lines will be treated like ordinary lines.
1723 When equal to the symbol `optimized', the table editor will be optimized to
1724 do the following:
1725 - Automatic overwrite mode in front of whitespace in table fields.
1726 This makes the structure of the table stay in tact as long as the edited
1727 field does not exceed the column width.
1728 - Minimize the number of realigns. Normally, the table is aligned each time
1729 TAB or RET are pressed to move to another field. With optimization this
1730 happens only if changes to a field might have changed the column width.
1731 Optimization requires replacing the functions `self-insert-command',
1732 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1733 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1734 very good at guessing when a re-align will be necessary, but you can always
1735 force one with \\[org-ctrl-c-ctrl-c].
1737 If you would like to use the optimized version in Org-mode, but the
1738 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1740 This variable can be used to turn on and off the table editor during a session,
1741 but in order to toggle optimization, a restart is required.
1743 See also the variable `org-table-auto-blank-field'."
1744 :group 'org-table
1745 :type '(choice
1746 (const :tag "off" nil)
1747 (const :tag "on" t)
1748 (const :tag "on, optimized" optimized)))
1750 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1751 (version<= emacs-version "24.1"))
1752 "Non-nil means cluster self-insert commands for undo when possible.
1753 If this is set, then, like in the Emacs command loop, 20 consecutive
1754 characters will be undone together.
1755 This is configurable, because there is some impact on typing performance."
1756 :group 'org-table
1757 :type 'boolean)
1759 (defcustom org-table-tab-recognizes-table.el t
1760 "Non-nil means TAB will automatically notice a table.el table.
1761 When it sees such a table, it moves point into it and - if necessary -
1762 calls `table-recognize-table'."
1763 :group 'org-table-editing
1764 :type 'boolean)
1766 (defgroup org-link nil
1767 "Options concerning links in Org-mode."
1768 :tag "Org Link"
1769 :group 'org)
1771 (defvar org-link-abbrev-alist-local nil
1772 "Buffer-local version of `org-link-abbrev-alist', which see.
1773 The value of this is taken from the #+LINK lines.")
1774 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1776 (defcustom org-link-abbrev-alist nil
1777 "Alist of link abbreviations.
1778 The car of each element is a string, to be replaced at the start of a link.
1779 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1780 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1782 [[linkkey:tag][description]]
1784 The `linkkey' must be a word word, starting with a letter, followed
1785 by letters, numbers, `-' or `_'.
1787 If REPLACE is a string, the tag will simply be appended to create the link.
1788 If the string contains \"%s\", the tag will be inserted there. If the string
1789 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1790 at that point (see the function `url-hexify-string'). If the string contains
1791 the specifier \"%(my-function)\", then the custom function `my-function' will
1792 be invoked: this function takes the tag as its only argument and must return
1793 a string.
1795 REPLACE may also be a function that will be called with the tag as the
1796 only argument to create the link, which should be returned as a string.
1798 See the manual for examples."
1799 :group 'org-link
1800 :type '(repeat
1801 (cons
1802 (string :tag "Protocol")
1803 (choice
1804 (string :tag "Format")
1805 (function)))))
1807 (defcustom org-descriptive-links t
1808 "Non-nil means Org will display descriptive links.
1809 E.g. [[http://orgmode.org][Org website]] will be displayed as
1810 \"Org Website\", hiding the link itself and just displaying its
1811 description. When set to nil, Org will display the full links
1812 literally.
1814 You can interactively set the value of this variable by calling
1815 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1816 :group 'org-link
1817 :type 'boolean)
1819 (defcustom org-link-file-path-type 'adaptive
1820 "How the path name in file links should be stored.
1821 Valid values are:
1823 relative Relative to the current directory, i.e. the directory of the file
1824 into which the link is being inserted.
1825 absolute Absolute path, if possible with ~ for home directory.
1826 noabbrev Absolute path, no abbreviation of home directory.
1827 adaptive Use relative path for files in the current directory and sub-
1828 directories of it. For other files, use an absolute path."
1829 :group 'org-link
1830 :type '(choice
1831 (const relative)
1832 (const absolute)
1833 (const noabbrev)
1834 (const adaptive)))
1836 (defvaralias 'org-activate-links 'org-highlight-links)
1837 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1838 "Types of links that should be highlighted in Org-mode files.
1840 This is a list of symbols, each one of them leading to the
1841 highlighting of a certain link type.
1843 You can still open links that are not highlighted.
1845 In principle, it does not hurt to turn on highlighting for all
1846 link types. There may be a small gain when turning off unused
1847 link types. The types are:
1849 bracket The recommended [[link][description]] or [[link]] links with hiding.
1850 angle Links in angular brackets that may contain whitespace like
1851 <bbdb:Carsten Dominik>.
1852 plain Plain links in normal text, no whitespace, like http://google.com.
1853 radio Text that is matched by a radio target, see manual for details.
1854 tag Tag settings in a headline (link to tag search).
1855 date Time stamps (link to calendar).
1856 footnote Footnote labels.
1858 If you set this variable during an Emacs session, use `org-mode-restart'
1859 in the Org buffer so that the change takes effect."
1860 :group 'org-link
1861 :group 'org-appearance
1862 :type '(set :greedy t
1863 (const :tag "Double bracket links" bracket)
1864 (const :tag "Angular bracket links" angle)
1865 (const :tag "Plain text links" plain)
1866 (const :tag "Radio target matches" radio)
1867 (const :tag "Tags" tag)
1868 (const :tag "Timestamps" date)
1869 (const :tag "Footnotes" footnote)))
1871 (defcustom org-make-link-description-function nil
1872 "Function to use for generating link descriptions from links.
1873 When nil, the link location will be used. This function must take
1874 two parameters: the first one is the link, the second one is the
1875 description generated by `org-insert-link'. The function should
1876 return the description to use."
1877 :group 'org-link
1878 :type '(choice (const nil) (function)))
1880 (defgroup org-link-store nil
1881 "Options concerning storing links in Org-mode."
1882 :tag "Org Store Link"
1883 :group 'org-link)
1885 (defcustom org-url-hexify-p t
1886 "When non-nil, hexify URL when creating a link."
1887 :type 'boolean
1888 :version "24.3"
1889 :group 'org-link-store)
1891 (defcustom org-email-link-description-format "Email %c: %.30s"
1892 "Format of the description part of a link to an email or usenet message.
1893 The following %-escapes will be replaced by corresponding information:
1895 %F full \"From\" field
1896 %f name, taken from \"From\" field, address if no name
1897 %T full \"To\" field
1898 %t first name in \"To\" field, address if no name
1899 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1900 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1901 %s subject
1902 %d date
1903 %m message-id.
1905 You may use normal field width specification between the % and the letter.
1906 This is for example useful to limit the length of the subject.
1908 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1909 :group 'org-link-store
1910 :type 'string)
1912 (defcustom org-from-is-user-regexp
1913 (let (r1 r2)
1914 (when (and user-mail-address (not (string= user-mail-address "")))
1915 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1916 (when (and user-full-name (not (string= user-full-name "")))
1917 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1918 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1919 "Regexp matched against the \"From:\" header of an email or usenet message.
1920 It should match if the message is from the user him/herself."
1921 :group 'org-link-store
1922 :type 'regexp)
1924 (defcustom org-context-in-file-links t
1925 "Non-nil means file links from `org-store-link' contain context.
1926 A search string will be added to the file name with :: as separator and
1927 used to find the context when the link is activated by the command
1928 `org-open-at-point'. When this option is t, the entire active region
1929 will be placed in the search string of the file link. If set to a
1930 positive integer, only the first n lines of context will be stored.
1932 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1933 negates this setting for the duration of the command."
1934 :group 'org-link-store
1935 :type '(choice boolean integer))
1937 (defcustom org-keep-stored-link-after-insertion nil
1938 "Non-nil means keep link in list for entire session.
1940 The command `org-store-link' adds a link pointing to the current
1941 location to an internal list. These links accumulate during a session.
1942 The command `org-insert-link' can be used to insert links into any
1943 Org-mode file (offering completion for all stored links). When this
1944 option is nil, every link which has been inserted once using \\[org-insert-link]
1945 will be removed from the list, to make completing the unused links
1946 more efficient."
1947 :group 'org-link-store
1948 :type 'boolean)
1950 (defgroup org-link-follow nil
1951 "Options concerning following links in Org-mode."
1952 :tag "Org Follow Link"
1953 :group 'org-link)
1955 (defcustom org-link-translation-function nil
1956 "Function to translate links with different syntax to Org syntax.
1957 This can be used to translate links created for example by the Planner
1958 or emacs-wiki packages to Org syntax.
1959 The function must accept two parameters, a TYPE containing the link
1960 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1961 which is everything after the link protocol. It should return a cons
1962 with possibly modified values of type and path.
1963 Org contains a function for this, so if you set this variable to
1964 `org-translate-link-from-planner', you should be able follow many
1965 links created by planner."
1966 :group 'org-link-follow
1967 :type '(choice (const nil) (function)))
1969 (defcustom org-follow-link-hook nil
1970 "Hook that is run after a link has been followed."
1971 :group 'org-link-follow
1972 :type 'hook)
1974 (defcustom org-tab-follows-link nil
1975 "Non-nil means on links TAB will follow the link.
1976 Needs to be set before org.el is loaded.
1977 This really should not be used, it does not make sense, and the
1978 implementation is bad."
1979 :group 'org-link-follow
1980 :type 'boolean)
1982 (defcustom org-return-follows-link nil
1983 "Non-nil means on links RET will follow the link.
1984 In tables, the special behavior of RET has precedence."
1985 :group 'org-link-follow
1986 :type 'boolean)
1988 (defcustom org-mouse-1-follows-link
1989 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1990 "Non-nil means mouse-1 on a link will follow the link.
1991 A longer mouse click will still set point. Does not work on XEmacs.
1992 Needs to be set before org.el is loaded."
1993 :group 'org-link-follow
1994 :version "24.4"
1995 :package-version '(Org . "8.3")
1996 :type '(choice
1997 (const :tag "A double click follows the link" double)
1998 (const :tag "Unconditionally follow the link with mouse-1" t)
1999 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
2001 (defcustom org-mark-ring-length 4
2002 "Number of different positions to be recorded in the ring.
2003 Changing this requires a restart of Emacs to work correctly."
2004 :group 'org-link-follow
2005 :type 'integer)
2007 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2008 "Non-nil means internal links in Org files must exactly match a headline.
2009 When nil, the link search tries to match a phrase with all words
2010 in the search text."
2011 :group 'org-link-follow
2012 :version "24.1"
2013 :type '(choice
2014 (const :tag "Use fuzzy text search" nil)
2015 (const :tag "Match only exact headline" t)
2016 (const :tag "Match exact headline or query to create it"
2017 query-to-create)))
2019 (defcustom org-link-frame-setup
2020 '((vm . vm-visit-folder-other-frame)
2021 (vm-imap . vm-visit-imap-folder-other-frame)
2022 (gnus . org-gnus-no-new-news)
2023 (file . find-file-other-window)
2024 (wl . wl-other-frame))
2025 "Setup the frame configuration for following links.
2026 When following a link with Emacs, it may often be useful to display
2027 this link in another window or frame. This variable can be used to
2028 set this up for the different types of links.
2029 For VM, use any of
2030 `vm-visit-folder'
2031 `vm-visit-folder-other-window'
2032 `vm-visit-folder-other-frame'
2033 For Gnus, use any of
2034 `gnus'
2035 `gnus-other-frame'
2036 `org-gnus-no-new-news'
2037 For FILE, use any of
2038 `find-file'
2039 `find-file-other-window'
2040 `find-file-other-frame'
2041 For Wanderlust use any of
2042 `wl'
2043 `wl-other-frame'
2044 For the calendar, use the variable `calendar-setup'.
2045 For BBDB, it is currently only possible to display the matches in
2046 another window."
2047 :group 'org-link-follow
2048 :type '(list
2049 (cons (const vm)
2050 (choice
2051 (const vm-visit-folder)
2052 (const vm-visit-folder-other-window)
2053 (const vm-visit-folder-other-frame)))
2054 (cons (const vm-imap)
2055 (choice
2056 (const vm-visit-imap-folder)
2057 (const vm-visit-imap-folder-other-window)
2058 (const vm-visit-imap-folder-other-frame)))
2059 (cons (const gnus)
2060 (choice
2061 (const gnus)
2062 (const gnus-other-frame)
2063 (const org-gnus-no-new-news)))
2064 (cons (const file)
2065 (choice
2066 (const find-file)
2067 (const find-file-other-window)
2068 (const find-file-other-frame)))
2069 (cons (const wl)
2070 (choice
2071 (const wl)
2072 (const wl-other-frame)))))
2074 (defcustom org-display-internal-link-with-indirect-buffer nil
2075 "Non-nil means use indirect buffer to display infile links.
2076 Activating internal links (from one location in a file to another location
2077 in the same file) normally just jumps to the location. When the link is
2078 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2079 is displayed in
2080 another window. When this option is set, the other window actually displays
2081 an indirect buffer clone of the current buffer, to avoid any visibility
2082 changes to the current buffer."
2083 :group 'org-link-follow
2084 :type 'boolean)
2086 (defcustom org-open-non-existing-files nil
2087 "Non-nil means `org-open-file' will open non-existing files.
2088 When nil, an error will be generated.
2089 This variable applies only to external applications because they
2090 might choke on non-existing files. If the link is to a file that
2091 will be opened in Emacs, the variable is ignored."
2092 :group 'org-link-follow
2093 :type 'boolean)
2095 (defcustom org-open-directory-means-index-dot-org nil
2096 "Non-nil means a link to a directory really means to index.org.
2097 When nil, following a directory link will run dired or open a finder/explorer
2098 window on that directory."
2099 :group 'org-link-follow
2100 :type 'boolean)
2102 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2103 "Non-nil means ask for confirmation before executing shell links.
2104 Shell links can be dangerous: just think about a link
2106 [[shell:rm -rf ~/*][Google Search]]
2108 This link would show up in your Org-mode document as \"Google Search\",
2109 but really it would remove your entire home directory.
2110 Therefore we advise against setting this variable to nil.
2111 Just change it to `y-or-n-p' if you want to confirm with a
2112 single keystroke rather than having to type \"yes\"."
2113 :group 'org-link-follow
2114 :type '(choice
2115 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2116 (const :tag "with y-or-n (faster)" y-or-n-p)
2117 (const :tag "no confirmation (dangerous)" nil)))
2118 (put 'org-confirm-shell-link-function
2119 'safe-local-variable
2120 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2122 (defcustom org-confirm-shell-link-not-regexp ""
2123 "A regexp to skip confirmation for shell links."
2124 :group 'org-link-follow
2125 :version "24.1"
2126 :type 'regexp)
2128 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2129 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2130 Elisp links can be dangerous: just think about a link
2132 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2134 This link would show up in your Org-mode document as \"Google Search\",
2135 but really it would remove your entire home directory.
2136 Therefore we advise against setting this variable to nil.
2137 Just change it to `y-or-n-p' if you want to confirm with a
2138 single keystroke rather than having to type \"yes\"."
2139 :group 'org-link-follow
2140 :type '(choice
2141 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2142 (const :tag "with y-or-n (faster)" y-or-n-p)
2143 (const :tag "no confirmation (dangerous)" nil)))
2144 (put 'org-confirm-shell-link-function
2145 'safe-local-variable
2146 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2148 (defcustom org-confirm-elisp-link-not-regexp ""
2149 "A regexp to skip confirmation for Elisp links."
2150 :group 'org-link-follow
2151 :version "24.1"
2152 :type 'regexp)
2154 (defconst org-file-apps-defaults-gnu
2155 '((remote . emacs)
2156 (system . mailcap)
2157 (t . mailcap))
2158 "Default file applications on a UNIX or GNU/Linux system.
2159 See `org-file-apps'.")
2161 (defconst org-file-apps-defaults-macosx
2162 '((remote . emacs)
2163 (t . "open %s")
2164 (system . "open %s")
2165 ("ps.gz" . "gv %s")
2166 ("eps.gz" . "gv %s")
2167 ("dvi" . "xdvi %s")
2168 ("fig" . "xfig %s"))
2169 "Default file applications on a MacOS X system.
2170 The system \"open\" is known as a default, but we use X11 applications
2171 for some files for which the OS does not have a good default.
2172 See `org-file-apps'.")
2174 (defconst org-file-apps-defaults-windowsnt
2175 (list
2176 '(remote . emacs)
2177 (cons t
2178 (list (if (featurep 'xemacs)
2179 'mswindows-shell-execute
2180 'w32-shell-execute)
2181 "open" 'file))
2182 (cons 'system
2183 (list (if (featurep 'xemacs)
2184 'mswindows-shell-execute
2185 'w32-shell-execute)
2186 "open" 'file)))
2187 "Default file applications on a Windows NT system.
2188 The system \"open\" is used for most files.
2189 See `org-file-apps'.")
2191 (defcustom org-file-apps
2192 '((auto-mode . emacs)
2193 ("\\.mm\\'" . default)
2194 ("\\.x?html?\\'" . default)
2195 ("\\.pdf\\'" . default))
2196 "External applications for opening `file:path' items in a document.
2197 Org-mode uses system defaults for different file types, but
2198 you can use this variable to set the application for a given file
2199 extension. The entries in this list are cons cells where the car identifies
2200 files and the cdr the corresponding command. Possible values for the
2201 file identifier are
2202 \"string\" A string as a file identifier can be interpreted in different
2203 ways, depending on its contents:
2205 - Alphanumeric characters only:
2206 Match links with this file extension.
2207 Example: (\"pdf\" . \"evince %s\")
2208 to open PDFs with evince.
2210 - Regular expression: Match links where the
2211 filename matches the regexp. If you want to
2212 use groups here, use shy groups.
2214 Example: (\"\\.x?html\\\\='\" . \"firefox %s\")
2215 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2216 to open *.html and *.xhtml with firefox.
2218 - Regular expression which contains (non-shy) groups:
2219 Match links where the whole link, including \"::\", and
2220 anything after that, matches the regexp.
2221 In a custom command string, %1, %2, etc. are replaced with
2222 the parts of the link that were matched by the groups.
2223 For backwards compatibility, if a command string is given
2224 that does not use any of the group matches, this case is
2225 handled identically to the second one (i.e. match against
2226 file name only).
2227 In a custom lisp form, you can access the group matches with
2228 (match-string n link).
2230 Example: (\"\\.pdf::\\(\\d+\\)\\\\='\" . \"evince -p %1 %s\")
2231 to open [[file:document.pdf::5]] with evince at page 5.
2233 `directory' Matches a directory
2234 `remote' Matches a remote file, accessible through tramp or efs.
2235 Remote files most likely should be visited through Emacs
2236 because external applications cannot handle such paths.
2237 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2238 so all files Emacs knows how to handle. Using this with
2239 command `emacs' will open most files in Emacs. Beware that this
2240 will also open html files inside Emacs, unless you add
2241 (\"html\" . default) to the list as well.
2242 t Default for files not matched by any of the other options.
2243 `system' The system command to open files, like `open' on Windows
2244 and Mac OS X, and mailcap under GNU/Linux. This is the command
2245 that will be selected if you call `C-c C-o' with a double
2246 \\[universal-argument] \\[universal-argument] prefix.
2248 Possible values for the command are:
2249 `emacs' The file will be visited by the current Emacs process.
2250 `default' Use the default application for this file type, which is the
2251 association for t in the list, most likely in the system-specific
2252 part.
2253 This can be used to overrule an unwanted setting in the
2254 system-specific variable.
2255 `system' Use the system command for opening files, like \"open\".
2256 This command is specified by the entry whose car is `system'.
2257 Most likely, the system-specific version of this variable
2258 does define this command, but you can overrule/replace it
2259 here.
2260 string A command to be executed by a shell; %s will be replaced
2261 by the path to the file.
2262 sexp A Lisp form which will be evaluated. The file path will
2263 be available in the Lisp variable `file'.
2264 For more examples, see the system specific constants
2265 `org-file-apps-defaults-macosx'
2266 `org-file-apps-defaults-windowsnt'
2267 `org-file-apps-defaults-gnu'."
2268 :group 'org-link-follow
2269 :type '(repeat
2270 (cons (choice :value ""
2271 (string :tag "Extension")
2272 (const :tag "System command to open files" system)
2273 (const :tag "Default for unrecognized files" t)
2274 (const :tag "Remote file" remote)
2275 (const :tag "Links to a directory" directory)
2276 (const :tag "Any files that have Emacs modes"
2277 auto-mode))
2278 (choice :value ""
2279 (const :tag "Visit with Emacs" emacs)
2280 (const :tag "Use default" default)
2281 (const :tag "Use the system command" system)
2282 (string :tag "Command")
2283 (sexp :tag "Lisp form")))))
2285 (defcustom org-doi-server-url "http://dx.doi.org/"
2286 "The URL of the DOI server."
2287 :type 'string
2288 :version "24.3"
2289 :group 'org-link-follow)
2291 (defgroup org-refile nil
2292 "Options concerning refiling entries in Org-mode."
2293 :tag "Org Refile"
2294 :group 'org)
2296 (defcustom org-directory "~/org"
2297 "Directory with Org files.
2298 This is just a default location to look for Org files. There is no need
2299 at all to put your files into this directory. It is used in the
2300 following situations:
2302 1. When a capture template specifies a target file that is not an
2303 absolute path. The path will then be interpreted relative to
2304 `org-directory'
2305 2. When the value of variable `org-agenda-files' is a single file, any
2306 relative paths in this file will be taken as relative to
2307 `org-directory'."
2308 :group 'org-refile
2309 :group 'org-capture
2310 :type 'directory)
2312 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2313 "Default target for storing notes.
2314 Used as a fall back file for org-capture.el, for templates that
2315 do not specify a target file."
2316 :group 'org-refile
2317 :group 'org-capture
2318 :type 'file)
2320 (defcustom org-goto-interface 'outline
2321 "The default interface to be used for `org-goto'.
2322 Allowed values are:
2323 outline The interface shows an outline of the relevant file
2324 and the correct heading is found by moving through
2325 the outline or by searching with incremental search.
2326 outline-path-completion Headlines in the current buffer are offered via
2327 completion. This is the interface also used by
2328 the refile command."
2329 :group 'org-refile
2330 :type '(choice
2331 (const :tag "Outline" outline)
2332 (const :tag "Outline-path-completion" outline-path-completion)))
2334 (defcustom org-goto-max-level 5
2335 "Maximum target level when running `org-goto' with refile interface."
2336 :group 'org-refile
2337 :type 'integer)
2339 (defcustom org-reverse-note-order nil
2340 "Non-nil means store new notes at the beginning of a file or entry.
2341 When nil, new notes will be filed to the end of a file or entry.
2342 This can also be a list with cons cells of regular expressions that
2343 are matched against file names, and values."
2344 :group 'org-capture
2345 :group 'org-refile
2346 :type '(choice
2347 (const :tag "Reverse always" t)
2348 (const :tag "Reverse never" nil)
2349 (repeat :tag "By file name regexp"
2350 (cons regexp boolean))))
2352 (defcustom org-log-refile nil
2353 "Information to record when a task is refiled.
2355 Possible values are:
2357 nil Don't add anything
2358 time Add a time stamp to the task
2359 note Prompt for a note and add it with template `org-log-note-headings'
2361 This option can also be set with on a per-file-basis with
2363 #+STARTUP: nologrefile
2364 #+STARTUP: logrefile
2365 #+STARTUP: lognoterefile
2367 You can have local logging settings for a subtree by setting the LOGGING
2368 property to one or more of these keywords.
2370 When bulk-refiling from the agenda, the value `note' is forbidden and
2371 will temporarily be changed to `time'."
2372 :group 'org-refile
2373 :group 'org-progress
2374 :version "24.1"
2375 :type '(choice
2376 (const :tag "No logging" nil)
2377 (const :tag "Record timestamp" time)
2378 (const :tag "Record timestamp with note." note)))
2380 (defcustom org-refile-targets nil
2381 "Targets for refiling entries with \\[org-refile].
2382 This is a list of cons cells. Each cell contains:
2383 - a specification of the files to be considered, either a list of files,
2384 or a symbol whose function or variable value will be used to retrieve
2385 a file name or a list of file names. If you use `org-agenda-files' for
2386 that, all agenda files will be scanned for targets. Nil means consider
2387 headings in the current buffer.
2388 - A specification of how to find candidate refile targets. This may be
2389 any of:
2390 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2391 This tag has to be present in all target headlines, inheritance will
2392 not be considered.
2393 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2394 todo keyword.
2395 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2396 headlines that are refiling targets.
2397 - a cons cell (:level . N). Any headline of level N is considered a target.
2398 Note that, when `org-odd-levels-only' is set, level corresponds to
2399 order in hierarchy, not to the number of stars.
2400 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2401 Note that, when `org-odd-levels-only' is set, level corresponds to
2402 order in hierarchy, not to the number of stars.
2404 Each element of this list generates a set of possible targets.
2405 The union of these sets is presented (with completion) to
2406 the user by `org-refile'.
2408 You can set the variable `org-refile-target-verify-function' to a function
2409 to verify each headline found by the simple criteria above.
2411 When this variable is nil, all top-level headlines in the current buffer
2412 are used, equivalent to the value `((nil . (:level . 1))'."
2413 :group 'org-refile
2414 :type '(repeat
2415 (cons
2416 (choice :value org-agenda-files
2417 (const :tag "All agenda files" org-agenda-files)
2418 (const :tag "Current buffer" nil)
2419 (function) (variable) (file))
2420 (choice :tag "Identify target headline by"
2421 (cons :tag "Specific tag" (const :value :tag) (string))
2422 (cons :tag "TODO keyword" (const :value :todo) (string))
2423 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2424 (cons :tag "Level number" (const :value :level) (integer))
2425 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2427 (defcustom org-refile-target-verify-function nil
2428 "Function to verify if the headline at point should be a refile target.
2429 The function will be called without arguments, with point at the
2430 beginning of the headline. It should return t and leave point
2431 where it is if the headline is a valid target for refiling.
2433 If the target should not be selected, the function must return nil.
2434 In addition to this, it may move point to a place from where the search
2435 should be continued. For example, the function may decide that the entire
2436 subtree of the current entry should be excluded and move point to the end
2437 of the subtree."
2438 :group 'org-refile
2439 :type '(choice
2440 (const nil)
2441 (function)))
2443 (defcustom org-refile-use-cache nil
2444 "Non-nil means cache refile targets to speed up the process.
2445 \\<org-mode-map>\
2446 The cache for a particular file will be updated automatically when
2447 the buffer has been killed, or when any of the marker used for flagging
2448 refile targets no longer points at a live buffer.
2449 If you have added new entries to a buffer that might themselves be targets,
2450 you need to clear the cache manually by pressing `C-0 \\[org-refile]' or,
2451 if you find that easier, \
2452 `\\[universal-argument] \\[universal-argument] \\[universal-argument] \
2453 \\[org-refile]'."
2454 :group 'org-refile
2455 :version "24.1"
2456 :type 'boolean)
2458 (defcustom org-refile-use-outline-path nil
2459 "Non-nil means provide refile targets as paths.
2460 So a level 3 headline will be available as level1/level2/level3.
2462 When the value is `file', also include the file name (without directory)
2463 into the path. In this case, you can also stop the completion after
2464 the file name, to get entries inserted as top level in the file.
2466 When `full-file-path', include the full file path."
2467 :group 'org-refile
2468 :type '(choice
2469 (const :tag "Not" nil)
2470 (const :tag "Yes" t)
2471 (const :tag "Start with file name" file)
2472 (const :tag "Start with full file path" full-file-path)))
2474 (defcustom org-outline-path-complete-in-steps t
2475 "Non-nil means complete the outline path in hierarchical steps.
2476 When Org-mode uses the refile interface to select an outline path
2477 \(see variable `org-refile-use-outline-path'), the completion of
2478 the path can be done in a single go, or it can be done in steps down
2479 the headline hierarchy. Going in steps is probably the best if you
2480 do not use a special completion package like `ido' or `icicles'.
2481 However, when using these packages, going in one step can be very
2482 fast, while still showing the whole path to the entry."
2483 :group 'org-refile
2484 :type 'boolean)
2486 (defcustom org-refile-allow-creating-parent-nodes nil
2487 "Non-nil means allow the creation of new nodes as refile targets.
2488 New nodes are then created by adding \"/new node name\" to the completion
2489 of an existing node. When the value of this variable is `confirm',
2490 new node creation must be confirmed by the user (recommended).
2491 When nil, the completion must match an existing entry.
2493 Note that, if the new heading is not seen by the criteria
2494 listed in `org-refile-targets', multiple instances of the same
2495 heading would be created by trying again to file under the new
2496 heading."
2497 :group 'org-refile
2498 :type '(choice
2499 (const :tag "Never" nil)
2500 (const :tag "Always" t)
2501 (const :tag "Prompt for confirmation" confirm)))
2503 (defcustom org-refile-active-region-within-subtree nil
2504 "Non-nil means also refile active region within a subtree.
2506 By default `org-refile' doesn't allow refiling regions if they
2507 don't contain a set of subtrees, but it might be convenient to
2508 do so sometimes: in that case, the first line of the region is
2509 converted to a headline before refiling."
2510 :group 'org-refile
2511 :version "24.1"
2512 :type 'boolean)
2514 (defgroup org-todo nil
2515 "Options concerning TODO items in Org-mode."
2516 :tag "Org TODO"
2517 :group 'org)
2519 (defgroup org-progress nil
2520 "Options concerning Progress logging in Org-mode."
2521 :tag "Org Progress"
2522 :group 'org-time)
2524 (defvar org-todo-interpretation-widgets
2525 '((:tag "Sequence (cycling hits every state)" sequence)
2526 (:tag "Type (cycling directly to DONE)" type))
2527 "The available interpretation symbols for customizing `org-todo-keywords'.
2528 Interested libraries should add to this list.")
2530 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2531 "List of TODO entry keyword sequences and their interpretation.
2532 \\<org-mode-map>This is a list of sequences.
2534 Each sequence starts with a symbol, either `sequence' or `type',
2535 indicating if the keywords should be interpreted as a sequence of
2536 action steps, or as different types of TODO items. The first
2537 keywords are states requiring action - these states will select a headline
2538 for inclusion into the global TODO list Org-mode produces. If one of
2539 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2540 signify that no further action is necessary. If \"|\" is not found,
2541 the last keyword is treated as the only DONE state of the sequence.
2543 The command \\[org-todo] cycles an entry through these states, and one
2544 additional state where no keyword is present. For details about this
2545 cycling, see the manual.
2547 TODO keywords and interpretation can also be set on a per-file basis with
2548 the special #+SEQ_TODO and #+TYP_TODO lines.
2550 Each keyword can optionally specify a character for fast state selection
2551 \(in combination with the variable `org-use-fast-todo-selection')
2552 and specifiers for state change logging, using the same syntax that
2553 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2554 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2555 indicates to record a time stamp each time this state is selected.
2557 Each keyword may also specify if a timestamp or a note should be
2558 recorded when entering or leaving the state, by adding additional
2559 characters in the parenthesis after the keyword. This looks like this:
2560 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2561 record only the time of the state change. With X and Y being either
2562 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2563 Y when leaving the state if and only if the *target* state does not
2564 define X. You may omit any of the fast-selection key or X or /Y,
2565 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2567 For backward compatibility, this variable may also be just a list
2568 of keywords. In this case the interpretation (sequence or type) will be
2569 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2570 :group 'org-todo
2571 :group 'org-keywords
2572 :type '(choice
2573 (repeat :tag "Old syntax, just keywords"
2574 (string :tag "Keyword"))
2575 (repeat :tag "New syntax"
2576 (cons
2577 (choice
2578 :tag "Interpretation"
2579 ;;Quick and dirty way to see
2580 ;;`org-todo-interpretations'. This takes the
2581 ;;place of item arguments
2582 :convert-widget
2583 (lambda (widget)
2584 (widget-put widget
2585 :args (mapcar
2586 (lambda (x)
2587 (widget-convert
2588 (cons 'const x)))
2589 org-todo-interpretation-widgets))
2590 widget))
2591 (repeat
2592 (string :tag "Keyword"))))))
2594 (defvar org-todo-keywords-1 nil
2595 "All TODO and DONE keywords active in a buffer.")
2596 (make-variable-buffer-local 'org-todo-keywords-1)
2597 (defvar org-todo-keywords-for-agenda nil)
2598 (defvar org-done-keywords-for-agenda nil)
2599 (defvar org-todo-keyword-alist-for-agenda nil)
2600 (defvar org-tag-alist-for-agenda nil
2601 "Alist of all tags from all agenda files.")
2602 (defvar org-tag-groups-alist-for-agenda nil
2603 "Alist of all groups tags from all current agenda files.")
2604 (defvar org-tag-groups-alist nil)
2605 (make-variable-buffer-local 'org-tag-groups-alist)
2606 (defvar org-agenda-contributing-files nil)
2607 (defvar org-not-done-keywords nil)
2608 (make-variable-buffer-local 'org-not-done-keywords)
2609 (defvar org-done-keywords nil)
2610 (make-variable-buffer-local 'org-done-keywords)
2611 (defvar org-todo-heads nil)
2612 (make-variable-buffer-local 'org-todo-heads)
2613 (defvar org-todo-sets nil)
2614 (make-variable-buffer-local 'org-todo-sets)
2615 (defvar org-todo-log-states nil)
2616 (make-variable-buffer-local 'org-todo-log-states)
2617 (defvar org-todo-kwd-alist nil)
2618 (make-variable-buffer-local 'org-todo-kwd-alist)
2619 (defvar org-todo-key-alist nil)
2620 (make-variable-buffer-local 'org-todo-key-alist)
2621 (defvar org-todo-key-trigger nil)
2622 (make-variable-buffer-local 'org-todo-key-trigger)
2624 (defcustom org-todo-interpretation 'sequence
2625 "Controls how TODO keywords are interpreted.
2626 This variable is in principle obsolete and is only used for
2627 backward compatibility, if the interpretation of todo keywords is
2628 not given already in `org-todo-keywords'. See that variable for
2629 more information."
2630 :group 'org-todo
2631 :group 'org-keywords
2632 :type '(choice (const sequence)
2633 (const type)))
2635 (defcustom org-use-fast-todo-selection t
2636 "\\<org-mode-map>\
2637 Non-nil means use the fast todo selection scheme with \\[org-todo].
2638 This variable describes if and under what circumstances the cycling
2639 mechanism for TODO keywords will be replaced by a single-key, direct
2640 selection scheme.
2642 When nil, fast selection is never used.
2644 When the symbol `prefix', it will be used when `org-todo' is called
2645 with a prefix argument, i.e. `\\[universal-argument] \\[org-todo]' \
2646 in an Org-mode buffer, and
2647 `\\[universal-argument] t' in an agenda buffer.
2649 When t, fast selection is used by default. In this case, the prefix
2650 argument forces cycling instead.
2652 In all cases, the special interface is only used if access keys have
2653 actually been assigned by the user, i.e. if keywords in the configuration
2654 are followed by a letter in parenthesis, like TODO(t)."
2655 :group 'org-todo
2656 :type '(choice
2657 (const :tag "Never" nil)
2658 (const :tag "By default" t)
2659 (const :tag "Only with C-u C-c C-t" prefix)))
2661 (defcustom org-provide-todo-statistics t
2662 "Non-nil means update todo statistics after insert and toggle.
2663 ALL-HEADLINES means update todo statistics by including headlines
2664 with no TODO keyword as well, counting them as not done.
2665 A list of TODO keywords means the same, but skip keywords that are
2666 not in this list.
2667 When set to a list of two lists, the first list contains keywords
2668 to consider as TODO keywords, the second list contains keywords
2669 to consider as DONE keywords.
2671 When this is set, todo statistics is updated in the parent of the
2672 current entry each time a todo state is changed."
2673 :group 'org-todo
2674 :type '(choice
2675 (const :tag "Yes, only for TODO entries" t)
2676 (const :tag "Yes, including all entries" all-headlines)
2677 (repeat :tag "Yes, for TODOs in this list"
2678 (string :tag "TODO keyword"))
2679 (list :tag "Yes, for TODOs and DONEs in these lists"
2680 (repeat (string :tag "TODO keyword"))
2681 (repeat (string :tag "DONE keyword")))
2682 (other :tag "No TODO statistics" nil)))
2684 (defcustom org-hierarchical-todo-statistics t
2685 "Non-nil means TODO statistics covers just direct children.
2686 When nil, all entries in the subtree are considered.
2687 This has only an effect if `org-provide-todo-statistics' is set.
2688 To set this to nil for only a single subtree, use a COOKIE_DATA
2689 property and include the word \"recursive\" into the value."
2690 :group 'org-todo
2691 :type 'boolean)
2693 (defcustom org-after-todo-state-change-hook nil
2694 "Hook which is run after the state of a TODO item was changed.
2695 The new state (a string with a TODO keyword, or nil) is available in the
2696 Lisp variable `org-state'."
2697 :group 'org-todo
2698 :type 'hook)
2700 (defvar org-blocker-hook nil
2701 "Hook for functions that are allowed to block a state change.
2703 Functions in this hook should not modify the buffer.
2704 Each function gets as its single argument a property list,
2705 see `org-trigger-hook' for more information about this list.
2707 If any of the functions in this hook returns nil, the state change
2708 is blocked.")
2710 (defvar org-trigger-hook nil
2711 "Hook for functions that are triggered by a state change.
2713 Each function gets as its single argument a property list with at
2714 least the following elements:
2716 (:type type-of-change :position pos-at-entry-start
2717 :from old-state :to new-state)
2719 Depending on the type, more properties may be present.
2721 This mechanism is currently implemented for:
2723 TODO state changes
2724 ------------------
2725 :type todo-state-change
2726 :from previous state (keyword as a string), or nil, or a symbol
2727 `todo' or `done', to indicate the general type of state.
2728 :to new state, like in :from")
2730 (defcustom org-enforce-todo-dependencies nil
2731 "Non-nil means undone TODO entries will block switching the parent to DONE.
2732 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2733 be blocked if any prior sibling is not yet done.
2734 Finally, if the parent is blocked because of ordered siblings of its own,
2735 the child will also be blocked."
2736 :set (lambda (var val)
2737 (set var val)
2738 (if val
2739 (add-hook 'org-blocker-hook
2740 'org-block-todo-from-children-or-siblings-or-parent)
2741 (remove-hook 'org-blocker-hook
2742 'org-block-todo-from-children-or-siblings-or-parent)))
2743 :group 'org-todo
2744 :type 'boolean)
2746 (defcustom org-enforce-todo-checkbox-dependencies nil
2747 "Non-nil means unchecked boxes will block switching the parent to DONE.
2748 When this is nil, checkboxes have no influence on switching TODO states.
2749 When non-nil, you first need to check off all check boxes before the TODO
2750 entry can be switched to DONE.
2751 This variable needs to be set before org.el is loaded, and you need to
2752 restart Emacs after a change to make the change effective. The only way
2753 to change is while Emacs is running is through the customize interface."
2754 :set (lambda (var val)
2755 (set var val)
2756 (if val
2757 (add-hook 'org-blocker-hook
2758 'org-block-todo-from-checkboxes)
2759 (remove-hook 'org-blocker-hook
2760 'org-block-todo-from-checkboxes)))
2761 :group 'org-todo
2762 :type 'boolean)
2764 (defcustom org-treat-insert-todo-heading-as-state-change nil
2765 "Non-nil means inserting a TODO heading is treated as state change.
2766 So when the command \\[org-insert-todo-heading] is used, state change
2767 logging will apply if appropriate. When nil, the new TODO item will
2768 be inserted directly, and no logging will take place."
2769 :group 'org-todo
2770 :type 'boolean)
2772 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2773 "Non-nil means switching TODO states with S-cursor counts as state change.
2774 This is the default behavior. However, setting this to nil allows a
2775 convenient way to select a TODO state and bypass any logging associated
2776 with that."
2777 :group 'org-todo
2778 :type 'boolean)
2780 (defcustom org-todo-state-tags-triggers nil
2781 "Tag changes that should be triggered by TODO state changes.
2782 This is a list. Each entry is
2784 (state-change (tag . flag) .......)
2786 State-change can be a string with a state, and empty string to indicate the
2787 state that has no TODO keyword, or it can be one of the symbols `todo'
2788 or `done', meaning any not-done or done state, respectively."
2789 :group 'org-todo
2790 :group 'org-tags
2791 :type '(repeat
2792 (cons (choice :tag "When changing to"
2793 (const :tag "Not-done state" todo)
2794 (const :tag "Done state" done)
2795 (string :tag "State"))
2796 (repeat
2797 (cons :tag "Tag action"
2798 (string :tag "Tag")
2799 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2801 (defcustom org-log-done nil
2802 "Information to record when a task moves to the DONE state.
2804 Possible values are:
2806 nil Don't add anything, just change the keyword
2807 time Add a time stamp to the task
2808 note Prompt for a note and add it with template `org-log-note-headings'
2810 This option can also be set with on a per-file-basis with
2812 #+STARTUP: nologdone
2813 #+STARTUP: logdone
2814 #+STARTUP: lognotedone
2816 You can have local logging settings for a subtree by setting the LOGGING
2817 property to one or more of these keywords."
2818 :group 'org-todo
2819 :group 'org-progress
2820 :type '(choice
2821 (const :tag "No logging" nil)
2822 (const :tag "Record CLOSED timestamp" time)
2823 (const :tag "Record CLOSED timestamp with note." note)))
2825 ;; Normalize old uses of org-log-done.
2826 (cond
2827 ((eq org-log-done t) (setq org-log-done 'time))
2828 ((and (listp org-log-done) (memq 'done org-log-done))
2829 (setq org-log-done 'note)))
2831 (defcustom org-log-reschedule nil
2832 "Information to record when the scheduling date of a tasks is modified.
2834 Possible values are:
2836 nil Don't add anything, just change the date
2837 time Add a time stamp to the task
2838 note Prompt for a note and add it with template `org-log-note-headings'
2840 This option can also be set with on a per-file-basis with
2842 #+STARTUP: nologreschedule
2843 #+STARTUP: logreschedule
2844 #+STARTUP: lognotereschedule"
2845 :group 'org-todo
2846 :group 'org-progress
2847 :type '(choice
2848 (const :tag "No logging" nil)
2849 (const :tag "Record timestamp" time)
2850 (const :tag "Record timestamp with note." note)))
2852 (defcustom org-log-redeadline nil
2853 "Information to record when the deadline date of a tasks is modified.
2855 Possible values are:
2857 nil Don't add anything, just change the date
2858 time Add a time stamp to the task
2859 note Prompt for a note and add it with template `org-log-note-headings'
2861 This option can also be set with on a per-file-basis with
2863 #+STARTUP: nologredeadline
2864 #+STARTUP: logredeadline
2865 #+STARTUP: lognoteredeadline
2867 You can have local logging settings for a subtree by setting the LOGGING
2868 property to one or more of these keywords."
2869 :group 'org-todo
2870 :group 'org-progress
2871 :type '(choice
2872 (const :tag "No logging" nil)
2873 (const :tag "Record timestamp" time)
2874 (const :tag "Record timestamp with note." note)))
2876 (defcustom org-log-note-clock-out nil
2877 "Non-nil means record a note when clocking out of an item.
2878 This can also be configured on a per-file basis by adding one of
2879 the following lines anywhere in the buffer:
2881 #+STARTUP: lognoteclock-out
2882 #+STARTUP: nolognoteclock-out"
2883 :group 'org-todo
2884 :group 'org-progress
2885 :type 'boolean)
2887 (defcustom org-log-done-with-time t
2888 "Non-nil means the CLOSED time stamp will contain date and time.
2889 When nil, only the date will be recorded."
2890 :group 'org-progress
2891 :type 'boolean)
2893 (defcustom org-log-note-headings
2894 '((done . "CLOSING NOTE %t")
2895 (state . "State %-12s from %-12S %t")
2896 (note . "Note taken on %t")
2897 (reschedule . "Rescheduled from %S on %t")
2898 (delschedule . "Not scheduled, was %S on %t")
2899 (redeadline . "New deadline from %S on %t")
2900 (deldeadline . "Removed deadline, was %S on %t")
2901 (refile . "Refiled on %t")
2902 (clock-out . ""))
2903 "Headings for notes added to entries.
2905 The value is an alist, with the car being a symbol indicating the
2906 note context, and the cdr is the heading to be used. The heading
2907 may also be the empty string. The following placeholders can be
2908 used:
2910 %t a time stamp.
2911 %T an active time stamp instead the default inactive one
2912 %d a short-format time stamp.
2913 %D an active short-format time stamp.
2914 %s the new TODO state or time stamp (inactive), in double quotes.
2915 %S the old TODO state or time stamp (inactive), in double quotes.
2916 %u the user name.
2917 %U full user name.
2919 In fact, it is not a good idea to change the `state' entry,
2920 because Agenda Log mode depends on the format of these entries."
2921 :group 'org-todo
2922 :group 'org-progress
2923 :type '(list :greedy t
2924 (cons (const :tag "Heading when closing an item" done) string)
2925 (cons (const :tag
2926 "Heading when changing todo state (todo sequence only)"
2927 state) string)
2928 (cons (const :tag "Heading when just taking a note" note) string)
2929 (cons (const :tag "Heading when rescheduling" reschedule) string)
2930 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2931 (cons (const :tag "Heading when changing deadline" redeadline) string)
2932 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2933 (cons (const :tag "Heading when refiling" refile) string)
2934 (cons (const :tag "Heading when clocking out" clock-out) string)))
2936 (unless (assq 'note org-log-note-headings)
2937 (push '(note . "%t") org-log-note-headings))
2939 (defcustom org-log-into-drawer nil
2940 "Non-nil means insert state change notes and time stamps into a drawer.
2941 When nil, state changes notes will be inserted after the headline and
2942 any scheduling and clock lines, but not inside a drawer.
2944 The value of this variable should be the name of the drawer to use.
2945 LOGBOOK is proposed as the default drawer for this purpose, you can
2946 also set this to a string to define the drawer of your choice.
2948 A value of t is also allowed, representing \"LOGBOOK\".
2950 A value of t or nil can also be set with on a per-file-basis with
2952 #+STARTUP: logdrawer
2953 #+STARTUP: nologdrawer
2955 If this variable is set, `org-log-state-notes-insert-after-drawers'
2956 will be ignored.
2958 You can set the property LOG_INTO_DRAWER to overrule this setting for
2959 a subtree.
2961 Do not check directly this variable in a Lisp program. Call
2962 function `org-log-into-drawer' instead."
2963 :group 'org-todo
2964 :group 'org-progress
2965 :type '(choice
2966 (const :tag "Not into a drawer" nil)
2967 (const :tag "LOGBOOK" t)
2968 (string :tag "Other")))
2970 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2972 (defun org-log-into-drawer ()
2973 "Name of the log drawer, as a string, or nil.
2974 This is the value of `org-log-into-drawer'. However, if the
2975 current entry has or inherits a LOG_INTO_DRAWER property, it will
2976 be used instead of the default value."
2977 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2978 (cond ((equal p "nil") nil)
2979 ((equal p "t") "LOGBOOK")
2980 ((stringp p) p)
2981 (p "LOGBOOK")
2982 ((stringp org-log-into-drawer) org-log-into-drawer)
2983 (org-log-into-drawer "LOGBOOK"))))
2985 (defcustom org-log-state-notes-insert-after-drawers nil
2986 "Non-nil means insert state change notes after any drawers in entry.
2987 Only the drawers that *immediately* follow the headline and the
2988 deadline/scheduled line are skipped.
2989 When nil, insert notes right after the heading and perhaps the line
2990 with deadline/scheduling if present.
2992 This variable will have no effect if `org-log-into-drawer' is
2993 set."
2994 :group 'org-todo
2995 :group 'org-progress
2996 :type 'boolean)
2998 (defcustom org-log-states-order-reversed t
2999 "Non-nil means the latest state note will be directly after heading.
3000 When nil, the state change notes will be ordered according to time.
3002 This option can also be set with on a per-file-basis with
3004 #+STARTUP: logstatesreversed
3005 #+STARTUP: nologstatesreversed"
3006 :group 'org-todo
3007 :group 'org-progress
3008 :type 'boolean)
3010 (defcustom org-todo-repeat-to-state nil
3011 "The TODO state to which a repeater should return the repeating task.
3012 By default this is the first task in a TODO sequence, or the previous state
3013 in a TODO_TYP set. But you can specify another task here.
3014 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3015 :group 'org-todo
3016 :version "24.1"
3017 :type '(choice (const :tag "Head of sequence" nil)
3018 (string :tag "Specific state")))
3020 (defcustom org-log-repeat 'time
3021 "Non-nil means record moving through the DONE state when triggering repeat.
3022 An auto-repeating task is immediately switched back to TODO when
3023 marked DONE. If you are not logging state changes (by adding \"@\"
3024 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3025 record a closing note, there will be no record of the task moving
3026 through DONE. This variable forces taking a note anyway.
3028 nil Don't force a record
3029 time Record a time stamp
3030 note Prompt for a note and add it with template `org-log-note-headings'
3032 This option can also be set with on a per-file-basis with
3034 #+STARTUP: nologrepeat
3035 #+STARTUP: logrepeat
3036 #+STARTUP: lognoterepeat
3038 You can have local logging settings for a subtree by setting the LOGGING
3039 property to one or more of these keywords."
3040 :group 'org-todo
3041 :group 'org-progress
3042 :type '(choice
3043 (const :tag "Don't force a record" nil)
3044 (const :tag "Force recording the DONE state" time)
3045 (const :tag "Force recording a note with the DONE state" note)))
3048 (defgroup org-priorities nil
3049 "Priorities in Org-mode."
3050 :tag "Org Priorities"
3051 :group 'org-todo)
3053 (defcustom org-enable-priority-commands t
3054 "Non-nil means priority commands are active.
3055 When nil, these commands will be disabled, so that you never accidentally
3056 set a priority."
3057 :group 'org-priorities
3058 :type 'boolean)
3060 (defcustom org-highest-priority ?A
3061 "The highest priority of TODO items. A character like ?A, ?B etc.
3062 Must have a smaller ASCII number than `org-lowest-priority'."
3063 :group 'org-priorities
3064 :type 'character)
3066 (defcustom org-lowest-priority ?C
3067 "The lowest priority of TODO items. A character like ?A, ?B etc.
3068 Must have a larger ASCII number than `org-highest-priority'."
3069 :group 'org-priorities
3070 :type 'character)
3072 (defcustom org-default-priority ?B
3073 "The default priority of TODO items.
3074 This is the priority an item gets if no explicit priority is given.
3075 When starting to cycle on an empty priority the first step in the cycle
3076 depends on `org-priority-start-cycle-with-default'. The resulting first
3077 step priority must not exceed the range from `org-highest-priority' to
3078 `org-lowest-priority' which means that `org-default-priority' has to be
3079 in this range exclusive or inclusive the range boundaries. Else the
3080 first step refuses to set the default and the second will fall back
3081 to (depending on the command used) the highest or lowest priority."
3082 :group 'org-priorities
3083 :type 'character)
3085 (defcustom org-priority-start-cycle-with-default t
3086 "Non-nil means start with default priority when starting to cycle.
3087 When this is nil, the first step in the cycle will be (depending on the
3088 command used) one higher or lower than the default priority.
3089 See also `org-default-priority'."
3090 :group 'org-priorities
3091 :type 'boolean)
3093 (defcustom org-get-priority-function nil
3094 "Function to extract the priority from a string.
3095 The string is normally the headline. If this is nil Org computes the
3096 priority from the priority cookie like [#A] in the headline. It returns
3097 an integer, increasing by 1000 for each priority level.
3098 The user can set a different function here, which should take a string
3099 as an argument and return the numeric priority."
3100 :group 'org-priorities
3101 :version "24.1"
3102 :type '(choice
3103 (const nil)
3104 (function)))
3106 (defgroup org-time nil
3107 "Options concerning time stamps and deadlines in Org-mode."
3108 :tag "Org Time"
3109 :group 'org)
3111 (defcustom org-time-stamp-rounding-minutes '(0 5)
3112 "Number of minutes to round time stamps to.
3113 \\<org-mode-map>\
3114 These are two values, the first applies when first creating a time stamp.
3115 The second applies when changing it with the commands `S-up' and `S-down'.
3116 When changing the time stamp, this means that it will change in steps
3117 of N minutes, as given by the second value.
3119 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3120 numbers should be factors of 60, so for example 5, 10, 15.
3122 When this is larger than 1, you can still force an exact time stamp by using
3123 a double prefix argument to a time stamp command like \
3124 `\\[org-time-stamp]' or `\\[org-time-stamp-inactive],
3125 and by using a prefix arg to `S-up/down' to specify the exact number
3126 of minutes to shift."
3127 :group 'org-time
3128 :get (lambda (var) ; Make sure both elements are there
3129 (if (integerp (default-value var))
3130 (list (default-value var) 5)
3131 (default-value var)))
3132 :type '(list
3133 (integer :tag "when inserting times")
3134 (integer :tag "when modifying times")))
3136 ;; Normalize old customizations of this variable.
3137 (when (integerp org-time-stamp-rounding-minutes)
3138 (setq org-time-stamp-rounding-minutes
3139 (list org-time-stamp-rounding-minutes
3140 org-time-stamp-rounding-minutes)))
3142 (defcustom org-display-custom-times nil
3143 "Non-nil means overlay custom formats over all time stamps.
3144 The formats are defined through the variable `org-time-stamp-custom-formats'.
3145 To turn this on on a per-file basis, insert anywhere in the file:
3146 #+STARTUP: customtime"
3147 :group 'org-time
3148 :set 'set-default
3149 :type 'sexp)
3150 (make-variable-buffer-local 'org-display-custom-times)
3152 (defcustom org-time-stamp-custom-formats
3153 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3154 "Custom formats for time stamps. See `format-time-string' for the syntax.
3155 These are overlaid over the default ISO format if the variable
3156 `org-display-custom-times' is set. Time like %H:%M should be at the
3157 end of the second format. The custom formats are also honored by export
3158 commands, if custom time display is turned on at the time of export."
3159 :group 'org-time
3160 :type 'sexp)
3162 (defun org-time-stamp-format (&optional long inactive)
3163 "Get the right format for a time string."
3164 (let ((f (if long (cdr org-time-stamp-formats)
3165 (car org-time-stamp-formats))))
3166 (if inactive
3167 (concat "[" (substring f 1 -1) "]")
3168 f)))
3170 (defcustom org-time-clocksum-format
3171 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3172 "The format string used when creating CLOCKSUM lines.
3173 This is also used when Org mode generates a time duration.
3175 The value can be a single format string containing two
3176 %-sequences, which will be filled with the number of hours and
3177 minutes in that order.
3179 Alternatively, the value can be a plist associating any of the
3180 keys :years, :months, :weeks, :days, :hours or :minutes with
3181 format strings. The time duration is formatted using only the
3182 time components that are needed and concatenating the results.
3183 If a time unit in absent, it falls back to the next smallest
3184 unit.
3186 The keys :require-years, :require-months, :require-days,
3187 :require-weeks, :require-hours, :require-minutes are also
3188 meaningful. A non-nil value for these keys indicates that the
3189 corresponding time component should always be included, even if
3190 its value is 0.
3193 For example,
3195 (:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3196 :require-minutes t)
3198 means durations longer than a day will be expressed in days,
3199 hours and minutes, and durations less than a day will always be
3200 expressed in hours and minutes (even for durations less than an
3201 hour).
3203 The value
3205 (:days \"%dd\" :minutes \"%dm\")
3207 means durations longer than a day will be expressed in days and
3208 minutes, and durations less than a day will be expressed entirely
3209 in minutes (even for durations longer than an hour)."
3210 :group 'org-time
3211 :group 'org-clock
3212 :version "24.4"
3213 :package-version '(Org . "8.0")
3214 :type '(choice (string :tag "Format string")
3215 (set :tag "Plist"
3216 (group :inline t (const :tag "Years" :years)
3217 (string :tag "Format string"))
3218 (group :inline t
3219 (const :tag "Always show years" :require-years)
3220 (const t))
3221 (group :inline t (const :tag "Months" :months)
3222 (string :tag "Format string"))
3223 (group :inline t
3224 (const :tag "Always show months" :require-months)
3225 (const t))
3226 (group :inline t (const :tag "Weeks" :weeks)
3227 (string :tag "Format string"))
3228 (group :inline t
3229 (const :tag "Always show weeks" :require-weeks)
3230 (const t))
3231 (group :inline t (const :tag "Days" :days)
3232 (string :tag "Format string"))
3233 (group :inline t
3234 (const :tag "Always show days" :require-days)
3235 (const t))
3236 (group :inline t (const :tag "Hours" :hours)
3237 (string :tag "Format string"))
3238 (group :inline t
3239 (const :tag "Always show hours" :require-hours)
3240 (const t))
3241 (group :inline t (const :tag "Minutes" :minutes)
3242 (string :tag "Format string"))
3243 (group :inline t
3244 (const :tag "Always show minutes" :require-minutes)
3245 (const t)))))
3247 (defcustom org-time-clocksum-use-fractional nil
3248 "When non-nil, \\[org-clock-display] uses fractional times.
3249 See `org-time-clocksum-format' for more on time clock formats."
3250 :group 'org-time
3251 :group 'org-clock
3252 :version "24.3"
3253 :type 'boolean)
3255 (defcustom org-time-clocksum-use-effort-durations nil
3256 "When non-nil, \\[org-clock-display] uses effort durations.
3257 E.g. by default, one day is considered to be a 8 hours effort,
3258 so a task that has been clocked for 16 hours will be displayed
3259 as during 2 days in the clock display or in the clocktable.
3261 See `org-effort-durations' on how to set effort durations
3262 and `org-time-clocksum-format' for more on time clock formats."
3263 :group 'org-time
3264 :group 'org-clock
3265 :version "24.4"
3266 :package-version '(Org . "8.0")
3267 :type 'boolean)
3269 (defcustom org-time-clocksum-fractional-format "%.2f"
3270 "The format string used when creating CLOCKSUM lines,
3271 or when Org mode generates a time duration, if
3272 `org-time-clocksum-use-fractional' is enabled.
3274 The value can be a single format string containing one
3275 %-sequence, which will be filled with the number of hours as
3276 a float.
3278 Alternatively, the value can be a plist associating any of the
3279 keys :years, :months, :weeks, :days, :hours or :minutes with
3280 a format string. The time duration is formatted using the
3281 largest time unit which gives a non-zero integer part. If all
3282 specified formats have zero integer part, the smallest time unit
3283 is used."
3284 :group 'org-time
3285 :type '(choice (string :tag "Format string")
3286 (set (group :inline t (const :tag "Years" :years)
3287 (string :tag "Format string"))
3288 (group :inline t (const :tag "Months" :months)
3289 (string :tag "Format string"))
3290 (group :inline t (const :tag "Weeks" :weeks)
3291 (string :tag "Format string"))
3292 (group :inline t (const :tag "Days" :days)
3293 (string :tag "Format string"))
3294 (group :inline t (const :tag "Hours" :hours)
3295 (string :tag "Format string"))
3296 (group :inline t (const :tag "Minutes" :minutes)
3297 (string :tag "Format string")))))
3299 (defcustom org-deadline-warning-days 14
3300 "Number of days before expiration during which a deadline becomes active.
3301 This variable governs the display in sparse trees and in the agenda.
3302 When 0 or negative, it means use this number (the absolute value of it)
3303 even if a deadline has a different individual lead time specified.
3305 Custom commands can set this variable in the options section."
3306 :group 'org-time
3307 :group 'org-agenda-daily/weekly
3308 :type 'integer)
3310 (defcustom org-scheduled-delay-days 0
3311 "Number of days before a scheduled item becomes active.
3312 This variable governs the display in sparse trees and in the agenda.
3313 The default value (i.e. 0) means: don't delay scheduled item.
3314 When negative, it means use this number (the absolute value of it)
3315 even if a scheduled item has a different individual delay time
3316 specified.
3318 Custom commands can set this variable in the options section."
3319 :group 'org-time
3320 :group 'org-agenda-daily/weekly
3321 :version "24.4"
3322 :package-version '(Org . "8.0")
3323 :type 'integer)
3325 (defcustom org-read-date-prefer-future t
3326 "Non-nil means assume future for incomplete date input from user.
3327 This affects the following situations:
3328 1. The user gives a month but not a year.
3329 For example, if it is April and you enter \"feb 2\", this will be read
3330 as Feb 2, *next* year. \"May 5\", however, will be this year.
3331 2. The user gives a day, but no month.
3332 For example, if today is the 15th, and you enter \"3\", Org-mode will
3333 read this as the third of *next* month. However, if you enter \"17\",
3334 it will be considered as *this* month.
3336 If you set this variable to the symbol `time', then also the following
3337 will work:
3339 3. If the user gives a time.
3340 If the time is before now, it will be interpreted as tomorrow.
3342 Currently none of this works for ISO week specifications.
3344 When this option is nil, the current day, month and year will always be
3345 used as defaults.
3347 See also `org-agenda-jump-prefer-future'."
3348 :group 'org-time
3349 :type '(choice
3350 (const :tag "Never" nil)
3351 (const :tag "Check month and day" t)
3352 (const :tag "Check month, day, and time" time)))
3354 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3355 "Should the agenda jump command prefer the future for incomplete dates?
3356 The default is to do the same as configured in `org-read-date-prefer-future'.
3357 But you can also set a deviating value here.
3358 This may t or nil, or the symbol `org-read-date-prefer-future'."
3359 :group 'org-agenda
3360 :group 'org-time
3361 :version "24.1"
3362 :type '(choice
3363 (const :tag "Use org-read-date-prefer-future"
3364 org-read-date-prefer-future)
3365 (const :tag "Never" nil)
3366 (const :tag "Always" t)))
3368 (defcustom org-read-date-force-compatible-dates t
3369 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3371 Depending on the system Emacs is running on, certain dates cannot
3372 be represented with the type used internally to represent time.
3373 Dates between 1970-1-1 and 2038-1-1 can always be represented
3374 correctly. Some systems allow for earlier dates, some for later,
3375 some for both. One way to find out it to insert any date into an
3376 Org buffer, putting the cursor on the year and hitting S-up and
3377 S-down to test the range.
3379 When this variable is set to t, the date/time prompt will not let
3380 you specify dates outside the 1970-2037 range, so it is certain that
3381 these dates will work in whatever version of Emacs you are
3382 running, and also that you can move a file from one Emacs implementation
3383 to another. WHenever Org is forcing the year for you, it will display
3384 a message and beep.
3386 When this variable is nil, Org will check if the date is
3387 representable in the specific Emacs implementation you are using.
3388 If not, it will force a year, usually the current year, and beep
3389 to remind you. Currently this setting is not recommended because
3390 the likelihood that you will open your Org files in an Emacs that
3391 has limited date range is not negligible.
3393 A workaround for this problem is to use diary sexp dates for time
3394 stamps outside of this range."
3395 :group 'org-time
3396 :version "24.1"
3397 :type 'boolean)
3399 (defcustom org-read-date-display-live t
3400 "Non-nil means display current interpretation of date prompt live.
3401 This display will be in an overlay, in the minibuffer."
3402 :group 'org-time
3403 :type 'boolean)
3405 (defcustom org-read-date-popup-calendar t
3406 "Non-nil means pop up a calendar when prompting for a date.
3407 In the calendar, the date can be selected with mouse-1. However, the
3408 minibuffer will also be active, and you can simply enter the date as well.
3409 When nil, only the minibuffer will be available."
3410 :group 'org-time
3411 :type 'boolean)
3412 (org-defvaralias 'org-popup-calendar-for-date-prompt
3413 'org-read-date-popup-calendar)
3415 (make-obsolete-variable
3416 'org-read-date-minibuffer-setup-hook
3417 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3418 (defcustom org-read-date-minibuffer-setup-hook nil
3419 "Hook to be used to set up keys for the date/time interface.
3420 Add key definitions to `minibuffer-local-map', which will be a
3421 temporary copy.
3423 WARNING: This option is obsolete, you should use
3424 `org-read-date-minibuffer-local-map' to set up keys."
3425 :group 'org-time
3426 :type 'hook)
3428 (defcustom org-extend-today-until 0
3429 "The hour when your day really ends. Must be an integer.
3430 This has influence for the following applications:
3431 - When switching the agenda to \"today\". It it is still earlier than
3432 the time given here, the day recognized as TODAY is actually yesterday.
3433 - When a date is read from the user and it is still before the time given
3434 here, the current date and time will be assumed to be yesterday, 23:59.
3435 Also, timestamps inserted in capture templates follow this rule.
3437 IMPORTANT: This is a feature whose implementation is and likely will
3438 remain incomplete. Really, it is only here because past midnight seems to
3439 be the favorite working time of John Wiegley :-)"
3440 :group 'org-time
3441 :type 'integer)
3443 (defcustom org-use-effective-time nil
3444 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3445 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3446 \"effective time\" of any timestamps between midnight and 8am will be
3447 23:59 of the previous day."
3448 :group 'org-time
3449 :version "24.1"
3450 :type 'boolean)
3452 (defcustom org-use-last-clock-out-time-as-effective-time nil
3453 "When non-nil, use the last clock out time for `org-todo'.
3454 Note that this option has precedence over the combined use of
3455 `org-use-effective-time' and `org-extend-today-until'."
3456 :group 'org-time
3457 :version "24.4"
3458 :package-version '(Org . "8.0")
3459 :type 'boolean)
3461 (defcustom org-edit-timestamp-down-means-later nil
3462 "Non-nil means S-down will increase the time in a time stamp.
3463 When nil, S-up will increase."
3464 :group 'org-time
3465 :type 'boolean)
3467 (defcustom org-calendar-follow-timestamp-change t
3468 "Non-nil means make the calendar window follow timestamp changes.
3469 When a timestamp is modified and the calendar window is visible, it will be
3470 moved to the new date."
3471 :group 'org-time
3472 :type 'boolean)
3474 (defgroup org-tags nil
3475 "Options concerning tags in Org-mode."
3476 :tag "Org Tags"
3477 :group 'org)
3479 (defcustom org-tag-alist nil
3480 "List of tags allowed in Org-mode files.
3481 When this list is nil, Org-mode will base TAG input on what is already in the
3482 buffer.
3483 The value of this variable is an alist, the car of each entry must be a
3484 keyword as a string, the cdr may be a character that is used to select
3485 that tag through the fast-tag-selection interface.
3486 See the manual for details."
3487 :group 'org-tags
3488 :type '(repeat
3489 (choice
3490 (cons (string :tag "Tag name")
3491 (character :tag "Access char"))
3492 (list :tag "Start radio group"
3493 (const :startgroup)
3494 (option (string :tag "Group description")))
3495 (list :tag "Start tag group, non distinct"
3496 (const :startgrouptag)
3497 (option (string :tag "Group description")))
3498 (list :tag "Group tags delimiter"
3499 (const :grouptags))
3500 (list :tag "End radio group"
3501 (const :endgroup)
3502 (option (string :tag "Group description")))
3503 (list :tag "End tag group, non distinct"
3504 (const :endgrouptag)
3505 (option (string :tag "Group description")))
3506 (const :tag "New line" (:newline)))))
3508 (defcustom org-tag-persistent-alist nil
3509 "List of tags that will always appear in all Org-mode files.
3510 This is in addition to any in buffer settings or customizations
3511 of `org-tag-alist'.
3512 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3513 The value of this variable is an alist, the car of each entry must be a
3514 keyword as a string, the cdr may be a character that is used to select
3515 that tag through the fast-tag-selection interface.
3516 See the manual for details.
3517 To disable these tags on a per-file basis, insert anywhere in the file:
3518 #+STARTUP: noptag"
3519 :group 'org-tags
3520 :type '(repeat
3521 (choice
3522 (cons (string :tag "Tag name")
3523 (character :tag "Access char"))
3524 (const :tag "Start radio group" (:startgroup))
3525 (const :tag "Group tags delimiter" (:grouptags))
3526 (const :tag "End radio group" (:endgroup))
3527 (const :tag "New line" (:newline)))))
3529 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3530 "If non-nil, always offer completion for all tags of all agenda files.
3531 Instead of customizing this variable directly, you might want to
3532 set it locally for capture buffers, because there no list of
3533 tags in that file can be created dynamically (there are none).
3535 (add-hook \\='org-capture-mode-hook
3536 (lambda ()
3537 (set (make-local-variable
3538 \\='org-complete-tags-always-offer-all-agenda-tags)
3539 t)))"
3540 :group 'org-tags
3541 :version "24.1"
3542 :type 'boolean)
3544 (defvar org-file-tags nil
3545 "List of tags that can be inherited by all entries in the file.
3546 The tags will be inherited if the variable `org-use-tag-inheritance'
3547 says they should be.
3548 This variable is populated from #+FILETAGS lines.")
3550 (defcustom org-use-fast-tag-selection 'auto
3551 "Non-nil means use fast tag selection scheme.
3552 This is a special interface to select and deselect tags with single keys.
3553 When nil, fast selection is never used.
3554 When the symbol `auto', fast selection is used if and only if selection
3555 characters for tags have been configured, either through the variable
3556 `org-tag-alist' or through a #+TAGS line in the buffer.
3557 When t, fast selection is always used and selection keys are assigned
3558 automatically if necessary."
3559 :group 'org-tags
3560 :type '(choice
3561 (const :tag "Always" t)
3562 (const :tag "Never" nil)
3563 (const :tag "When selection characters are configured" auto)))
3565 (defcustom org-fast-tag-selection-single-key nil
3566 "Non-nil means fast tag selection exits after first change.
3567 When nil, you have to press RET to exit it.
3568 During fast tag selection, you can toggle this flag with `C-c'.
3569 This variable can also have the value `expert'. In this case, the window
3570 displaying the tags menu is not even shown, until you press C-c again."
3571 :group 'org-tags
3572 :type '(choice
3573 (const :tag "No" nil)
3574 (const :tag "Yes" t)
3575 (const :tag "Expert" expert)))
3577 (defvar org-fast-tag-selection-include-todo nil
3578 "Non-nil means fast tags selection interface will also offer TODO states.
3579 This is an undocumented feature, you should not rely on it.")
3581 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3582 "The column to which tags should be indented in a headline.
3583 If this number is positive, it specifies the column. If it is negative,
3584 it means that the tags should be flushright to that column. For example,
3585 -80 works well for a normal 80 character screen.
3586 When 0, place tags directly after headline text, with only one space in
3587 between."
3588 :group 'org-tags
3589 :type 'integer)
3591 (defcustom org-auto-align-tags t
3592 "Non-nil keeps tags aligned when modifying headlines.
3593 Some operations (i.e. demoting) change the length of a headline and
3594 therefore shift the tags around. With this option turned on, after
3595 each such operation the tags are again aligned to `org-tags-column'."
3596 :group 'org-tags
3597 :type 'boolean)
3599 (defcustom org-use-tag-inheritance t
3600 "Non-nil means tags in levels apply also for sublevels.
3601 When nil, only the tags directly given in a specific line apply there.
3602 This may also be a list of tags that should be inherited, or a regexp that
3603 matches tags that should be inherited. Additional control is possible
3604 with the variable `org-tags-exclude-from-inheritance' which gives an
3605 explicit list of tags to be excluded from inheritance, even if the value of
3606 `org-use-tag-inheritance' would select it for inheritance.
3608 If this option is t, a match early-on in a tree can lead to a large
3609 number of matches in the subtree when constructing the agenda or creating
3610 a sparse tree. If you only want to see the first match in a tree during
3611 a search, check out the variable `org-tags-match-list-sublevels'."
3612 :group 'org-tags
3613 :type '(choice
3614 (const :tag "Not" nil)
3615 (const :tag "Always" t)
3616 (repeat :tag "Specific tags" (string :tag "Tag"))
3617 (regexp :tag "Tags matched by regexp")))
3619 (defcustom org-tags-exclude-from-inheritance nil
3620 "List of tags that should never be inherited.
3621 This is a way to exclude a few tags from inheritance. For way to do
3622 the opposite, to actively allow inheritance for selected tags,
3623 see the variable `org-use-tag-inheritance'."
3624 :group 'org-tags
3625 :type '(repeat (string :tag "Tag")))
3627 (defun org-tag-inherit-p (tag)
3628 "Check if TAG is one that should be inherited."
3629 (cond
3630 ((member tag org-tags-exclude-from-inheritance) nil)
3631 ((eq org-use-tag-inheritance t) t)
3632 ((not org-use-tag-inheritance) nil)
3633 ((stringp org-use-tag-inheritance)
3634 (string-match org-use-tag-inheritance tag))
3635 ((listp org-use-tag-inheritance)
3636 (member tag org-use-tag-inheritance))
3637 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3639 (defcustom org-tags-match-list-sublevels t
3640 "Non-nil means list also sublevels of headlines matching a search.
3641 This variable applies to tags/property searches, and also to stuck
3642 projects because this search is based on a tags match as well.
3644 When set to the symbol `indented', sublevels are indented with
3645 leading dots.
3647 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3648 the sublevels of a headline matching a tag search often also match
3649 the same search. Listing all of them can create very long lists.
3650 Setting this variable to nil causes subtrees of a match to be skipped.
3652 This variable is semi-obsolete and probably should always be true. It
3653 is better to limit inheritance to certain tags using the variables
3654 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3655 :group 'org-tags
3656 :type '(choice
3657 (const :tag "No, don't list them" nil)
3658 (const :tag "Yes, do list them" t)
3659 (const :tag "List them, indented with leading dots" indented)))
3661 (defcustom org-tags-sort-function nil
3662 "When set, tags are sorted using this function as a comparator."
3663 :group 'org-tags
3664 :type '(choice
3665 (const :tag "No sorting" nil)
3666 (const :tag "Alphabetical" string<)
3667 (const :tag "Reverse alphabetical" string>)
3668 (function :tag "Custom function" nil)))
3670 (defvar org-tags-history nil
3671 "History of minibuffer reads for tags.")
3672 (defvar org-last-tags-completion-table nil
3673 "The last used completion table for tags.")
3674 (defvar org-after-tags-change-hook nil
3675 "Hook that is run after the tags in a line have changed.")
3677 (defgroup org-properties nil
3678 "Options concerning properties in Org-mode."
3679 :tag "Org Properties"
3680 :group 'org)
3682 (defcustom org-property-format "%-10s %s"
3683 "How property key/value pairs should be formatted by `indent-line'.
3684 When `indent-line' hits a property definition, it will format the line
3685 according to this format, mainly to make sure that the values are
3686 lined-up with respect to each other."
3687 :group 'org-properties
3688 :type 'string)
3690 (defcustom org-properties-postprocess-alist nil
3691 "Alist of properties and functions to adjust inserted values.
3692 Elements of this alist must be of the form
3694 ([string] [function])
3696 where [string] must be a property name and [function] must be a
3697 lambda expression: this lambda expression must take one argument,
3698 the value to adjust, and return the new value as a string.
3700 For example, this element will allow the property \"Remaining\"
3701 to be updated wrt the relation between the \"Effort\" property
3702 and the clock summary:
3704 ((\"Remaining\" (lambda(value)
3705 (let ((clocksum (org-clock-sum-current-item))
3706 (effort (org-duration-string-to-minutes
3707 (org-entry-get (point) \"Effort\"))))
3708 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3709 :group 'org-properties
3710 :version "24.1"
3711 :type '(alist :key-type (string :tag "Property")
3712 :value-type (function :tag "Function")))
3714 (defcustom org-use-property-inheritance nil
3715 "Non-nil means properties apply also for sublevels.
3717 This setting is chiefly used during property searches. Turning it on can
3718 cause significant overhead when doing a search, which is why it is not
3719 on by default.
3721 When nil, only the properties directly given in the current entry count.
3722 When t, every property is inherited. The value may also be a list of
3723 properties that should have inheritance, or a regular expression matching
3724 properties that should be inherited.
3726 However, note that some special properties use inheritance under special
3727 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3728 and the properties ending in \"_ALL\" when they are used as descriptor
3729 for valid values of a property.
3731 Note for programmers:
3732 When querying an entry with `org-entry-get', you can control if inheritance
3733 should be used. By default, `org-entry-get' looks only at the local
3734 properties. You can request inheritance by setting the inherit argument
3735 to t (to force inheritance) or to `selective' (to respect the setting
3736 in this variable)."
3737 :group 'org-properties
3738 :type '(choice
3739 (const :tag "Not" nil)
3740 (const :tag "Always" t)
3741 (repeat :tag "Specific properties" (string :tag "Property"))
3742 (regexp :tag "Properties matched by regexp")))
3744 (defun org-property-inherit-p (property)
3745 "Check if PROPERTY is one that should be inherited."
3746 (cond
3747 ((eq org-use-property-inheritance t) t)
3748 ((not org-use-property-inheritance) nil)
3749 ((stringp org-use-property-inheritance)
3750 (string-match org-use-property-inheritance property))
3751 ((listp org-use-property-inheritance)
3752 (member property org-use-property-inheritance))
3753 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3755 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3756 "The default column format, if no other format has been defined.
3757 This variable can be set on the per-file basis by inserting a line
3759 #+COLUMNS: %25ITEM ....."
3760 :group 'org-properties
3761 :type 'string)
3763 (defcustom org-columns-ellipses ".."
3764 "The ellipses to be used when a field in column view is truncated.
3765 When this is the empty string, as many characters as possible are shown,
3766 but then there will be no visual indication that the field has been truncated.
3767 When this is a string of length N, the last N characters of a truncated
3768 field are replaced by this string. If the column is narrower than the
3769 ellipses string, only part of the ellipses string will be shown."
3770 :group 'org-properties
3771 :type 'string)
3773 (defcustom org-columns-modify-value-for-display-function nil
3774 "Function that modifies values for display in column view.
3775 For example, it can be used to cut out a certain part from a time stamp.
3776 The function must take 2 arguments:
3778 column-title The title of the column (*not* the property name)
3779 value The value that should be modified.
3781 The function should return the value that should be displayed,
3782 or nil if the normal value should be used."
3783 :group 'org-properties
3784 :type '(choice (const nil) (function)))
3786 (defconst org-global-properties-fixed
3787 '(("VISIBILITY_ALL" . "folded children content all")
3788 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3789 "List of property/value pairs that can be inherited by any entry.
3791 These are fixed values, for the preset properties. The user variable
3792 that can be used to add to this list is `org-global-properties'.
3794 The entries in this list are cons cells where the car is a property
3795 name and cdr is a string with the value. If the value represents
3796 multiple items like an \"_ALL\" property, separate the items by
3797 spaces.")
3799 (defcustom org-global-properties nil
3800 "List of property/value pairs that can be inherited by any entry.
3802 This list will be combined with the constant `org-global-properties-fixed'.
3804 The entries in this list are cons cells where the car is a property
3805 name and cdr is a string with the value.
3807 You can set buffer-local values for the same purpose in the variable
3808 `org-file-properties' this by adding lines like
3810 #+PROPERTY: NAME VALUE"
3811 :group 'org-properties
3812 :type '(repeat
3813 (cons (string :tag "Property")
3814 (string :tag "Value"))))
3816 (defvar org-file-properties nil
3817 "List of property/value pairs that can be inherited by any entry.
3818 Valid for the current buffer.
3819 This variable is populated from #+PROPERTY lines.")
3820 (make-variable-buffer-local 'org-file-properties)
3822 (defgroup org-agenda nil
3823 "Options concerning agenda views in Org-mode."
3824 :tag "Org Agenda"
3825 :group 'org)
3827 (defvar org-category nil
3828 "Variable used by org files to set a category for agenda display.
3829 Such files should use a file variable to set it, for example
3831 # -*- mode: org; org-category: \"ELisp\"
3833 or contain a special line
3835 #+CATEGORY: ELisp
3837 If the file does not specify a category, then file's base name
3838 is used instead.")
3839 (make-variable-buffer-local 'org-category)
3840 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3842 (defcustom org-agenda-files nil
3843 "The files to be used for agenda display.
3844 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3845 \\[org-remove-file]. You can also use customize to edit the list.
3847 If an entry is a directory, all files in that directory that are matched by
3848 `org-agenda-file-regexp' will be part of the file list.
3850 If the value of the variable is not a list but a single file name, then
3851 the list of agenda files is actually stored and maintained in that file, one
3852 agenda file per line. In this file paths can be given relative to
3853 `org-directory'. Tilde expansion and environment variable substitution
3854 are also made."
3855 :group 'org-agenda
3856 :type '(choice
3857 (repeat :tag "List of files and directories" file)
3858 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3860 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3861 "Regular expression to match files for `org-agenda-files'.
3862 If any element in the list in that variable contains a directory instead
3863 of a normal file, all files in that directory that are matched by this
3864 regular expression will be included."
3865 :group 'org-agenda
3866 :type 'regexp)
3868 (defcustom org-agenda-text-search-extra-files nil
3869 "List of extra files to be searched by text search commands.
3870 These files will be searched in addition to the agenda files by the
3871 commands `org-search-view' (`\\[org-agenda] s') \
3872 and `org-occur-in-agenda-files'.
3873 Note that these files will only be searched for text search commands,
3874 not for the other agenda views like todo lists, tag searches or the weekly
3875 agenda. This variable is intended to list notes and possibly archive files
3876 that should also be searched by these two commands.
3877 In fact, if the first element in the list is the symbol `agenda-archives',
3878 then all archive files of all agenda files will be added to the search
3879 scope."
3880 :group 'org-agenda
3881 :type '(set :greedy t
3882 (const :tag "Agenda Archives" agenda-archives)
3883 (repeat :inline t (file))))
3885 (org-defvaralias 'org-agenda-multi-occur-extra-files
3886 'org-agenda-text-search-extra-files)
3888 (defcustom org-agenda-skip-unavailable-files nil
3889 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3890 A nil value means to remove them, after a query, from the list."
3891 :group 'org-agenda
3892 :type 'boolean)
3894 (defcustom org-calendar-to-agenda-key [?c]
3895 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3896 The command `org-calendar-goto-agenda' will be bound to this key. The
3897 default is the character `c' because then `c' can be used to switch back and
3898 forth between agenda and calendar."
3899 :group 'org-agenda
3900 :type 'sexp)
3902 (defcustom org-calendar-insert-diary-entry-key [?i]
3903 "The key to be installed in `calendar-mode-map' for adding diary entries.
3904 This option is irrelevant until `org-agenda-diary-file' has been configured
3905 to point to an Org-mode file. When that is the case, the command
3906 `org-agenda-diary-entry' will be bound to the key given here, by default
3907 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3908 if you want to continue doing this, you need to change this to a different
3909 key."
3910 :group 'org-agenda
3911 :type 'sexp)
3913 (defcustom org-agenda-diary-file 'diary-file
3914 "File to which to add new entries with the `i' key in agenda and calendar.
3915 When this is the symbol `diary-file', the functionality in the Emacs
3916 calendar will be used to add entries to the `diary-file'. But when this
3917 points to a file, `org-agenda-diary-entry' will be used instead."
3918 :group 'org-agenda
3919 :type '(choice
3920 (const :tag "The standard Emacs diary file" diary-file)
3921 (file :tag "Special Org file diary entries")))
3923 (eval-after-load "calendar"
3924 '(progn
3925 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3926 'org-calendar-goto-agenda)
3927 (add-hook 'calendar-mode-hook
3928 (lambda ()
3929 (unless (eq org-agenda-diary-file 'diary-file)
3930 (define-key calendar-mode-map
3931 org-calendar-insert-diary-entry-key
3932 'org-agenda-diary-entry))))))
3934 (defgroup org-latex nil
3935 "Options for embedding LaTeX code into Org-mode."
3936 :tag "Org LaTeX"
3937 :group 'org)
3939 (defcustom org-format-latex-options
3940 '(:foreground default :background default :scale 1.0
3941 :html-foreground "Black" :html-background "Transparent"
3942 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3943 "Options for creating images from LaTeX fragments.
3944 This is a property list with the following properties:
3945 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3946 `default' means use the foreground of the default face.
3947 `auto' means use the foreground from the text face.
3948 :background the background color, or \"Transparent\".
3949 `default' means use the background of the default face.
3950 `auto' means use the background from the text face.
3951 :scale a scaling factor for the size of the images, to get more pixels
3952 :html-foreground, :html-background, :html-scale
3953 the same numbers for HTML export.
3954 :matchers a list indicating which matchers should be used to
3955 find LaTeX fragments. Valid members of this list are:
3956 \"begin\" find environments
3957 \"$1\" find single characters surrounded by $.$
3958 \"$\" find math expressions surrounded by $...$
3959 \"$$\" find math expressions surrounded by $$....$$
3960 \"\\(\" find math expressions surrounded by \\(...\\)
3961 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3962 :group 'org-latex
3963 :type 'plist)
3965 (defcustom org-format-latex-signal-error t
3966 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3967 When nil, just push out a message."
3968 :group 'org-latex
3969 :version "24.1"
3970 :type 'boolean)
3972 (defcustom org-latex-to-mathml-jar-file nil
3973 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3974 Use this to specify additional executable file say a jar file.
3976 When using MathToWeb as the converter, specify the full-path to
3977 your mathtoweb.jar file."
3978 :group 'org-latex
3979 :version "24.1"
3980 :type '(choice
3981 (const :tag "None" nil)
3982 (file :tag "JAR file" :must-match t)))
3984 (defcustom org-latex-to-mathml-convert-command nil
3985 "Command to convert LaTeX fragments to MathML.
3986 Replace format-specifiers in the command as noted below and use
3987 `shell-command' to convert LaTeX to MathML.
3988 %j: Executable file in fully expanded form as specified by
3989 `org-latex-to-mathml-jar-file'.
3990 %I: Input LaTeX file in fully expanded form.
3991 %i: The latex fragment to be converted.
3992 %o: Output MathML file.
3994 This command is used by `org-create-math-formula'.
3996 When using MathToWeb as the converter, set this option to
3997 \"java -jar %j -unicode -force -df %o %I\".
3999 When using LaTeXML set this option to
4000 \"latexmlmath \"%i\" --presentationmathml=%o\"."
4001 :group 'org-latex
4002 :version "24.1"
4003 :type '(choice
4004 (const :tag "None" nil)
4005 (string :tag "\nShell command")))
4007 (defcustom org-latex-create-formula-image-program 'dvipng
4008 "Program to convert LaTeX fragments with.
4010 dvipng Process the LaTeX fragments to dvi file, then convert
4011 dvi files to png files using dvipng.
4012 This will also include processing of non-math environments.
4013 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
4014 to convert pdf files to png files"
4015 :group 'org-latex
4016 :version "24.1"
4017 :type '(choice
4018 (const :tag "dvipng" dvipng)
4019 (const :tag "imagemagick" imagemagick)))
4021 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4022 "Path to store latex preview images.
4023 A relative path here creates many directories relative to the
4024 processed org files paths. An absolute path puts all preview
4025 images at the same place."
4026 :group 'org-latex
4027 :version "24.3"
4028 :type 'string)
4030 (defun org-format-latex-mathml-available-p ()
4031 "Return t if `org-latex-to-mathml-convert-command' is usable."
4032 (save-match-data
4033 (when (and (boundp 'org-latex-to-mathml-convert-command)
4034 org-latex-to-mathml-convert-command)
4035 (let ((executable (car (split-string
4036 org-latex-to-mathml-convert-command))))
4037 (when (executable-find executable)
4038 (if (string-match
4039 "%j" org-latex-to-mathml-convert-command)
4040 (file-readable-p org-latex-to-mathml-jar-file)
4041 t))))))
4043 (defcustom org-format-latex-header "\\documentclass{article}
4044 \\usepackage[usenames]{color}
4045 \[PACKAGES]
4046 \[DEFAULT-PACKAGES]
4047 \\pagestyle{empty} % do not remove
4048 % The settings below are copied from fullpage.sty
4049 \\setlength{\\textwidth}{\\paperwidth}
4050 \\addtolength{\\textwidth}{-3cm}
4051 \\setlength{\\oddsidemargin}{1.5cm}
4052 \\addtolength{\\oddsidemargin}{-2.54cm}
4053 \\setlength{\\evensidemargin}{\\oddsidemargin}
4054 \\setlength{\\textheight}{\\paperheight}
4055 \\addtolength{\\textheight}{-\\headheight}
4056 \\addtolength{\\textheight}{-\\headsep}
4057 \\addtolength{\\textheight}{-\\footskip}
4058 \\addtolength{\\textheight}{-3cm}
4059 \\setlength{\\topmargin}{1.5cm}
4060 \\addtolength{\\topmargin}{-2.54cm}"
4061 "The document header used for processing LaTeX fragments.
4062 It is imperative that this header make sure that no page number
4063 appears on the page. The package defined in the variables
4064 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4065 will either replace the placeholder \"[PACKAGES]\" in this
4066 header, or they will be appended."
4067 :group 'org-latex
4068 :type 'string)
4070 (defun org-set-packages-alist (var val)
4071 "Set the packages alist and make sure it has 3 elements per entry."
4072 (set var (mapcar (lambda (x)
4073 (if (and (consp x) (= (length x) 2))
4074 (list (car x) (nth 1 x) t)
4076 val)))
4078 (defun org-get-packages-alist (var)
4079 "Get the packages alist and make sure it has 3 elements per entry."
4080 (mapcar (lambda (x)
4081 (if (and (consp x) (= (length x) 2))
4082 (list (car x) (nth 1 x) t)
4084 (default-value var)))
4086 (defcustom org-latex-default-packages-alist
4087 '(("AUTO" "inputenc" t)
4088 ("T1" "fontenc" t)
4089 ("" "fixltx2e" nil)
4090 ("" "graphicx" t)
4091 ("" "grffile" t)
4092 ("" "longtable" nil)
4093 ("" "wrapfig" nil)
4094 ("" "rotating" nil)
4095 ("normalem" "ulem" t)
4096 ("" "amsmath" t)
4097 ("" "textcomp" t)
4098 ("" "amssymb" t)
4099 ("" "capt-of" nil)
4100 ("" "hyperref" nil))
4101 "Alist of default packages to be inserted in the header.
4103 Change this only if one of the packages here causes an
4104 incompatibility with another package you are using.
4106 The packages in this list are needed by one part or another of
4107 Org mode to function properly:
4109 - inputenc, fontenc: for basic font and character selection
4110 - fixltx2e: Important patches of LaTeX itself
4111 - graphicx: for including images
4112 - grffile: allow periods and spaces in graphics file names
4113 - longtable: For multipage tables
4114 - wrapfig: for figure placement
4115 - rotating: for sideways figures and tables
4116 - ulem: for underline and strike-through
4117 - amsmath: for subscript and superscript and math environments
4118 - textcomp, amssymb: for various symbols used
4119 for interpreting the entities in `org-entities'. You can skip
4120 some of these packages if you don't use any of their symbols.
4121 - capt-of: for captions outside of floats
4122 - hyperref: for cross references
4124 Therefore you should not modify this variable unless you know
4125 what you are doing. The one reason to change it anyway is that
4126 you might be loading some other package that conflicts with one
4127 of the default packages. Each element is either a cell or
4128 a string.
4130 A cell is of the format
4132 (\"options\" \"package\" SNIPPET-FLAG)
4134 If SNIPPET-FLAG is non-nil, the package also needs to be included
4135 when compiling LaTeX snippets into images for inclusion into
4136 non-LaTeX output.
4138 A string will be inserted as-is in the header of the document."
4139 :group 'org-latex
4140 :group 'org-export-latex
4141 :set 'org-set-packages-alist
4142 :get 'org-get-packages-alist
4143 :version "25.1"
4144 :package-version '(Org . "8.3")
4145 :type '(repeat
4146 (choice
4147 (list :tag "options/package pair"
4148 (string :tag "options")
4149 (string :tag "package")
4150 (boolean :tag "Snippet"))
4151 (string :tag "A line of LaTeX"))))
4153 (defcustom org-latex-packages-alist nil
4154 "Alist of packages to be inserted in every LaTeX header.
4156 These will be inserted after `org-latex-default-packages-alist'.
4157 Each element is either a cell or a string.
4159 A cell is of the format:
4161 (\"options\" \"package\" SNIPPET-FLAG)
4163 SNIPPET-FLAG, when non-nil, indicates that this package is also
4164 needed when turning LaTeX snippets into images for inclusion into
4165 non-LaTeX output.
4167 A string will be inserted as-is in the header of the document.
4169 Make sure that you only list packages here which:
4171 - you want in every file;
4172 - do not conflict with the setup in `org-format-latex-header';
4173 - do not conflict with the default packages in
4174 `org-latex-default-packages-alist'."
4175 :group 'org-latex
4176 :group 'org-export-latex
4177 :set 'org-set-packages-alist
4178 :get 'org-get-packages-alist
4179 :type '(repeat
4180 (choice
4181 (list :tag "options/package pair"
4182 (string :tag "options")
4183 (string :tag "package")
4184 (boolean :tag "Snippet"))
4185 (string :tag "A line of LaTeX"))))
4187 (defgroup org-appearance nil
4188 "Settings for Org-mode appearance."
4189 :tag "Org Appearance"
4190 :group 'org)
4192 (defcustom org-level-color-stars-only nil
4193 "Non-nil means fontify only the stars in each headline.
4194 When nil, the entire headline is fontified.
4195 Changing it requires restart of `font-lock-mode' to become effective
4196 also in regions already fontified."
4197 :group 'org-appearance
4198 :type 'boolean)
4200 (defcustom org-hide-leading-stars nil
4201 "Non-nil means hide the first N-1 stars in a headline.
4202 This works by using the face `org-hide' for these stars. This
4203 face is white for a light background, and black for a dark
4204 background. You may have to customize the face `org-hide' to
4205 make this work.
4206 Changing it requires restart of `font-lock-mode' to become effective
4207 also in regions already fontified.
4208 You may also set this on a per-file basis by adding one of the following
4209 lines to the buffer:
4211 #+STARTUP: hidestars
4212 #+STARTUP: showstars"
4213 :group 'org-appearance
4214 :type 'boolean)
4216 (defcustom org-hidden-keywords nil
4217 "List of symbols corresponding to keywords to be hidden the org buffer.
4218 For example, a value \\='(title) for this list will make the document's title
4219 appear in the buffer without the initial #+TITLE: keyword."
4220 :group 'org-appearance
4221 :version "24.1"
4222 :type '(set (const :tag "#+AUTHOR" author)
4223 (const :tag "#+DATE" date)
4224 (const :tag "#+EMAIL" email)
4225 (const :tag "#+TITLE" title)))
4227 (defcustom org-custom-properties nil
4228 "List of properties (as strings) with a special meaning.
4229 The default use of these custom properties is to let the user
4230 hide them with `org-toggle-custom-properties-visibility'."
4231 :group 'org-properties
4232 :group 'org-appearance
4233 :version "24.3"
4234 :type '(repeat (string :tag "Property Name")))
4236 (defcustom org-fontify-done-headline nil
4237 "Non-nil means change the face of a headline if it is marked DONE.
4238 Normally, only the TODO/DONE keyword indicates the state of a headline.
4239 When this is non-nil, the headline after the keyword is set to the
4240 `org-headline-done' as an additional indication."
4241 :group 'org-appearance
4242 :type 'boolean)
4244 (defcustom org-fontify-emphasized-text t
4245 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4246 Changing this variable requires a restart of Emacs to take effect."
4247 :group 'org-appearance
4248 :type 'boolean)
4250 (defcustom org-fontify-whole-heading-line nil
4251 "Non-nil means fontify the whole line for headings.
4252 This is useful when setting a background color for the
4253 org-level-* faces."
4254 :group 'org-appearance
4255 :type 'boolean)
4257 (defcustom org-highlight-latex-and-related nil
4258 "Non-nil means highlight LaTeX related syntax in the buffer.
4259 When non nil, the value should be a list containing any of the
4260 following symbols:
4261 `latex' Highlight LaTeX snippets and environments.
4262 `script' Highlight subscript and superscript.
4263 `entities' Highlight entities."
4264 :group 'org-appearance
4265 :version "24.4"
4266 :package-version '(Org . "8.0")
4267 :type '(choice
4268 (const :tag "No highlighting" nil)
4269 (set :greedy t :tag "Highlight"
4270 (const :tag "LaTeX snippets and environments" latex)
4271 (const :tag "Subscript and superscript" script)
4272 (const :tag "Entities" entities))))
4274 (defcustom org-hide-emphasis-markers nil
4275 "Non-nil mean font-lock should hide the emphasis marker characters."
4276 :group 'org-appearance
4277 :type 'boolean)
4279 (defcustom org-hide-macro-markers nil
4280 "Non-nil mean font-lock should hide the brackets marking macro calls."
4281 :group 'org-appearance
4282 :type 'boolean)
4284 (defcustom org-pretty-entities nil
4285 "Non-nil means show entities as UTF8 characters.
4286 When nil, the \\name form remains in the buffer."
4287 :group 'org-appearance
4288 :version "24.1"
4289 :type 'boolean)
4291 (defcustom org-pretty-entities-include-sub-superscripts t
4292 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4293 :group 'org-appearance
4294 :version "24.1"
4295 :type 'boolean)
4297 (defvar org-emph-re nil
4298 "Regular expression for matching emphasis.
4299 After a match, the match groups contain these elements:
4300 0 The match of the full regular expression, including the characters
4301 before and after the proper match
4302 1 The character before the proper match, or empty at beginning of line
4303 2 The proper match, including the leading and trailing markers
4304 3 The leading marker like * or /, indicating the type of highlighting
4305 4 The text between the emphasis markers, not including the markers
4306 5 The character after the match, empty at the end of a line")
4307 (defvar org-verbatim-re nil
4308 "Regular expression for matching verbatim text.")
4309 (defvar org-emphasis-regexp-components) ; defined just below
4310 (defvar org-emphasis-alist) ; defined just below
4311 (defun org-set-emph-re (var val)
4312 "Set variable and compute the emphasis regular expression."
4313 (set var val)
4314 (when (and (boundp 'org-emphasis-alist)
4315 (boundp 'org-emphasis-regexp-components)
4316 org-emphasis-alist org-emphasis-regexp-components)
4317 (let* ((e org-emphasis-regexp-components)
4318 (pre (car e))
4319 (post (nth 1 e))
4320 (border (nth 2 e))
4321 (body (nth 3 e))
4322 (nl (nth 4 e))
4323 (body1 (concat body "*?"))
4324 (markers (mapconcat 'car org-emphasis-alist ""))
4325 (vmarkers (mapconcat
4326 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4327 org-emphasis-alist "")))
4328 ;; make sure special characters appear at the right position in the class
4329 (if (string-match "\\^" markers)
4330 (setq markers (concat (replace-match "" t t markers) "^")))
4331 (if (string-match "-" markers)
4332 (setq markers (concat (replace-match "" t t markers) "-")))
4333 (if (string-match "\\^" vmarkers)
4334 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4335 (if (string-match "-" vmarkers)
4336 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4337 (if (> nl 0)
4338 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4339 (int-to-string nl) "\\}")))
4340 ;; Make the regexp
4341 (setq org-emph-re
4342 (concat "\\([" pre "]\\|^\\)"
4343 "\\("
4344 "\\([" markers "]\\)"
4345 "\\("
4346 "[^" border "]\\|"
4347 "[^" border "]"
4348 body1
4349 "[^" border "]"
4350 "\\)"
4351 "\\3\\)"
4352 "\\([" post "]\\|$\\)"))
4353 (setq org-verbatim-re
4354 (concat "\\([" pre "]\\|^\\)"
4355 "\\("
4356 "\\([" vmarkers "]\\)"
4357 "\\("
4358 "[^" border "]\\|"
4359 "[^" border "]"
4360 body1
4361 "[^" border "]"
4362 "\\)"
4363 "\\3\\)"
4364 "\\([" post "]\\|$\\)")))))
4366 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4367 ;; set this option proved cumbersome. See this message/thread:
4368 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4369 (defvar org-emphasis-regexp-components
4370 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4371 "Components used to build the regular expression for emphasis.
4372 This is a list with five entries. Terminology: In an emphasis string
4373 like \" *strong word* \", we call the initial space PREMATCH, the final
4374 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4375 and \"trong wor\" is the body. The different components in this variable
4376 specify what is allowed/forbidden in each part:
4378 pre Chars allowed as prematch. Beginning of line will be allowed too.
4379 post Chars allowed as postmatch. End of line will be allowed too.
4380 border The chars *forbidden* as border characters.
4381 body-regexp A regexp like \".\" to match a body character. Don't use
4382 non-shy groups here, and don't allow newline here.
4383 newline The maximum number of newlines allowed in an emphasis exp.
4385 You need to reload Org or to restart Emacs after customizing this.")
4387 (defcustom org-emphasis-alist
4388 `(("*" bold)
4389 ("/" italic)
4390 ("_" underline)
4391 ("=" org-verbatim verbatim)
4392 ("~" org-code verbatim)
4393 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4394 "Alist of characters and faces to emphasize text.
4395 Text starting and ending with a special character will be emphasized,
4396 for example *bold*, _underlined_ and /italic/. This variable sets the
4397 marker characters and the face to be used by font-lock for highlighting
4398 in Org-mode Emacs buffers.
4400 You need to reload Org or to restart Emacs after customizing this."
4401 :group 'org-appearance
4402 :set 'org-set-emph-re
4403 :version "24.4"
4404 :package-version '(Org . "8.0")
4405 :type '(repeat
4406 (list
4407 (string :tag "Marker character")
4408 (choice
4409 (face :tag "Font-lock-face")
4410 (plist :tag "Face property list"))
4411 (option (const verbatim)))))
4413 (defvar org-protecting-blocks
4414 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4415 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4416 This is needed for font-lock setup.")
4418 ;;; Miscellaneous options
4420 (defgroup org-completion nil
4421 "Completion in Org-mode."
4422 :tag "Org Completion"
4423 :group 'org)
4425 (defcustom org-completion-use-ido nil
4426 "Non-nil means use ido completion wherever possible.
4427 Note that `ido-mode' must be active for this variable to be relevant.
4428 If you decide to turn this variable on, you might well want to turn off
4429 `org-outline-path-complete-in-steps'.
4430 See also `org-completion-use-iswitchb'."
4431 :group 'org-completion
4432 :type 'boolean)
4434 (defcustom org-completion-use-iswitchb nil
4435 "Non-nil means use iswitchb completion wherever possible.
4436 Note that `iswitchb-mode' must be active for this variable to be relevant.
4437 If you decide to turn this variable on, you might well want to turn off
4438 `org-outline-path-complete-in-steps'.
4439 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4440 :group 'org-completion
4441 :type 'boolean)
4443 (defcustom org-completion-fallback-command 'hippie-expand
4444 "The expansion command called by \\[pcomplete] in normal context.
4445 Normal means, no org-mode-specific context."
4446 :group 'org-completion
4447 :type 'function)
4449 ;;; Functions and variables from their packages
4450 ;; Declared here to avoid compiler warnings
4452 ;; XEmacs only
4453 (defvar outline-mode-menu-heading)
4454 (defvar outline-mode-menu-show)
4455 (defvar outline-mode-menu-hide)
4456 (defvar zmacs-regions) ; XEmacs regions
4458 ;; Emacs only
4459 (defvar mark-active)
4461 ;; Various packages
4462 (declare-function calendar-iso-to-absolute "cal-iso" (date))
4463 (declare-function calendar-forward-day "cal-move" (arg))
4464 (declare-function calendar-goto-date "cal-move" (date))
4465 (declare-function calendar-goto-today "cal-move" ())
4466 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4467 (defvar calc-embedded-close-formula)
4468 (defvar calc-embedded-open-formula)
4469 (declare-function cdlatex-tab "ext:cdlatex" ())
4470 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4471 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4472 (defvar font-lock-unfontify-region-function)
4473 (declare-function iswitchb-read-buffer "iswitchb"
4474 (prompt &optional
4475 default require-match _predicate start matches-set))
4476 (defvar iswitchb-temp-buflist)
4477 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4478 (defvar org-agenda-tags-todo-honor-ignore-options)
4479 (declare-function org-agenda-skip "org-agenda" ())
4480 (declare-function
4481 org-agenda-format-item "org-agenda"
4482 (extra txt &optional level category tags dotime remove-re habitp))
4483 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4484 (declare-function org-agenda-change-all-lines "org-agenda"
4485 (newhead hdmarker &optional fixface just-this))
4486 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4487 (declare-function org-agenda-maybe-redo "org-agenda" ())
4488 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4489 (beg end))
4490 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4491 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4492 "org-agenda" (&optional end))
4493 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4494 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4495 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4496 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4497 (declare-function org-indent-mode "org-indent" (&optional arg))
4498 (declare-function parse-time-string "parse-time" (string))
4499 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4500 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4501 (defvar remember-data-file)
4502 (defvar texmathp-why)
4503 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4504 (declare-function table--at-cell-p "table" (position &optional object at-column))
4505 (declare-function calc-eval "calc" (str &optional separator &rest args))
4507 ;;;###autoload
4508 (defun turn-on-orgtbl ()
4509 "Unconditionally turn on `orgtbl-mode'."
4510 (require 'org-table)
4511 (orgtbl-mode 1))
4513 (defun org-at-table-p (&optional table-type)
4514 "Non-nil if the cursor is inside an Org table.
4515 If TABLE-TYPE is non-nil, also check for table.el-type tables.
4516 If `org-enable-table-editor' is nil, return nil unconditionally."
4517 (and
4518 org-enable-table-editor
4519 (save-excursion
4520 (beginning-of-line)
4521 (org-looking-at-p (if table-type "[ \t]*[|+]" "[ \t]*|")))
4522 (or (not (derived-mode-p 'org-mode))
4523 (let ((e (org-element-lineage (org-element-at-point) '(table) t)))
4524 (and e (or table-type (eq (org-element-property :type e) 'org)))))))
4525 (defsubst org-table-p () (org-at-table-p))
4527 (defun org-at-table.el-p ()
4528 "Non-nil when point is at a table.el table."
4529 (and (save-excursion (beginning-of-line) (looking-at "[ \t]*[|+]"))
4530 (let ((element (org-element-at-point)))
4531 (and (eq (org-element-type element) 'table)
4532 (eq (org-element-property :type element) 'table.el)))))
4534 (defun org-table-recognize-table.el ()
4535 "If there is a table.el table nearby, recognize it and move into it."
4536 (when (and org-table-tab-recognizes-table.el (org-at-table.el-p))
4537 (beginning-of-line)
4538 (unless (or (looking-at org-table-dataline-regexp)
4539 (not (looking-at org-table1-hline-regexp)))
4540 (forward-line)
4541 (when (looking-at org-table-any-border-regexp)
4542 (forward-line -2)))
4543 (if (re-search-forward "|" (org-table-end t) t)
4544 (progn
4545 (require 'table)
4546 (if (table--at-cell-p (point)) t
4547 (message "recognizing table.el table...")
4548 (table-recognize-table)
4549 (message "recognizing table.el table...done")))
4550 (error "This should not happen"))))
4552 (defun org-at-table-hline-p ()
4553 "Non-nil when point is inside a hline in a table.
4554 Assume point is already in a table. If `org-enable-table-editor'
4555 is nil, return nil unconditionally."
4556 (and org-enable-table-editor
4557 (save-excursion
4558 (beginning-of-line)
4559 (looking-at org-table-hline-regexp))))
4561 (defun org-table-map-tables (function &optional quietly)
4562 "Apply FUNCTION to the start of all tables in the buffer."
4563 (save-excursion
4564 (save-restriction
4565 (widen)
4566 (goto-char (point-min))
4567 (while (re-search-forward org-table-any-line-regexp nil t)
4568 (unless quietly
4569 (message "Mapping tables: %d%%"
4570 (floor (* 100.0 (point)) (buffer-size))))
4571 (beginning-of-line 1)
4572 (when (and (looking-at org-table-line-regexp)
4573 ;; Exclude tables in src/example/verbatim/clocktable blocks
4574 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4575 (save-excursion (funcall function))
4576 (or (looking-at org-table-line-regexp)
4577 (forward-char 1)))
4578 (re-search-forward org-table-any-border-regexp nil 1))))
4579 (unless quietly (message "Mapping tables: done")))
4581 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4582 (declare-function org-clock-update-mode-line "org-clock" ())
4583 (declare-function org-resolve-clocks "org-clock"
4584 (&optional also-non-dangling-p prompt last-valid))
4586 (defun org-at-TBLFM-p (&optional pos)
4587 "Non-nil when point (or POS) is in #+TBLFM line."
4588 (save-excursion
4589 (goto-char (or pos (point)))
4590 (beginning-of-line)
4591 (and (let ((case-fold-search t)) (looking-at org-TBLFM-regexp))
4592 (eq (org-element-type (org-element-at-point)) 'table))))
4594 (defvar org-clock-start-time)
4595 (defvar org-clock-marker (make-marker)
4596 "Marker recording the last clock-in.")
4597 (defvar org-clock-hd-marker (make-marker)
4598 "Marker recording the last clock-in, but the headline position.")
4599 (defvar org-clock-heading ""
4600 "The heading of the current clock entry.")
4601 (defun org-clock-is-active ()
4602 "Return the buffer where the clock is currently running.
4603 Return nil if no clock is running."
4604 (marker-buffer org-clock-marker))
4606 (defun org-check-running-clock ()
4607 "Check if the current buffer contains the running clock.
4608 If yes, offer to stop it and to save the buffer with the changes."
4609 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4610 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4611 (buffer-name))))
4612 (org-clock-out)
4613 (when (y-or-n-p "Save changed buffer?")
4614 (save-buffer))))
4616 (defun org-clocktable-try-shift (dir n)
4617 "Check if this line starts a clock table, if yes, shift the time block."
4618 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4619 (org-clocktable-shift dir n)))
4621 ;;;###autoload
4622 (defun org-clock-persistence-insinuate ()
4623 "Set up hooks for clock persistence."
4624 (require 'org-clock)
4625 (add-hook 'org-mode-hook 'org-clock-load)
4626 (add-hook 'kill-emacs-hook 'org-clock-save))
4628 (defgroup org-archive nil
4629 "Options concerning archiving in Org-mode."
4630 :tag "Org Archive"
4631 :group 'org-structure)
4633 (defcustom org-archive-location "%s_archive::"
4634 "The location where subtrees should be archived.
4636 The value of this variable is a string, consisting of two parts,
4637 separated by a double-colon. The first part is a filename and
4638 the second part is a headline.
4640 When the filename is omitted, archiving happens in the same file.
4641 %s in the filename will be replaced by the current file
4642 name (without the directory part). Archiving to a different file
4643 is useful to keep archived entries from contributing to the
4644 Org-mode Agenda.
4646 The archived entries will be filed as subtrees of the specified
4647 headline. When the headline is omitted, the subtrees are simply
4648 filed away at the end of the file, as top-level entries. Also in
4649 the heading you can use %s to represent the file name, this can be
4650 useful when using the same archive for a number of different files.
4652 Here are a few examples:
4653 \"%s_archive::\"
4654 If the current file is Projects.org, archive in file
4655 Projects.org_archive, as top-level trees. This is the default.
4657 \"::* Archived Tasks\"
4658 Archive in the current file, under the top-level headline
4659 \"* Archived Tasks\".
4661 \"~/org/archive.org::\"
4662 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4664 \"~/org/archive.org::* From %s\"
4665 Archive in file ~/org/archive.org (absolute path), under headlines
4666 \"From FILENAME\" where file name is the current file name.
4668 \"~/org/datetree.org::datetree/* Finished Tasks\"
4669 The \"datetree/\" string is special, signifying to archive
4670 items to the datetree. Items are placed in either the CLOSED
4671 date of the item, or the current date if there is no CLOSED date.
4672 The heading will be a subentry to the current date. There doesn't
4673 need to be a heading, but there always needs to be a slash after
4674 datetree. For example, to store archived items directly in the
4675 datetree, use \"~/org/datetree.org::datetree/\".
4677 \"basement::** Finished Tasks\"
4678 Archive in file ./basement (relative path), as level 3 trees
4679 below the level 2 heading \"** Finished Tasks\".
4681 You may set this option on a per-file basis by adding to the buffer a
4682 line like
4684 #+ARCHIVE: basement::** Finished Tasks
4686 You may also define it locally for a subtree by setting an ARCHIVE property
4687 in the entry. If such a property is found in an entry, or anywhere up
4688 the hierarchy, it will be used."
4689 :group 'org-archive
4690 :type 'string)
4692 (defcustom org-agenda-skip-archived-trees t
4693 "Non-nil means the agenda will skip any items located in archived trees.
4694 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4695 variable is no longer recommended, you should leave it at the value t.
4696 Instead, use the key `v' to cycle the archives-mode in the agenda."
4697 :group 'org-archive
4698 :group 'org-agenda-skip
4699 :type 'boolean)
4701 (defcustom org-columns-skip-archived-trees t
4702 "Non-nil means ignore archived trees when creating column view."
4703 :group 'org-archive
4704 :group 'org-properties
4705 :type 'boolean)
4707 (defcustom org-cycle-open-archived-trees nil
4708 "Non-nil means `org-cycle' will open archived trees.
4709 An archived tree is a tree marked with the tag ARCHIVE.
4710 When nil, archived trees will stay folded. You can still open them with
4711 normal outline commands like `show-all', but not with the cycling commands."
4712 :group 'org-archive
4713 :group 'org-cycle
4714 :type 'boolean)
4716 (defcustom org-sparse-tree-open-archived-trees nil
4717 "Non-nil means sparse tree construction shows matches in archived trees.
4718 When nil, matches in these trees are highlighted, but the trees are kept in
4719 collapsed state."
4720 :group 'org-archive
4721 :group 'org-sparse-trees
4722 :type 'boolean)
4724 (defcustom org-sparse-tree-default-date-type nil
4725 "The default date type when building a sparse tree.
4726 When this is nil, a date is a scheduled or a deadline timestamp.
4727 Otherwise, these types are allowed:
4729 all: all timestamps
4730 active: only active timestamps (<...>)
4731 inactive: only inactive timestamps ([...])
4732 scheduled: only scheduled timestamps
4733 deadline: only deadline timestamps"
4734 :type '(choice (const :tag "Scheduled or deadline" nil)
4735 (const :tag "All timestamps" all)
4736 (const :tag "Only active timestamps" active)
4737 (const :tag "Only inactive timestamps" inactive)
4738 (const :tag "Only scheduled timestamps" scheduled)
4739 (const :tag "Only deadline timestamps" deadline)
4740 (const :tag "Only closed timestamps" closed))
4741 :version "25.1"
4742 :package-version '(Org . "8.3")
4743 :group 'org-sparse-trees)
4745 (defun org-cycle-hide-archived-subtrees (state)
4746 "Re-hide all archived subtrees after a visibility state change."
4747 (when (and (not org-cycle-open-archived-trees)
4748 (not (memq state '(overview folded))))
4749 (save-excursion
4750 (let* ((globalp (memq state '(contents all)))
4751 (beg (if globalp (point-min) (point)))
4752 (end (if globalp (point-max) (org-end-of-subtree t))))
4753 (org-hide-archived-subtrees beg end)
4754 (goto-char beg)
4755 (if (looking-at (concat ".*:" org-archive-tag ":"))
4756 (message "%s" (substitute-command-keys
4757 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4759 (defun org-force-cycle-archived ()
4760 "Cycle subtree even if it is archived."
4761 (interactive)
4762 (setq this-command 'org-cycle)
4763 (let ((org-cycle-open-archived-trees t))
4764 (call-interactively 'org-cycle)))
4766 (defun org-hide-archived-subtrees (beg end)
4767 "Re-hide all archived subtrees after a visibility state change."
4768 (org-with-wide-buffer
4769 (let ((case-fold-search nil)
4770 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
4771 (goto-char beg)
4772 ;; Include headline point is currently on.
4773 (beginning-of-line)
4774 (while (and (< (point) end) (re-search-forward re end t))
4775 (when (member org-archive-tag (org-get-tags))
4776 (org-flag-subtree t)
4777 (org-end-of-subtree t))))))
4779 (declare-function outline-end-of-heading "outline" ())
4780 (declare-function outline-flag-region "outline" (from to flag))
4781 (defun org-flag-subtree (flag)
4782 (save-excursion
4783 (org-back-to-heading t)
4784 (outline-end-of-heading)
4785 (outline-flag-region (point)
4786 (progn (org-end-of-subtree t) (point))
4787 flag)))
4789 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4791 ;; Declare Column View Code
4793 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4794 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4795 (declare-function org-columns-compute "org-colview" (property))
4797 ;; Declare ID code
4799 (declare-function org-id-store-link "org-id")
4800 (declare-function org-id-locations-load "org-id")
4801 (declare-function org-id-locations-save "org-id")
4802 (defvar org-id-track-globally)
4804 ;;; Variables for pre-computed regular expressions, all buffer local
4806 (defvar org-todo-regexp nil
4807 "Matches any of the TODO state keywords.")
4808 (make-variable-buffer-local 'org-todo-regexp)
4809 (defvar org-not-done-regexp nil
4810 "Matches any of the TODO state keywords except the last one.")
4811 (make-variable-buffer-local 'org-not-done-regexp)
4812 (defvar org-not-done-heading-regexp nil
4813 "Matches a TODO headline that is not done.")
4814 (make-variable-buffer-local 'org-not-done-heading-regexp)
4815 (defvar org-todo-line-regexp nil
4816 "Matches a headline and puts TODO state into group 2 if present.")
4817 (make-variable-buffer-local 'org-todo-line-regexp)
4818 (defvar org-complex-heading-regexp nil
4819 "Matches a headline and puts everything into groups:
4820 group 1: the stars
4821 group 2: The todo keyword, maybe
4822 group 3: Priority cookie
4823 group 4: True headline
4824 group 5: Tags")
4825 (make-variable-buffer-local 'org-complex-heading-regexp)
4826 (defvar org-complex-heading-regexp-format nil
4827 "Printf format to make regexp to match an exact headline.
4828 This regexp will match the headline of any node which has the
4829 exact headline text that is put into the format, but may have any
4830 TODO state, priority and tags.")
4831 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4832 (defvar org-todo-line-tags-regexp nil
4833 "Matches a headline and puts TODO state into group 2 if present.
4834 Also put tags into group 4 if tags are present.")
4835 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4837 (defconst org-plain-time-of-day-regexp
4838 (concat
4839 "\\(\\<[012]?[0-9]"
4840 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4841 "\\(--?"
4842 "\\(\\<[012]?[0-9]"
4843 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4844 "\\)?")
4845 "Regular expression to match a plain time or time range.
4846 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4847 groups carry important information:
4848 0 the full match
4849 1 the first time, range or not
4850 8 the second time, if it is a range.")
4852 (defconst org-plain-time-extension-regexp
4853 (concat
4854 "\\(\\<[012]?[0-9]"
4855 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4856 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4857 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4858 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4859 groups carry important information:
4860 0 the full match
4861 7 hours of duration
4862 9 minutes of duration")
4864 (defconst org-stamp-time-of-day-regexp
4865 (concat
4866 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4867 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4868 "\\(--?"
4869 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4870 "Regular expression to match a timestamp time or time range.
4871 After a match, the following groups carry important information:
4872 0 the full match
4873 1 date plus weekday, for back referencing to make sure both times are on the same day
4874 2 the first time, range or not
4875 4 the second time, if it is a range.")
4877 (defconst org-startup-options
4878 '(("fold" org-startup-folded t)
4879 ("overview" org-startup-folded t)
4880 ("nofold" org-startup-folded nil)
4881 ("showall" org-startup-folded nil)
4882 ("showeverything" org-startup-folded showeverything)
4883 ("content" org-startup-folded content)
4884 ("indent" org-startup-indented t)
4885 ("noindent" org-startup-indented nil)
4886 ("hidestars" org-hide-leading-stars t)
4887 ("showstars" org-hide-leading-stars nil)
4888 ("odd" org-odd-levels-only t)
4889 ("oddeven" org-odd-levels-only nil)
4890 ("align" org-startup-align-all-tables t)
4891 ("noalign" org-startup-align-all-tables nil)
4892 ("inlineimages" org-startup-with-inline-images t)
4893 ("noinlineimages" org-startup-with-inline-images nil)
4894 ("latexpreview" org-startup-with-latex-preview t)
4895 ("nolatexpreview" org-startup-with-latex-preview nil)
4896 ("customtime" org-display-custom-times t)
4897 ("logdone" org-log-done time)
4898 ("lognotedone" org-log-done note)
4899 ("nologdone" org-log-done nil)
4900 ("lognoteclock-out" org-log-note-clock-out t)
4901 ("nolognoteclock-out" org-log-note-clock-out nil)
4902 ("logrepeat" org-log-repeat state)
4903 ("lognoterepeat" org-log-repeat note)
4904 ("logdrawer" org-log-into-drawer t)
4905 ("nologdrawer" org-log-into-drawer nil)
4906 ("logstatesreversed" org-log-states-order-reversed t)
4907 ("nologstatesreversed" org-log-states-order-reversed nil)
4908 ("nologrepeat" org-log-repeat nil)
4909 ("logreschedule" org-log-reschedule time)
4910 ("lognotereschedule" org-log-reschedule note)
4911 ("nologreschedule" org-log-reschedule nil)
4912 ("logredeadline" org-log-redeadline time)
4913 ("lognoteredeadline" org-log-redeadline note)
4914 ("nologredeadline" org-log-redeadline nil)
4915 ("logrefile" org-log-refile time)
4916 ("lognoterefile" org-log-refile note)
4917 ("nologrefile" org-log-refile nil)
4918 ("fninline" org-footnote-define-inline t)
4919 ("nofninline" org-footnote-define-inline nil)
4920 ("fnlocal" org-footnote-section nil)
4921 ("fnauto" org-footnote-auto-label t)
4922 ("fnprompt" org-footnote-auto-label nil)
4923 ("fnconfirm" org-footnote-auto-label confirm)
4924 ("fnplain" org-footnote-auto-label plain)
4925 ("fnadjust" org-footnote-auto-adjust t)
4926 ("nofnadjust" org-footnote-auto-adjust nil)
4927 ("constcgs" constants-unit-system cgs)
4928 ("constSI" constants-unit-system SI)
4929 ("noptag" org-tag-persistent-alist nil)
4930 ("hideblocks" org-hide-block-startup t)
4931 ("nohideblocks" org-hide-block-startup nil)
4932 ("beamer" org-startup-with-beamer-mode t)
4933 ("entitiespretty" org-pretty-entities t)
4934 ("entitiesplain" org-pretty-entities nil))
4935 "Variable associated with STARTUP options for org-mode.
4936 Each element is a list of three items: the startup options (as written
4937 in the #+STARTUP line), the corresponding variable, and the value to set
4938 this variable to if the option is found. An optional forth element PUSH
4939 means to push this value onto the list in the variable.")
4941 (defcustom org-group-tags t
4942 "When non-nil (the default), use group tags.
4943 This can be turned on/off through `org-toggle-tags-groups'."
4944 :group 'org-tags
4945 :group 'org-startup
4946 :type 'boolean)
4948 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4950 (defun org-toggle-tags-groups ()
4951 "Toggle support for group tags.
4952 Support for group tags is controlled by the option
4953 `org-group-tags', which is non-nil by default."
4954 (interactive)
4955 (setq org-group-tags (not org-group-tags))
4956 (cond ((and (derived-mode-p 'org-agenda-mode)
4957 org-group-tags)
4958 (org-agenda-redo))
4959 ((derived-mode-p 'org-mode)
4960 (let ((org-inhibit-startup t)) (org-mode))))
4961 (message "Groups tags support has been turned %s"
4962 (if org-group-tags "on" "off")))
4964 (defun org-set-regexps-and-options (&optional tags-only)
4965 "Precompute regular expressions used in the current buffer.
4966 When optional argument TAGS-ONLY is non-nil, only compute tags
4967 related expressions."
4968 (when (derived-mode-p 'org-mode)
4969 (let ((alist (org--setup-collect-keywords
4970 (org-make-options-regexp
4971 (append '("FILETAGS" "TAGS" "SETUPFILE")
4972 (and (not tags-only)
4973 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4974 "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
4975 "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
4976 (org--setup-process-tags
4977 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4978 (unless tags-only
4979 ;; File properties.
4980 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4981 ;; Archive location.
4982 (let ((archive (cdr (assq 'archive alist))))
4983 (when archive (org-set-local 'org-archive-location archive)))
4984 ;; Category.
4985 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4986 (when cat
4987 (org-set-local 'org-category (intern cat))
4988 (org-set-local 'org-file-properties
4989 (org--update-property-plist
4990 "CATEGORY" cat org-file-properties))))
4991 ;; Columns.
4992 (let ((column (cdr (assq 'columns alist))))
4993 (when column (org-set-local 'org-columns-default-format column)))
4994 ;; Constants.
4995 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4996 ;; Link abbreviations.
4997 (let ((links (cdr (assq 'link alist))))
4998 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4999 ;; Priorities.
5000 (let ((priorities (cdr (assq 'priorities alist))))
5001 (when priorities
5002 (org-set-local 'org-highest-priority (nth 0 priorities))
5003 (org-set-local 'org-lowest-priority (nth 1 priorities))
5004 (org-set-local 'org-default-priority (nth 2 priorities))))
5005 ;; Scripts.
5006 (let ((scripts (assq 'scripts alist)))
5007 (when scripts
5008 (org-set-local 'org-use-sub-superscripts (cdr scripts))))
5009 ;; Startup options.
5010 (let ((startup (cdr (assq 'startup alist))))
5011 (dolist (option startup)
5012 (let ((entry (assoc-string option org-startup-options t)))
5013 (when entry
5014 (let ((var (nth 1 entry))
5015 (val (nth 2 entry)))
5016 (if (not (nth 3 entry)) (org-set-local var val)
5017 (unless (listp (symbol-value var))
5018 (org-set-local var nil))
5019 (add-to-list var val)))))))
5020 ;; TODO keywords.
5021 (org-set-local 'org-todo-kwd-alist nil)
5022 (org-set-local 'org-todo-key-alist nil)
5023 (org-set-local 'org-todo-key-trigger nil)
5024 (org-set-local 'org-todo-keywords-1 nil)
5025 (org-set-local 'org-done-keywords nil)
5026 (org-set-local 'org-todo-heads nil)
5027 (org-set-local 'org-todo-sets nil)
5028 (org-set-local 'org-todo-log-states nil)
5029 (let ((todo-sequences
5030 (or (nreverse (cdr (assq 'todo alist)))
5031 (let ((d (default-value 'org-todo-keywords)))
5032 (if (not (stringp (car d))) d
5033 ;; XXX: Backward compatibility code.
5034 (list (cons org-todo-interpretation d)))))))
5035 (dolist (sequence todo-sequences)
5036 (let* ((sequence (or (run-hook-with-args-until-success
5037 'org-todo-setup-filter-hook sequence)
5038 sequence))
5039 (sequence-type (car sequence))
5040 (keywords (cdr sequence))
5041 (sep (member "|" keywords))
5042 names alist)
5043 (dolist (k (remove "|" keywords))
5044 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5046 (error "Invalid TODO keyword %s" k))
5047 (let ((name (match-string 1 k))
5048 (key (match-string 2 k))
5049 (log (org-extract-log-state-settings k)))
5050 (push name names)
5051 (push (cons name (and key (string-to-char key))) alist)
5052 (when log (push log org-todo-log-states))))
5053 (let* ((names (nreverse names))
5054 (done (if sep (org-remove-keyword-keys (cdr sep))
5055 (last names)))
5056 (head (car names))
5057 (tail (list sequence-type head (car done) (org-last done))))
5058 (add-to-list 'org-todo-heads head 'append)
5059 (push names org-todo-sets)
5060 (setq org-done-keywords (append org-done-keywords done nil))
5061 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5062 (setq org-todo-key-alist
5063 (append org-todo-key-alist
5064 (and alist
5065 (append '((:startgroup))
5066 (nreverse alist)
5067 '((:endgroup))))))
5068 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5069 (setq org-todo-sets (nreverse org-todo-sets)
5070 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5071 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5072 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5073 ;; Compute the regular expressions and other local variables.
5074 ;; Using `org-outline-regexp-bol' would complicate them much,
5075 ;; because of the fixed white space at the end of that string.
5076 (if (not org-done-keywords)
5077 (setq org-done-keywords
5078 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5079 (setq org-not-done-keywords
5080 (org-delete-all org-done-keywords
5081 (copy-sequence org-todo-keywords-1))
5082 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5083 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5084 org-not-done-heading-regexp
5085 (format org-heading-keyword-regexp-format org-not-done-regexp)
5086 org-todo-line-regexp
5087 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5088 org-complex-heading-regexp
5089 (concat "^\\(\\*+\\)"
5090 "\\(?: +" org-todo-regexp "\\)?"
5091 "\\(?: +\\(\\[#.\\]\\)\\)?"
5092 "\\(?: +\\(.*?\\)\\)??"
5093 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5094 "[ \t]*$")
5095 org-complex-heading-regexp-format
5096 (concat "^\\(\\*+\\)"
5097 "\\(?: +" org-todo-regexp "\\)?"
5098 "\\(?: +\\(\\[#.\\]\\)\\)?"
5099 "\\(?: +"
5100 ;; Stats cookies can be stuck to body.
5101 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5102 "\\(%s\\)"
5103 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5104 "\\)"
5105 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5106 "[ \t]*$")
5107 org-todo-line-tags-regexp
5108 (concat "^\\(\\*+\\)"
5109 "\\(?: +" org-todo-regexp "\\)?"
5110 "\\(?: +\\(.*?\\)\\)??"
5111 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5112 "[ \t]*$"))
5113 (org-compute-latex-and-related-regexp)))))
5115 (defun org--setup-collect-keywords (regexp &optional files alist)
5116 "Return setup keywords values as an alist.
5118 REGEXP matches a subset of setup keywords. FILES is a list of
5119 file names already visited. It is used to avoid circular setup
5120 files. ALIST, when non-nil, is the alist computed so far.
5122 Return value contains the following keys: `archive', `category',
5123 `columns', `constants', `filetags', `link', `priorities',
5124 `property', `scripts', `startup', `tags' and `todo'."
5125 (org-with-wide-buffer
5126 (goto-char (point-min))
5127 (let ((case-fold-search t))
5128 (while (re-search-forward regexp nil t)
5129 (let ((element (org-element-at-point)))
5130 (when (eq (org-element-type element) 'keyword)
5131 (let ((key (org-element-property :key element))
5132 (value (org-element-property :value element)))
5133 (cond
5134 ((equal key "ARCHIVE")
5135 (when (org-string-nw-p value)
5136 (push (cons 'archive value) alist)))
5137 ((equal key "CATEGORY") (push (cons 'category value) alist))
5138 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5139 ((equal key "CONSTANTS")
5140 (let* ((constants (assq 'constants alist))
5141 (store (cdr constants)))
5142 (dolist (pair (org-split-string value))
5143 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5144 pair)
5145 (let* ((name (match-string 1 pair))
5146 (value (match-string 2 pair))
5147 (old (assoc name store)))
5148 (if old (setcdr old value)
5149 (push (cons name value) store)))))
5150 (if constants (setcdr constants store)
5151 (push (cons 'constants store) alist))))
5152 ((equal key "FILETAGS")
5153 (when (org-string-nw-p value)
5154 (let ((old (assq 'filetags alist))
5155 (new (apply #'nconc
5156 (mapcar (lambda (x) (org-split-string x ":"))
5157 (org-split-string value)))))
5158 (if old (setcdr old (append new (cdr old)))
5159 (push (cons 'filetags new) alist)))))
5160 ((equal key "LINK")
5161 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5162 (let ((links (assq 'link alist))
5163 (pair (cons (org-match-string-no-properties 1 value)
5164 (org-match-string-no-properties 2 value))))
5165 (if links (push pair (cdr links))
5166 (push (list 'link pair) alist)))))
5167 ((equal key "OPTIONS")
5168 (when (and (org-string-nw-p value)
5169 (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
5170 (push (cons 'scripts (read (match-string 1 value))) alist)))
5171 ((equal key "PRIORITIES")
5172 (push (cons 'priorities
5173 (let ((prio (org-split-string value)))
5174 (if (< (length prio) 3) '(?A ?C ?B)
5175 (mapcar #'string-to-char prio))))
5176 alist))
5177 ((equal key "PROPERTY")
5178 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5179 (let* ((property (assq 'property alist))
5180 (value (org--update-property-plist
5181 (org-match-string-no-properties 1 value)
5182 (org-match-string-no-properties 2 value)
5183 (cdr property))))
5184 (if property (setcdr property value)
5185 (push (cons 'property value) alist)))))
5186 ((equal key "STARTUP")
5187 (let ((startup (assq 'startup alist)))
5188 (if startup
5189 (setcdr startup
5190 (append (cdr startup) (org-split-string value)))
5191 (push (cons 'startup (org-split-string value)) alist))))
5192 ((equal key "TAGS")
5193 (let ((tag-cell (assq 'tags alist)))
5194 (if tag-cell
5195 (setcdr tag-cell
5196 (append (cdr tag-cell)
5197 '("\\n")
5198 (org-split-string value)))
5199 (push (cons 'tags (org-split-string value)) alist))))
5200 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5201 (let ((todo (assq 'todo alist))
5202 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5203 (org-split-string value))))
5204 (if todo (push value (cdr todo))
5205 (push (list 'todo value) alist))))
5206 ((equal key "SETUPFILE")
5207 (unless buffer-read-only ; Do not check in Gnus messages.
5208 (let ((f (and (org-string-nw-p value)
5209 (expand-file-name
5210 (org-remove-double-quotes value)))))
5211 (when (and f (file-readable-p f) (not (member f files)))
5212 (with-temp-buffer
5213 (setq default-directory (file-name-directory f))
5214 (insert-file-contents f)
5215 (setq alist
5216 ;; Fake Org mode to benefit from cache
5217 ;; without recurring needlessly.
5218 (let ((major-mode 'org-mode))
5219 (org--setup-collect-keywords
5220 regexp (cons f files) alist)))))))))))))))
5221 alist)
5223 (defun org--setup-process-tags (tags filetags)
5224 "Precompute variables used for tags.
5225 TAGS is a list of tags and tag group symbols, as strings.
5226 FILETAGS is a list of tags, as strings."
5227 ;; Process the file tags.
5228 (org-set-local 'org-file-tags
5229 (mapcar #'org-add-prop-inherited filetags))
5230 ;; Provide default tags if no local tags are found.
5231 (when (and (not tags) org-tag-alist)
5232 (setq tags
5233 (mapcar (lambda (tag)
5234 (case (car tag)
5235 (:startgroup "{")
5236 (:endgroup "}")
5237 (:startgrouptag "[")
5238 (:endgrouptag "]")
5239 (:grouptags ":")
5240 (:newline "\\n")
5241 (otherwise (concat (car tag)
5242 (and (characterp (cdr tag))
5243 (format "(%c)" (cdr tag)))))))
5244 org-tag-alist)))
5245 ;; Process the tags.
5246 (org-set-local 'org-tag-groups-alist nil)
5247 (org-set-local 'org-tag-alist nil)
5248 (let (group-flag)
5249 (while tags
5250 (let ((e (car tags)))
5251 (setq tags (cdr tags))
5252 (cond
5253 ((equal e "{")
5254 (push '(:startgroup) org-tag-alist)
5255 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5256 ((equal e "}")
5257 (push '(:endgroup) org-tag-alist)
5258 (setq group-flag nil))
5259 ((equal e "[")
5260 (push '(:startgrouptag) org-tag-alist)
5261 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5262 ((equal e "]")
5263 (push '(:endgrouptag) org-tag-alist)
5264 (setq group-flag nil))
5265 ((equal e ":")
5266 (push '(:grouptags) org-tag-alist)
5267 (setq group-flag 'append))
5268 ((equal e "\\n") (push '(:newline) org-tag-alist))
5269 ((string-match
5270 (org-re (concat "\\`\\([[:alnum:]_@#%]+"
5271 "\\|{.+?}\\)" ; regular expression
5272 "\\(?:(\\(.\\))\\)?\\'")) e)
5273 (let ((tag (match-string 1 e))
5274 (key (and (match-beginning 2)
5275 (string-to-char (match-string 2 e)))))
5276 (cond ((eq group-flag 'append)
5277 (setcar org-tag-groups-alist
5278 (append (car org-tag-groups-alist) (list tag))))
5279 (group-flag (push (list tag) org-tag-groups-alist)))
5280 ;; Push all tags in groups, no matter if they already exist.
5281 (unless (and (not group-flag) (assoc tag org-tag-alist))
5282 (push (cons tag key) org-tag-alist))))))))
5283 (setq org-tag-alist (nreverse org-tag-alist)))
5285 (defun org-file-contents (file &optional noerror)
5286 "Return the contents of FILE, as a string."
5287 (if (and file (file-readable-p file))
5288 (with-temp-buffer
5289 (insert-file-contents file)
5290 (buffer-string))
5291 (funcall (if noerror 'message 'error)
5292 "Cannot read file \"%s\"%s"
5293 file
5294 (let ((from (buffer-file-name (buffer-base-buffer))))
5295 (if from (concat " (referenced in file \"" from "\")") "")))))
5297 (defun org-extract-log-state-settings (x)
5298 "Extract the log state setting from a TODO keyword string.
5299 This will extract info from a string like \"WAIT(w@/!)\"."
5300 (let (kw key log1 log2)
5301 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5302 (setq kw (match-string 1 x)
5303 key (and (match-end 2) (match-string 2 x))
5304 log1 (and (match-end 3) (match-string 3 x))
5305 log2 (and (match-end 4) (match-string 4 x)))
5306 (and (or log1 log2)
5307 (list kw
5308 (and log1 (if (equal log1 "!") 'time 'note))
5309 (and log2 (if (equal log2 "!") 'time 'note)))))))
5311 (defun org-remove-keyword-keys (list)
5312 "Remove a pair of parenthesis at the end of each string in LIST."
5313 (mapcar (lambda (x)
5314 (if (string-match "(.*)$" x)
5315 (substring x 0 (match-beginning 0))
5317 list))
5319 (defun org-assign-fast-keys (alist)
5320 "Assign fast keys to a keyword-key alist.
5321 Respect keys that are already there."
5322 (let (new e (alt ?0))
5323 (while (setq e (pop alist))
5324 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5325 (cdr e)) ;; Key already assigned.
5326 (push e new)
5327 (let ((clist (string-to-list (downcase (car e))))
5328 (used (append new alist)))
5329 (when (= (car clist) ?@)
5330 (pop clist))
5331 (while (and clist (rassoc (car clist) used))
5332 (pop clist))
5333 (unless clist
5334 (while (rassoc alt used)
5335 (incf alt)))
5336 (push (cons (car e) (or (car clist) alt)) new))))
5337 (nreverse new)))
5339 ;;; Some variables used in various places
5341 (defvar org-window-configuration nil
5342 "Used in various places to store a window configuration.")
5343 (defvar org-selected-window nil
5344 "Used in various places to store a window configuration.")
5345 (defvar org-finish-function nil
5346 "Function to be called when `C-c C-c' is used.
5347 This is for getting out of special buffers like capture.")
5350 ;; FIXME: Occasionally check by commenting these, to make sure
5351 ;; no other functions uses these, forgetting to let-bind them.
5352 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5353 (defvar org-last-state)
5354 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5356 ;; Defined somewhere in this file, but used before definition.
5357 (defvar org-entities) ;; defined in org-entities.el
5358 (defvar org-struct-menu)
5359 (defvar org-org-menu)
5360 (defvar org-tbl-menu)
5362 ;;;; Define the Org-mode
5364 ;; We use a before-change function to check if a table might need
5365 ;; an update.
5366 (defvar org-table-may-need-update t
5367 "Indicates that a table might need an update.
5368 This variable is set by `org-before-change-function'.
5369 `org-table-align' sets it back to nil.")
5370 (defun org-before-change-function (beg end)
5371 "Every change indicates that a table might need an update."
5372 (setq org-table-may-need-update t))
5373 (defvar org-mode-map)
5374 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5375 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5376 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5377 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5378 (defvar org-table-buffer-is-an nil)
5380 (defvar bidi-paragraph-direction)
5381 (defvar buffer-face-mode-face)
5383 (require 'outline)
5384 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5385 (error "Conflict with outdated version of allout.el. Load org.el before allout.el, or upgrade to newer allout, for example by switching to Emacs 22"))
5386 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5388 ;; Other stuff we need.
5389 (require 'time-date)
5390 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5391 (require 'easymenu)
5392 (autoload 'easy-menu-add "easymenu")
5393 (require 'overlay)
5395 ;; (require 'org-macs) moved higher up in the file before it is first used
5396 (require 'org-entities)
5397 ;; (require 'org-compat) moved higher up in the file before it is first used
5398 (require 'org-faces)
5399 (require 'org-list)
5400 (require 'org-pcomplete)
5401 (require 'org-src)
5402 (require 'org-footnote)
5403 (require 'org-macro)
5405 ;; babel
5406 (require 'ob)
5408 ;;;###autoload
5409 (define-derived-mode org-mode outline-mode "Org"
5410 "Outline-based notes management and organizer, alias
5411 \"Carsten's outline-mode for keeping track of everything.\"
5413 Org-mode develops organizational tasks around a NOTES file which
5414 contains information about projects as plain text. Org-mode is
5415 implemented on top of outline-mode, which is ideal to keep the content
5416 of large files well structured. It supports ToDo items, deadlines and
5417 time stamps, which magically appear in the diary listing of the Emacs
5418 calendar. Tables are easily created with a built-in table editor.
5419 Plain text URL-like links connect to websites, emails (VM), Usenet
5420 messages (Gnus), BBDB entries, and any files related to the project.
5421 For printing and sharing of notes, an Org-mode file (or a part of it)
5422 can be exported as a structured ASCII or HTML file.
5424 The following commands are available:
5426 \\{org-mode-map}"
5428 ;; Get rid of Outline menus, they are not needed
5429 ;; Need to do this here because define-derived-mode sets up
5430 ;; the keymap so late. Still, it is a waste to call this each time
5431 ;; we switch another buffer into org-mode.
5432 (if (featurep 'xemacs)
5433 (when (boundp 'outline-mode-menu-heading)
5434 ;; Assume this is Greg's port, it uses easymenu
5435 (easy-menu-remove outline-mode-menu-heading)
5436 (easy-menu-remove outline-mode-menu-show)
5437 (easy-menu-remove outline-mode-menu-hide))
5438 (define-key org-mode-map [menu-bar headings] 'undefined)
5439 (define-key org-mode-map [menu-bar hide] 'undefined)
5440 (define-key org-mode-map [menu-bar show] 'undefined))
5442 (org-load-modules-maybe)
5443 (when (featurep 'xemacs)
5444 (easy-menu-add org-org-menu)
5445 (easy-menu-add org-tbl-menu))
5446 (org-install-agenda-files-menu)
5447 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5448 (add-to-invisibility-spec '(org-cwidth))
5449 (add-to-invisibility-spec '(org-hide-block . t))
5450 (when (featurep 'xemacs)
5451 (org-set-local 'line-move-ignore-invisible t))
5452 (org-set-local 'outline-regexp org-outline-regexp)
5453 (org-set-local 'outline-level 'org-outline-level)
5454 (setq bidi-paragraph-direction 'left-to-right)
5455 (when (and org-ellipsis
5456 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5457 (fboundp 'make-glyph-code))
5458 (unless org-display-table
5459 (setq org-display-table (make-display-table)))
5460 (set-display-table-slot
5461 org-display-table 4
5462 (vconcat (mapcar
5463 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5464 org-ellipsis)))
5465 (if (stringp org-ellipsis) org-ellipsis "..."))))
5466 (setq buffer-display-table org-display-table))
5467 (org-set-regexps-and-options)
5468 (org-set-font-lock-defaults)
5469 (when (and org-tag-faces (not org-tags-special-faces-re))
5470 ;; tag faces set outside customize.... force initialization.
5471 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5472 ;; Calc embedded
5473 (org-set-local 'calc-embedded-open-mode "# ")
5474 ;; Modify a few syntax entries
5475 (modify-syntax-entry ?@ "w")
5476 (modify-syntax-entry ?\" "\"")
5477 (modify-syntax-entry ?\\ "_")
5478 (modify-syntax-entry ?~ "_")
5479 (if org-startup-truncated (setq truncate-lines t))
5480 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5481 (org-set-local 'font-lock-unfontify-region-function
5482 'org-unfontify-region)
5483 ;; Activate before-change-function
5484 (org-set-local 'org-table-may-need-update t)
5485 (org-add-hook 'before-change-functions 'org-before-change-function nil
5486 'local)
5487 ;; Check for running clock before killing a buffer
5488 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5489 ;; Initialize macros templates.
5490 (org-macro-initialize-templates)
5491 ;; Initialize radio targets.
5492 (org-update-radio-target-regexp)
5493 ;; Indentation.
5494 (org-set-local 'indent-line-function 'org-indent-line)
5495 (org-set-local 'indent-region-function 'org-indent-region)
5496 ;; Filling and auto-filling.
5497 (org-setup-filling)
5498 ;; Comments.
5499 (org-setup-comments-handling)
5500 ;; Initialize cache.
5501 (org-element-cache-reset)
5502 ;; Beginning/end of defun
5503 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5504 (org-set-local 'end-of-defun-function
5505 (lambda ()
5506 (if (not (org-at-heading-p))
5507 (org-forward-element)
5508 (org-forward-element)
5509 (forward-char -1))))
5510 ;; Next error for sparse trees
5511 (org-set-local 'next-error-function 'org-occur-next-match)
5512 ;; Make sure dependence stuff works reliably, even for users who set it
5513 ;; too late :-(
5514 (if org-enforce-todo-dependencies
5515 (add-hook 'org-blocker-hook
5516 'org-block-todo-from-children-or-siblings-or-parent)
5517 (remove-hook 'org-blocker-hook
5518 'org-block-todo-from-children-or-siblings-or-parent))
5519 (if org-enforce-todo-checkbox-dependencies
5520 (add-hook 'org-blocker-hook
5521 'org-block-todo-from-checkboxes)
5522 (remove-hook 'org-blocker-hook
5523 'org-block-todo-from-checkboxes))
5525 ;; Align options lines
5526 (org-set-local
5527 'align-mode-rules-list
5528 '((org-in-buffer-settings
5529 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5530 (modes . '(org-mode)))))
5532 ;; Imenu
5533 (org-set-local 'imenu-create-index-function
5534 'org-imenu-get-tree)
5536 ;; Make isearch reveal context
5537 (if (or (featurep 'xemacs)
5538 (not (boundp 'outline-isearch-open-invisible-function)))
5539 ;; Emacs 21 and XEmacs make use of the hook
5540 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5541 ;; Emacs 22 deals with this through a special variable
5542 (org-set-local 'outline-isearch-open-invisible-function
5543 (lambda (&rest ignore) (org-show-context 'isearch))))
5545 ;; Setup the pcomplete hooks
5546 (set (make-local-variable 'pcomplete-command-completion-function)
5547 'org-pcomplete-initial)
5548 (set (make-local-variable 'pcomplete-command-name-function)
5549 'org-command-at-point)
5550 (set (make-local-variable 'pcomplete-default-completion-function)
5551 'ignore)
5552 (set (make-local-variable 'pcomplete-parse-arguments-function)
5553 'org-parse-arguments)
5554 (set (make-local-variable 'pcomplete-termination-string) "")
5555 (when (>= emacs-major-version 23)
5556 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5558 ;; If empty file that did not turn on org-mode automatically, make it to.
5559 (if (and org-insert-mode-line-in-empty-file
5560 (org-called-interactively-p 'any)
5561 (= (point-min) (point-max)))
5562 (insert "# -*- mode: org -*-\n\n"))
5563 (unless org-inhibit-startup
5564 (org-unmodified
5565 (and org-startup-with-beamer-mode (org-beamer-mode))
5566 (when org-startup-align-all-tables
5567 (org-table-map-tables 'org-table-align 'quietly))
5568 (when org-startup-with-inline-images
5569 (org-display-inline-images))
5570 (when org-startup-with-latex-preview
5571 (org-toggle-latex-fragment))
5572 (unless org-inhibit-startup-visibility-stuff
5573 (org-set-startup-visibility))
5574 (org-refresh-effort-properties)))
5575 ;; Try to set org-hide correctly
5576 (let ((foreground (org-find-invisible-foreground)))
5577 (if foreground
5578 (set-face-foreground 'org-hide foreground))))
5580 ;; Update `customize-package-emacs-version-alist'
5581 (add-to-list 'customize-package-emacs-version-alist
5582 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5583 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5584 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5586 (defvar org-mode-transpose-word-syntax-table
5587 (let ((st (make-syntax-table text-mode-syntax-table)))
5588 (mapc (lambda(c) (modify-syntax-entry
5589 (string-to-char (car c)) "w p" st))
5590 org-emphasis-alist)
5591 st))
5593 (when (fboundp 'abbrev-table-put)
5594 (abbrev-table-put org-mode-abbrev-table
5595 :parents (list text-mode-abbrev-table)))
5597 (defun org-find-invisible-foreground ()
5598 (let ((candidates (remove
5599 "unspecified-bg"
5600 (nconc
5601 (list (face-background 'default)
5602 (face-background 'org-default))
5603 (mapcar
5604 (lambda (alist)
5605 (when (boundp alist)
5606 (cdr (assoc 'background-color (symbol-value alist)))))
5607 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5608 (list (face-foreground 'org-hide))))))
5609 (car (remove nil candidates))))
5611 (defun org-current-time (&optional rounding-minutes past)
5612 "Current time, possibly rounded to ROUNDING-MINUTES.
5613 When ROUNDING-MINUTES is not an integer, fall back on the car of
5614 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5615 the rounding returns a past time."
5616 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5617 (car org-time-stamp-rounding-minutes)))
5618 (time (decode-time)) res)
5619 (if (< r 1)
5620 (current-time)
5621 (setq res
5622 (apply 'encode-time
5623 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5624 (nthcdr 2 time))))
5625 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5626 (seconds-to-time (- (org-float-time res) (* r 60)))
5627 res))))
5629 (defun org-today ()
5630 "Return today date, considering `org-extend-today-until'."
5631 (time-to-days
5632 (time-subtract (current-time)
5633 (list 0 (* 3600 org-extend-today-until) 0))))
5635 ;;;; Font-Lock stuff, including the activators
5637 (defvar org-mouse-map (make-sparse-keymap))
5638 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5639 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5640 (when org-mouse-1-follows-link
5641 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5642 (when org-tab-follows-link
5643 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5644 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5646 (require 'font-lock)
5648 (defconst org-non-link-chars "]\t\n\r<>")
5649 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5650 "file+sys" "news" "shell" "elisp" "doi" "message"
5651 "help"))
5652 (defvar org-link-types-re nil
5653 "Matches a link that has a url-like prefix like \"http:\"")
5654 (defvar org-link-re-with-space nil
5655 "Matches a link with spaces, optional angular brackets around it.")
5656 (defvar org-link-re-with-space2 nil
5657 "Matches a link with spaces, optional angular brackets around it.")
5658 (defvar org-link-re-with-space3 nil
5659 "Matches a link with spaces, only for internal part in bracket links.")
5660 (defvar org-angle-link-re nil
5661 "Matches link with angular brackets, spaces are allowed.")
5662 (defvar org-plain-link-re nil
5663 "Matches plain link, without spaces.")
5664 (defvar org-bracket-link-regexp nil
5665 "Matches a link in double brackets.")
5666 (defvar org-bracket-link-analytic-regexp nil
5667 "Regular expression used to analyze links.
5668 Here is what the match groups contain after a match:
5669 1: http:
5670 2: http
5671 3: path
5672 4: [desc]
5673 5: desc")
5674 (defvar org-bracket-link-analytic-regexp++ nil
5675 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5676 (defvar org-any-link-re nil
5677 "Regular expression matching any link.")
5679 (defconst org-match-sexp-depth 3
5680 "Number of stacked braces for sub/superscript matching.")
5682 (defun org-create-multibrace-regexp (left right n)
5683 "Create a regular expression which will match a balanced sexp.
5684 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5685 as single character strings.
5686 The regexp returned will match the entire expression including the
5687 delimiters. It will also define a single group which contains the
5688 match except for the outermost delimiters. The maximum depth of
5689 stacked delimiters is N. Escaping delimiters is not possible."
5690 (let* ((nothing (concat "[^" left right "]*?"))
5691 (or "\\|")
5692 (re nothing)
5693 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5694 (while (> n 1)
5695 (setq n (1- n)
5696 re (concat re or next)
5697 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5698 (concat left "\\(" re "\\)" right)))
5700 (defconst org-match-substring-regexp
5701 (concat
5702 "\\(\\S-\\)\\([_^]\\)\\("
5703 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5704 "\\|"
5705 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5706 "\\|"
5707 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5708 "The regular expression matching a sub- or superscript.")
5710 (defconst org-match-substring-with-braces-regexp
5711 (concat
5712 "\\(\\S-\\)\\([_^]\\)"
5713 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5714 "The regular expression matching a sub- or superscript, forcing braces.")
5716 (defun org-make-link-regexps ()
5717 "Update the link regular expressions.
5718 This should be called after the variable `org-link-types' has changed."
5719 (let ((types-re (regexp-opt org-link-types t)))
5720 (setq org-link-types-re
5721 (concat "\\`" types-re ":")
5722 org-link-re-with-space
5723 (concat "<?" types-re ":"
5724 "\\([^" org-non-link-chars " ]"
5725 "[^" org-non-link-chars "]*"
5726 "[^" org-non-link-chars " ]\\)>?")
5727 org-link-re-with-space2
5728 (concat "<?" types-re ":"
5729 "\\([^" org-non-link-chars " ]"
5730 "[^\t\n\r]*"
5731 "[^" org-non-link-chars " ]\\)>?")
5732 org-link-re-with-space3
5733 (concat "<?" types-re ":"
5734 "\\([^" org-non-link-chars " ]"
5735 "[^\t\n\r]*\\)")
5736 org-angle-link-re
5737 (format "<%s:\\([^>\n]*\\(?:\n[ \t]*[^> \t\n][^>\n]*\\)*\\)>"
5738 types-re)
5739 org-plain-link-re
5740 (concat
5741 "\\<" types-re ":"
5742 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5743 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5744 org-bracket-link-regexp
5745 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5746 org-bracket-link-analytic-regexp
5747 (concat
5748 "\\[\\["
5749 "\\(" types-re ":\\)?"
5750 "\\([^]]+\\)"
5751 "\\]"
5752 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5753 "\\]")
5754 org-bracket-link-analytic-regexp++
5755 (concat
5756 "\\[\\["
5757 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5758 "\\([^]]+\\)"
5759 "\\]"
5760 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5761 "\\]")
5762 org-any-link-re
5763 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5764 org-angle-link-re "\\)\\|\\("
5765 org-plain-link-re "\\)"))))
5767 (org-make-link-regexps)
5769 (defvar org-emph-face nil)
5771 (defun org-do-emphasis-faces (limit)
5772 "Run through the buffer and emphasize strings."
5773 (let (rtn a)
5774 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5775 (let* ((border (char-after (match-beginning 3)))
5776 (bre (regexp-quote (char-to-string border))))
5777 (if (and (not (= border (char-after (match-beginning 4))))
5778 (not (save-match-data
5779 (string-match (concat bre ".*" bre)
5780 (replace-regexp-in-string
5781 "\n" " "
5782 (substring (match-string 2) 1 -1))))))
5783 (progn
5784 (setq rtn t)
5785 (setq a (assoc (match-string 3) org-emphasis-alist))
5786 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5787 'face
5788 (nth 1 a))
5789 (and (nth 2 a)
5790 (org-remove-flyspell-overlays-in
5791 (match-beginning 0) (match-end 0)))
5792 (add-text-properties (match-beginning 2) (match-end 2)
5793 '(font-lock-multiline t org-emphasis t))
5794 (when org-hide-emphasis-markers
5795 (add-text-properties (match-end 4) (match-beginning 5)
5796 '(invisible org-link))
5797 (add-text-properties (match-beginning 3) (match-end 3)
5798 '(invisible org-link))))))
5799 (goto-char (1+ (match-beginning 0))))
5800 rtn))
5802 (defun org-emphasize (&optional char)
5803 "Insert or change an emphasis, i.e. a font like bold or italic.
5804 If there is an active region, change that region to a new emphasis.
5805 If there is no region, just insert the marker characters and position
5806 the cursor between them.
5807 CHAR should be the marker character. If it is a space, it means to
5808 remove the emphasis of the selected region.
5809 If CHAR is not given (for example in an interactive call) it will be
5810 prompted for."
5811 (interactive)
5812 (let ((erc org-emphasis-regexp-components)
5813 (prompt "")
5814 (string "") beg end move c s)
5815 (if (org-region-active-p)
5816 (setq beg (region-beginning) end (region-end)
5817 string (buffer-substring beg end))
5818 (setq move t))
5820 (unless char
5821 (message "Emphasis marker or tag: [%s]"
5822 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5823 (setq char (read-char-exclusive)))
5824 (if (equal char ?\ )
5825 (setq s "" move nil)
5826 (unless (assoc (char-to-string char) org-emphasis-alist)
5827 (user-error "No such emphasis marker: \"%c\"" char))
5828 (setq s (char-to-string char)))
5829 (while (and (> (length string) 1)
5830 (equal (substring string 0 1) (substring string -1))
5831 (assoc (substring string 0 1) org-emphasis-alist))
5832 (setq string (substring string 1 -1)))
5833 (setq string (concat s string s))
5834 (if beg (delete-region beg end))
5835 (unless (or (bolp)
5836 (string-match (concat "[" (nth 0 erc) "\n]")
5837 (char-to-string (char-before (point)))))
5838 (insert " "))
5839 (unless (or (eobp)
5840 (string-match (concat "[" (nth 1 erc) "\n]")
5841 (char-to-string (char-after (point)))))
5842 (insert " ") (backward-char 1))
5843 (insert string)
5844 (and move (backward-char 1))))
5846 (defconst org-nonsticky-props
5847 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5849 (defsubst org-rear-nonsticky-at (pos)
5850 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5852 (defun org-activate-plain-links (limit)
5853 "Add link properties for plain links."
5854 (when (and (re-search-forward org-plain-link-re limit t)
5855 (not (org-in-src-block-p)))
5856 (let ((face (get-text-property (max (1- (match-beginning 0)) (point-min))
5857 'face))
5858 (link (org-match-string-no-properties 0)))
5859 (unless (if (consp face) (memq 'org-tag face) (eq 'org-tag face))
5860 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5861 (add-text-properties (match-beginning 0) (match-end 0)
5862 (list 'mouse-face 'highlight
5863 'face 'org-link
5864 'htmlize-link `(:uri ,link)
5865 'keymap org-mouse-map))
5866 (org-rear-nonsticky-at (match-end 0))
5867 t))))
5869 (defun org-activate-code (limit)
5870 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5871 (progn
5872 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5873 (remove-text-properties (match-beginning 0) (match-end 0)
5874 '(display t invisible t intangible t))
5875 t)))
5877 (defcustom org-src-fontify-natively t
5878 "When non-nil, fontify code in code blocks."
5879 :type 'boolean
5880 :version "24.4"
5881 :package-version '(Org . "8.3")
5882 :group 'org-appearance
5883 :group 'org-babel)
5885 (defcustom org-allow-promoting-top-level-subtree nil
5886 "When non-nil, allow promoting a top level subtree.
5887 The leading star of the top level headline will be replaced
5888 by a #."
5889 :type 'boolean
5890 :version "24.1"
5891 :group 'org-appearance)
5893 (defun org-fontify-meta-lines-and-blocks (limit)
5894 (condition-case nil
5895 (org-fontify-meta-lines-and-blocks-1 limit)
5896 (error (message "org-mode fontification error"))))
5898 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5899 "Fontify #+ lines and blocks."
5900 (let ((case-fold-search t))
5901 (if (re-search-forward
5902 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5903 limit t)
5904 (let ((beg (match-beginning 0))
5905 (block-start (match-end 0))
5906 (block-end nil)
5907 (lang (match-string 7))
5908 (beg1 (line-beginning-position 2))
5909 (dc1 (downcase (match-string 2)))
5910 (dc3 (downcase (match-string 3)))
5911 end end1 quoting block-type ovl)
5912 (cond
5913 ((and (match-end 4) (equal dc3 "+begin"))
5914 ;; Truly a block
5915 (setq block-type (downcase (match-string 5))
5916 quoting (member block-type org-protecting-blocks))
5917 (when (re-search-forward
5918 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5919 nil t) ;; on purpose, we look further than LIMIT
5920 (setq end (min (point-max) (match-end 0))
5921 end1 (min (point-max) (1- (match-beginning 0))))
5922 (setq block-end (match-beginning 0))
5923 (when quoting
5924 (org-remove-flyspell-overlays-in beg1 end1)
5925 (remove-text-properties beg end
5926 '(display t invisible t intangible t)))
5927 (add-text-properties
5928 beg end '(font-lock-fontified t font-lock-multiline t))
5929 (add-text-properties beg beg1 '(face org-meta-line))
5930 (org-remove-flyspell-overlays-in beg beg1)
5931 (add-text-properties ; For end_src
5932 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5933 (org-remove-flyspell-overlays-in end1 end)
5934 (cond
5935 ((and lang (not (string= lang "")) org-src-fontify-natively)
5936 (org-src-font-lock-fontify-block lang block-start block-end)
5937 (add-text-properties beg1 block-end '(src-block t)))
5938 (quoting
5939 (add-text-properties beg1 (min (point-max) (1+ end1))
5940 '(face org-block))) ; end of source block
5941 ((not org-fontify-quote-and-verse-blocks))
5942 ((string= block-type "quote")
5943 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5944 ((string= block-type "verse")
5945 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5946 (add-text-properties beg beg1 '(face org-block-begin-line))
5947 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5948 '(face org-block-end-line))
5950 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5951 (org-remove-flyspell-overlays-in
5952 (match-beginning 0)
5953 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5954 (add-text-properties
5955 beg (match-end 3)
5956 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5957 '(font-lock-fontified t invisible t)
5958 '(font-lock-fontified t face org-document-info-keyword)))
5959 (add-text-properties
5960 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5961 (if (string-equal dc1 "+title:")
5962 '(font-lock-fontified t face org-document-title)
5963 '(font-lock-fontified t face org-document-info))))
5964 ((equal dc1 "+caption:")
5965 (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
5966 (remove-text-properties (match-beginning 0) (match-end 0)
5967 '(display t invisible t intangible t))
5968 (add-text-properties (match-beginning 1) (match-end 3)
5969 '(font-lock-fontified t face org-meta-line))
5970 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5971 '(font-lock-fontified t face org-block))
5973 ((member dc3 '(" " ""))
5974 (org-remove-flyspell-overlays-in beg (match-end 0))
5975 (add-text-properties
5976 beg (match-end 0)
5977 '(font-lock-fontified t face font-lock-comment-face)))
5978 (t ;; just any other in-buffer setting, but not indented
5979 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5980 (remove-text-properties (match-beginning 0) (match-end 0)
5981 '(display t invisible t intangible t))
5982 (add-text-properties beg (match-end 0)
5983 '(font-lock-fontified t face org-meta-line))
5984 t))))))
5986 (defun org-fontify-drawers (limit)
5987 "Fontify drawers."
5988 (when (re-search-forward org-drawer-regexp limit t)
5989 (add-text-properties
5990 (match-beginning 0) (match-end 0)
5991 '(font-lock-fontified t face org-special-keyword))
5992 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5995 (defun org-fontify-macros (limit)
5996 "Fontify macros."
5997 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
5998 (add-text-properties
5999 (match-beginning 0) (match-end 0)
6000 '(font-lock-fontified t face org-macro))
6001 (when org-hide-macro-markers
6002 (add-text-properties (match-end 2) (match-beginning 2)
6003 '(invisible t))
6004 (add-text-properties (match-beginning 1) (match-end 1)
6005 '(invisible t)))
6006 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6009 (defun org-activate-angle-links (limit)
6010 "Add text properties for angle links."
6011 (if (and (re-search-forward org-angle-link-re limit t)
6012 (not (org-in-src-block-p)))
6013 (progn
6014 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6015 (add-text-properties (match-beginning 0) (match-end 0)
6016 (list 'mouse-face 'highlight
6017 'keymap org-mouse-map
6018 'font-lock-multiline t))
6019 (org-rear-nonsticky-at (match-end 0))
6020 t)))
6022 (defun org-activate-footnote-links (limit)
6023 "Add text properties for footnotes."
6024 (let ((fn (org-footnote-next-reference-or-definition limit)))
6025 (when fn
6026 (let* ((beg (nth 1 fn))
6027 (end (nth 2 fn))
6028 (label (car fn))
6029 (referencep (/= (line-beginning-position) beg)))
6030 (when (and referencep (nth 3 fn))
6031 (save-excursion
6032 (goto-char beg)
6033 (search-forward (or label "fn:"))
6034 (org-remove-flyspell-overlays-in beg (match-end 0))))
6035 (add-text-properties beg end
6036 (list 'mouse-face 'highlight
6037 'keymap org-mouse-map
6038 'help-echo
6039 (if referencep "Footnote reference"
6040 "Footnote definition")
6041 'font-lock-fontified t
6042 'font-lock-multiline t
6043 'face 'org-footnote))))))
6045 (defun org-activate-bracket-links (limit)
6046 "Add text properties for bracketed links."
6047 (if (and (re-search-forward org-bracket-link-regexp limit t)
6048 (not (org-in-src-block-p)))
6049 (let* ((hl (org-match-string-no-properties 1))
6050 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6051 (ip (org-maybe-intangible
6052 (list 'invisible 'org-link
6053 'keymap org-mouse-map 'mouse-face 'highlight
6054 'font-lock-multiline t 'help-echo help
6055 'htmlize-link `(:uri ,hl))))
6056 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6057 'font-lock-multiline t 'help-echo help
6058 'htmlize-link `(:uri ,hl))))
6059 ;; We need to remove the invisible property here. Table narrowing
6060 ;; may have made some of this invisible.
6061 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6062 (remove-text-properties (match-beginning 0) (match-end 0)
6063 '(invisible nil))
6064 (if (match-end 3)
6065 (progn
6066 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6067 (org-rear-nonsticky-at (match-beginning 3))
6068 (add-text-properties (match-beginning 3) (match-end 3) vp)
6069 (org-rear-nonsticky-at (match-end 3))
6070 (add-text-properties (match-end 3) (match-end 0) ip)
6071 (org-rear-nonsticky-at (match-end 0)))
6072 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6073 (org-rear-nonsticky-at (match-beginning 1))
6074 (add-text-properties (match-beginning 1) (match-end 1) vp)
6075 (org-rear-nonsticky-at (match-end 1))
6076 (add-text-properties (match-end 1) (match-end 0) ip)
6077 (org-rear-nonsticky-at (match-end 0)))
6078 t)))
6080 (defun org-activate-dates (limit)
6081 "Add text properties for dates."
6082 (if (and (re-search-forward org-tsr-regexp-both limit t)
6083 (not (equal (char-before (match-beginning 0)) 91)))
6084 (progn
6085 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6086 (add-text-properties (match-beginning 0) (match-end 0)
6087 (list 'mouse-face 'highlight
6088 'keymap org-mouse-map))
6089 (org-rear-nonsticky-at (match-end 0))
6090 (when org-display-custom-times
6091 (if (match-end 3)
6092 (org-display-custom-time (match-beginning 3) (match-end 3)))
6093 (org-display-custom-time (match-beginning 1) (match-end 1)))
6094 t)))
6096 (defvar org-target-link-regexp nil
6097 "Regular expression matching radio targets in plain text.")
6098 (make-variable-buffer-local 'org-target-link-regexp)
6100 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6101 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6102 border border border))
6103 "Regular expression matching a link target.")
6105 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6106 "Regular expression matching a radio target.")
6108 (defconst org-any-target-regexp
6109 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6110 "Regular expression matching any target.")
6112 (defun org-activate-target-links (limit)
6113 "Add text properties for target matches."
6114 (when org-target-link-regexp
6115 (let ((case-fold-search t))
6116 (if (re-search-forward org-target-link-regexp limit t)
6117 (progn
6118 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6119 (add-text-properties (match-beginning 1) (match-end 1)
6120 (list 'mouse-face 'highlight
6121 'keymap org-mouse-map
6122 'help-echo "Radio target link"
6123 'org-linked-text t))
6124 (org-rear-nonsticky-at (match-end 1))
6125 t)))))
6127 (defun org-update-radio-target-regexp ()
6128 "Find all radio targets in this file and update the regular expression.
6129 Also refresh fontification if needed."
6130 (interactive)
6131 (let ((old-regexp org-target-link-regexp)
6132 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6133 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6134 (targets
6135 (org-with-wide-buffer
6136 (goto-char (point-min))
6137 (let (rtn)
6138 (while (re-search-forward org-radio-target-regexp nil t)
6139 ;; Make sure point is really within the object.
6140 (backward-char)
6141 (let ((obj (org-element-context)))
6142 (when (eq (org-element-type obj) 'radio-target)
6143 (add-to-list 'rtn (org-element-property :value obj)))))
6144 rtn))))
6145 (setq org-target-link-regexp
6146 (and targets
6147 (concat before-re
6148 (mapconcat
6149 (lambda (x)
6150 (replace-regexp-in-string
6151 " +" "\\s-+" (regexp-quote x) t t))
6152 targets
6153 "\\|")
6154 after-re)))
6155 (unless (equal old-regexp org-target-link-regexp)
6156 ;; Clean-up cache.
6157 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6158 ((not org-target-link-regexp) old-regexp)
6160 (concat before-re
6161 (mapconcat
6162 (lambda (re)
6163 (substring re (length before-re)
6164 (- (length after-re))))
6165 (list old-regexp org-target-link-regexp)
6166 "\\|")
6167 after-re)))))
6168 (org-with-wide-buffer
6169 (goto-char (point-min))
6170 (while (re-search-forward regexp nil t)
6171 (org-element-cache-refresh (match-beginning 1)))))
6172 ;; Re fontify buffer.
6173 (when (memq 'radio org-highlight-links)
6174 (org-restart-font-lock)))))
6176 (defun org-hide-wide-columns (limit)
6177 (let (s e)
6178 (setq s (text-property-any (point) (or limit (point-max))
6179 'org-cwidth t))
6180 (when s
6181 (setq e (next-single-property-change s 'org-cwidth))
6182 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6183 (goto-char e)
6184 t)))
6186 (defvar org-latex-and-related-regexp nil
6187 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6189 (defun org-compute-latex-and-related-regexp ()
6190 "Compute regular expression for LaTeX, entities and sub/superscript.
6191 Result depends on variable `org-highlight-latex-and-related'."
6192 (org-set-local
6193 'org-latex-and-related-regexp
6194 (let* ((re-sub
6195 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6196 ((eq org-use-sub-superscripts '{})
6197 (list org-match-substring-with-braces-regexp))
6198 (org-use-sub-superscripts (list org-match-substring-regexp))))
6199 (re-latex
6200 (when (memq 'latex org-highlight-latex-and-related)
6201 (let ((matchers (plist-get org-format-latex-options :matchers)))
6202 (delq nil
6203 (mapcar (lambda (x)
6204 (and (member (car x) matchers) (nth 1 x)))
6205 org-latex-regexps)))))
6206 (re-entities
6207 (when (memq 'entities org-highlight-latex-and-related)
6208 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6209 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6211 (defun org-do-latex-and-related (limit)
6212 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6213 LIMIT bounds the search for syntax to highlight. Stop at first
6214 highlighted object, if any. Return t if some highlighting was
6215 done, nil otherwise."
6216 (when (org-string-nw-p org-latex-and-related-regexp)
6217 (catch 'found
6218 (while (re-search-forward org-latex-and-related-regexp limit t)
6219 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6220 'face))
6221 '(org-code org-verbatim underline))
6222 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6223 '(?_ ?^))
6225 0)))
6226 (font-lock-prepend-text-property
6227 (+ offset (match-beginning 0)) (match-end 0)
6228 'face 'org-latex-and-related)
6229 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6230 '(font-lock-multiline t)))
6231 (throw 'found t)))
6232 nil)))
6234 (defun org-restart-font-lock ()
6235 "Restart `font-lock-mode', to force refontification."
6236 (when (and (boundp 'font-lock-mode) font-lock-mode)
6237 (font-lock-mode -1)
6238 (font-lock-mode 1)))
6240 (defun org-activate-tags (limit)
6241 (when (re-search-forward
6242 (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") limit t)
6243 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6244 (add-text-properties (match-beginning 1) (match-end 1)
6245 (list 'mouse-face 'highlight
6246 'keymap org-mouse-map))
6247 (org-rear-nonsticky-at (match-end 1))
6250 (defun org-outline-level ()
6251 "Compute the outline level of the heading at point.
6253 If this is called at a normal headline, the level is the number
6254 of stars. Use `org-reduced-level' to remove the effect of
6255 `org-odd-levels'. Unlike to `org-current-level', this function
6256 takes into consideration inlinetasks."
6257 (org-with-wide-buffer
6258 (end-of-line)
6259 (if (re-search-backward org-outline-regexp-bol nil t)
6260 (1- (- (match-end 0) (match-beginning 0)))
6261 0)))
6263 (defvar org-font-lock-keywords nil)
6265 (defsubst org-re-property (property &optional literal allow-null value)
6266 "Return a regexp matching a PROPERTY line.
6268 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6269 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6270 non-nil, match properties even without a value.
6272 Match group 3 is set to the value when it exists. If there is no
6273 value and ALLOW-NULL is non-nil, it is set to the empty string.
6275 With optional argument VALUE, match only property lines with
6276 that value; in this case, ALLOW-NULL is ignored. VALUE is quoted
6277 unless LITERAL is non-nil."
6278 (concat
6279 "^\\(?4:[ \t]*\\)"
6280 (format "\\(?1::\\(?2:%s\\):\\)"
6281 (if literal property (regexp-quote property)))
6282 (cond (value
6283 (format "[ \t]+\\(?3:%s\\)\\(?5:[ \t]*\\)$"
6284 (if literal value (regexp-quote value))))
6285 (allow-null
6286 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$")
6288 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$"))))
6290 (defconst org-property-re
6291 (org-re-property "\\S-+" 'literal t)
6292 "Regular expression matching a property line.
6293 There are four matching groups:
6294 1: :PROPKEY: including the leading and trailing colon,
6295 2: PROPKEY without the leading and trailing colon,
6296 3: PROPVAL without leading or trailing spaces,
6297 4: the indentation of the current line,
6298 5: trailing whitespace.")
6300 (defvar org-font-lock-hook nil
6301 "Functions to be called for special font lock stuff.")
6303 (defvar org-font-lock-set-keywords-hook nil
6304 "Functions that can manipulate `org-font-lock-extra-keywords'.
6305 This is called after `org-font-lock-extra-keywords' is defined, but before
6306 it is installed to be used by font lock. This can be useful if something
6307 needs to be inserted at a specific position in the font-lock sequence.")
6309 (defun org-font-lock-hook (limit)
6310 "Run `org-font-lock-hook' within LIMIT."
6311 (run-hook-with-args 'org-font-lock-hook limit))
6313 (defun org-set-font-lock-defaults ()
6314 "Set font lock defaults for the current buffer."
6315 (let* ((em org-fontify-emphasized-text)
6316 (lk org-highlight-links)
6317 (org-font-lock-extra-keywords
6318 (list
6319 ;; Call the hook
6320 '(org-font-lock-hook)
6321 ;; Headlines
6322 `(,(if org-fontify-whole-heading-line
6323 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6324 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6325 (1 (org-get-level-face 1))
6326 (2 (org-get-level-face 2))
6327 (3 (org-get-level-face 3)))
6328 ;; Table lines
6329 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6330 (1 'org-table t))
6331 ;; Table internals
6332 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6333 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6334 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6335 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6336 ;; Drawers
6337 '(org-fontify-drawers)
6338 ;; Properties
6339 (list org-property-re
6340 '(1 'org-special-keyword t)
6341 '(3 'org-property-value t))
6342 ;; Links
6343 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6344 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6345 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6346 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6347 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6348 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6349 (if (memq 'footnote lk) '(org-activate-footnote-links))
6350 ;; Targets.
6351 (list org-any-target-regexp '(0 'org-target t))
6352 ;; Diary sexps.
6353 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6354 ;; Macro
6355 '(org-fontify-macros)
6356 '(org-hide-wide-columns (0 nil append))
6357 ;; TODO keyword
6358 (list (format org-heading-keyword-regexp-format
6359 org-todo-regexp)
6360 '(2 (org-get-todo-face 2) t))
6361 ;; DONE
6362 (if org-fontify-done-headline
6363 (list (format org-heading-keyword-regexp-format
6364 (concat
6365 "\\(?:"
6366 (mapconcat 'regexp-quote org-done-keywords "\\|")
6367 "\\)"))
6368 '(2 'org-headline-done t))
6369 nil)
6370 ;; Priorities
6371 '(org-font-lock-add-priority-faces)
6372 ;; Tags
6373 '(org-font-lock-add-tag-faces)
6374 ;; Tags groups
6375 (if (and org-group-tags org-tag-groups-alist)
6376 (list (concat org-outline-regexp-bol ".+\\(:"
6377 (regexp-opt (mapcar 'car org-tag-groups-alist))
6378 ":\\).*$")
6379 '(1 'org-tag-group prepend)))
6380 ;; Special keywords
6381 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6382 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6383 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6384 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6385 ;; Emphasis
6386 (if em
6387 (if (featurep 'xemacs)
6388 '(org-do-emphasis-faces (0 nil append))
6389 '(org-do-emphasis-faces)))
6390 ;; Checkboxes
6391 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6392 1 'org-checkbox prepend)
6393 (if (cdr (assq 'checkbox org-list-automatic-rules))
6394 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6395 (0 (org-get-checkbox-statistics-face) t)))
6396 ;; Description list items
6397 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6398 1 'org-list-dt prepend)
6399 ;; ARCHIVEd headings
6400 (list (concat
6401 org-outline-regexp-bol
6402 "\\(.*:" org-archive-tag ":.*\\)")
6403 '(1 'org-archived prepend))
6404 ;; Specials
6405 '(org-do-latex-and-related)
6406 '(org-fontify-entities)
6407 '(org-raise-scripts)
6408 ;; Code
6409 '(org-activate-code (1 'org-code t))
6410 ;; COMMENT
6411 (list (format
6412 "^\\*+\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6413 org-todo-regexp
6414 org-comment-string)
6415 '(9 'org-special-keyword t))
6416 ;; Blocks and meta lines
6417 '(org-fontify-meta-lines-and-blocks))))
6418 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6419 (run-hooks 'org-font-lock-set-keywords-hook)
6420 ;; Now set the full font-lock-keywords
6421 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6422 (org-set-local 'font-lock-defaults
6423 '(org-font-lock-keywords t nil nil backward-paragraph))
6424 (kill-local-variable 'font-lock-keywords) nil))
6426 (defun org-toggle-pretty-entities ()
6427 "Toggle the composition display of entities as UTF8 characters."
6428 (interactive)
6429 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6430 (org-restart-font-lock)
6431 (if org-pretty-entities
6432 (message "Entities are now displayed as UTF8 characters")
6433 (save-restriction
6434 (widen)
6435 (org-decompose-region (point-min) (point-max))
6436 (message "Entities are now displayed as plain text"))))
6438 (defvar org-custom-properties-overlays nil
6439 "List of overlays used for custom properties.")
6440 (make-variable-buffer-local 'org-custom-properties-overlays)
6442 (defun org-toggle-custom-properties-visibility ()
6443 "Display or hide properties in `org-custom-properties'."
6444 (interactive)
6445 (if org-custom-properties-overlays
6446 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6447 (setq org-custom-properties-overlays nil))
6448 (when org-custom-properties
6449 (org-with-wide-buffer
6450 (goto-char (point-min))
6451 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6452 (while (re-search-forward regexp nil t)
6453 (let ((end (cdr (save-match-data (org-get-property-block)))))
6454 (when (and end (< (point) end))
6455 ;; Hide first custom property in current drawer.
6456 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6457 (overlay-put o 'invisible t)
6458 (overlay-put o 'org-custom-property t)
6459 (push o org-custom-properties-overlays))
6460 ;; Hide additional custom properties in the same drawer.
6461 (while (re-search-forward regexp end t)
6462 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6463 (overlay-put o 'invisible t)
6464 (overlay-put o 'org-custom-property t)
6465 (push o org-custom-properties-overlays)))))
6466 ;; Each entry is limited to a single property drawer.
6467 (outline-next-heading)))))))
6469 (defun org-fontify-entities (limit)
6470 "Find an entity to fontify."
6471 (let (ee)
6472 (when org-pretty-entities
6473 (catch 'match
6474 ;; "\_ "-family is left out on purpose. Only the first one,
6475 ;; i.e., "\_ ", could be fontified anyway, and it would be
6476 ;; confusing when adding a second white space character.
6477 (while (re-search-forward
6478 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6479 limit t)
6480 (if (and (not (org-at-comment-p))
6481 (setq ee (org-entity-get (match-string 1)))
6482 (= (length (nth 6 ee)) 1))
6483 (let*
6484 ((end (if (equal (match-string 2) "{}")
6485 (match-end 2)
6486 (match-end 1))))
6487 (add-text-properties
6488 (match-beginning 0) end
6489 (list 'font-lock-fontified t))
6490 (compose-region (match-beginning 0) end
6491 (nth 6 ee) nil)
6492 (backward-char 1)
6493 (throw 'match t))))
6494 nil))))
6496 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6497 "Fontify string S like in Org-mode."
6498 (with-temp-buffer
6499 (insert s)
6500 (let ((org-odd-levels-only odd-levels))
6501 (org-mode)
6502 (org-font-lock-ensure)
6503 (buffer-string))))
6505 (defvar org-m nil)
6506 (defvar org-l nil)
6507 (defvar org-f nil)
6508 (defun org-get-level-face (n)
6509 "Get the right face for match N in font-lock matching of headlines."
6510 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6511 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6512 (if org-cycle-level-faces
6513 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6514 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6515 (cond
6516 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6517 ((eq n 2) org-f)
6518 (t (if org-level-color-stars-only nil org-f))))
6520 (defun org-face-from-face-or-color (context inherit face-or-color)
6521 "Create a face list that inherits INHERIT, but sets the foreground color.
6522 When FACE-OR-COLOR is not a string, just return it."
6523 (if (stringp face-or-color)
6524 (list :inherit inherit
6525 (cdr (assoc context org-faces-easy-properties))
6526 face-or-color)
6527 face-or-color))
6529 (defun org-get-todo-face (kwd)
6530 "Get the right face for a TODO keyword KWD.
6531 If KWD is a number, get the corresponding match group."
6532 (if (numberp kwd) (setq kwd (match-string kwd)))
6533 (or (org-face-from-face-or-color
6534 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6535 (and (member kwd org-done-keywords) 'org-done)
6536 'org-todo))
6538 (defun org-get-priority-face (priority)
6539 "Get the right face for PRIORITY.
6540 PRIORITY is a character."
6541 (or (org-face-from-face-or-color
6542 'priority 'org-priority (cdr (assq priority org-priority-faces)))
6543 'org-priority))
6545 (defun org-get-tag-face (tag)
6546 "Get the right face for TAG.
6547 If TAG is a number, get the corresponding match group."
6548 (let ((tag (if (wholenump tag) (match-string tag) tag)))
6549 (or (org-face-from-face-or-color
6550 'tag 'org-tag (cdr (assoc tag org-tag-faces)))
6551 'org-tag)))
6553 (defun org-font-lock-add-priority-faces (limit)
6554 "Add the special priority faces."
6555 (while (re-search-forward "^\\*+ .*?\\(\\[#\\(.\\)\\]\\)" limit t)
6556 (add-text-properties
6557 (match-beginning 1) (match-end 1)
6558 (list 'face (org-get-priority-face (string-to-char (match-string 2)))
6559 'font-lock-fontified t))))
6561 (defun org-font-lock-add-tag-faces (limit)
6562 "Add the special tag faces."
6563 (when (and org-tag-faces org-tags-special-faces-re)
6564 (while (re-search-forward org-tags-special-faces-re limit t)
6565 (add-text-properties (match-beginning 1) (match-end 1)
6566 (list 'face (org-get-tag-face 1)
6567 'font-lock-fontified t))
6568 (backward-char 1))))
6570 (defun org-unfontify-region (beg end &optional maybe_loudly)
6571 "Remove fontification and activation overlays from links."
6572 (font-lock-default-unfontify-region beg end)
6573 (let* ((buffer-undo-list t)
6574 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6575 (inhibit-modification-hooks t)
6576 deactivate-mark buffer-file-name buffer-file-truename)
6577 (org-decompose-region beg end)
6578 (remove-text-properties beg end
6579 '(mouse-face t keymap t org-linked-text t
6580 invisible t intangible t
6581 org-emphasis t))
6582 (org-remove-font-lock-display-properties beg end)))
6584 (defconst org-script-display '(((raise -0.3) (height 0.7))
6585 ((raise 0.3) (height 0.7))
6586 ((raise -0.5))
6587 ((raise 0.5)))
6588 "Display properties for showing superscripts and subscripts.")
6590 (defun org-remove-font-lock-display-properties (beg end)
6591 "Remove specific display properties that have been added by font lock.
6592 The will remove the raise properties that are used to show superscripts
6593 and subscripts."
6594 (let (next prop)
6595 (while (< beg end)
6596 (setq next (next-single-property-change beg 'display nil end)
6597 prop (get-text-property beg 'display))
6598 (if (member prop org-script-display)
6599 (put-text-property beg next 'display nil))
6600 (setq beg next))))
6602 (defun org-raise-scripts (limit)
6603 "Add raise properties to sub/superscripts."
6604 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6605 (if (re-search-forward
6606 (if (eq org-use-sub-superscripts t)
6607 org-match-substring-regexp
6608 org-match-substring-with-braces-regexp)
6609 limit t)
6610 (let* ((pos (point)) table-p comment-p
6611 (mpos (match-beginning 3))
6612 (emph-p (get-text-property mpos 'org-emphasis))
6613 (link-p (get-text-property mpos 'mouse-face))
6614 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6615 (goto-char (point-at-bol))
6616 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6617 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6618 (goto-char pos)
6619 ;; Handle a_b^c
6620 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6621 (if (or comment-p emph-p link-p keyw-p)
6623 (put-text-property (match-beginning 3) (match-end 0)
6624 'display
6625 (if (equal (char-after (match-beginning 2)) ?^)
6626 (nth (if table-p 3 1) org-script-display)
6627 (nth (if table-p 2 0) org-script-display)))
6628 (add-text-properties (match-beginning 2) (match-end 2)
6629 (list 'invisible t
6630 'org-dwidth t 'org-dwidth-n 1))
6631 (if (and (eq (char-after (match-beginning 3)) ?{)
6632 (eq (char-before (match-end 3)) ?}))
6633 (progn
6634 (add-text-properties
6635 (match-beginning 3) (1+ (match-beginning 3))
6636 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6637 (add-text-properties
6638 (1- (match-end 3)) (match-end 3)
6639 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6640 t)))))
6642 ;;;; Visibility cycling, including org-goto and indirect buffer
6644 ;;; Cycling
6646 (defvar org-cycle-global-status nil)
6647 (make-variable-buffer-local 'org-cycle-global-status)
6648 (put 'org-cycle-global-status 'org-state t)
6649 (defvar org-cycle-subtree-status nil)
6650 (make-variable-buffer-local 'org-cycle-subtree-status)
6651 (put 'org-cycle-subtree-status 'org-state t)
6653 (defvar org-inlinetask-min-level)
6655 (defun org-unlogged-message (&rest args)
6656 "Display a message, but avoid logging it in the *Messages* buffer."
6657 (let ((message-log-max nil))
6658 (apply 'message args)))
6660 ;;;###autoload
6661 (defun org-cycle (&optional arg)
6662 "TAB-action and visibility cycling for Org-mode.
6664 This is the command invoked in Org-mode by the TAB key. Its main purpose
6665 is outline visibility cycling, but it also invokes other actions
6666 in special contexts.
6668 - When this function is called with a prefix argument, rotate the entire
6669 buffer through 3 states (global cycling)
6670 1. OVERVIEW: Show only top-level headlines.
6671 2. CONTENTS: Show all headlines of all levels, but no body text.
6672 3. SHOW ALL: Show everything.
6673 With a double \\[universal-argument] prefix argument, \
6674 switch to the startup visibility,
6675 determined by the variable `org-startup-folded', and by any VISIBILITY
6676 properties in the buffer.
6677 With a triple \\[universal-argument] prefix argument, \
6678 show the entire buffer, including any drawers.
6680 - When inside a table, re-align the table and move to the next field.
6682 - When point is at the beginning of a headline, rotate the subtree started
6683 by this line through 3 different states (local cycling)
6684 1. FOLDED: Only the main headline is shown.
6685 2. CHILDREN: The main headline and the direct children are shown.
6686 From this state, you can move to one of the children
6687 and zoom in further.
6688 3. SUBTREE: Show the entire subtree, including body text.
6689 If there is no subtree, switch directly from CHILDREN to FOLDED.
6691 - When point is at the beginning of an empty headline and the variable
6692 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6693 of the headline by demoting and promoting it to likely levels. This
6694 speeds up creation document structure by pressing TAB once or several
6695 times right after creating a new headline.
6697 - When there is a numeric prefix, go up to a heading with level ARG, do
6698 a `show-subtree' and return to the previous cursor position. If ARG
6699 is negative, go up that many levels.
6701 - When point is not at the beginning of a headline, execute the global
6702 binding for TAB, which is re-indenting the line. See the option
6703 `org-cycle-emulate-tab' for details.
6705 - Special case: if point is at the beginning of the buffer and there is
6706 no headline in line 1, this function will act as if called with prefix arg
6707 (\\[universal-argument] TAB, same as S-TAB) also when called without prefix arg.
6708 But only if also the variable `org-cycle-global-at-bob' is t."
6709 (interactive "P")
6710 (org-load-modules-maybe)
6711 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6712 (and org-cycle-level-after-item/entry-creation
6713 (or (org-cycle-level)
6714 (org-cycle-item-indentation))))
6715 (let* ((limit-level
6716 (or org-cycle-max-level
6717 (and (boundp 'org-inlinetask-min-level)
6718 org-inlinetask-min-level
6719 (1- org-inlinetask-min-level))))
6720 (nstars (and limit-level
6721 (if org-odd-levels-only
6722 (and limit-level (1- (* limit-level 2)))
6723 limit-level)))
6724 (org-outline-regexp
6725 (if (not (derived-mode-p 'org-mode))
6726 outline-regexp
6727 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6728 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6729 (not (looking-at org-outline-regexp))))
6730 (org-cycle-hook
6731 (if bob-special
6732 (delq 'org-optimize-window-after-visibility-change
6733 (copy-sequence org-cycle-hook))
6734 org-cycle-hook))
6735 (pos (point)))
6737 (if (or bob-special (equal arg '(4)))
6738 ;; special case: use global cycling
6739 (setq arg t))
6741 (cond
6743 ((equal arg '(16))
6744 (setq last-command 'dummy)
6745 (org-set-startup-visibility)
6746 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6748 ((equal arg '(64))
6749 (outline-show-all)
6750 (org-unlogged-message "Entire buffer visible, including drawers"))
6752 ;; Try cdlatex TAB completion
6753 ((org-try-cdlatex-tab))
6755 ;; Table: enter it or move to the next field.
6756 ((org-at-table-p 'any)
6757 (if (org-at-table.el-p)
6758 (message "%s" (substitute-command-keys "\\<org-mode-map>\
6759 Use \\[org-edit-special] to edit table.el tables"))
6760 (if arg (org-table-edit-field t)
6761 (org-table-justify-field-maybe)
6762 (call-interactively 'org-table-next-field))))
6764 ((run-hook-with-args-until-success
6765 'org-tab-after-check-for-table-hook))
6767 ;; Global cycling: delegate to `org-cycle-internal-global'.
6768 ((eq arg t) (org-cycle-internal-global))
6770 ;; Drawers: delegate to `org-flag-drawer'.
6771 ((save-excursion
6772 (beginning-of-line 1)
6773 (looking-at org-drawer-regexp))
6774 (org-flag-drawer ; toggle block visibility
6775 (not (get-char-property (match-end 0) 'invisible))))
6777 ;; Show-subtree, ARG levels up from here.
6778 ((integerp arg)
6779 (save-excursion
6780 (org-back-to-heading)
6781 (outline-up-heading (if (< arg 0) (- arg)
6782 (- (funcall outline-level) arg)))
6783 (org-show-subtree)))
6785 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6786 ((and (featurep 'org-inlinetask)
6787 (org-inlinetask-at-task-p)
6788 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6789 (org-inlinetask-toggle-visibility))
6791 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6792 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6793 (save-excursion (move-beginning-of-line 1)
6794 (looking-at org-outline-regexp)))
6795 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6796 (org-cycle-internal-local))
6798 ;; From there: TAB emulation and template completion.
6799 (buffer-read-only (org-back-to-heading))
6801 ((run-hook-with-args-until-success
6802 'org-tab-after-check-for-cycling-hook))
6804 ((org-try-structure-completion))
6806 ((run-hook-with-args-until-success
6807 'org-tab-before-tab-emulation-hook))
6809 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6810 (or (not (bolp))
6811 (not (looking-at org-outline-regexp))))
6812 (call-interactively (global-key-binding "\t")))
6814 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6815 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6816 (or (and (eq org-cycle-emulate-tab 'white)
6817 (= (match-end 0) (point-at-eol)))
6818 (and (eq org-cycle-emulate-tab 'whitestart)
6819 (>= (match-end 0) pos))))
6821 (eq org-cycle-emulate-tab t))
6822 (call-interactively (global-key-binding "\t")))
6824 (t (save-excursion
6825 (org-back-to-heading)
6826 (org-cycle)))))))
6828 (defun org-cycle-internal-global ()
6829 "Do the global cycling action."
6830 ;; Hack to avoid display of messages for .org attachments in Gnus
6831 (let ((ga (string-match "\\*fontification" (buffer-name))))
6832 (cond
6833 ((and (eq last-command this-command)
6834 (eq org-cycle-global-status 'overview))
6835 ;; We just created the overview - now do table of contents
6836 ;; This can be slow in very large buffers, so indicate action
6837 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6838 (unless ga (org-unlogged-message "CONTENTS..."))
6839 (org-content)
6840 (unless ga (org-unlogged-message "CONTENTS...done"))
6841 (setq org-cycle-global-status 'contents)
6842 (run-hook-with-args 'org-cycle-hook 'contents))
6844 ((and (eq last-command this-command)
6845 (eq org-cycle-global-status 'contents))
6846 ;; We just showed the table of contents - now show everything
6847 (run-hook-with-args 'org-pre-cycle-hook 'all)
6848 (outline-show-all)
6849 (unless ga (org-unlogged-message "SHOW ALL"))
6850 (setq org-cycle-global-status 'all)
6851 (run-hook-with-args 'org-cycle-hook 'all))
6854 ;; Default action: go to overview
6855 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6856 (org-overview)
6857 (unless ga (org-unlogged-message "OVERVIEW"))
6858 (setq org-cycle-global-status 'overview)
6859 (run-hook-with-args 'org-cycle-hook 'overview)))))
6861 (defvar org-called-with-limited-levels nil
6862 "Non-nil when `org-with-limited-levels' is currently active.")
6864 (defun org-cycle-internal-local ()
6865 "Do the local cycling action."
6866 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6867 ;; First, determine end of headline (EOH), end of subtree or item
6868 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6869 (save-excursion
6870 (if (org-at-item-p)
6871 (progn
6872 (beginning-of-line)
6873 (setq struct (org-list-struct))
6874 (setq eoh (point-at-eol))
6875 (setq eos (org-list-get-item-end-before-blank (point) struct))
6876 (setq has-children (org-list-has-child-p (point) struct)))
6877 (org-back-to-heading)
6878 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6879 (setq eos (save-excursion (org-end-of-subtree t t)
6880 (when (bolp) (backward-char)) (point)))
6881 (setq has-children
6882 (or (save-excursion
6883 (let ((level (funcall outline-level)))
6884 (outline-next-heading)
6885 (and (org-at-heading-p t)
6886 (> (funcall outline-level) level))))
6887 (save-excursion
6888 (org-list-search-forward (org-item-beginning-re) eos t)))))
6889 ;; Determine end invisible part of buffer (EOL)
6890 (beginning-of-line 2)
6891 ;; XEmacs doesn't have `next-single-char-property-change'
6892 (if (featurep 'xemacs)
6893 (while (and (not (eobp)) ;; this is like `next-line'
6894 (get-char-property (1- (point)) 'invisible))
6895 (beginning-of-line 2))
6896 (while (and (not (eobp)) ;; this is like `next-line'
6897 (get-char-property (1- (point)) 'invisible))
6898 (goto-char (next-single-char-property-change (point) 'invisible))
6899 (and (eolp) (beginning-of-line 2))))
6900 (setq eol (point)))
6901 ;; Find out what to do next and set `this-command'
6902 (cond
6903 ((= eos eoh)
6904 ;; Nothing is hidden behind this heading
6905 (unless (org-before-first-heading-p)
6906 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6907 (org-unlogged-message "EMPTY ENTRY")
6908 (setq org-cycle-subtree-status nil)
6909 (save-excursion
6910 (goto-char eos)
6911 (outline-next-heading)
6912 (if (outline-invisible-p) (org-flag-heading nil))))
6913 ((and (or (>= eol eos)
6914 (not (string-match "\\S-" (buffer-substring eol eos))))
6915 (or has-children
6916 (not (setq children-skipped
6917 org-cycle-skip-children-state-if-no-children))))
6918 ;; Entire subtree is hidden in one line: children view
6919 (unless (org-before-first-heading-p)
6920 (run-hook-with-args 'org-pre-cycle-hook 'children))
6921 (if (org-at-item-p)
6922 (org-list-set-item-visibility (point-at-bol) struct 'children)
6923 (org-show-entry)
6924 (org-with-limited-levels (outline-show-children))
6925 ;; FIXME: This slows down the func way too much.
6926 ;; How keep drawers hidden in subtree anyway?
6927 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6928 ;; (org-cycle-hide-drawers 'subtree))
6930 ;; Fold every list in subtree to top-level items.
6931 (when (eq org-cycle-include-plain-lists 'integrate)
6932 (save-excursion
6933 (org-back-to-heading)
6934 (while (org-list-search-forward (org-item-beginning-re) eos t)
6935 (beginning-of-line 1)
6936 (let* ((struct (org-list-struct))
6937 (prevs (org-list-prevs-alist struct))
6938 (end (org-list-get-bottom-point struct)))
6939 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6940 (org-list-get-all-items (point) struct prevs))
6941 (goto-char (if (< end eos) end eos)))))))
6942 (org-unlogged-message "CHILDREN")
6943 (save-excursion
6944 (goto-char eos)
6945 (outline-next-heading)
6946 (if (outline-invisible-p) (org-flag-heading nil)))
6947 (setq org-cycle-subtree-status 'children)
6948 (unless (org-before-first-heading-p)
6949 (run-hook-with-args 'org-cycle-hook 'children)))
6950 ((or children-skipped
6951 (and (eq last-command this-command)
6952 (eq org-cycle-subtree-status 'children)))
6953 ;; We just showed the children, or no children are there,
6954 ;; now show everything.
6955 (unless (org-before-first-heading-p)
6956 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6957 (outline-flag-region eoh eos nil)
6958 (org-unlogged-message
6959 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6960 (setq org-cycle-subtree-status 'subtree)
6961 (unless (org-before-first-heading-p)
6962 (run-hook-with-args 'org-cycle-hook 'subtree)))
6964 ;; Default action: hide the subtree.
6965 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6966 (outline-flag-region eoh eos t)
6967 (org-unlogged-message "FOLDED")
6968 (setq org-cycle-subtree-status 'folded)
6969 (unless (org-before-first-heading-p)
6970 (run-hook-with-args 'org-cycle-hook 'folded))))))
6972 ;;;###autoload
6973 (defun org-global-cycle (&optional arg)
6974 "Cycle the global visibility. For details see `org-cycle'.
6975 With \\[universal-argument] prefix arg, switch to startup visibility.
6976 With a numeric prefix, show all headlines up to that level."
6977 (interactive "P")
6978 (let ((org-cycle-include-plain-lists
6979 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6980 (cond
6981 ((integerp arg)
6982 (outline-show-all)
6983 (outline-hide-sublevels arg)
6984 (setq org-cycle-global-status 'contents))
6985 ((equal arg '(4))
6986 (org-set-startup-visibility)
6987 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6989 (org-cycle '(4))))))
6991 (defun org-set-startup-visibility ()
6992 "Set the visibility required by startup options and properties."
6993 (cond
6994 ((eq org-startup-folded t)
6995 (org-overview))
6996 ((eq org-startup-folded 'content)
6997 (org-content))
6998 ((or (eq org-startup-folded 'showeverything)
6999 (eq org-startup-folded nil))
7000 (outline-show-all)))
7001 (unless (eq org-startup-folded 'showeverything)
7002 (if org-hide-block-startup (org-hide-block-all))
7003 (org-set-visibility-according-to-property 'no-cleanup)
7004 (org-cycle-hide-archived-subtrees 'all)
7005 (org-cycle-hide-drawers 'all)
7006 (org-cycle-show-empty-lines t)))
7008 (defun org-set-visibility-according-to-property (&optional no-cleanup)
7009 "Switch subtree visibilities according to :VISIBILITY: property."
7010 (interactive)
7011 (let (org-show-entry-below)
7012 (org-with-wide-buffer
7013 (goto-char (point-min))
7014 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
7015 (if (not (org-at-property-p)) (outline-next-heading)
7016 (let ((state (match-string 3)))
7017 (save-excursion
7018 (org-back-to-heading t)
7019 (outline-hide-subtree)
7020 (org-reveal)
7021 (cond
7022 ((equal state "folded")
7023 (outline-hide-subtree))
7024 ((equal state "children")
7025 (org-show-hidden-entry)
7026 (outline-show-children))
7027 ((equal state "content")
7028 (save-excursion
7029 (save-restriction
7030 (org-narrow-to-subtree)
7031 (org-content))))
7032 ((member state '("all" "showall"))
7033 (outline-show-subtree)))))))
7034 (unless no-cleanup
7035 (org-cycle-hide-archived-subtrees 'all)
7036 (org-cycle-hide-drawers 'all)
7037 (org-cycle-show-empty-lines 'all)))))
7039 ;; This function uses outline-regexp instead of the more fundamental
7040 ;; org-outline-regexp so that org-cycle-global works outside of Org
7041 ;; buffers, where outline-regexp is needed.
7042 (defun org-overview ()
7043 "Switch to overview mode, showing only top-level headlines.
7044 This shows all headlines with a level equal or greater than the level
7045 of the first headline in the buffer. This is important, because if the
7046 first headline is not level one, then (hide-sublevels 1) gives confusing
7047 results."
7048 (interactive)
7049 (save-excursion
7050 (let ((level
7051 (save-excursion
7052 (goto-char (point-min))
7053 (if (re-search-forward (concat "^" outline-regexp) nil t)
7054 (progn
7055 (goto-char (match-beginning 0))
7056 (funcall outline-level))))))
7057 (and level (outline-hide-sublevels level)))))
7059 (defun org-content (&optional arg)
7060 "Show all headlines in the buffer, like a table of contents.
7061 With numerical argument N, show content up to level N."
7062 (interactive "P")
7063 (org-overview)
7064 (save-excursion
7065 ;; Visit all headings and show their offspring
7066 (and (integerp arg) (org-overview))
7067 (goto-char (point-max))
7068 (catch 'exit
7069 (while (and (progn (condition-case nil
7070 (outline-previous-visible-heading 1)
7071 (error (goto-char (point-min))))
7073 (looking-at org-outline-regexp))
7074 (if (integerp arg)
7075 (outline-show-children (1- arg))
7076 (outline-show-branches))
7077 (if (bobp) (throw 'exit nil))))))
7079 (defun org-optimize-window-after-visibility-change (state)
7080 "Adjust the window after a change in outline visibility.
7081 This function is the default value of the hook `org-cycle-hook'."
7082 (when (get-buffer-window (current-buffer))
7083 (cond
7084 ((eq state 'content) nil)
7085 ((eq state 'all) nil)
7086 ((eq state 'folded) nil)
7087 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7088 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7090 (defun org-remove-empty-overlays-at (pos)
7091 "Remove outline overlays that do not contain non-white stuff."
7092 (mapc
7093 (lambda (o)
7094 (and (eq 'outline (overlay-get o 'invisible))
7095 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7096 (overlay-end o))))
7097 (delete-overlay o)))
7098 (overlays-at pos)))
7100 (defun org-clean-visibility-after-subtree-move ()
7101 "Fix visibility issues after moving a subtree."
7102 ;; First, find a reasonable region to look at:
7103 ;; Start two siblings above, end three below
7104 (let* ((beg (save-excursion
7105 (and (org-get-last-sibling)
7106 (org-get-last-sibling))
7107 (point)))
7108 (end (save-excursion
7109 (and (org-get-next-sibling)
7110 (org-get-next-sibling)
7111 (org-get-next-sibling))
7112 (if (org-at-heading-p)
7113 (point-at-eol)
7114 (point))))
7115 (level (looking-at "\\*+"))
7116 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7117 (save-excursion
7118 (save-restriction
7119 (narrow-to-region beg end)
7120 (when re
7121 ;; Properly fold already folded siblings
7122 (goto-char (point-min))
7123 (while (re-search-forward re nil t)
7124 (if (and (not (outline-invisible-p))
7125 (save-excursion
7126 (goto-char (point-at-eol)) (outline-invisible-p)))
7127 (outline-hide-entry))))
7128 (org-cycle-show-empty-lines 'overview)
7129 (org-cycle-hide-drawers 'overview)))))
7131 (defun org-cycle-show-empty-lines (state)
7132 "Show empty lines above all visible headlines.
7133 The region to be covered depends on STATE when called through
7134 `org-cycle-hook'. Lisp program can use t for STATE to get the
7135 entire buffer covered. Note that an empty line is only shown if there
7136 are at least `org-cycle-separator-lines' empty lines before the headline."
7137 (when (/= org-cycle-separator-lines 0)
7138 (save-excursion
7139 (let* ((n (abs org-cycle-separator-lines))
7140 (re (cond
7141 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7142 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7143 (t (let ((ns (number-to-string (- n 2))))
7144 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7145 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7146 beg end)
7147 (cond
7148 ((memq state '(overview contents t))
7149 (setq beg (point-min) end (point-max)))
7150 ((memq state '(children folded))
7151 (setq beg (point)
7152 end (progn (org-end-of-subtree t t)
7153 (line-beginning-position 2)))))
7154 (when beg
7155 (goto-char beg)
7156 (while (re-search-forward re end t)
7157 (unless (get-char-property (match-end 1) 'invisible)
7158 (let ((e (match-end 1))
7159 (b (if (>= org-cycle-separator-lines 0)
7160 (match-beginning 1)
7161 (save-excursion
7162 (goto-char (match-beginning 0))
7163 (skip-chars-backward " \t\n")
7164 (line-end-position)))))
7165 (outline-flag-region b e nil))))))))
7166 ;; Never hide empty lines at the end of the file.
7167 (save-excursion
7168 (goto-char (point-max))
7169 (outline-previous-heading)
7170 (outline-end-of-heading)
7171 (if (and (looking-at "[ \t\n]+")
7172 (= (match-end 0) (point-max)))
7173 (outline-flag-region (point) (match-end 0) nil))))
7175 (defun org-show-empty-lines-in-parent ()
7176 "Move to the parent and re-show empty lines before visible headlines."
7177 (save-excursion
7178 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7179 (org-cycle-show-empty-lines context))))
7181 (defun org-files-list ()
7182 "Return `org-agenda-files' list, plus all open org-mode files.
7183 This is useful for operations that need to scan all of a user's
7184 open and agenda-wise Org files."
7185 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7186 (dolist (buf (buffer-list))
7187 (with-current-buffer buf
7188 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7189 (let ((file (expand-file-name (buffer-file-name))))
7190 (unless (member file files)
7191 (push file files))))))
7192 files))
7194 (defsubst org-entry-beginning-position ()
7195 "Return the beginning position of the current entry."
7196 (save-excursion (org-back-to-heading t) (point)))
7198 (defsubst org-entry-end-position ()
7199 "Return the end position of the current entry."
7200 (save-excursion (outline-next-heading) (point)))
7202 (defun org-cycle-hide-drawers (state &optional exceptions)
7203 "Re-hide all drawers after a visibility state change.
7204 When non-nil, optional argument EXCEPTIONS is a list of strings
7205 specifying which drawers should not be hidden."
7206 (when (and (derived-mode-p 'org-mode)
7207 (not (memq state '(overview folded contents))))
7208 (save-excursion
7209 (let* ((globalp (memq state '(contents all)))
7210 (beg (if globalp (point-min) (point)))
7211 (end (if globalp (point-max)
7212 (if (eq state 'children)
7213 (save-excursion (outline-next-heading) (point))
7214 (org-end-of-subtree t)))))
7215 (goto-char beg)
7216 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7217 (unless (member-ignore-case (match-string 1) exceptions)
7218 (let ((drawer (org-element-at-point)))
7219 (when (memq (org-element-type drawer) '(drawer property-drawer))
7220 (org-flag-drawer t drawer)
7221 ;; Make sure to skip drawer entirely or we might flag
7222 ;; it another time when matching its ending line with
7223 ;; `org-drawer-regexp'.
7224 (goto-char (org-element-property :end drawer))))))))))
7226 (defun org-flag-drawer (flag &optional element)
7227 "When FLAG is non-nil, hide the drawer we are at.
7228 Otherwise make it visible. When optional argument ELEMENT is
7229 a parsed drawer, as returned by `org-element-at-point', hide or
7230 show that drawer instead."
7231 (let ((drawer (or element
7232 (and (save-excursion
7233 (beginning-of-line)
7234 (org-looking-at-p org-drawer-regexp))
7235 (org-element-at-point)))))
7236 (when (memq (org-element-type drawer) '(drawer property-drawer))
7237 (let ((post (org-element-property :post-affiliated drawer)))
7238 (save-excursion
7239 (outline-flag-region
7240 (progn (goto-char post) (line-end-position))
7241 (progn (goto-char (org-element-property :end drawer))
7242 (skip-chars-backward " \r\t\n")
7243 (line-end-position))
7244 flag))
7245 ;; When the drawer is hidden away, make sure point lies in
7246 ;; a visible part of the buffer.
7247 (when (and flag (> (line-beginning-position) post))
7248 (goto-char post))))))
7250 (defun org-subtree-end-visible-p ()
7251 "Is the end of the current subtree visible?"
7252 (pos-visible-in-window-p
7253 (save-excursion (org-end-of-subtree t) (point))))
7255 (defun org-first-headline-recenter ()
7256 "Move cursor to the first headline and recenter the headline."
7257 (let ((window (get-buffer-window)))
7258 (when window
7259 (goto-char (point-min))
7260 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7261 (set-window-start window (line-beginning-position))))))
7263 ;;; Saving and restoring visibility
7265 (defun org-outline-overlay-data (&optional use-markers)
7266 "Return a list of the locations of all outline overlays.
7267 These are overlays with the `invisible' property value `outline'.
7268 The return value is a list of cons cells, with start and stop
7269 positions for each overlay.
7270 If USE-MARKERS is set, return the positions as markers."
7271 (let (beg end)
7272 (save-excursion
7273 (save-restriction
7274 (widen)
7275 (delq nil
7276 (mapcar (lambda (o)
7277 (when (eq (overlay-get o 'invisible) 'outline)
7278 (setq beg (overlay-start o)
7279 end (overlay-end o))
7280 (and beg end (> end beg)
7281 (if use-markers
7282 (cons (copy-marker beg)
7283 (copy-marker end t))
7284 (cons beg end)))))
7285 (overlays-in (point-min) (point-max))))))))
7287 (defun org-set-outline-overlay-data (data)
7288 "Create visibility overlays for all positions in DATA.
7289 DATA should have been made by `org-outline-overlay-data'."
7290 (let (o)
7291 (save-excursion
7292 (save-restriction
7293 (widen)
7294 (outline-show-all)
7295 (mapc (lambda (c)
7296 (outline-flag-region (car c) (cdr c) t))
7297 data)))))
7299 ;;; Folding of blocks
7301 (defvar org-hide-block-overlays nil
7302 "Overlays hiding blocks.")
7303 (make-variable-buffer-local 'org-hide-block-overlays)
7305 (defun org-block-map (function &optional start end)
7306 "Call FUNCTION at the head of all source blocks in the current buffer.
7307 Optional arguments START and END can be used to limit the range."
7308 (let ((start (or start (point-min)))
7309 (end (or end (point-max))))
7310 (save-excursion
7311 (goto-char start)
7312 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7313 (save-excursion
7314 (save-match-data
7315 (goto-char (match-beginning 0))
7316 (funcall function)))))))
7318 (defun org-hide-block-toggle-all ()
7319 "Toggle the visibility of all blocks in the current buffer."
7320 (org-block-map 'org-hide-block-toggle))
7322 (defun org-hide-block-all ()
7323 "Fold all blocks in the current buffer."
7324 (interactive)
7325 (org-show-block-all)
7326 (org-block-map 'org-hide-block-toggle-maybe))
7328 (defun org-show-block-all ()
7329 "Unfold all blocks in the current buffer."
7330 (interactive)
7331 (mapc 'delete-overlay org-hide-block-overlays)
7332 (setq org-hide-block-overlays nil))
7334 (defun org-hide-block-toggle-maybe ()
7335 "Toggle visibility of block at point.
7336 Unlike to `org-hide-block-toggle', this function does not throw
7337 an error. Return a non-nil value when toggling is successful."
7338 (interactive)
7339 (ignore-errors (org-hide-block-toggle)))
7341 (defun org-hide-block-toggle (&optional force)
7342 "Toggle the visibility of the current block.
7343 When optional argument FORCE is `off', make block visible. If it
7344 is non-nil, hide it unconditionally. Throw an error when not at
7345 a block. Return a non-nil value when toggling is successful."
7346 (interactive)
7347 (let ((element (org-element-at-point)))
7348 (unless (memq (org-element-type element)
7349 '(center-block comment-block dynamic-block example-block
7350 export-block quote-block special-block
7351 src-block verse-block))
7352 (user-error "Not at a block"))
7353 (let* ((start (save-excursion
7354 (goto-char (org-element-property :post-affiliated element))
7355 (line-end-position)))
7356 (end (save-excursion
7357 (goto-char (org-element-property :end element))
7358 (skip-chars-backward " \r\t\n")
7359 (line-end-position)))
7360 (overlays (overlays-at start)))
7361 (cond
7362 ;; Do nothing when not before or at the block opening line or
7363 ;; at the block closing line.
7364 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7365 ((and (not (eq force 'off))
7366 (not (memq t (mapcar
7367 (lambda (o)
7368 (eq (overlay-get o 'invisible) 'org-hide-block))
7369 overlays))))
7370 (let ((ov (make-overlay start end)))
7371 (overlay-put ov 'invisible 'org-hide-block)
7372 ;; Make the block accessible to `isearch'.
7373 (overlay-put
7374 ov 'isearch-open-invisible
7375 (lambda (ov)
7376 (when (memq ov org-hide-block-overlays)
7377 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7378 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7379 (delete-overlay ov))))
7380 (push ov org-hide-block-overlays)
7381 ;; When the block is hidden away, make sure point is left in
7382 ;; a visible part of the buffer.
7383 (when (> (line-beginning-position) start)
7384 (goto-char start)
7385 (beginning-of-line))
7386 ;; Signal successful toggling.
7388 ((or (not force) (eq force 'off))
7389 (dolist (ov overlays t)
7390 (when (memq ov org-hide-block-overlays)
7391 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7392 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7393 (delete-overlay ov))))))))
7395 ;; org-tab-after-check-for-cycling-hook
7396 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7397 ;; Remove overlays when changing major mode
7398 (add-hook 'org-mode-hook
7399 (lambda () (org-add-hook 'change-major-mode-hook
7400 'org-show-block-all 'append 'local)))
7402 ;;; Org-goto
7404 (defvar org-goto-window-configuration nil)
7405 (defvar org-goto-marker nil)
7406 (defvar org-goto-map)
7407 (defun org-goto-map ()
7408 "Set the keymap `org-goto'."
7409 (setq org-goto-map
7410 (let ((map (make-sparse-keymap)))
7411 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7412 mouse-drag-region universal-argument org-occur)))
7413 (dolist (cmd cmds)
7414 (substitute-key-definition cmd cmd map global-map)))
7415 (suppress-keymap map)
7416 (org-defkey map "\C-m" 'org-goto-ret)
7417 (org-defkey map [(return)] 'org-goto-ret)
7418 (org-defkey map [(left)] 'org-goto-left)
7419 (org-defkey map [(right)] 'org-goto-right)
7420 (org-defkey map [(control ?g)] 'org-goto-quit)
7421 (org-defkey map "\C-i" 'org-cycle)
7422 (org-defkey map [(tab)] 'org-cycle)
7423 (org-defkey map [(down)] 'outline-next-visible-heading)
7424 (org-defkey map [(up)] 'outline-previous-visible-heading)
7425 (if org-goto-auto-isearch
7426 (if (fboundp 'define-key-after)
7427 (define-key-after map [t] 'org-goto-local-auto-isearch)
7428 nil)
7429 (org-defkey map "q" 'org-goto-quit)
7430 (org-defkey map "n" 'outline-next-visible-heading)
7431 (org-defkey map "p" 'outline-previous-visible-heading)
7432 (org-defkey map "f" 'outline-forward-same-level)
7433 (org-defkey map "b" 'outline-backward-same-level)
7434 (org-defkey map "u" 'outline-up-heading))
7435 (org-defkey map "/" 'org-occur)
7436 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7437 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7438 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7439 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7440 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7441 map)))
7443 (defconst org-goto-help
7444 "Browse buffer copy, to find location or copy text.%s
7445 RET=jump to location C-g=quit and return to previous location
7446 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7448 (defvar org-goto-start-pos) ; dynamically scoped parameter
7450 (defun org-goto (&optional alternative-interface)
7451 "Look up a different location in the current file, keeping current visibility.
7453 When you want look-up or go to a different location in a
7454 document, the fastest way is often to fold the entire buffer and
7455 then dive into the tree. This method has the disadvantage, that
7456 the previous location will be folded, which may not be what you
7457 want.
7459 This command works around this by showing a copy of the current
7460 buffer in an indirect buffer, in overview mode. You can dive
7461 into the tree in that copy, use org-occur and incremental search
7462 to find a location. When pressing RET or `Q', the command
7463 returns to the original buffer in which the visibility is still
7464 unchanged. After RET it will also jump to the location selected
7465 in the indirect buffer and expose the headline hierarchy above.
7467 With a prefix argument, use the alternative interface: e.g., if
7468 `org-goto-interface' is `outline' use `outline-path-completion'."
7469 (interactive "P")
7470 (org-goto-map)
7471 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7472 (org-refile-use-outline-path t)
7473 (org-refile-target-verify-function nil)
7474 (interface
7475 (if (not alternative-interface)
7476 org-goto-interface
7477 (if (eq org-goto-interface 'outline)
7478 'outline-path-completion
7479 'outline)))
7480 (org-goto-start-pos (point))
7481 (selected-point
7482 (if (eq interface 'outline)
7483 (car (org-get-location (current-buffer) org-goto-help))
7484 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7485 (org-refile-check-position pa)
7486 (nth 3 pa)))))
7487 (if selected-point
7488 (progn
7489 (org-mark-ring-push org-goto-start-pos)
7490 (goto-char selected-point)
7491 (if (or (outline-invisible-p) (org-invisible-p2))
7492 (org-show-context 'org-goto)))
7493 (message "Quit"))))
7495 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7496 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7497 (defvar org-goto-local-auto-isearch-map) ; defined below
7499 (defun org-get-location (buf help)
7500 "Let the user select a location in the Org-mode buffer BUF.
7501 This function uses a recursive edit. It returns the selected position
7502 or nil."
7503 (org-no-popups
7504 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7505 (isearch-hide-immediately nil)
7506 (isearch-search-fun-function
7507 (lambda () 'org-goto-local-search-headings))
7508 (org-goto-selected-point org-goto-exit-command))
7509 (save-excursion
7510 (save-window-excursion
7511 (delete-other-windows)
7512 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7513 (org-pop-to-buffer-same-window
7514 (condition-case nil
7515 (make-indirect-buffer (current-buffer) "*org-goto*")
7516 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7517 (with-output-to-temp-buffer "*Org Help*"
7518 (princ (format help (if org-goto-auto-isearch
7519 " Just type for auto-isearch."
7520 " n/p/f/b/u to navigate, q to quit."))))
7521 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7522 (setq buffer-read-only nil)
7523 (let ((org-startup-truncated t)
7524 (org-startup-folded nil)
7525 (org-startup-align-all-tables nil))
7526 (org-mode)
7527 (org-overview))
7528 (setq buffer-read-only t)
7529 (if (and (boundp 'org-goto-start-pos)
7530 (integer-or-marker-p org-goto-start-pos))
7531 (progn (goto-char org-goto-start-pos)
7532 (when (outline-invisible-p)
7533 (org-show-set-visibility 'lineage)))
7534 (goto-char (point-min)))
7535 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7536 (message "Select location and press RET")
7537 (use-local-map org-goto-map)
7538 (recursive-edit)))
7539 (kill-buffer "*org-goto*")
7540 (cons org-goto-selected-point org-goto-exit-command))))
7542 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7543 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7544 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7545 (if (fboundp 'isearch-other-control-char)
7546 (progn
7547 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7548 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7549 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7550 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7551 (define-key org-goto-local-auto-isearch-map [return] nil))
7553 (defun org-goto-local-search-headings (string bound noerror)
7554 "Search and make sure that any matches are in headlines."
7555 (catch 'return
7556 (while (if isearch-forward
7557 (search-forward string bound noerror)
7558 (search-backward string bound noerror))
7559 (when (save-match-data
7560 (and (save-excursion
7561 (beginning-of-line)
7562 (looking-at org-complex-heading-regexp))
7563 (or (not (match-beginning 5))
7564 (< (point) (match-beginning 5)))))
7565 (throw 'return (point))))))
7567 (defun org-goto-local-auto-isearch ()
7568 "Start isearch."
7569 (interactive)
7570 (goto-char (point-min))
7571 (let ((keys (this-command-keys)))
7572 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7573 (isearch-mode t)
7574 (isearch-process-search-char (string-to-char keys)))))
7576 (defun org-goto-ret (&optional arg)
7577 "Finish `org-goto' by going to the new location."
7578 (interactive "P")
7579 (setq org-goto-selected-point (point)
7580 org-goto-exit-command 'return)
7581 (throw 'exit nil))
7583 (defun org-goto-left ()
7584 "Finish `org-goto' by going to the new location."
7585 (interactive)
7586 (if (org-at-heading-p)
7587 (progn
7588 (beginning-of-line 1)
7589 (setq org-goto-selected-point (point)
7590 org-goto-exit-command 'left)
7591 (throw 'exit nil))
7592 (user-error "Not on a heading")))
7594 (defun org-goto-right ()
7595 "Finish `org-goto' by going to the new location."
7596 (interactive)
7597 (if (org-at-heading-p)
7598 (progn
7599 (setq org-goto-selected-point (point)
7600 org-goto-exit-command 'right)
7601 (throw 'exit nil))
7602 (user-error "Not on a heading")))
7604 (defun org-goto-quit ()
7605 "Finish `org-goto' without cursor motion."
7606 (interactive)
7607 (setq org-goto-selected-point nil)
7608 (setq org-goto-exit-command 'quit)
7609 (throw 'exit nil))
7611 ;;; Indirect buffer display of subtrees
7613 (defvar org-indirect-dedicated-frame nil
7614 "This is the frame being used for indirect tree display.")
7615 (defvar org-last-indirect-buffer nil)
7617 (defun org-tree-to-indirect-buffer (&optional arg)
7618 "Create indirect buffer and narrow it to current subtree.
7619 With a numerical prefix ARG, go up to this level and then take that tree.
7620 If ARG is negative, go up that many levels.
7622 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7623 indirect buffer previously made with this command, to avoid proliferation of
7624 indirect buffers. However, when you call the command with a \
7625 \\[universal-argument] prefix, or
7626 when `org-indirect-buffer-display' is `new-frame', the last buffer
7627 is kept so that you can work with several indirect buffers at the same time.
7628 If `org-indirect-buffer-display' is `dedicated-frame', the \
7629 \\[universal-argument] prefix also
7630 requests that a new frame be made for the new buffer, so that the dedicated
7631 frame is not changed."
7632 (interactive "P")
7633 (let ((cbuf (current-buffer))
7634 (cwin (selected-window))
7635 (pos (point))
7636 beg end level heading ibuf)
7637 (save-excursion
7638 (org-back-to-heading t)
7639 (when (numberp arg)
7640 (setq level (org-outline-level))
7641 (if (< arg 0) (setq arg (+ level arg)))
7642 (while (> (setq level (org-outline-level)) arg)
7643 (org-up-heading-safe)))
7644 (setq beg (point)
7645 heading (org-get-heading))
7646 (org-end-of-subtree t t)
7647 (if (org-at-heading-p) (backward-char 1))
7648 (setq end (point)))
7649 (if (and (buffer-live-p org-last-indirect-buffer)
7650 (not (eq org-indirect-buffer-display 'new-frame))
7651 (not arg))
7652 (kill-buffer org-last-indirect-buffer))
7653 (setq ibuf (org-get-indirect-buffer cbuf heading)
7654 org-last-indirect-buffer ibuf)
7655 (cond
7656 ((or (eq org-indirect-buffer-display 'new-frame)
7657 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7658 (select-frame (make-frame))
7659 (delete-other-windows)
7660 (org-pop-to-buffer-same-window ibuf)
7661 (org-set-frame-title heading))
7662 ((eq org-indirect-buffer-display 'dedicated-frame)
7663 (raise-frame
7664 (select-frame (or (and org-indirect-dedicated-frame
7665 (frame-live-p org-indirect-dedicated-frame)
7666 org-indirect-dedicated-frame)
7667 (setq org-indirect-dedicated-frame (make-frame)))))
7668 (delete-other-windows)
7669 (org-pop-to-buffer-same-window ibuf)
7670 (org-set-frame-title (concat "Indirect: " heading)))
7671 ((eq org-indirect-buffer-display 'current-window)
7672 (org-pop-to-buffer-same-window ibuf))
7673 ((eq org-indirect-buffer-display 'other-window)
7674 (pop-to-buffer ibuf))
7675 (t (error "Invalid value")))
7676 (if (featurep 'xemacs)
7677 (save-excursion (org-mode) (turn-on-font-lock)))
7678 (narrow-to-region beg end)
7679 (outline-show-all)
7680 (goto-char pos)
7681 (run-hook-with-args 'org-cycle-hook 'all)
7682 (and (window-live-p cwin) (select-window cwin))))
7684 (defun org-get-indirect-buffer (&optional buffer heading)
7685 (setq buffer (or buffer (current-buffer)))
7686 (let ((n 1) (base (buffer-name buffer)) bname)
7687 (while (buffer-live-p
7688 (get-buffer
7689 (setq bname
7690 (concat base "-"
7691 (if heading (concat heading "-" (number-to-string n))
7692 (number-to-string n))))))
7693 (setq n (1+ n)))
7694 (condition-case nil
7695 (make-indirect-buffer buffer bname 'clone)
7696 (error (make-indirect-buffer buffer bname)))))
7698 (defun org-set-frame-title (title)
7699 "Set the title of the current frame to the string TITLE."
7700 ;; FIXME: how to name a single frame in XEmacs???
7701 (unless (featurep 'xemacs)
7702 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7704 ;;;; Structure editing
7706 ;;; Inserting headlines
7708 (defun org-previous-line-empty-p (&optional next)
7709 "Is the previous line a blank line?
7710 When NEXT is non-nil, check the next line instead."
7711 (save-excursion
7712 (and (not (bobp))
7713 (or (beginning-of-line (if next 2 0)) t)
7714 (save-match-data
7715 (looking-at "[ \t]*$")))))
7717 (defun org-insert-heading (&optional arg invisible-ok top-level)
7718 "Insert a new heading or an item with the same depth at point.
7720 If point is at the beginning of a heading or a list item, insert
7721 a new heading or a new item above the current one. If point is
7722 at the beginning of a normal line, turn the line into a heading.
7724 If point is in the middle of a headline or a list item, split the
7725 headline or the item and create a new headline/item with the text
7726 in the current line after point \(see `org-M-RET-may-split-line'
7727 on how to modify this behavior).
7729 With one universal prefix argument, set the user option
7730 `org-insert-heading-respect-content' to t for the duration of
7731 the command. This modifies the behavior described above in this
7732 ways: on list items and at the beginning of normal lines, force
7733 the insertion of a heading after the current subtree.
7735 With two universal prefix arguments, insert the heading at the
7736 end of the grandparent subtree. For example, if point is within
7737 a 2nd-level heading, then it will insert a 2nd-level heading at
7738 the end of the 1st-level parent heading.
7740 If point is at the beginning of a headline, insert a sibling
7741 before the current headline. If point is not at the beginning,
7742 split the line and create a new headline with the text in the
7743 current line after point \(see `org-M-RET-may-split-line' on how
7744 to modify this behavior).
7746 If point is at the beginning of a normal line, turn this line
7747 into a heading.
7749 When INVISIBLE-OK is set, stop at invisible headlines when going
7750 back. This is important for non-interactive uses of the
7751 command.
7753 When optional argument TOP-LEVEL is non-nil, insert a level 1
7754 heading, unconditionally."
7755 (interactive "P")
7756 (if (org-called-interactively-p 'any) (org-reveal))
7757 (let ((itemp (and (not top-level) (org-in-item-p)))
7758 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7759 (respect-content (or org-insert-heading-respect-content
7760 (equal arg '(4))))
7761 (initial-content ""))
7763 (cond
7765 ((or (= (buffer-size) 0)
7766 (and (not (save-excursion
7767 (and (ignore-errors (org-back-to-heading invisible-ok))
7768 (org-at-heading-p))))
7769 (or arg (not itemp))))
7770 ;; At beginning of buffer or so high up that only a heading
7771 ;; makes sense.
7772 (cond ((and (bolp) (not respect-content)) (insert "* "))
7773 ((not respect-content)
7774 (unless may-split (end-of-line))
7775 (insert "\n* "))
7776 ((re-search-forward org-outline-regexp-bol nil t)
7777 (beginning-of-line)
7778 (insert "* \n")
7779 (backward-char))
7780 (t (goto-char (point-max))
7781 (insert "\n* ")))
7782 (run-hooks 'org-insert-heading-hook))
7784 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7787 ;; Maybe move at the end of the subtree
7788 (when (equal arg '(16))
7789 (org-up-heading-safe)
7790 (org-end-of-subtree t))
7791 ;; Insert a heading
7792 (save-restriction
7793 (widen)
7794 (let* ((level nil)
7795 (on-heading (org-at-heading-p))
7796 (empty-line-p (if on-heading
7797 (org-previous-line-empty-p)
7798 ;; We will decide later
7799 nil))
7800 ;; Get a level string to fall back on.
7801 (fix-level
7802 (if (org-before-first-heading-p) "*"
7803 (save-excursion
7804 (org-back-to-heading t)
7805 (if (org-previous-line-empty-p) (setq empty-line-p t))
7806 (looking-at org-outline-regexp)
7807 (make-string (1- (length (match-string 0))) ?*))))
7808 (stars
7809 (save-excursion
7810 (condition-case nil
7811 (if top-level "* "
7812 (org-back-to-heading invisible-ok)
7813 (when (and (not on-heading)
7814 (featurep 'org-inlinetask)
7815 (integerp org-inlinetask-min-level)
7816 (>= (length (match-string 0))
7817 org-inlinetask-min-level))
7818 ;; Find a heading level before the inline
7819 ;; task.
7820 (while (and (setq level (org-up-heading-safe))
7821 (>= level org-inlinetask-min-level)))
7822 (if (org-at-heading-p)
7823 (org-back-to-heading invisible-ok)
7824 (error "This should not happen")))
7825 (unless (and (save-excursion
7826 (save-match-data
7827 (org-backward-heading-same-level
7828 1 invisible-ok))
7829 (= (point) (match-beginning 0)))
7830 (not (org-previous-line-empty-p t)))
7831 (setq empty-line-p (or empty-line-p
7832 (org-previous-line-empty-p))))
7833 (match-string 0))
7834 (error (or fix-level "* ")))))
7835 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7836 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7837 pos hide-previous previous-pos)
7839 ;; If we insert after content, move there and clean up
7840 ;; whitespace.
7841 (when (and respect-content
7842 (not (org-looking-at-p org-outline-regexp-bol)))
7843 (if (not (org-before-first-heading-p))
7844 (org-end-of-subtree nil t)
7845 (re-search-forward org-outline-regexp-bol)
7846 (beginning-of-line 0))
7847 (skip-chars-backward " \r\t\n")
7848 (and (not (org-looking-back "^\\*+" (line-beginning-position)))
7849 (looking-at "[ \t]+") (replace-match ""))
7850 (unless (eobp) (forward-char 1))
7851 (when (looking-at "^\\*")
7852 (unless (bobp) (backward-char 1))
7853 (insert "\n")))
7855 ;; If we are splitting, grab the text that should be moved
7856 ;; to the new headline.
7857 (when may-split
7858 (if (org-on-heading-p)
7859 ;; This is a heading: split intelligently (keeping
7860 ;; tags).
7861 (let ((pos (point)))
7862 (beginning-of-line)
7863 (unless (looking-at org-complex-heading-regexp)
7864 (error "This should not happen"))
7865 (when (and (match-beginning 4)
7866 (> pos (match-beginning 4))
7867 (< pos (match-end 4)))
7868 (setq initial-content (buffer-substring pos (match-end 4)))
7869 (goto-char pos)
7870 (delete-region (point) (match-end 4))
7871 (if (looking-at "[ \t]*$")
7872 (replace-match "")
7873 (insert (make-string (length initial-content) ?\s)))
7874 (setq initial-content (org-trim initial-content)))
7875 (goto-char pos))
7876 ;; A normal line.
7877 (setq initial-content
7878 (org-trim
7879 (delete-and-extract-region (point) (line-end-position))))))
7881 ;; If we are at the beginning of the line, insert before it.
7882 ;; Otherwise, after it.
7883 (cond
7884 ((and (bolp) (looking-at "[ \t]*$")))
7885 ((bolp) (save-excursion (insert "\n")))
7886 (t (end-of-line)
7887 (insert "\n")))
7889 ;; Insert the new heading
7890 (insert stars)
7891 (just-one-space)
7892 (insert initial-content)
7893 (unless (and blank (org-previous-line-empty-p))
7894 (org-N-empty-lines-before-current (if blank 1 0)))
7895 ;; Adjust visibility, which may be messed up if we removed
7896 ;; blank lines while previous entry was hidden.
7897 (let ((bol (line-beginning-position)))
7898 (dolist (o (overlays-at (1- bol)))
7899 (when (and (eq (overlay-get o 'invisible) 'outline)
7900 (eq (overlay-end o) bol))
7901 (move-overlay o (overlay-start o) (1- bol)))))
7902 (run-hooks 'org-insert-heading-hook)))))))
7904 (defun org-N-empty-lines-before-current (N)
7905 "Make the number of empty lines before current exactly N.
7906 So this will delete or add empty lines."
7907 (save-excursion
7908 (beginning-of-line)
7909 (let ((p (point)))
7910 (skip-chars-backward " \r\t\n")
7911 (unless (bolp) (forward-line))
7912 (delete-region (point) p))
7913 (when (> N 0) (insert (make-string N ?\n)))))
7915 (defun org-get-heading (&optional no-tags no-todo)
7916 "Return the heading of the current entry, without the stars.
7917 When NO-TAGS is non-nil, don't include tags.
7918 When NO-TODO is non-nil, don't include TODO keywords."
7919 (save-excursion
7920 (org-back-to-heading t)
7921 (let ((case-fold-search nil))
7922 (cond
7923 ((and no-tags no-todo)
7924 (looking-at org-complex-heading-regexp)
7925 (match-string 4))
7926 (no-tags
7927 (looking-at (concat org-outline-regexp
7928 "\\(.*?\\)"
7929 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7930 (match-string 1))
7931 (no-todo
7932 (looking-at org-todo-line-regexp)
7933 (match-string 3))
7934 (t (looking-at org-heading-regexp)
7935 (match-string 2))))))
7937 (defvar orgstruct-mode) ; defined below
7939 (defun org-heading-components ()
7940 "Return the components of the current heading.
7941 This is a list with the following elements:
7942 - the level as an integer
7943 - the reduced level, different if `org-odd-levels-only' is set.
7944 - the TODO keyword, or nil
7945 - the priority character, like ?A, or nil if no priority is given
7946 - the headline text itself, or the tags string if no headline text
7947 - the tags string, or nil."
7948 (save-excursion
7949 (org-back-to-heading t)
7950 (if (let (case-fold-search)
7951 (looking-at
7952 (if orgstruct-mode
7953 org-heading-regexp
7954 org-complex-heading-regexp)))
7955 (if orgstruct-mode
7956 (list (length (match-string 1))
7957 (org-reduced-level (length (match-string 1)))
7960 (match-string 2)
7961 nil)
7962 (list (length (match-string 1))
7963 (org-reduced-level (length (match-string 1)))
7964 (org-match-string-no-properties 2)
7965 (and (match-end 3) (aref (match-string 3) 2))
7966 (org-match-string-no-properties 4)
7967 (org-match-string-no-properties 5))))))
7969 (defun org-get-entry ()
7970 "Get the entry text, after heading, entire subtree."
7971 (save-excursion
7972 (org-back-to-heading t)
7973 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7975 (defun org-insert-heading-after-current ()
7976 "Insert a new heading with same level as current, after current subtree."
7977 (interactive)
7978 (org-back-to-heading)
7979 (org-insert-heading)
7980 (org-move-subtree-down)
7981 (end-of-line 1))
7983 (defun org-insert-heading-respect-content (&optional invisible-ok)
7984 "Insert heading with `org-insert-heading-respect-content' set to t."
7985 (interactive)
7986 (org-insert-heading '(4) invisible-ok))
7988 (defun org-insert-todo-heading-respect-content (&optional force-state)
7989 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7990 (interactive)
7991 (org-insert-todo-heading force-state '(4)))
7993 (defun org-insert-todo-heading (arg &optional force-heading)
7994 "Insert a new heading with the same level and TODO state as current heading.
7995 If the heading has no TODO state, or if the state is DONE, use the first
7996 state (TODO by default). Also with one prefix arg, force first state. With
7997 two prefix args, force inserting at the end of the parent subtree."
7998 (interactive "P")
7999 (when (or force-heading (not (org-insert-item 'checkbox)))
8000 (org-insert-heading (or (and (equal arg '(16)) '(16))
8001 force-heading))
8002 (save-excursion
8003 (org-back-to-heading)
8004 (outline-previous-heading)
8005 (looking-at org-todo-line-regexp))
8006 (let*
8007 ((new-mark-x
8008 (if (or (equal arg '(4))
8009 (not (match-beginning 2))
8010 (member (match-string 2) org-done-keywords))
8011 (car org-todo-keywords-1)
8012 (match-string 2)))
8013 (new-mark
8015 (run-hook-with-args-until-success
8016 'org-todo-get-default-hook new-mark-x nil)
8017 new-mark-x)))
8018 (beginning-of-line 1)
8019 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
8020 (if org-treat-insert-todo-heading-as-state-change
8021 (org-todo new-mark)
8022 (insert new-mark " "))))
8023 (when org-provide-todo-statistics
8024 (org-update-parent-todo-statistics))))
8026 (defun org-insert-subheading (arg)
8027 "Insert a new subheading and demote it.
8028 Works for outline headings and for plain lists alike."
8029 (interactive "P")
8030 (org-insert-heading arg)
8031 (cond
8032 ((org-at-heading-p) (org-do-demote))
8033 ((org-at-item-p) (org-indent-item))))
8035 (defun org-insert-todo-subheading (arg)
8036 "Insert a new subheading with TODO keyword or checkbox and demote it.
8037 Works for outline headings and for plain lists alike."
8038 (interactive "P")
8039 (org-insert-todo-heading arg)
8040 (cond
8041 ((org-at-heading-p) (org-do-demote))
8042 ((org-at-item-p) (org-indent-item))))
8044 ;;; Promotion and Demotion
8046 (defvar org-after-demote-entry-hook nil
8047 "Hook run after an entry has been demoted.
8048 The cursor will be at the beginning of the entry.
8049 When a subtree is being demoted, the hook will be called for each node.")
8051 (defvar org-after-promote-entry-hook nil
8052 "Hook run after an entry has been promoted.
8053 The cursor will be at the beginning of the entry.
8054 When a subtree is being promoted, the hook will be called for each node.")
8056 (defun org-promote-subtree ()
8057 "Promote the entire subtree.
8058 See also `org-promote'."
8059 (interactive)
8060 (save-excursion
8061 (org-with-limited-levels (org-map-tree 'org-promote)))
8062 (org-fix-position-after-promote))
8064 (defun org-demote-subtree ()
8065 "Demote the entire subtree.
8066 See `org-demote' and `org-promote'."
8067 (interactive)
8068 (save-excursion
8069 (org-with-limited-levels (org-map-tree 'org-demote)))
8070 (org-fix-position-after-promote))
8072 (defun org-do-promote ()
8073 "Promote the current heading higher up the tree.
8074 If the region is active in `transient-mark-mode', promote all
8075 headings in the region."
8076 (interactive)
8077 (save-excursion
8078 (if (org-region-active-p)
8079 (org-map-region 'org-promote (region-beginning) (region-end))
8080 (org-promote)))
8081 (org-fix-position-after-promote))
8083 (defun org-do-demote ()
8084 "Demote the current heading lower down the tree.
8085 If the region is active in `transient-mark-mode', demote all
8086 headings in the region."
8087 (interactive)
8088 (save-excursion
8089 (if (org-region-active-p)
8090 (org-map-region 'org-demote (region-beginning) (region-end))
8091 (org-demote)))
8092 (org-fix-position-after-promote))
8094 (defun org-fix-position-after-promote ()
8095 "Fix cursor position and indentation after demoting/promoting."
8096 (let ((pos (point)))
8097 (when (save-excursion
8098 (beginning-of-line 1)
8099 (looking-at org-todo-line-regexp)
8100 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8101 (cond ((eobp) (insert " "))
8102 ((eolp) (insert " "))
8103 ((equal (char-after) ?\ ) (forward-char 1))))))
8105 (defun org-current-level ()
8106 "Return the level of the current entry, or nil if before the first headline.
8107 The level is the number of stars at the beginning of the
8108 headline. Use `org-reduced-level' to remove the effect of
8109 `org-odd-levels'. Unlike to `org-outline-level', this function
8110 ignores inlinetasks."
8111 (let ((level (org-with-limited-levels (org-outline-level))))
8112 (and (> level 0) level)))
8114 (defun org-get-previous-line-level ()
8115 "Return the outline depth of the last headline before the current line.
8116 Returns 0 for the first headline in the buffer, and nil if before the
8117 first headline."
8118 (and (org-current-level)
8119 (or (and (/= (line-beginning-position) (point-min))
8120 (save-excursion (beginning-of-line 0) (org-current-level)))
8121 0)))
8123 (defun org-reduced-level (l)
8124 "Compute the effective level of a heading.
8125 This takes into account the setting of `org-odd-levels-only'."
8126 (cond
8127 ((zerop l) 0)
8128 (org-odd-levels-only (1+ (floor (/ l 2))))
8129 (t l)))
8131 (defun org-level-increment ()
8132 "Return the number of stars that will be added or removed at a
8133 time to headlines when structure editing, based on the value of
8134 `org-odd-levels-only'."
8135 (if org-odd-levels-only 2 1))
8137 (defun org-get-valid-level (level &optional change)
8138 "Rectify a level change under the influence of `org-odd-levels-only'
8139 LEVEL is a current level, CHANGE is by how much the level should be
8140 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8141 even level numbers will become the next higher odd number."
8142 (if org-odd-levels-only
8143 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8144 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8145 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8146 (max 1 (+ level (or change 0)))))
8148 (if (boundp 'define-obsolete-function-alias)
8149 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8150 (define-obsolete-function-alias 'org-get-legal-level
8151 'org-get-valid-level)
8152 (define-obsolete-function-alias 'org-get-legal-level
8153 'org-get-valid-level "23.1")))
8155 (defun org-promote ()
8156 "Promote the current heading higher up the tree."
8157 (org-with-wide-buffer
8158 (org-back-to-heading t)
8159 (let* ((after-change-functions (remq 'flyspell-after-change-function
8160 after-change-functions))
8161 (level (save-match-data (funcall outline-level)))
8162 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8163 (diff (abs (- level (length up-head) -1))))
8164 (cond
8165 ((and (= level 1) org-allow-promoting-top-level-subtree)
8166 (replace-match "# " nil t))
8167 ((= level 1)
8168 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8169 (t (replace-match up-head nil t)))
8170 (unless (= level 1)
8171 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8172 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8173 (run-hooks 'org-after-promote-entry-hook))))
8175 (defun org-demote ()
8176 "Demote the current heading lower down the tree."
8177 (org-with-wide-buffer
8178 (org-back-to-heading t)
8179 (let* ((after-change-functions (remq 'flyspell-after-change-function
8180 after-change-functions))
8181 (level (save-match-data (funcall outline-level)))
8182 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8183 (diff (abs (- level (length down-head) -1))))
8184 (replace-match down-head nil t)
8185 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8186 (when org-adapt-indentation (org-fixup-indentation diff))
8187 (run-hooks 'org-after-demote-entry-hook))))
8189 (defun org-cycle-level ()
8190 "Cycle the level of an empty headline through possible states.
8191 This goes first to child, then to parent, level, then up the hierarchy.
8192 After top level, it switches back to sibling level."
8193 (interactive)
8194 (let ((org-adapt-indentation nil))
8195 (when (org-point-at-end-of-empty-headline)
8196 (setq this-command 'org-cycle-level) ; Only needed for caching
8197 (let ((cur-level (org-current-level))
8198 (prev-level (org-get-previous-line-level)))
8199 (cond
8200 ;; If first headline in file, promote to top-level.
8201 ((= prev-level 0)
8202 (loop repeat (/ (- cur-level 1) (org-level-increment))
8203 do (org-do-promote)))
8204 ;; If same level as prev, demote one.
8205 ((= prev-level cur-level)
8206 (org-do-demote))
8207 ;; If parent is top-level, promote to top level if not already.
8208 ((= prev-level 1)
8209 (loop repeat (/ (- cur-level 1) (org-level-increment))
8210 do (org-do-promote)))
8211 ;; If top-level, return to prev-level.
8212 ((= cur-level 1)
8213 (loop repeat (/ (- prev-level 1) (org-level-increment))
8214 do (org-do-demote)))
8215 ;; If less than prev-level, promote one.
8216 ((< cur-level prev-level)
8217 (org-do-promote))
8218 ;; If deeper than prev-level, promote until higher than
8219 ;; prev-level.
8220 ((> cur-level prev-level)
8221 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8222 do (org-do-promote))))
8223 t))))
8225 (defun org-map-tree (fun)
8226 "Call FUN for every heading underneath the current one."
8227 (org-back-to-heading)
8228 (let ((level (funcall outline-level)))
8229 (save-excursion
8230 (funcall fun)
8231 (while (and (progn
8232 (outline-next-heading)
8233 (> (funcall outline-level) level))
8234 (not (eobp)))
8235 (funcall fun)))))
8237 (defun org-map-region (fun beg end)
8238 "Call FUN for every heading between BEG and END."
8239 (let ((org-ignore-region t))
8240 (save-excursion
8241 (setq end (copy-marker end))
8242 (goto-char beg)
8243 (if (and (re-search-forward org-outline-regexp-bol nil t)
8244 (< (point) end))
8245 (funcall fun))
8246 (while (and (progn
8247 (outline-next-heading)
8248 (< (point) end))
8249 (not (eobp)))
8250 (funcall fun)))))
8252 (defun org-fixup-indentation (diff)
8253 "Change the indentation in the current entry by DIFF.
8255 DIFF is an integer. Indentation is done according to the
8256 following rules:
8258 - Planning information and property drawers are always indented
8259 according to the new level of the headline;
8261 - Footnote definitions and their contents are ignored;
8263 - Inlinetasks' boundaries are not shifted;
8265 - Empty lines are ignored;
8267 - Other lines' indentation are shifted by DIFF columns, unless
8268 it would introduce a structural change in the document, in
8269 which case no shifting is done at all.
8271 Assume point is at a heading or an inlinetask beginning."
8272 (org-with-wide-buffer
8273 (narrow-to-region (line-beginning-position)
8274 (save-excursion
8275 (if (org-with-limited-levels (org-at-heading-p))
8276 (org-with-limited-levels (outline-next-heading))
8277 (org-inlinetask-goto-end))
8278 (point)))
8279 (forward-line)
8280 ;; Indent properly planning info and property drawer.
8281 (when (org-looking-at-p org-planning-line-re)
8282 (org-indent-line)
8283 (forward-line))
8284 (when (looking-at org-property-drawer-re)
8285 (goto-char (match-end 0))
8286 (forward-line)
8287 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8288 (catch 'no-shift
8289 (when (zerop diff) (throw 'no-shift nil))
8290 ;; If DIFF is negative, first check if a shift is possible at all
8291 ;; (e.g., it doesn't break structure). This can only happen if
8292 ;; some contents are not properly indented.
8293 (let ((case-fold-search t))
8294 (when (< diff 0)
8295 (let ((diff (- diff))
8296 (forbidden-re (concat org-outline-regexp
8297 "\\|"
8298 (substring org-footnote-definition-re 1))))
8299 (save-excursion
8300 (while (not (eobp))
8301 (cond
8302 ((org-looking-at-p "[ \t]*$") (forward-line))
8303 ((and (org-looking-at-p org-footnote-definition-re)
8304 (let ((e (org-element-at-point)))
8305 (and (eq (org-element-type e) 'footnote-definition)
8306 (goto-char (org-element-property :end e))))))
8307 ((org-looking-at-p org-outline-regexp) (forward-line))
8308 ;; Give up if shifting would move before column 0 or
8309 ;; if it would introduce a headline or a footnote
8310 ;; definition.
8312 (skip-chars-forward " \t")
8313 (let ((ind (current-column)))
8314 (when (or (< ind diff)
8315 (and (= ind diff) (org-looking-at-p forbidden-re)))
8316 (throw 'no-shift nil)))
8317 ;; Ignore contents of example blocks and source
8318 ;; blocks if their indentation is meant to be
8319 ;; preserved. Jump to block's closing line.
8320 (beginning-of-line)
8321 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8322 (let ((e (org-element-at-point)))
8323 (and (memq (org-element-type e)
8324 '(example-block src-block))
8325 (or org-src-preserve-indentation
8326 (org-element-property :preserve-indent e))
8327 (goto-char (org-element-property :end e))
8328 (progn (skip-chars-backward " \r\t\n")
8329 (beginning-of-line)
8330 t))))
8331 (forward-line))))))))
8332 ;; Shift lines but footnote definitions, inlinetasks boundaries
8333 ;; by DIFF. Also skip contents of source or example blocks
8334 ;; when indentation is meant to be preserved.
8335 (while (not (eobp))
8336 (cond
8337 ((and (org-looking-at-p org-footnote-definition-re)
8338 (let ((e (org-element-at-point)))
8339 (and (eq (org-element-type e) 'footnote-definition)
8340 (goto-char (org-element-property :end e))))))
8341 ((org-looking-at-p org-outline-regexp) (forward-line))
8342 ((org-looking-at-p "[ \t]*$") (forward-line))
8344 (org-indent-line-to (+ (org-get-indentation) diff))
8345 (beginning-of-line)
8346 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8347 (let ((e (org-element-at-point)))
8348 (and (memq (org-element-type e)
8349 '(example-block src-block))
8350 (or org-src-preserve-indentation
8351 (org-element-property :preserve-indent e))
8352 (goto-char (org-element-property :end e))
8353 (progn (skip-chars-backward " \r\t\n")
8354 (beginning-of-line)
8355 t))))
8356 (forward-line)))))))))
8358 (defun org-convert-to-odd-levels ()
8359 "Convert an org-mode file with all levels allowed to one with odd levels.
8360 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8361 level 5 etc."
8362 (interactive)
8363 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8364 (let ((outline-level 'org-outline-level)
8365 (org-odd-levels-only nil) n)
8366 (save-excursion
8367 (goto-char (point-min))
8368 (while (re-search-forward "^\\*\\*+ " nil t)
8369 (setq n (- (length (match-string 0)) 2))
8370 (while (>= (setq n (1- n)) 0)
8371 (org-demote))
8372 (end-of-line 1))))))
8374 (defun org-convert-to-oddeven-levels ()
8375 "Convert an org-mode file with only odd levels to one with odd/even levels.
8376 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8377 file contains a section with an even level, conversion would
8378 destroy the structure of the file. An error is signaled in this
8379 case."
8380 (interactive)
8381 (goto-char (point-min))
8382 ;; First check if there are no even levels
8383 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8384 (org-show-set-visibility 'canonical)
8385 (error "Not all levels are odd in this file. Conversion not possible"))
8386 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8387 (let ((outline-regexp org-outline-regexp)
8388 (outline-level 'org-outline-level)
8389 (org-odd-levels-only nil) n)
8390 (save-excursion
8391 (goto-char (point-min))
8392 (while (re-search-forward "^\\*\\*+ " nil t)
8393 (setq n (/ (1- (length (match-string 0))) 2))
8394 (while (>= (setq n (1- n)) 0)
8395 (org-promote))
8396 (end-of-line 1))))))
8398 (defun org-tr-level (n)
8399 "Make N odd if required."
8400 (if org-odd-levels-only (1+ (/ n 2)) n))
8402 ;;; Vertical tree motion, cutting and pasting of subtrees
8404 (defun org-move-subtree-up (&optional arg)
8405 "Move the current subtree up past ARG headlines of the same level."
8406 (interactive "p")
8407 (org-move-subtree-down (- (prefix-numeric-value arg))))
8409 (defun org-move-subtree-down (&optional arg)
8410 "Move the current subtree down past ARG headlines of the same level."
8411 (interactive "p")
8412 (setq arg (prefix-numeric-value arg))
8413 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8414 'org-get-last-sibling))
8415 (ins-point (make-marker))
8416 (cnt (abs arg))
8417 (col (current-column))
8418 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8419 ;; Select the tree
8420 (org-back-to-heading)
8421 (setq beg0 (point))
8422 (save-excursion
8423 (setq ne-beg (org-back-over-empty-lines))
8424 (setq beg (point)))
8425 (save-match-data
8426 (save-excursion (outline-end-of-heading)
8427 (setq folded (outline-invisible-p)))
8428 (progn (org-end-of-subtree nil t)
8429 (unless (eobp) (backward-char))))
8430 (outline-next-heading)
8431 (setq ne-end (org-back-over-empty-lines))
8432 (setq end (point))
8433 (goto-char beg0)
8434 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8435 ;; include less whitespace
8436 (save-excursion
8437 (goto-char beg)
8438 (forward-line (- ne-beg ne-end))
8439 (setq beg (point))))
8440 ;; Find insertion point, with error handling
8441 (while (> cnt 0)
8442 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8443 (progn (goto-char beg0)
8444 (user-error "Cannot move past superior level or buffer limit")))
8445 (setq cnt (1- cnt)))
8446 (if (> arg 0)
8447 ;; Moving forward - still need to move over subtree
8448 (progn (org-end-of-subtree t t)
8449 (save-excursion
8450 (org-back-over-empty-lines)
8451 (or (bolp) (newline)))))
8452 (setq ne-ins (org-back-over-empty-lines))
8453 (move-marker ins-point (point))
8454 (setq txt (buffer-substring beg end))
8455 (org-save-markers-in-region beg end)
8456 (delete-region beg end)
8457 (org-remove-empty-overlays-at beg)
8458 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8459 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8460 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8461 (let ((bbb (point)))
8462 (insert-before-markers txt)
8463 (org-reinstall-markers-in-region bbb)
8464 (move-marker ins-point bbb))
8465 (or (bolp) (insert "\n"))
8466 (setq ins-end (point))
8467 (goto-char ins-point)
8468 (org-skip-whitespace)
8469 (when (and (< arg 0)
8470 (org-first-sibling-p)
8471 (> ne-ins ne-beg))
8472 ;; Move whitespace back to beginning
8473 (save-excursion
8474 (goto-char ins-end)
8475 (let ((kill-whole-line t))
8476 (kill-line (- ne-ins ne-beg)) (point)))
8477 (insert (make-string (- ne-ins ne-beg) ?\n)))
8478 (move-marker ins-point nil)
8479 (if folded
8480 (outline-hide-subtree)
8481 (org-show-entry)
8482 (outline-show-children)
8483 (org-cycle-hide-drawers 'children))
8484 (org-clean-visibility-after-subtree-move)
8485 ;; move back to the initial column we were at
8486 (move-to-column col)))
8488 (defvar org-subtree-clip ""
8489 "Clipboard for cut and paste of subtrees.
8490 This is actually only a copy of the kill, because we use the normal kill
8491 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8493 (defvar org-subtree-clip-folded nil
8494 "Was the last copied subtree folded?
8495 This is used to fold the tree back after pasting.")
8497 (defun org-cut-subtree (&optional n)
8498 "Cut the current subtree into the clipboard.
8499 With prefix arg N, cut this many sequential subtrees.
8500 This is a short-hand for marking the subtree and then cutting it."
8501 (interactive "p")
8502 (org-copy-subtree n 'cut))
8504 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8505 "Copy the current subtree it in the clipboard.
8506 With prefix arg N, copy this many sequential subtrees.
8507 This is a short-hand for marking the subtree and then copying it.
8508 If CUT is non-nil, actually cut the subtree.
8509 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8510 of some markers in the region, even if CUT is non-nil. This is
8511 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8512 (interactive "p")
8513 (let (beg end folded (beg0 (point)))
8514 (if (org-called-interactively-p 'any)
8515 (org-back-to-heading nil) ; take what looks like a subtree
8516 (org-back-to-heading t)) ; take what is really there
8517 (setq beg (point))
8518 (skip-chars-forward " \t\r\n")
8519 (save-match-data
8520 (if nosubtrees
8521 (outline-next-heading)
8522 (save-excursion (outline-end-of-heading)
8523 (setq folded (outline-invisible-p)))
8524 (ignore-errors (org-forward-heading-same-level (1- n) t))
8525 (org-end-of-subtree t t)))
8526 ;; Include the end of an inlinetask
8527 (when (and (featurep 'org-inlinetask)
8528 (looking-at-p (concat (org-inlinetask-outline-regexp)
8529 "END[ \t]*$")))
8530 (end-of-line))
8531 (setq end (point))
8532 (goto-char beg0)
8533 (when (> end beg)
8534 (setq org-subtree-clip-folded folded)
8535 (when (or cut force-store-markers)
8536 (org-save-markers-in-region beg end))
8537 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8538 (setq org-subtree-clip (current-kill 0))
8539 (message "%s: Subtree(s) with %d characters"
8540 (if cut "Cut" "Copied")
8541 (length org-subtree-clip)))))
8543 (defun org-paste-subtree (&optional level tree for-yank remove)
8544 "Paste the clipboard as a subtree, with modification of headline level.
8545 The entire subtree is promoted or demoted in order to match a new headline
8546 level.
8548 If the cursor is at the beginning of a headline, the same level as
8549 that headline is used to paste the tree.
8551 If not, the new level is derived from the *visible* headings
8552 before and after the insertion point, and taken to be the inferior headline
8553 level of the two. So if the previous visible heading is level 3 and the
8554 next is level 4 (or vice versa), level 4 will be used for insertion.
8555 This makes sure that the subtree remains an independent subtree and does
8556 not swallow low level entries.
8558 You can also force a different level, either by using a numeric prefix
8559 argument, or by inserting the heading marker by hand. For example, if the
8560 cursor is after \"*****\", then the tree will be shifted to level 5.
8562 If optional TREE is given, use this text instead of the kill ring.
8564 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8565 move back over whitespace before inserting, and move point to the end of
8566 the inserted text when done.
8568 When REMOVE is non-nil, remove the subtree from the clipboard."
8569 (interactive "P")
8570 (setq tree (or tree (and kill-ring (current-kill 0))))
8571 (unless (org-kill-is-subtree-p tree)
8572 (user-error "%s"
8573 (substitute-command-keys
8574 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8575 (org-with-limited-levels
8576 (let* ((visp (not (outline-invisible-p)))
8577 (txt tree)
8578 (^re_ "\\(\\*+\\)[ \t]*")
8579 (old-level (if (string-match org-outline-regexp-bol txt)
8580 (- (match-end 0) (match-beginning 0) 1)
8581 -1))
8582 (force-level (cond (level (prefix-numeric-value level))
8583 ((and (looking-at "[ \t]*$")
8584 (string-match
8585 "^\\*+$" (buffer-substring
8586 (point-at-bol) (point))))
8587 (- (match-end 0) (match-beginning 0)))
8588 ((and (bolp)
8589 (looking-at org-outline-regexp))
8590 (- (match-end 0) (point) 1))))
8591 (previous-level (save-excursion
8592 (condition-case nil
8593 (progn
8594 (outline-previous-visible-heading 1)
8595 (if (looking-at ^re_)
8596 (- (match-end 0) (match-beginning 0) 1)
8598 (error 1))))
8599 (next-level (save-excursion
8600 (condition-case nil
8601 (progn
8602 (or (looking-at org-outline-regexp)
8603 (outline-next-visible-heading 1))
8604 (if (looking-at ^re_)
8605 (- (match-end 0) (match-beginning 0) 1)
8607 (error 1))))
8608 (new-level (or force-level (max previous-level next-level)))
8609 (shift (if (or (= old-level -1)
8610 (= new-level -1)
8611 (= old-level new-level))
8613 (- new-level old-level)))
8614 (delta (if (> shift 0) -1 1))
8615 (func (if (> shift 0) 'org-demote 'org-promote))
8616 (org-odd-levels-only nil)
8617 beg end newend)
8618 ;; Remove the forced level indicator
8619 (if force-level
8620 (delete-region (point-at-bol) (point)))
8621 ;; Paste
8622 (beginning-of-line (if (bolp) 1 2))
8623 (setq beg (point))
8624 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8625 (insert-before-markers txt)
8626 (unless (string-match "\n\\'" txt) (insert "\n"))
8627 (setq newend (point))
8628 (org-reinstall-markers-in-region beg)
8629 (setq end (point))
8630 (goto-char beg)
8631 (skip-chars-forward " \t\n\r")
8632 (setq beg (point))
8633 (if (and (outline-invisible-p) visp)
8634 (save-excursion (outline-show-heading)))
8635 ;; Shift if necessary
8636 (unless (= shift 0)
8637 (save-restriction
8638 (narrow-to-region beg end)
8639 (while (not (= shift 0))
8640 (org-map-region func (point-min) (point-max))
8641 (setq shift (+ delta shift)))
8642 (goto-char (point-min))
8643 (setq newend (point-max))))
8644 (when (or (org-called-interactively-p 'interactive) for-yank)
8645 (message "Clipboard pasted as level %d subtree" new-level))
8646 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8647 kill-ring
8648 (eq org-subtree-clip (current-kill 0))
8649 org-subtree-clip-folded)
8650 ;; The tree was folded before it was killed/copied
8651 (outline-hide-subtree))
8652 (and for-yank (goto-char newend))
8653 (and remove (setq kill-ring (cdr kill-ring))))))
8655 (defun org-kill-is-subtree-p (&optional txt)
8656 "Check if the current kill is an outline subtree, or a set of trees.
8657 Returns nil if kill does not start with a headline, or if the first
8658 headline level is not the largest headline level in the tree.
8659 So this will actually accept several entries of equal levels as well,
8660 which is OK for `org-paste-subtree'.
8661 If optional TXT is given, check this string instead of the current kill."
8662 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8663 (re (org-get-limited-outline-regexp))
8664 (^re (concat "^" re))
8665 (start-level (and kill
8666 (string-match
8667 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8668 kill)
8669 (- (match-end 2) (match-beginning 2) 1)))
8670 (start (1+ (or (match-beginning 2) -1))))
8671 (if (not start-level)
8672 (progn
8673 nil) ;; does not even start with a heading
8674 (catch 'exit
8675 (while (setq start (string-match ^re kill (1+ start)))
8676 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8677 (throw 'exit nil)))
8678 t))))
8680 (defvar org-markers-to-move nil
8681 "Markers that should be moved with a cut-and-paste operation.
8682 Those markers are stored together with their positions relative to
8683 the start of the region.")
8685 (defun org-save-markers-in-region (beg end)
8686 "Check markers in region.
8687 If these markers are between BEG and END, record their position relative
8688 to BEG, so that after moving the block of text, we can put the markers back
8689 into place.
8690 This function gets called just before an entry or tree gets cut from the
8691 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8692 called immediately, to move the markers with the entries."
8693 (setq org-markers-to-move nil)
8694 (when (featurep 'org-clock)
8695 (org-clock-save-markers-for-cut-and-paste beg end))
8696 (when (featurep 'org-agenda)
8697 (org-agenda-save-markers-for-cut-and-paste beg end)))
8699 (defun org-check-and-save-marker (marker beg end)
8700 "Check if MARKER is between BEG and END.
8701 If yes, remember the marker and the distance to BEG."
8702 (when (and (marker-buffer marker)
8703 (equal (marker-buffer marker) (current-buffer)))
8704 (if (and (>= marker beg) (< marker end))
8705 (push (cons marker (- marker beg)) org-markers-to-move))))
8707 (defun org-reinstall-markers-in-region (beg)
8708 "Move all remembered markers to their position relative to BEG."
8709 (mapc (lambda (x)
8710 (move-marker (car x) (+ beg (cdr x))))
8711 org-markers-to-move)
8712 (setq org-markers-to-move nil))
8714 (defun org-narrow-to-subtree ()
8715 "Narrow buffer to the current subtree."
8716 (interactive)
8717 (save-excursion
8718 (save-match-data
8719 (org-with-limited-levels
8720 (narrow-to-region
8721 (progn (org-back-to-heading t) (point))
8722 (progn (org-end-of-subtree t t)
8723 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8724 (point)))))))
8726 (defun org-narrow-to-block ()
8727 "Narrow buffer to the current block."
8728 (interactive)
8729 (let* ((case-fold-search t)
8730 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8731 "^[ \t]*#\\+end_.*")))
8732 (if blockp
8733 (narrow-to-region (car blockp) (cdr blockp))
8734 (user-error "Not in a block"))))
8736 (defun org-clone-subtree-with-time-shift (n &optional shift)
8737 "Clone the task (subtree) at point N times.
8738 The clones will be inserted as siblings.
8740 In interactive use, the user will be prompted for the number of
8741 clones to be produced. If the entry has a timestamp, the user
8742 will also be prompted for a time shift, which may be a repeater
8743 as used in time stamps, for example `+3d'. To disable this,
8744 you can call the function with a universal prefix argument.
8746 When a valid repeater is given and the entry contains any time
8747 stamps, the clones will become a sequence in time, with time
8748 stamps in the subtree shifted for each clone produced. If SHIFT
8749 is nil or the empty string, time stamps will be left alone. The
8750 ID property of the original subtree is removed.
8752 If the original subtree did contain time stamps with a repeater,
8753 the following will happen:
8754 - the repeater will be removed in each clone
8755 - an additional clone will be produced, with the current, unshifted
8756 date(s) in the entry.
8757 - the original entry will be placed *after* all the clones, with
8758 repeater intact.
8759 - the start days in the repeater in the original entry will be shifted
8760 to past the last clone.
8761 In this way you can spell out a number of instances of a repeating task,
8762 and still retain the repeater to cover future instances of the task.
8764 As described above, N+1 clones are produced when the original
8765 subtree has a repeater. Setting N to 0, then, can be used to
8766 remove the repeater from a subtree and create a shifted clone
8767 with the original repeater."
8768 (interactive "nNumber of clones to produce: ")
8769 (let ((shift
8770 (or shift
8771 (if (and (not (equal current-prefix-arg '(4)))
8772 (save-excursion
8773 (re-search-forward org-ts-regexp-both
8774 (save-excursion
8775 (org-end-of-subtree t)
8776 (point)) t)))
8777 (read-from-minibuffer
8778 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8779 ""))) ;; No time shift
8780 (n-no-remove -1)
8781 (drawer-re org-drawer-regexp)
8782 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8783 beg end template task idprop
8784 shift-n shift-what doshift nmin nmax)
8785 (unless (wholenump n)
8786 (user-error "Invalid number of replications %s" n))
8787 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8788 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8789 shift)))
8790 (user-error "Invalid shift specification %s" shift))
8791 (when doshift
8792 (setq shift-n (string-to-number (match-string 1 shift))
8793 shift-what (cdr (assoc (match-string 2 shift)
8794 '(("d" . day) ("w" . week)
8795 ("m" . month) ("y" . year))))))
8796 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8797 (setq nmin 1 nmax n)
8798 (org-back-to-heading t)
8799 (setq beg (point))
8800 (setq idprop (org-entry-get nil "ID"))
8801 (org-end-of-subtree t t)
8802 (or (bolp) (insert "\n"))
8803 (setq end (point))
8804 (setq template (buffer-substring beg end))
8805 (when (and doshift
8806 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8807 (delete-region beg end)
8808 (setq end beg)
8809 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8810 (goto-char end)
8811 (loop for n from nmin to nmax do
8812 ;; prepare clone
8813 (with-temp-buffer
8814 (insert template)
8815 (org-mode)
8816 (goto-char (point-min))
8817 (org-show-subtree)
8818 (and idprop (if org-clone-delete-id
8819 (org-entry-delete nil "ID")
8820 (org-id-get-create t)))
8821 (unless (= n 0)
8822 (while (re-search-forward org-clock-re nil t)
8823 (kill-whole-line))
8824 (goto-char (point-min))
8825 (while (re-search-forward drawer-re nil t)
8826 (org-remove-empty-drawer-at (point))))
8827 (goto-char (point-min))
8828 (when doshift
8829 (while (re-search-forward org-ts-regexp-both nil t)
8830 (org-timestamp-change (* n shift-n) shift-what))
8831 (unless (= n n-no-remove)
8832 (goto-char (point-min))
8833 (while (re-search-forward org-ts-regexp nil t)
8834 (save-excursion
8835 (goto-char (match-beginning 0))
8836 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8837 (delete-region (match-beginning 1) (match-end 1)))))))
8838 (setq task (buffer-string)))
8839 (insert task))
8840 (goto-char beg)))
8842 ;;; Outline Sorting
8844 (defun org-sort (with-case)
8845 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8846 Optional argument WITH-CASE means sort case-sensitively."
8847 (interactive "P")
8848 (cond
8849 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8850 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8852 (org-call-with-arg 'org-sort-entries with-case))))
8854 (defun org-sort-remove-invisible (s)
8855 "Remove invisible links from string S."
8856 (remove-text-properties 0 (length s) org-rm-props s)
8857 (while (string-match org-bracket-link-regexp s)
8858 (setq s (replace-match (if (match-end 2)
8859 (match-string 3 s)
8860 (match-string 1 s))
8861 t t s)))
8862 (let ((st (format " %s " s)))
8863 (while (string-match org-emph-re st)
8864 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8865 (setq s (substring st 1 -1)))
8868 (defvar org-priority-regexp) ; defined later in the file
8870 (defvar org-after-sorting-entries-or-items-hook nil
8871 "Hook that is run after a bunch of entries or items have been sorted.
8872 When children are sorted, the cursor is in the parent line when this
8873 hook gets called. When a region or a plain list is sorted, the cursor
8874 will be in the first entry of the sorted region/list.")
8876 (defun org-sort-entries
8877 (&optional with-case sorting-type getkey-func compare-func property)
8878 "Sort entries on a certain level of an outline tree.
8879 If there is an active region, the entries in the region are sorted.
8880 Else, if the cursor is before the first entry, sort the top-level items.
8881 Else, the children of the entry at point are sorted.
8883 Sorting can be alphabetically, numerically, by date/time as given by
8884 a time stamp, by a property, by priority order, or by a custom function.
8886 The command prompts for the sorting type unless it has been given to the
8887 function through the SORTING-TYPE argument, which needs to be a character,
8888 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8889 the precise meaning of each character:
8891 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8892 c By creation time, which is assumed to be the first inactive time stamp
8893 at the beginning of a line.
8894 d By deadline date/time.
8895 k By clocking time.
8896 n Numerically, by converting the beginning of the entry/item to a number.
8897 o By order of TODO keywords.
8898 p By priority according to the cookie.
8899 r By the value of a property.
8900 s By scheduled date/time.
8901 t By date/time, either the first active time stamp in the entry, or, if
8902 none exist, by the first inactive one.
8904 Capital letters will reverse the sort order.
8906 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8907 called with point at the beginning of the record. It must return either
8908 a string or a number that should serve as the sorting key for that record.
8910 Comparing entries ignores case by default. However, with an optional argument
8911 WITH-CASE, the sorting considers case as well.
8913 Sorting is done against the visible part of the headlines, it ignores hidden
8914 links.
8916 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8917 (interactive "P")
8918 (let ((case-func (if with-case 'identity 'downcase))
8919 (cmstr
8920 ;; The clock marker is lost when using `sort-subr', let's
8921 ;; store the clocking string.
8922 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8923 (save-excursion
8924 (goto-char org-clock-marker)
8925 (buffer-substring-no-properties (line-beginning-position)
8926 (point)))))
8927 start beg end stars re re2
8928 txt what tmp)
8929 ;; Find beginning and end of region to sort
8930 (cond
8931 ((org-region-active-p)
8932 ;; we will sort the region
8933 (setq end (region-end)
8934 what "region")
8935 (goto-char (region-beginning))
8936 (if (not (org-at-heading-p)) (outline-next-heading))
8937 (setq start (point)))
8938 ((or (org-at-heading-p)
8939 (ignore-errors (progn (org-back-to-heading) t)))
8940 ;; we will sort the children of the current headline
8941 (org-back-to-heading)
8942 (setq start (point)
8943 end (progn (org-end-of-subtree t t)
8944 (or (bolp) (insert "\n"))
8945 (when (>= (org-back-over-empty-lines) 1)
8946 (forward-line 1))
8947 (point))
8948 what "children")
8949 (goto-char start)
8950 (outline-show-subtree)
8951 (outline-next-heading))
8953 ;; we will sort the top-level entries in this file
8954 (goto-char (point-min))
8955 (or (org-at-heading-p) (outline-next-heading))
8956 (setq start (point))
8957 (goto-char (point-max))
8958 (beginning-of-line 1)
8959 (when (looking-at ".*?\\S-")
8960 ;; File ends in a non-white line
8961 (end-of-line 1)
8962 (insert "\n"))
8963 (setq end (point-max))
8964 (setq what "top-level")
8965 (goto-char start)
8966 (outline-show-all)))
8968 (setq beg (point))
8969 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8971 (looking-at "\\(\\*+\\)")
8972 (setq stars (match-string 1)
8973 re (concat "^" (regexp-quote stars) " +")
8974 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8975 txt (buffer-substring beg end))
8976 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8977 (if (and (not (equal stars "*")) (string-match re2 txt))
8978 (user-error "Region to sort contains a level above the first entry"))
8980 (unless sorting-type
8981 (message
8982 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8983 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8984 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8985 what)
8986 (setq sorting-type (read-char-exclusive))
8988 (unless getkey-func
8989 (and (= (downcase sorting-type) ?f)
8990 (setq getkey-func
8991 (org-icompleting-read "Sort using function: "
8992 obarray 'fboundp t nil nil))
8993 (setq getkey-func (intern getkey-func))))
8995 (and (= (downcase sorting-type) ?r)
8996 (not property)
8997 (setq property
8998 (org-icompleting-read "Property: "
8999 (mapcar 'list (org-buffer-property-keys t))
9000 nil t))))
9002 (when (member sorting-type '(?k ?K)) (org-clock-sum))
9003 (message "Sorting entries...")
9005 (save-restriction
9006 (narrow-to-region start end)
9007 (let ((dcst (downcase sorting-type))
9008 (case-fold-search nil)
9009 (now (current-time)))
9010 (sort-subr
9011 (/= dcst sorting-type)
9012 ;; This function moves to the beginning character of the "record" to
9013 ;; be sorted.
9014 (lambda nil
9015 (if (re-search-forward re nil t)
9016 (goto-char (match-beginning 0))
9017 (goto-char (point-max))))
9018 ;; This function moves to the last character of the "record" being
9019 ;; sorted.
9020 (lambda nil
9021 (save-match-data
9022 (condition-case nil
9023 (outline-forward-same-level 1)
9024 (error
9025 (goto-char (point-max))))))
9026 ;; This function returns the value that gets sorted against.
9027 (lambda nil
9028 (cond
9029 ((= dcst ?n)
9030 (if (looking-at org-complex-heading-regexp)
9031 (string-to-number (org-sort-remove-invisible (match-string 4)))
9032 nil))
9033 ((= dcst ?a)
9034 (if (looking-at org-complex-heading-regexp)
9035 (funcall case-func (org-sort-remove-invisible (match-string 4)))
9036 nil))
9037 ((= dcst ?k)
9038 (or (get-text-property (point) :org-clock-minutes) 0))
9039 ((= dcst ?t)
9040 (let ((end (save-excursion (outline-next-heading) (point))))
9041 (if (or (re-search-forward org-ts-regexp end t)
9042 (re-search-forward org-ts-regexp-both end t))
9043 (org-time-string-to-seconds (match-string 0))
9044 (org-float-time now))))
9045 ((= dcst ?c)
9046 (let ((end (save-excursion (outline-next-heading) (point))))
9047 (if (re-search-forward
9048 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9049 end t)
9050 (org-time-string-to-seconds (match-string 0))
9051 (org-float-time now))))
9052 ((= dcst ?s)
9053 (let ((end (save-excursion (outline-next-heading) (point))))
9054 (if (re-search-forward org-scheduled-time-regexp end t)
9055 (org-time-string-to-seconds (match-string 1))
9056 (org-float-time now))))
9057 ((= dcst ?d)
9058 (let ((end (save-excursion (outline-next-heading) (point))))
9059 (if (re-search-forward org-deadline-time-regexp end t)
9060 (org-time-string-to-seconds (match-string 1))
9061 (org-float-time now))))
9062 ((= dcst ?p)
9063 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9064 (string-to-char (match-string 2))
9065 org-default-priority))
9066 ((= dcst ?r)
9067 (or (org-entry-get nil property) ""))
9068 ((= dcst ?o)
9069 (if (looking-at org-complex-heading-regexp)
9070 (let* ((m (match-string 2))
9071 (s (if (member m org-done-keywords) '- '+)))
9072 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9073 ((= dcst ?f)
9074 (if getkey-func
9075 (progn
9076 (setq tmp (funcall getkey-func))
9077 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9078 tmp)
9079 (error "Invalid key function `%s'" getkey-func)))
9080 (t (error "Invalid sorting type `%c'" sorting-type))))
9082 (cond
9083 ((= dcst ?a) 'string<)
9084 ((= dcst ?f) compare-func)
9085 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9086 (run-hooks 'org-after-sorting-entries-or-items-hook)
9087 ;; Reset the clock marker if needed
9088 (when cmstr
9089 (save-excursion
9090 (goto-char start)
9091 (search-forward cmstr nil t)
9092 (move-marker org-clock-marker (point))))
9093 (message "Sorting entries...done")))
9095 ;;; The orgstruct minor mode
9097 ;; Define a minor mode which can be used in other modes in order to
9098 ;; integrate the org-mode structure editing commands.
9100 ;; This is really a hack, because the org-mode structure commands use
9101 ;; keys which normally belong to the major mode. Here is how it
9102 ;; works: The minor mode defines all the keys necessary to operate the
9103 ;; structure commands, but wraps the commands into a function which
9104 ;; tests if the cursor is currently at a headline or a plain list
9105 ;; item. If that is the case, the structure command is used,
9106 ;; temporarily setting many Org-mode variables like regular
9107 ;; expressions for filling etc. However, when any of those keys is
9108 ;; used at a different location, function uses `key-binding' to look
9109 ;; up if the key has an associated command in another currently active
9110 ;; keymap (minor modes, major mode, global), and executes that
9111 ;; command. There might be problems if any of the keys is otherwise
9112 ;; used as a prefix key.
9114 (defcustom orgstruct-heading-prefix-regexp ""
9115 "Regexp that matches the custom prefix of Org headlines in
9116 orgstruct(++)-mode."
9117 :group 'org
9118 :version "24.4"
9119 :package-version '(Org . "8.3")
9120 :type 'regexp)
9121 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9123 (defcustom orgstruct-setup-hook nil
9124 "Hook run after orgstruct-mode-map is filled."
9125 :group 'org
9126 :version "24.4"
9127 :package-version '(Org . "8.0")
9128 :type 'hook)
9130 (defvar orgstruct-initialized nil)
9132 (defvar org-local-vars nil
9133 "List of local variables, for use by `orgstruct-mode'.")
9135 ;;;###autoload
9136 (define-minor-mode orgstruct-mode
9137 "Toggle the minor mode `orgstruct-mode'.
9138 This mode is for using Org-mode structure commands in other
9139 modes. The following keys behave as if Org-mode were active, if
9140 the cursor is on a headline, or on a plain list item (both as
9141 defined by Org-mode)."
9142 nil " OrgStruct" (make-sparse-keymap)
9143 (funcall (if orgstruct-mode
9144 'add-to-invisibility-spec
9145 'remove-from-invisibility-spec)
9146 '(outline . t))
9147 (when orgstruct-mode
9148 (org-load-modules-maybe)
9149 (unless orgstruct-initialized
9150 (orgstruct-setup)
9151 (setq orgstruct-initialized t))))
9153 ;;;###autoload
9154 (defun turn-on-orgstruct ()
9155 "Unconditionally turn on `orgstruct-mode'."
9156 (orgstruct-mode 1))
9158 (defvar org-fb-vars nil)
9159 (make-variable-buffer-local 'org-fb-vars)
9160 (defun orgstruct++-mode (&optional arg)
9161 "Toggle `orgstruct-mode', the enhanced version of it.
9162 In addition to setting orgstruct-mode, this also exports all
9163 indentation and autofilling variables from org-mode into the
9164 buffer. It will also recognize item context in multiline items."
9165 (interactive "P")
9166 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9167 (if (< arg 1)
9168 (progn (orgstruct-mode -1)
9169 (mapc (lambda(v)
9170 (org-set-local (car v)
9171 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9172 org-fb-vars))
9173 (orgstruct-mode 1)
9174 (setq org-fb-vars nil)
9175 (unless org-local-vars
9176 (setq org-local-vars (org-get-local-variables)))
9177 (let (var val)
9178 (mapc
9179 (lambda (x)
9180 (when (string-match
9181 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9182 (symbol-name (car x)))
9183 (setq var (car x) val (nth 1 x))
9184 (push (list var `(quote ,(eval var))) org-fb-vars)
9185 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9186 org-local-vars)
9187 (org-set-local 'orgstruct-is-++ t))))
9189 (defvar orgstruct-is-++ nil
9190 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9191 (make-variable-buffer-local 'orgstruct-is-++)
9193 ;;;###autoload
9194 (defun turn-on-orgstruct++ ()
9195 "Unconditionally turn on `orgstruct++-mode'."
9196 (orgstruct++-mode 1))
9198 (defun orgstruct-error ()
9199 "Error when there is no default binding for a structure key."
9200 (interactive)
9201 (funcall (if (fboundp 'user-error)
9202 'user-error
9203 'error)
9204 "This key has no function outside structure elements"))
9206 (defun orgstruct-setup ()
9207 "Setup orgstruct keymap."
9208 (dolist (cell '((org-demote . t)
9209 (org-metaleft . t)
9210 (org-metaright . t)
9211 (org-promote . t)
9212 (org-shiftmetaleft . t)
9213 (org-shiftmetaright . t)
9214 org-backward-element
9215 org-backward-heading-same-level
9216 org-ctrl-c-ret
9217 org-ctrl-c-minus
9218 org-ctrl-c-star
9219 org-cycle
9220 org-forward-heading-same-level
9221 org-insert-heading
9222 org-insert-heading-respect-content
9223 org-kill-note-or-show-branches
9224 org-mark-subtree
9225 org-meta-return
9226 org-metadown
9227 org-metaup
9228 org-narrow-to-subtree
9229 org-promote-subtree
9230 org-reveal
9231 org-shiftdown
9232 org-shiftleft
9233 org-shiftmetadown
9234 org-shiftmetaup
9235 org-shiftright
9236 org-shifttab
9237 org-shifttab
9238 org-shiftup
9239 org-show-subtree
9240 org-sort
9241 org-up-element
9242 outline-demote
9243 outline-next-visible-heading
9244 outline-previous-visible-heading
9245 outline-promote
9246 outline-up-heading
9247 outline-show-children))
9248 (let ((f (or (car-safe cell) cell))
9249 (disable-when-heading-prefix (cdr-safe cell)))
9250 (when (fboundp f)
9251 (let ((new-bindings))
9252 (dolist (binding (nconc (where-is-internal f org-mode-map)
9253 (where-is-internal f outline-mode-map)))
9254 (push binding new-bindings)
9255 ;; TODO use local-function-key-map
9256 (dolist (rep '(("<tab>" . "TAB")
9257 ("<return>" . "RET")
9258 ("<escape>" . "ESC")
9259 ("<delete>" . "DEL")))
9260 (setq binding (read-kbd-macro
9261 (let ((case-fold-search))
9262 (replace-regexp-in-string
9263 (regexp-quote (cdr rep))
9264 (car rep)
9265 (key-description binding)))))
9266 (pushnew binding new-bindings :test 'equal)))
9267 (dolist (binding new-bindings)
9268 (let ((key (lookup-key orgstruct-mode-map binding)))
9269 (when (or (not key) (numberp key))
9270 (ignore-errors
9271 (org-defkey orgstruct-mode-map
9272 binding
9273 (orgstruct-make-binding
9274 f binding disable-when-heading-prefix))))))))))
9275 (run-hooks 'orgstruct-setup-hook))
9277 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9278 "Create a function for binding in the structure minor mode.
9279 FUN is the command to call inside a table. KEY is the key that
9280 should be checked in for a command to execute outside of tables.
9281 Non-nil `disable-when-heading-prefix' means to disable the command
9282 if `orgstruct-heading-prefix-regexp' is not empty."
9283 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9284 (let ((nname name)
9285 (i 0))
9286 (while (fboundp (intern nname))
9287 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9288 (setq name (intern nname)))
9289 (eval
9290 (let ((bindings '((org-heading-regexp
9291 (concat "^"
9292 orgstruct-heading-prefix-regexp
9293 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9294 (org-outline-regexp
9295 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9296 (org-outline-regexp-bol
9297 (concat "^" org-outline-regexp))
9298 (outline-regexp org-outline-regexp)
9299 (outline-heading-end-regexp "\n")
9300 (outline-level 'org-outline-level)
9301 (outline-heading-alist))))
9302 `(defun ,name (arg)
9303 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9304 "Outside of structure, run the binding of `"
9305 (key-description key) "'."
9306 (when disable-when-heading-prefix
9307 (concat
9308 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9309 "back to the default binding due to limitations of Org's implementation of\n"
9310 "`" (symbol-name fun) "'.")))
9311 (interactive "p")
9312 (let* ((disable
9313 ,(and disable-when-heading-prefix
9314 '(not (string= orgstruct-heading-prefix-regexp ""))))
9315 (fallback
9316 (or disable
9317 (not
9318 (let* ,bindings
9319 (org-context-p 'headline 'item
9320 ,(when (memq fun
9321 '(org-insert-heading
9322 org-insert-heading-respect-content
9323 org-meta-return))
9324 '(when orgstruct-is-++
9325 'item-body))))))))
9326 (if fallback
9327 (let* ((orgstruct-mode)
9328 (binding
9329 (let ((key ,key))
9330 (catch 'exit
9331 (dolist
9332 (rep
9333 '(nil
9334 ("<\\([^>]*\\)tab>" . "\\1TAB")
9335 ("<\\([^>]*\\)return>" . "\\1RET")
9336 ("<\\([^>]*\\)escape>" . "\\1ESC")
9337 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9338 nil)
9339 (when rep
9340 (setq key (read-kbd-macro
9341 (let ((case-fold-search))
9342 (replace-regexp-in-string
9343 (car rep)
9344 (cdr rep)
9345 (key-description key))))))
9346 (when (key-binding key)
9347 (throw 'exit (key-binding key))))))))
9348 (if (keymapp binding)
9349 (org-set-transient-map binding)
9350 (let ((func (or binding
9351 (unless disable
9352 'orgstruct-error))))
9353 (when func
9354 (call-interactively func)))))
9355 (org-run-like-in-org-mode
9356 (lambda ()
9357 (interactive)
9358 (let* ,bindings
9359 (call-interactively ',fun)))))))))
9360 name))
9362 (defun org-contextualize-keys (alist contexts)
9363 "Return valid elements in ALIST depending on CONTEXTS.
9365 `org-agenda-custom-commands' or `org-capture-templates' are the
9366 values used for ALIST, and `org-agenda-custom-commands-contexts'
9367 or `org-capture-templates-contexts' are the associated contexts
9368 definitions."
9369 (let ((contexts
9370 ;; normalize contexts
9371 (mapcar
9372 (lambda(c) (cond ((listp (cadr c))
9373 (list (car c) (car c) (cadr c)))
9374 ((string= "" (cadr c))
9375 (list (car c) (car c) (caddr c)))
9376 (t c)))
9377 contexts))
9378 (a alist) r s)
9379 ;; loop over all commands or templates
9380 (dolist (c a)
9381 (let (vrules repl)
9382 (cond
9383 ((not (assoc (car c) contexts))
9384 (push c r))
9385 ((and (assoc (car c) contexts)
9386 (setq vrules (org-contextualize-validate-key
9387 (car c) contexts)))
9388 (mapc (lambda (vr)
9389 (when (not (equal (car vr) (cadr vr)))
9390 (setq repl vr)))
9391 vrules)
9392 (if (not repl) (push c r)
9393 (push (cadr repl) s)
9394 (push
9395 (cons (car c)
9396 (cdr (or (assoc (cadr repl) alist)
9397 (error "Undefined key `%s' as contextual replacement for `%s'"
9398 (cadr repl) (car c)))))
9399 r))))))
9400 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9401 (delq
9403 (delete-dups
9404 (mapcar (lambda (x)
9405 (let ((tpl (car x)))
9406 (when (not (delq
9408 (mapcar (lambda (y)
9409 (equal y tpl))
9410 s)))
9411 x)))
9412 (reverse r))))))
9414 (defun org-contextualize-validate-key (key contexts)
9415 "Check CONTEXTS for agenda or capture KEY."
9416 (let (rr res)
9417 (dolist (r contexts)
9418 (mapc
9419 (lambda (rr)
9420 (when
9421 (and (equal key (car r))
9422 (if (functionp rr) (funcall rr)
9423 (or (and (eq (car rr) 'in-file)
9424 (buffer-file-name)
9425 (string-match (cdr rr) (buffer-file-name)))
9426 (and (eq (car rr) 'in-mode)
9427 (string-match (cdr rr) (symbol-name major-mode)))
9428 (and (eq (car rr) 'in-buffer)
9429 (string-match (cdr rr) (buffer-name)))
9430 (when (and (eq (car rr) 'not-in-file)
9431 (buffer-file-name))
9432 (not (string-match (cdr rr) (buffer-file-name))))
9433 (when (eq (car rr) 'not-in-mode)
9434 (not (string-match (cdr rr) (symbol-name major-mode))))
9435 (when (eq (car rr) 'not-in-buffer)
9436 (not (string-match (cdr rr) (buffer-name)))))))
9437 (push r res)))
9438 (car (last r))))
9439 (delete-dups (delq nil res))))
9441 (defun org-context-p (&rest contexts)
9442 "Check if local context is any of CONTEXTS.
9443 Possible values in the list of contexts are `table', `headline', and `item'."
9444 (let ((pos (point)))
9445 (goto-char (point-at-bol))
9446 (prog1 (or (and (memq 'table contexts)
9447 (looking-at "[ \t]*|"))
9448 (and (memq 'headline contexts)
9449 (looking-at org-outline-regexp))
9450 (and (memq 'item contexts)
9451 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9452 (and (memq 'item-body contexts)
9453 (org-in-item-p)))
9454 (goto-char pos))))
9456 (defun org-get-local-variables ()
9457 "Return a list of all local variables in an Org mode buffer."
9458 (let (varlist)
9459 (with-current-buffer (get-buffer-create "*Org tmp*")
9460 (erase-buffer)
9461 (org-mode)
9462 (setq varlist (buffer-local-variables)))
9463 (kill-buffer "*Org tmp*")
9464 (delq nil
9465 (mapcar
9466 (lambda (x)
9467 (setq x
9468 (if (symbolp x)
9469 (list x)
9470 (list (car x) (cdr x))))
9471 (if (and (not (get (car x) 'org-state))
9472 (string-match
9473 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9474 (symbol-name (car x))))
9475 x nil))
9476 varlist))))
9478 (defun org-clone-local-variables (from-buffer &optional regexp)
9479 "Clone local variables from FROM-BUFFER.
9480 Optional argument REGEXP selects variables to clone."
9481 (mapc
9482 (lambda (pair)
9483 (and (symbolp (car pair))
9484 (or (null regexp)
9485 (string-match regexp (symbol-name (car pair))))
9486 (set (make-local-variable (car pair))
9487 (cdr pair))))
9488 (buffer-local-variables from-buffer)))
9490 ;;;###autoload
9491 (defun org-run-like-in-org-mode (cmd)
9492 "Run a command, pretending that the current buffer is in Org-mode.
9493 This will temporarily bind local variables that are typically bound in
9494 Org-mode to the values they have in Org-mode, and then interactively
9495 call CMD."
9496 (org-load-modules-maybe)
9497 (unless org-local-vars
9498 (setq org-local-vars (org-get-local-variables)))
9499 (let (binds)
9500 (dolist (var org-local-vars)
9501 (when (or (not (boundp (car var)))
9502 (eq (symbol-value (car var))
9503 (default-value (car var))))
9504 (push (list (car var) `(quote ,(cadr var))) binds)))
9505 (eval `(let ,binds
9506 (call-interactively (quote ,cmd))))))
9508 (defun org-get-category (&optional pos force-refresh)
9509 "Get the category applying to position POS."
9510 (save-match-data
9511 (if force-refresh (org-refresh-category-properties))
9512 (let ((pos (or pos (point))))
9513 (or (get-text-property pos 'org-category)
9514 (progn (org-refresh-category-properties)
9515 (get-text-property pos 'org-category))))))
9517 ;;; Refresh properties
9519 (defun org-refresh-properties (dprop tprop)
9520 "Refresh buffer text properties.
9521 DPROP is the drawer property and TPROP is either the
9522 corresponding text property to set, or an alist with each element
9523 being a text property (as a symbol) and a function to apply to
9524 the value of the drawer property."
9525 (let ((case-fold-search t)
9526 (inhibit-read-only t))
9527 (org-with-silent-modifications
9528 (save-excursion
9529 (save-restriction
9530 (widen)
9531 (goto-char (point-min))
9532 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9533 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9535 (defun org-refresh-property (tprop p)
9536 "Refresh the buffer text property TPROP from the drawer property P.
9537 The refresh happens only for the current tree (not subtree)."
9538 (unless (org-before-first-heading-p)
9539 (save-excursion
9540 (org-back-to-heading t)
9541 (if (symbolp tprop)
9542 ;; TPROP is a text property symbol
9543 (put-text-property
9544 (point) (or (outline-next-heading) (point-max)) tprop p)
9545 ;; TPROP is an alist with (properties . function) elements
9546 (dolist (al tprop)
9547 (save-excursion
9548 (put-text-property
9549 (line-beginning-position) (or (outline-next-heading) (point-max))
9550 (car al)
9551 (funcall (cdr al) p))))))))
9553 (defun org-refresh-category-properties ()
9554 "Refresh category text properties in the buffer."
9555 (let ((case-fold-search t)
9556 (inhibit-read-only t)
9557 (default-category
9558 (cond ((null org-category)
9559 (if buffer-file-name
9560 (file-name-sans-extension
9561 (file-name-nondirectory buffer-file-name))
9562 "???"))
9563 ((symbolp org-category) (symbol-name org-category))
9564 (t org-category))))
9565 (org-with-silent-modifications
9566 (org-with-wide-buffer
9567 ;; Set buffer-wide category. Search last #+CATEGORY keyword.
9568 ;; This is the default category for the buffer. If none is
9569 ;; found, fall-back to `org-category' or buffer file name.
9570 (put-text-property
9571 (point-min) (point-max)
9572 'org-category
9573 (catch 'buffer-category
9574 (goto-char (point-max))
9575 (while (re-search-backward "^[ \t]*#\\+CATEGORY:" (point-min) t)
9576 (let ((element (org-element-at-point)))
9577 (when (eq (org-element-type element) 'keyword)
9578 (throw 'buffer-category
9579 (org-element-property :value element)))))
9580 default-category))
9581 ;; Set sub-tree specific categories.
9582 (goto-char (point-min))
9583 (let ((regexp (org-re-property "CATEGORY")))
9584 (while (re-search-forward regexp nil t)
9585 (let ((value (org-match-string-no-properties 3)))
9586 (when (org-at-property-p)
9587 (put-text-property
9588 (save-excursion (org-back-to-heading t) (point))
9589 (save-excursion (org-end-of-subtree t t) (point))
9590 'org-category
9591 value)))))))))
9593 (defun org-refresh-stats-properties ()
9594 "Refresh stats text properties in the buffer."
9595 (let (stats)
9596 (org-with-silent-modifications
9597 (save-excursion
9598 (save-restriction
9599 (widen)
9600 (goto-char (point-min))
9601 (while (re-search-forward
9602 (concat org-outline-regexp-bol ".*"
9603 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9604 nil t)
9605 (setq stats (cond ((equal (match-string 3) "0") 0)
9606 ((match-string 2)
9607 (/ (* (string-to-number (match-string 2)) 100)
9608 (string-to-number (match-string 3))))
9609 (t (string-to-number (match-string 1)))))
9610 (org-back-to-heading t)
9611 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9612 'org-stats stats)))))))
9614 (defun org-refresh-effort-properties ()
9615 "Refresh effort properties"
9616 (org-refresh-properties
9617 org-effort-property
9618 '((effort . identity)
9619 (effort-minutes . org-duration-string-to-minutes))))
9621 ;;;; Link Stuff
9623 ;;; Link abbreviations
9625 (defun org-link-expand-abbrev (link)
9626 "Apply replacements as defined in `org-link-abbrev-alist'."
9627 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9628 (let* ((key (match-string 1 link))
9629 (as (or (assoc key org-link-abbrev-alist-local)
9630 (assoc key org-link-abbrev-alist)))
9631 (tag (and (match-end 2) (match-string 3 link)))
9632 rpl)
9633 (if (not as)
9634 link
9635 (setq rpl (cdr as))
9636 (cond
9637 ((symbolp rpl) (funcall rpl tag))
9638 ((string-match "%(\\([^)]+\\))" rpl)
9639 (replace-match
9640 (save-match-data
9641 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9642 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9643 ((string-match "%h" rpl)
9644 (replace-match (url-hexify-string (or tag "")) t t rpl))
9645 (t (concat rpl tag)))))
9646 link))
9648 ;;; Storing and inserting links
9650 (defvar org-insert-link-history nil
9651 "Minibuffer history for links inserted with `org-insert-link'.")
9653 (defvar org-stored-links nil
9654 "Contains the links stored with `org-store-link'.")
9656 (defvar org-store-link-plist nil
9657 "Plist with info about the most recently link created with `org-store-link'.")
9659 (defvar org-link-protocols nil
9660 "Link protocols added to Org-mode using `org-add-link-type'.")
9662 (defvar org-store-link-functions nil
9663 "List of functions that are called to create and store a link.
9664 Each function will be called in turn until one returns a non-nil
9665 value. Each function should check if it is responsible for creating
9666 this link (for example by looking at the major mode).
9667 If not, it must exit and return nil.
9668 If yes, it should return a non-nil value after a calling
9669 `org-store-link-props' with a list of properties and values.
9670 Special properties are:
9672 :type The link prefix, like \"http\". This must be given.
9673 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9674 This is obligatory as well.
9675 :description Optional default description for the second pair
9676 of brackets in an Org-mode link. The user can still change
9677 this when inserting this link into an Org-mode buffer.
9679 In addition to these, any additional properties can be specified
9680 and then used in capture templates.")
9682 (defun org-add-link-type (type &optional follow export)
9683 "Add TYPE to the list of `org-link-types'.
9684 Re-compute all regular expressions depending on `org-link-types'
9686 FOLLOW and EXPORT are two functions.
9688 FOLLOW should take the link path as the single argument and do whatever
9689 is necessary to follow the link, for example find a file or display
9690 a mail message.
9692 EXPORT should format the link path for export to one of the export formats.
9693 It should be a function accepting three arguments:
9695 path the path of the link, the text after the prefix (like \"http:\")
9696 desc the description of the link, if any
9697 format the export format, a symbol like `html' or `latex' or `ascii'.
9699 The function may use the FORMAT information to return different values
9700 depending on the format. The return value will be put literally into
9701 the exported file. If the return value is nil, this means Org should
9702 do what it normally does with links which do not have EXPORT defined.
9704 Org mode has a built-in default for exporting links. If you are happy with
9705 this default, there is no need to define an export function for the link
9706 type. For a simple example of an export function, see `org-bbdb.el'."
9707 (add-to-list 'org-link-types type t)
9708 (org-make-link-regexps)
9709 (org-element-update-syntax)
9710 (if (assoc type org-link-protocols)
9711 (setcdr (assoc type org-link-protocols) (list follow export))
9712 (push (list type follow export) org-link-protocols)))
9714 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9715 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9717 ;;;###autoload
9718 (defun org-store-link (arg)
9719 "\\<org-mode-map>Store an org-link to the current location.
9720 This link is added to `org-stored-links' and can later be inserted
9721 into an Org buffer with \\[org-insert-link].
9723 For some link types, a prefix ARG is interpreted.
9724 For links to Usenet articles, ARG negates `org-gnus-prefer-web-links'.
9725 For file links, ARG negates `org-context-in-file-links'.
9727 A double prefix ARG force skipping storing functions that are not
9728 part of Org's core.
9730 A triple prefix ARG force storing a link for each line in the
9731 active region."
9732 (interactive "P")
9733 (org-load-modules-maybe)
9734 (if (and (equal arg '(64)) (org-region-active-p))
9735 (save-excursion
9736 (let ((end (region-end)))
9737 (goto-char (region-beginning))
9738 (set-mark (point))
9739 (while (< (point-at-eol) end)
9740 (move-end-of-line 1) (activate-mark)
9741 (let (current-prefix-arg)
9742 (call-interactively 'org-store-link))
9743 (move-beginning-of-line 2)
9744 (set-mark (point)))))
9745 (org-with-limited-levels
9746 (setq org-store-link-plist nil)
9747 (let (link cpltxt desc description search
9748 txt custom-id agenda-link sfuns sfunsn)
9749 (cond
9751 ;; Store a link using an external link type
9752 ((and (not (equal arg '(16)))
9753 (setq sfuns
9754 (delq
9755 nil (mapcar (lambda (f)
9756 (let (fs) (if (funcall f) (push f fs))))
9757 org-store-link-functions))
9758 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9759 (or (and (cdr sfuns)
9760 (funcall (intern
9761 (completing-read
9762 "Which function for creating the link? "
9763 sfunsn nil t (car sfunsn)))))
9764 (funcall (caar sfuns)))
9765 (setq link (plist-get org-store-link-plist :link)
9766 desc (or (plist-get org-store-link-plist
9767 :description)
9768 link))))
9770 ;; Store a link from a source code buffer.
9771 ((org-src-edit-buffer-p)
9772 (cond
9773 ((save-excursion
9774 (beginning-of-line)
9775 (looking-at (concat (format org-coderef-label-format "\\(.*?\\)")
9776 "[ \t]*$")))
9777 (setq link (format "(%s)" (org-match-string-no-properties 1))))
9778 ((org-called-interactively-p 'any)
9779 (let (label)
9780 (while (or (not label)
9781 (org-with-wide-buffer
9782 (goto-char (point-min))
9783 (re-search-forward
9784 (regexp-quote (format org-coderef-label-format label))
9785 nil t)))
9786 (when label (message "Label exists already") (sit-for 2))
9787 (setq label (read-string "Code line label: " label)))
9788 (end-of-line)
9789 (setq link (format org-coderef-label-format label))
9790 (let ((gc (- 79 (length link))))
9791 (if (< (current-column) gc) (org-move-to-column gc t)
9792 (insert " ")))
9793 (insert link)
9794 (setq link (concat "(" label ")") desc nil)))
9795 (t (setq link nil))))
9797 ;; We are in the agenda, link to referenced location
9798 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9799 (let ((m (or (get-text-property (point) 'org-hd-marker)
9800 (get-text-property (point) 'org-marker))))
9801 (when m
9802 (org-with-point-at m
9803 (setq agenda-link
9804 (if (org-called-interactively-p 'any)
9805 (call-interactively 'org-store-link)
9806 (org-store-link nil)))))))
9808 ((eq major-mode 'calendar-mode)
9809 (let ((cd (calendar-cursor-to-date)))
9810 (setq link
9811 (format-time-string
9812 (car org-time-stamp-formats)
9813 (apply 'encode-time
9814 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9815 nil nil nil))))
9816 (org-store-link-props :type "calendar" :date cd)))
9818 ((eq major-mode 'help-mode)
9819 (setq link (concat "help:" (save-excursion
9820 (goto-char (point-min))
9821 (looking-at "^[^ ]+")
9822 (match-string 0))))
9823 (org-store-link-props :type "help"))
9825 ((eq major-mode 'w3-mode)
9826 (setq cpltxt (if (and (buffer-name)
9827 (not (string-match "Untitled" (buffer-name))))
9828 (buffer-name)
9829 (url-view-url t))
9830 link (url-view-url t))
9831 (org-store-link-props :type "w3" :url (url-view-url t)))
9833 ((eq major-mode 'image-mode)
9834 (setq cpltxt (concat "file:"
9835 (abbreviate-file-name buffer-file-name))
9836 link cpltxt)
9837 (org-store-link-props :type "image" :file buffer-file-name))
9839 ;; In dired, store a link to the file of the current line
9840 ((derived-mode-p 'dired-mode)
9841 (let ((file (dired-get-filename nil t)))
9842 (setq file (if file
9843 (abbreviate-file-name
9844 (expand-file-name (dired-get-filename nil t)))
9845 ;; otherwise, no file so use current directory.
9846 default-directory))
9847 (setq cpltxt (concat "file:" file)
9848 link cpltxt)))
9850 ((setq search (run-hook-with-args-until-success
9851 'org-create-file-search-functions))
9852 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9853 "::" search))
9854 (setq cpltxt (or description link)))
9856 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9857 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9858 (cond
9859 ;; Store a link using the target at point
9860 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9861 (setq cpltxt
9862 (concat "file:"
9863 (abbreviate-file-name
9864 (buffer-file-name (buffer-base-buffer)))
9865 "::" (match-string 1))
9866 link cpltxt))
9867 ((and (featurep 'org-id)
9868 (or (eq org-id-link-to-org-use-id t)
9869 (and (org-called-interactively-p 'any)
9870 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9871 (and (eq org-id-link-to-org-use-id
9872 'create-if-interactive-and-no-custom-id)
9873 (not custom-id))))
9874 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9875 ;; Store a link using the ID at point
9876 (setq link (condition-case nil
9877 (prog1 (org-id-store-link)
9878 (setq desc (or (plist-get org-store-link-plist
9879 :description)
9880 "")))
9881 (error
9882 ;; Probably before first headline, link only to file
9883 (concat "file:"
9884 (abbreviate-file-name
9885 (buffer-file-name (buffer-base-buffer))))))))
9887 ;; Just link to current headline
9888 (setq cpltxt (concat "file:"
9889 (abbreviate-file-name
9890 (buffer-file-name (buffer-base-buffer)))))
9891 ;; Add a context search string
9892 (when (org-xor org-context-in-file-links arg)
9893 (let* ((element (org-element-at-point))
9894 (type (org-element-type element))
9895 (name (org-element-property :name element)))
9896 (setq txt (cond
9897 ((org-at-heading-p) nil)
9898 (name)
9899 ((org-region-active-p)
9900 (buffer-substring (region-beginning) (region-end)))))
9901 (when (or (null txt) (string-match "\\S-" txt))
9902 (setq cpltxt
9903 (concat cpltxt "::"
9904 (condition-case nil
9905 (org-make-org-heading-search-string txt)
9906 (error "")))
9907 desc (or name
9908 (nth 4 (ignore-errors (org-heading-components)))
9909 "NONE")))))
9910 (if (string-match "::\\'" cpltxt)
9911 (setq cpltxt (substring cpltxt 0 -2)))
9912 (setq link cpltxt))))
9914 ((buffer-file-name (buffer-base-buffer))
9915 ;; Just link to this file here.
9916 (setq cpltxt (concat "file:"
9917 (abbreviate-file-name
9918 (buffer-file-name (buffer-base-buffer)))))
9919 ;; Add a context string.
9920 (when (org-xor org-context-in-file-links arg)
9921 (setq txt (if (org-region-active-p)
9922 (buffer-substring (region-beginning) (region-end))
9923 (buffer-substring (point-at-bol) (point-at-eol))))
9924 ;; Only use search option if there is some text.
9925 (when (string-match "\\S-" txt)
9926 (setq cpltxt
9927 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9928 desc "NONE")))
9929 (setq link cpltxt))
9931 ((org-called-interactively-p 'interactive)
9932 (user-error "No method for storing a link from this buffer"))
9934 (t (setq link nil)))
9936 ;; We're done setting link and desc, clean up
9937 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9938 (setq link (or link cpltxt)
9939 desc (or desc cpltxt))
9940 (cond ((not desc))
9941 ((equal desc "NONE") (setq desc nil))
9942 (t (setq desc
9943 (replace-regexp-in-string
9944 org-bracket-link-analytic-regexp
9945 (lambda (m) (or (match-string 5 m) (match-string 3 m)))
9946 desc))))
9947 ;; Return the link
9948 (if (not (and (or (org-called-interactively-p 'any)
9949 executing-kbd-macro)
9950 link))
9951 (or agenda-link (and link (org-make-link-string link desc)))
9952 (push (list link desc) org-stored-links)
9953 (message "Stored: %s" (or desc link))
9954 (when custom-id
9955 (setq link (concat "file:" (abbreviate-file-name
9956 (buffer-file-name)) "::#" custom-id))
9957 (push (list link desc) org-stored-links))
9958 (car org-stored-links))))))
9960 (defun org-store-link-props (&rest plist)
9961 "Store link properties, extract names and addresses."
9962 (let (x adr)
9963 (when (setq x (plist-get plist :from))
9964 (setq adr (mail-extract-address-components x))
9965 (setq plist (plist-put plist :fromname (car adr)))
9966 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9967 (when (setq x (plist-get plist :to))
9968 (setq adr (mail-extract-address-components x))
9969 (setq plist (plist-put plist :toname (car adr)))
9970 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9971 (let ((from (plist-get plist :from))
9972 (to (plist-get plist :to)))
9973 (when (and from to org-from-is-user-regexp)
9974 (setq plist
9975 (plist-put plist :fromto
9976 (if (string-match org-from-is-user-regexp from)
9977 (concat "to %t")
9978 (concat "from %f"))))))
9979 (setq org-store-link-plist plist))
9981 (defun org-add-link-props (&rest plist)
9982 "Add these properties to the link property list."
9983 (let (key value)
9984 (while plist
9985 (setq key (pop plist) value (pop plist))
9986 (setq org-store-link-plist
9987 (plist-put org-store-link-plist key value)))))
9989 (defun org-email-link-description (&optional fmt)
9990 "Return the description part of an email link.
9991 This takes information from `org-store-link-plist' and formats it
9992 according to FMT (default from `org-email-link-description-format')."
9993 (setq fmt (or fmt org-email-link-description-format))
9994 (let* ((p org-store-link-plist)
9995 (to (plist-get p :toaddress))
9996 (from (plist-get p :fromaddress))
9997 (table
9998 (list
9999 (cons "%c" (plist-get p :fromto))
10000 (cons "%F" (plist-get p :from))
10001 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
10002 (cons "%T" (plist-get p :to))
10003 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
10004 (cons "%s" (plist-get p :subject))
10005 (cons "%d" (plist-get p :date))
10006 (cons "%m" (plist-get p :message-id)))))
10007 (when (string-match "%c" fmt)
10008 ;; Check if the user wrote this message
10009 (if (and org-from-is-user-regexp from to
10010 (save-match-data (string-match org-from-is-user-regexp from)))
10011 (setq fmt (replace-match "to %t" t t fmt))
10012 (setq fmt (replace-match "from %f" t t fmt))))
10013 (org-replace-escapes fmt table)))
10015 (defun org-make-org-heading-search-string (&optional string)
10016 "Make search string for the current headline or STRING."
10017 (let ((s (or string
10018 (and (derived-mode-p 'org-mode)
10019 (save-excursion
10020 (org-back-to-heading t)
10021 (org-element-property :raw-value (org-element-at-point))))))
10022 (lines org-context-in-file-links))
10023 (or string (setq s (concat "*" s))) ; Add * for headlines
10024 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
10025 (when (and string (integerp lines) (> lines 0))
10026 (let ((slines (org-split-string s "\n")))
10027 (when (< lines (length slines))
10028 (setq s (mapconcat
10029 'identity
10030 (reverse (nthcdr (- (length slines) lines)
10031 (reverse slines))) "\n")))))
10032 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
10034 (defun org-make-link-string (link &optional description)
10035 "Make a link with brackets, consisting of LINK and DESCRIPTION."
10036 (unless (org-string-nw-p link) (error "Empty link"))
10037 (let ((uri (cond ((string-match org-link-types-re link)
10038 (concat (match-string 1 link)
10039 (org-link-escape (substring link (match-end 1)))))
10040 ;; For readability, url-encode internal links only
10041 ;; when absolutely needed (i.e, when they contain
10042 ;; square brackets). File links however, are
10043 ;; encoded since, e.g., spaces are significant.
10044 ((or (file-name-absolute-p link)
10045 (org-string-match-p "\\`\\.\\.?/\\|[][]" link))
10046 (org-link-escape link))
10047 (t link)))
10048 (description
10049 (and (org-string-nw-p description)
10050 ;; Remove brackets from description, as they are fatal.
10051 (replace-regexp-in-string
10052 "[][]" (lambda (m) (if (equal "[" m) "{" "}"))
10053 (org-trim description)))))
10054 (format "[[%s]%s]"
10056 (if description (format "[%s]" description) ""))))
10058 (defconst org-link-escape-chars
10059 ;;%20 %5B %5D %25
10060 '(?\s ?\[ ?\] ?%)
10061 "List of characters that should be escaped in a link when stored to Org.
10062 This is the list that is used for internal purposes.")
10064 (defconst org-link-escape-chars-browser
10065 ;;%20 %22
10066 '(?\s ?\")
10067 "List of characters to be escaped before handing over to the browser.
10068 If you consider using this constant then you probably want to use
10069 the function `org-link-escape-browser' instead. See there why
10070 this constant is a candidate to be removed once Org drops support
10071 for Emacs 24.1 and 24.2.")
10073 (defun org-link-escape (text &optional table merge)
10074 "Return percent escaped representation of TEXT.
10075 TEXT is a string with the text to escape.
10076 Optional argument TABLE is a list with characters that should be
10077 escaped. When nil, `org-link-escape-chars' is used.
10078 If optional argument MERGE is set, merge TABLE into
10079 `org-link-escape-chars'."
10080 (let ((characters-to-encode
10081 (cond ((null table) org-link-escape-chars)
10082 (merge (append org-link-escape-chars table))
10083 (t table))))
10084 (mapconcat
10085 (lambda (c)
10086 (if (or (memq c characters-to-encode)
10087 (and org-url-hexify-p (or (< c 32) (> c 126))))
10088 (mapconcat (lambda (e) (format "%%%.2X" e))
10089 (or (encode-coding-char c 'utf-8)
10090 (error "Unable to percent escape character: %c" c))
10092 (char-to-string c)))
10093 text "")))
10095 (defun org-link-escape-browser (text)
10096 "Escape some characters before handing over to the browser.
10097 This function is a candidate to be removed together with the
10098 constant `org-link-escape-chars-browser' once Org drops support
10099 for Emacs 24.1 and 24.2. All calls to this function will have to
10100 be replaced with `url-encode-url' which is available since Emacs
10101 24.3.1."
10102 ;; Example with the Org link
10103 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10104 ;; to open the browser with +subject:"Release 8.2" filled into the
10105 ;; query field: In this case the variable TEXT contains the
10106 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10107 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10108 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10109 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10110 (if (fboundp 'url-encode-url)
10111 (url-encode-url text)
10112 (if (org-string-match-p
10113 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10114 text)
10115 (org-link-escape text org-link-escape-chars-browser)
10116 text)))
10118 (defun org-link-unescape (str)
10119 "Unhex hexified Unicode parts in string STR.
10120 E.g. `%C3%B6' becomes the german o-Umlaut. This is the
10121 reciprocal of `org-link-escape', which see."
10122 (if (org-string-nw-p str)
10123 (replace-regexp-in-string
10124 "\\(%[0-9A-Za-z]\\{2\\}\\)+" #'org-link-unescape-compound str t t)
10125 str))
10127 (defun org-link-unescape-compound (hex)
10128 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10129 Note: this function also decodes single byte encodings like
10130 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10131 (save-match-data
10132 (let* ((bytes (cdr (split-string hex "%")))
10133 (ret "")
10134 (eat 0)
10135 (sum 0))
10136 (while bytes
10137 (let* ((val (string-to-number (pop bytes) 16))
10138 (shift-xor
10139 (if (= 0 eat)
10140 (cond
10141 ((>= val 252) (cons 6 252))
10142 ((>= val 248) (cons 5 248))
10143 ((>= val 240) (cons 4 240))
10144 ((>= val 224) (cons 3 224))
10145 ((>= val 192) (cons 2 192))
10146 (t (cons 0 0)))
10147 (cons 6 128))))
10148 (if (>= val 192) (setq eat (car shift-xor)))
10149 (setq val (logxor val (cdr shift-xor)))
10150 (setq sum (+ (lsh sum (car shift-xor)) val))
10151 (if (> eat 0) (setq eat (- eat 1)))
10152 (cond
10153 ((= 0 eat) ;multi byte
10154 (setq ret (concat ret (org-char-to-string sum)))
10155 (setq sum 0))
10156 ((not bytes) ; single byte(s)
10157 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10158 ret)))
10160 (defun org-link-unescape-single-byte-sequence (hex)
10161 "Unhexify hex-encoded single byte character sequences."
10162 (mapconcat (lambda (byte)
10163 (char-to-string (string-to-number byte 16)))
10164 (cdr (split-string hex "%")) ""))
10166 (defun org-xor (a b)
10167 "Exclusive or."
10168 (if a (not b) b))
10170 (defun org-fixup-message-id-for-http (s)
10171 "Replace special characters in a message id, so it can be used in an http query."
10172 (when (string-match "%" s)
10173 (setq s (mapconcat (lambda (c)
10174 (if (eq c ?%)
10175 "%25"
10176 (char-to-string c)))
10177 s "")))
10178 (while (string-match "<" s)
10179 (setq s (replace-match "%3C" t t s)))
10180 (while (string-match ">" s)
10181 (setq s (replace-match "%3E" t t s)))
10182 (while (string-match "@" s)
10183 (setq s (replace-match "%40" t t s)))
10186 (defun org-link-prettify (link)
10187 "Return a human-readable representation of LINK.
10188 The car of LINK must be a raw link.
10189 The cdr of LINK must be either a link description or nil."
10190 (let ((desc (or (cadr link) "<no description>")))
10191 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10192 "<" (car link) ">")))
10194 ;;;###autoload
10195 (defun org-insert-link-global ()
10196 "Insert a link like Org-mode does.
10197 This command can be called in any mode to insert a link in Org-mode syntax."
10198 (interactive)
10199 (org-load-modules-maybe)
10200 (org-run-like-in-org-mode 'org-insert-link))
10202 (defun org-insert-all-links (arg &optional pre post)
10203 "Insert all links in `org-stored-links'.
10204 When a universal prefix, do not delete the links from `org-stored-links'.
10205 When `ARG' is a number, insert the last N link(s).
10206 `PRE' and `POST' are optional arguments to define a string to
10207 prepend or to append."
10208 (interactive "P")
10209 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10210 (links (copy-seq org-stored-links))
10211 (pr (or pre "- "))
10212 (po (or post "\n"))
10213 (cnt 1) l)
10214 (if (null org-stored-links)
10215 (message "No link to insert")
10216 (while (and (or (listp arg) (>= arg cnt))
10217 (setq l (if (listp arg)
10218 (pop links)
10219 (pop org-stored-links))))
10220 (setq cnt (1+ cnt))
10221 (insert pr)
10222 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10223 (insert po)))))
10225 (defun org-insert-last-stored-link (arg)
10226 "Insert the last link stored in `org-stored-links'."
10227 (interactive "p")
10228 (org-insert-all-links arg "" "\n"))
10230 (defun org-link-fontify-links-to-this-file ()
10231 "Fontify links to the current file in `org-stored-links'."
10232 (let ((f (buffer-file-name)) a b)
10233 (setq a (mapcar (lambda(l)
10234 (let ((ll (car l)))
10235 (when (and (string-match "^file:\\(.+\\)::" ll)
10236 (equal f (expand-file-name (match-string 1 ll))))
10237 ll)))
10238 org-stored-links))
10239 (when (featurep 'org-id)
10240 (setq b (mapcar (lambda(l)
10241 (let ((ll (car l)))
10242 (when (and (string-match "^id:\\(.+\\)$" ll)
10243 (equal f (expand-file-name
10244 (or (org-id-find-id-file
10245 (match-string 1 ll)) ""))))
10246 ll)))
10247 org-stored-links)))
10248 (mapcar (lambda(l)
10249 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10250 (delq nil (append a b)))))
10252 (defvar org-link-links-in-this-file nil)
10253 (defun org-insert-link (&optional complete-file link-location default-description)
10254 "Insert a link. At the prompt, enter the link.
10256 Completion can be used to insert any of the link protocol prefixes like
10257 http or ftp in use.
10259 The history can be used to select a link previously stored with
10260 `org-store-link'. When the empty string is entered (i.e. if you just
10261 press RET at the prompt), the link defaults to the most recently
10262 stored link. As SPC triggers completion in the minibuffer, you need to
10263 use M-SPC or C-q SPC to force the insertion of a space character.
10265 You will also be prompted for a description, and if one is given, it will
10266 be displayed in the buffer instead of the link.
10268 If there is already a link at point, this command will allow you to edit link
10269 and description parts.
10271 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10272 be selected using completion. The path to the file will be relative to the
10273 current directory if the file is in the current directory or a subdirectory.
10274 Otherwise, the link will be the absolute path as completed in the minibuffer
10275 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10276 option `org-link-file-path-type'.
10278 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10279 the current directory or below.
10281 With three \\[universal-argument] prefixes, negate the meaning of
10282 `org-keep-stored-link-after-insertion'.
10284 If `org-make-link-description-function' is non-nil, this function will be
10285 called with the link target, and the result will be the default
10286 link description.
10288 If the LINK-LOCATION parameter is non-nil, this value will be
10289 used as the link location instead of reading one interactively.
10291 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10292 be used as the default description."
10293 (interactive "P")
10294 (let* ((wcf (current-window-configuration))
10295 (origbuf (current-buffer))
10296 (region (if (org-region-active-p)
10297 (buffer-substring (region-beginning) (region-end))))
10298 (remove (and region (list (region-beginning) (region-end))))
10299 (desc region)
10300 tmphist ; byte-compile incorrectly complains about this
10301 (link link-location)
10302 (abbrevs org-link-abbrev-alist-local)
10303 entry file all-prefixes auto-desc)
10304 (cond
10305 (link-location) ; specified by arg, just use it.
10306 ((org-in-regexp org-bracket-link-regexp 1)
10307 ;; We do have a link at point, and we are going to edit it.
10308 (setq remove (list (match-beginning 0) (match-end 0)))
10309 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10310 (setq link (read-string "Link: "
10311 (org-link-unescape
10312 (org-match-string-no-properties 1)))))
10313 ((or (org-in-regexp org-angle-link-re)
10314 (org-in-regexp org-plain-link-re))
10315 ;; Convert to bracket link
10316 (setq remove (list (match-beginning 0) (match-end 0))
10317 link (read-string "Link: "
10318 (org-remove-angle-brackets (match-string 0)))))
10319 ((member complete-file '((4) (16)))
10320 ;; Completing read for file names.
10321 (setq link (org-file-complete-link complete-file)))
10323 ;; Read link, with completion for stored links.
10324 (org-link-fontify-links-to-this-file)
10325 (org-switch-to-buffer-other-window "*Org Links*")
10326 (with-current-buffer "*Org Links*"
10327 (erase-buffer)
10328 (insert "Insert a link.
10329 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10330 (when org-stored-links
10331 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10332 (insert (mapconcat 'org-link-prettify
10333 (reverse org-stored-links) "\n")))
10334 (goto-char (point-min)))
10335 (let ((cw (selected-window)))
10336 (select-window (get-buffer-window "*Org Links*" 'visible))
10337 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10338 (unless (pos-visible-in-window-p (point-max))
10339 (org-fit-window-to-buffer))
10340 (and (window-live-p cw) (select-window cw)))
10341 ;; Fake a link history, containing the stored links.
10342 (setq tmphist (append (mapcar 'car org-stored-links)
10343 org-insert-link-history))
10344 (setq all-prefixes (append (mapcar 'car abbrevs)
10345 (mapcar 'car org-link-abbrev-alist)
10346 org-link-types))
10347 (unwind-protect
10348 (progn
10349 (setq link
10350 (org-completing-read
10351 "Link: "
10352 (append
10353 (mapcar (lambda (x) (concat x ":"))
10354 all-prefixes)
10355 (mapcar 'car org-stored-links))
10356 nil nil nil
10357 'tmphist
10358 (caar org-stored-links)))
10359 (if (not (string-match "\\S-" link))
10360 (user-error "No link selected"))
10361 (mapc (lambda(l)
10362 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10363 org-stored-links)
10364 (if (or (member link all-prefixes)
10365 (and (equal ":" (substring link -1))
10366 (member (substring link 0 -1) all-prefixes)
10367 (setq link (substring link 0 -1))))
10368 (setq link (with-current-buffer origbuf
10369 (org-link-try-special-completion link)))))
10370 (set-window-configuration wcf)
10371 (kill-buffer "*Org Links*"))
10372 (setq entry (assoc link org-stored-links))
10373 (or entry (push link org-insert-link-history))
10374 (setq desc (or desc (nth 1 entry)))))
10376 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10377 (not org-keep-stored-link-after-insertion))
10378 (setq org-stored-links (delq (assoc link org-stored-links)
10379 org-stored-links)))
10381 (if (and (string-match org-plain-link-re link)
10382 (not (string-match org-ts-regexp link)))
10383 ;; URL-like link, normalize the use of angular brackets.
10384 (setq link (org-remove-angle-brackets link)))
10386 ;; Check if we are linking to the current file with a search
10387 ;; option If yes, simplify the link by using only the search
10388 ;; option.
10389 (when (and buffer-file-name
10390 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10391 (let* ((path (match-string 1 link))
10392 (case-fold-search nil)
10393 (search (match-string 2 link)))
10394 (save-match-data
10395 (if (equal (file-truename buffer-file-name) (file-truename path))
10396 ;; We are linking to this same file, with a search option
10397 (setq link search)))))
10399 ;; Check if we can/should use a relative path. If yes, simplify the link
10400 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10401 (let* ((type (match-string 1 link))
10402 (path (match-string 2 link))
10403 (origpath path)
10404 (case-fold-search nil))
10405 (cond
10406 ((or (eq org-link-file-path-type 'absolute)
10407 (equal complete-file '(16)))
10408 (setq path (abbreviate-file-name (expand-file-name path))))
10409 ((eq org-link-file-path-type 'noabbrev)
10410 (setq path (expand-file-name path)))
10411 ((eq org-link-file-path-type 'relative)
10412 (setq path (file-relative-name path)))
10414 (save-match-data
10415 (if (string-match (concat "^" (regexp-quote
10416 (expand-file-name
10417 (file-name-as-directory
10418 default-directory))))
10419 (expand-file-name path))
10420 ;; We are linking a file with relative path name.
10421 (setq path (substring (expand-file-name path)
10422 (match-end 0)))
10423 (setq path (abbreviate-file-name (expand-file-name path)))))))
10424 (setq link (concat type path))
10425 (if (equal desc origpath)
10426 (setq desc path))))
10428 (if org-make-link-description-function
10429 (setq desc
10430 (or (condition-case nil
10431 (funcall org-make-link-description-function link desc)
10432 (error (progn (message "Can't get link description from `%s'"
10433 (symbol-name org-make-link-description-function))
10434 (sit-for 2) nil)))
10435 (read-string "Description: " default-description)))
10436 (if default-description (setq desc default-description)
10437 (setq desc (or (and auto-desc desc)
10438 (read-string "Description: " desc)))))
10440 (unless (string-match "\\S-" desc) (setq desc nil))
10441 (if remove (apply 'delete-region remove))
10442 (insert (org-make-link-string link desc))
10443 ;; Redisplay so as the new link has proper invisible characters.
10444 (sit-for 0)))
10446 (defun org-link-try-special-completion (type)
10447 "If there is completion support for link type TYPE, offer it."
10448 (let ((fun (intern (concat "org-" type "-complete-link"))))
10449 (if (functionp fun)
10450 (funcall fun)
10451 (read-string "Link (no completion support): " (concat type ":")))))
10453 (defun org-file-complete-link (&optional arg)
10454 "Create a file link using completion."
10455 (let ((file (org-iread-file-name "File: "))
10456 (pwd (file-name-as-directory (expand-file-name ".")))
10457 (pwd1 (file-name-as-directory (abbreviate-file-name
10458 (expand-file-name ".")))))
10459 (cond ((equal arg '(16))
10460 (concat "file:"
10461 (abbreviate-file-name (expand-file-name file))))
10462 ((string-match
10463 (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10464 (concat "file:" (match-string 1 file)))
10465 ((string-match
10466 (concat "^" (regexp-quote pwd) "\\(.+\\)")
10467 (expand-file-name file))
10468 (concat "file:"
10469 (match-string 1 (expand-file-name file))))
10470 (t (concat "file:" file)))))
10472 (defun org-iread-file-name (&rest args)
10473 "Read-file-name using `ido-mode' speedup if available.
10474 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10475 See `read-file-name' for a description of parameters."
10476 (org-without-partial-completion
10477 (if (and org-completion-use-ido
10478 (fboundp 'ido-read-file-name)
10479 (org-bound-and-true-p ido-mode)
10480 (listp (nth 1 args)))
10481 (let ((ido-enter-matching-directory nil))
10482 (apply #'ido-read-file-name args))
10483 (apply #'read-file-name args))))
10485 (defun org-completing-read (&rest args)
10486 "Completing-read with SPACE being a normal character."
10487 (let ((enable-recursive-minibuffers t)
10488 (minibuffer-local-completion-map
10489 (copy-keymap minibuffer-local-completion-map)))
10490 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10491 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10492 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10493 (apply 'org-icompleting-read args)))
10495 (defun org-completing-read-no-i (&rest args)
10496 (let (org-completion-use-ido org-completion-use-iswitchb)
10497 (apply 'org-completing-read args)))
10499 (defun org-iswitchb-completing-read (prompt choices &rest args)
10500 "Use iswitch as a completing-read replacement to choose from choices.
10501 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10502 from."
10503 (let* ((iswitchb-use-virtual-buffers nil)
10504 (iswitchb-make-buflist-hook
10505 (lambda ()
10506 (setq iswitchb-temp-buflist choices))))
10507 (iswitchb-read-buffer prompt)))
10509 (defun org-icompleting-read (&rest args)
10510 "Completing-read using `ido-mode' or `iswitchb' speedups if available.
10511 Should be called like `completing-read'."
10512 (org-without-partial-completion
10513 (if (not (listp (nth 1 args)))
10514 ;; Ido only supports lists as the COLLECTION argument. Use
10515 ;; default completion function when second argument is not
10516 ;; a list.
10517 (apply #'completing-read args)
10518 (let ((ido-enter-matching-directory nil))
10519 (apply (cond ((and org-completion-use-ido
10520 (fboundp 'ido-completing-read)
10521 (org-bound-and-true-p ido-mode))
10522 #'ido-completing-read)
10523 ((and org-completion-use-iswitchb
10524 (org-bound-and-true-p iswitchb-mode))
10525 #'org-iswitchb-completing-read)
10526 (t #'completing-read))
10527 args)))))
10529 ;;; Opening/following a link
10531 (defvar org-link-search-failed nil)
10533 (defvar org-open-link-functions nil
10534 "Hook for functions finding a plain text link.
10535 These functions must take a single argument, the link content.
10536 They will be called for links that look like [[link text][description]]
10537 when LINK TEXT does not have a protocol like \"http:\" and does not look
10538 like a filename (e.g. \"./blue.png\").
10540 These functions will be called *before* Org attempts to resolve the
10541 link by doing text searches in the current buffer - so if you want a
10542 link \"[[target]]\" to still find \"<<target>>\", your function should
10543 handle this as a special case.
10545 When the function does handle the link, it must return a non-nil value.
10546 If it decides that it is not responsible for this link, it must return
10547 nil to indicate that that Org-mode can continue with other options
10548 like exact and fuzzy text search.")
10550 (defun org-next-link (&optional search-backward)
10551 "Move forward to the next link.
10552 If the link is in hidden text, expose it."
10553 (interactive "P")
10554 (when (and org-link-search-failed (eq this-command last-command))
10555 (goto-char (point-min))
10556 (message "Link search wrapped back to beginning of buffer"))
10557 (setq org-link-search-failed nil)
10558 (let* ((pos (point))
10559 (ct (org-context))
10560 (a (assoc :link ct))
10561 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10562 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10563 ((looking-at org-any-link-re)
10564 ;; Don't stay stuck at link without an org-link face
10565 (forward-char (if search-backward -1 1))))
10566 (if (funcall srch-fun org-any-link-re nil t)
10567 (progn
10568 (goto-char (match-beginning 0))
10569 (if (outline-invisible-p) (org-show-context)))
10570 (goto-char pos)
10571 (setq org-link-search-failed t)
10572 (message "No further link found"))))
10574 (defun org-previous-link ()
10575 "Move backward to the previous link.
10576 If the link is in hidden text, expose it."
10577 (interactive)
10578 (funcall 'org-next-link t))
10580 (defun org-translate-link (s)
10581 "Translate a link string if a translation function has been defined."
10582 (with-temp-buffer
10583 (insert (org-trim s))
10584 (org-trim (org-element-interpret-data (org-element-context)))))
10586 (defun org-translate-link-from-planner (type path)
10587 "Translate a link from Emacs Planner syntax so that Org can follow it.
10588 This is still an experimental function, your mileage may vary."
10589 (cond
10590 ((member type '("http" "https" "news" "ftp"))
10591 ;; standard Internet links are the same.
10592 nil)
10593 ((and (equal type "irc") (string-match "^//" path))
10594 ;; Planner has two / at the beginning of an irc link, we have 1.
10595 ;; We should have zero, actually....
10596 (setq path (substring path 1)))
10597 ((and (equal type "lisp") (string-match "^/" path))
10598 ;; Planner has a slash, we do not.
10599 (setq type "elisp" path (substring path 1)))
10600 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10601 ;; A typical message link. Planner has the id after the final slash,
10602 ;; we separate it with a hash mark
10603 (setq path (concat (match-string 1 path) "#"
10604 (org-remove-angle-brackets (match-string 2 path))))))
10605 (cons type path))
10607 (defun org-find-file-at-mouse (ev)
10608 "Open file link or URL at mouse."
10609 (interactive "e")
10610 (mouse-set-point ev)
10611 (org-open-at-point 'in-emacs))
10613 (defun org-open-at-mouse (ev)
10614 "Open file link or URL at mouse.
10615 See the docstring of `org-open-file' for details."
10616 (interactive "e")
10617 (mouse-set-point ev)
10618 (if (eq major-mode 'org-agenda-mode)
10619 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10620 (org-open-at-point))
10622 (defvar org-window-config-before-follow-link nil
10623 "The window configuration before following a link.
10624 This is saved in case the need arises to restore it.")
10626 ;;;###autoload
10627 (defun org-open-at-point-global ()
10628 "Follow a link like Org-mode does.
10629 This command can be called in any mode to follow a link that has
10630 Org-mode syntax."
10631 (interactive)
10632 (org-run-like-in-org-mode 'org-open-at-point))
10634 ;;;###autoload
10635 (defun org-open-link-from-string (s &optional arg reference-buffer)
10636 "Open a link in the string S, as if it was in Org-mode."
10637 (interactive "sLink: \nP")
10638 (let ((reference-buffer (or reference-buffer (current-buffer))))
10639 (with-temp-buffer
10640 (let ((org-inhibit-startup (not reference-buffer)))
10641 (org-mode)
10642 (insert s)
10643 (goto-char (point-min))
10644 (when reference-buffer
10645 (setq org-link-abbrev-alist-local
10646 (with-current-buffer reference-buffer
10647 org-link-abbrev-alist-local)))
10648 (org-open-at-point arg reference-buffer)))))
10650 (defvar org-open-at-point-functions nil
10651 "Hook that is run when following a link at point.
10653 Functions in this hook must return t if they identify and follow
10654 a link at point. If they don't find anything interesting at point,
10655 they must return nil.")
10657 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10658 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10659 (defun org-open-at-point (&optional arg reference-buffer)
10660 "Open link, timestamp, footnote or tags at point.
10662 When point is on a link, follow it. Normally, files will be
10663 opened by an appropriate application. If the optional prefix
10664 argument ARG is non-nil, Emacs will visit the file. With
10665 a double prefix argument, try to open outside of Emacs, in the
10666 application the system uses for this file type.
10668 When point is on a timestamp, open the agenda at the day
10669 specified.
10671 When point is a footnote definition, move to the first reference
10672 found. If it is on a reference, move to the associated
10673 definition.
10675 When point is on a headline, display a list of every link in the
10676 entry, so it is possible to pick one, or all, of them. If point
10677 is on a tag, call `org-tags-view' instead.
10679 When optional argument REFERENCE-BUFFER is non-nil, it should
10680 specify a buffer from where the link search should happen. This
10681 is used internally by `org-open-link-from-string'.
10683 On top of syntactically correct links, this function will open
10684 the link at point in comments or comment blocks and the first
10685 link in a property drawer line."
10686 (interactive "P")
10687 ;; On a code block, open block's results.
10688 (unless (call-interactively 'org-babel-open-src-block-result)
10689 (org-load-modules-maybe)
10690 (setq org-window-config-before-follow-link (current-window-configuration))
10691 (org-remove-occur-highlights nil nil t)
10692 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10693 (let* ((context
10694 ;; Only consider supported types, even if they are not
10695 ;; the closest one.
10696 (org-element-lineage
10697 (org-element-context)
10698 '(clock comment comment-block footnote-definition
10699 footnote-reference headline inlinetask keyword link
10700 node-property timestamp)
10702 (type (org-element-type context))
10703 (value (org-element-property :value context)))
10704 (cond
10705 ((not context) (user-error "No link found"))
10706 ;; Exception: open timestamps and links in properties
10707 ;; drawers, keywords and comments.
10708 ((memq type '(comment comment-block keyword node-property))
10709 (cond ((org-in-regexp org-any-link-re)
10710 (org-open-link-from-string (match-string-no-properties 0)))
10711 ((or (org-in-regexp org-ts-regexp-both nil t)
10712 (org-in-regexp org-tsr-regexp-both nil t))
10713 (org-follow-timestamp-link))
10714 (t (user-error "No link found"))))
10715 ;; On a headline or an inlinetask, but not on a timestamp,
10716 ;; a link, a footnote reference or on tags.
10717 ((and (memq type '(headline inlinetask))
10718 ;; Not on tags.
10719 (progn (save-excursion (beginning-of-line)
10720 (looking-at org-complex-heading-regexp))
10721 (or (not (match-beginning 5))
10722 (< (point) (match-beginning 5)))))
10723 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10724 (links (car data))
10725 (links-end (cdr data)))
10726 (if links
10727 (dolist (link (if (stringp links) (list links) links))
10728 (search-forward link nil links-end)
10729 (goto-char (match-beginning 0))
10730 (org-open-at-point))
10731 (require 'org-attach)
10732 (org-attach-reveal 'if-exists))))
10733 ;; On a clock line, make sure point is on the timestamp
10734 ;; before opening it.
10735 ((and (eq type 'clock)
10736 value
10737 (>= (point) (org-element-property :begin value))
10738 (<= (point) (org-element-property :end value)))
10739 (org-follow-timestamp-link))
10740 ;; Do nothing on white spaces after an object.
10741 ((>= (point)
10742 (save-excursion
10743 (goto-char (org-element-property :end context))
10744 (skip-chars-backward " \t")
10745 (point)))
10746 (user-error "No link found"))
10747 ((eq type 'timestamp) (org-follow-timestamp-link))
10748 ;; On tags within a headline or an inlinetask.
10749 ((and (memq type '(headline inlinetask))
10750 (progn (save-excursion (beginning-of-line)
10751 (looking-at org-complex-heading-regexp))
10752 (and (match-beginning 5)
10753 (>= (point) (match-beginning 5)))))
10754 (org-tags-view arg (substring (match-string 5) 0 -1)))
10755 ((eq type 'link)
10756 ;; When link is located within the description of another
10757 ;; link (e.g., an inline image), always open the parent
10758 ;; link.
10759 (let*((link (let ((up (org-element-property :parent context)))
10760 (if (eq (org-element-type up) 'link) up context)))
10761 (type (org-element-property :type link))
10762 (path (org-link-unescape (org-element-property :path link))))
10763 ;; Switch back to REFERENCE-BUFFER needed when called in
10764 ;; a temporary buffer through `org-open-link-from-string'.
10765 (with-current-buffer (or reference-buffer (current-buffer))
10766 (cond
10767 ((equal type "file")
10768 (if (string-match "[*?{]" (file-name-nondirectory path))
10769 (dired path)
10770 ;; Look into `org-link-protocols' in order to find
10771 ;; a DEDICATED-FUNCTION to open file. The function
10772 ;; will be applied on raw link instead of parsed
10773 ;; link due to the limitation in `org-add-link-type'
10774 ;; ("open" function called with a single argument).
10775 ;; If no such function is found, fallback to
10776 ;; `org-open-file'.
10778 ;; Note : "file+emacs" and "file+sys" types are
10779 ;; hard-coded in order to escape the previous
10780 ;; limitation.
10781 (let* ((option (org-element-property :search-option link))
10782 (app (org-element-property :application link))
10783 (dedicated-function
10784 (nth 1 (assoc app org-link-protocols))))
10785 (if dedicated-function
10786 (funcall dedicated-function
10787 (concat path
10788 (and option (concat "::" option))))
10789 (apply #'org-open-file
10790 path
10791 (cond (arg)
10792 ((equal app "emacs") 'emacs)
10793 ((equal app "sys") 'system))
10794 (cond ((not option) nil)
10795 ((org-string-match-p "\\`[0-9]+\\'" option)
10796 (list (string-to-number option)))
10797 (t (list nil
10798 (org-link-unescape option)))))))))
10799 ((assoc type org-link-protocols)
10800 (funcall (nth 1 (assoc type org-link-protocols)) path))
10801 ((equal type "help")
10802 (let ((f-or-v (intern path)))
10803 (cond ((fboundp f-or-v) (describe-function f-or-v))
10804 ((boundp f-or-v) (describe-variable f-or-v))
10805 (t (error "Not a known function or variable")))))
10806 ((member type '("http" "https" "ftp" "mailto" "news"))
10807 (browse-url (org-link-escape-browser (concat type ":" path))))
10808 ((equal type "doi")
10809 (browse-url
10810 (org-link-escape-browser (concat org-doi-server-url path))))
10811 ((equal type "message") (browse-url (concat type ":" path)))
10812 ((equal type "shell")
10813 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10814 (cmd path))
10815 (if (or (and (org-string-nw-p
10816 org-confirm-shell-link-not-regexp)
10817 (string-match
10818 org-confirm-shell-link-not-regexp cmd))
10819 (not org-confirm-shell-link-function)
10820 (funcall org-confirm-shell-link-function
10821 (format "Execute \"%s\" in shell? "
10822 (org-add-props cmd nil
10823 'face 'org-warning))))
10824 (progn
10825 (message "Executing %s" cmd)
10826 (shell-command cmd buf)
10827 (when (featurep 'midnight)
10828 (setq clean-buffer-list-kill-buffer-names
10829 (cons (buffer-name buf)
10830 clean-buffer-list-kill-buffer-names))))
10831 (user-error "Abort"))))
10832 ((equal type "elisp")
10833 (let ((cmd path))
10834 (if (or (and (org-string-nw-p
10835 org-confirm-elisp-link-not-regexp)
10836 (org-string-match-p
10837 org-confirm-elisp-link-not-regexp cmd))
10838 (not org-confirm-elisp-link-function)
10839 (funcall org-confirm-elisp-link-function
10840 (format "Execute \"%s\" as elisp? "
10841 (org-add-props cmd nil
10842 'face 'org-warning))))
10843 (message "%s => %s" cmd
10844 (if (eq (string-to-char cmd) ?\()
10845 (eval (read cmd))
10846 (call-interactively (read cmd))))
10847 (user-error "Abort"))))
10848 ((equal type "id")
10849 (require 'org-id)
10850 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10851 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10852 (unless (run-hook-with-args-until-success
10853 'org-open-link-functions path)
10854 (if (not arg) (org-mark-ring-push)
10855 (switch-to-buffer-other-window
10856 (org-get-buffer-for-internal-link (current-buffer))))
10857 (let ((destination
10858 (org-with-wide-buffer
10859 (if (equal type "radio")
10860 (org-search-radio-target
10861 (org-element-property :path link))
10862 (org-link-search
10863 (if (member type '("custom-id" "coderef"))
10864 (org-element-property :raw-link link)
10865 path)
10866 ;; Prevent fuzzy links from matching
10867 ;; themselves.
10868 (and (equal type "fuzzy")
10869 (+ 2 (org-element-property :begin link)))))
10870 (point))))
10871 (unless (and (<= (point-min) destination)
10872 (>= (point-max) destination))
10873 (widen))
10874 (goto-char destination))))
10875 (t (browse-url-at-point))))))
10876 ;; On a footnote reference or at a footnote definition's label.
10877 ((or (eq type 'footnote-reference)
10878 (and (eq type 'footnote-definition)
10879 (save-excursion
10880 ;; Do not validate action when point is on the
10881 ;; spaces right after the footnote label, in
10882 ;; order to be on par with behaviour on links.
10883 (skip-chars-forward " \t")
10884 (let ((begin
10885 (org-element-property :contents-begin context)))
10886 (if begin (< (point) begin)
10887 (= (org-element-property :post-affiliated context)
10888 (line-beginning-position)))))))
10889 (org-footnote-action))
10890 (t (user-error "No link found")))))
10891 (run-hook-with-args 'org-follow-link-hook)))
10893 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10894 "Offer links in the current entry and return the selected link.
10895 If there is only one link, return it.
10896 If NTH is an integer, return the NTH link found.
10897 If ZERO is a string, check also this string for a link, and if
10898 there is one, return it."
10899 (with-current-buffer buffer
10900 (save-excursion
10901 (save-restriction
10902 (widen)
10903 (goto-char marker)
10904 (let ((cnt ?0)
10905 (in-emacs (if (integerp nth) nil nth))
10906 have-zero end links link c)
10907 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10908 (push (match-string 0 zero) links)
10909 (setq cnt (1- cnt) have-zero t))
10910 (save-excursion
10911 (org-back-to-heading t)
10912 (setq end (save-excursion (outline-next-heading) (point)))
10913 (while (re-search-forward org-any-link-re end t)
10914 (push (match-string 0) links))
10915 (setq links (org-uniquify (reverse links))))
10916 (cond
10917 ((null links)
10918 (message "No links"))
10919 ((equal (length links) 1)
10920 (setq link (car links)))
10921 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10922 (setq link (nth (if have-zero nth (1- nth)) links)))
10923 (t ; we have to select a link
10924 (save-excursion
10925 (save-window-excursion
10926 (delete-other-windows)
10927 (with-output-to-temp-buffer "*Select Link*"
10928 (mapc (lambda (l)
10929 (if (not (string-match org-bracket-link-regexp l))
10930 (princ (format "[%c] %s\n" (incf cnt)
10931 (org-remove-angle-brackets l)))
10932 (if (match-end 3)
10933 (princ (format "[%c] %s (%s)\n" (incf cnt)
10934 (match-string 3 l) (match-string 1 l)))
10935 (princ (format "[%c] %s\n" (incf cnt)
10936 (match-string 1 l))))))
10937 links))
10938 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10939 (message "Select link to open, RET to open all:")
10940 (setq c (read-char-exclusive))
10941 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10942 (when (equal c ?q) (user-error "Abort"))
10943 (if (equal c ?\C-m)
10944 (setq link links)
10945 (setq nth (- c ?0))
10946 (if have-zero (setq nth (1+ nth)))
10947 (unless (and (integerp nth) (>= (length links) nth))
10948 (user-error "Invalid link selection"))
10949 (setq link (nth (1- nth) links)))))
10950 (cons link end))))))
10952 ;; TODO: These functions are deprecated since `org-open-at-point'
10953 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10954 (defun org-open-file-with-system (path)
10955 "Open file at PATH using the system way of opening it."
10956 (org-open-file path 'system))
10957 (defun org-open-file-with-emacs (path)
10958 "Open file at PATH in Emacs."
10959 (org-open-file path 'emacs))
10962 ;;; File search
10964 (defvar org-create-file-search-functions nil
10965 "List of functions to construct the right search string for a file link.
10966 These functions are called in turn with point at the location to
10967 which the link should point.
10969 A function in the hook should first test if it would like to
10970 handle this file type, for example by checking the `major-mode'
10971 or the file extension. If it decides not to handle this file, it
10972 should just return nil to give other functions a chance. If it
10973 does handle the file, it must return the search string to be used
10974 when following the link. The search string will be part of the
10975 file link, given after a double colon, and `org-open-at-point'
10976 will automatically search for it. If special measures must be
10977 taken to make the search successful, another function should be
10978 added to the companion hook `org-execute-file-search-functions',
10979 which see.
10981 A function in this hook may also use `setq' to set the variable
10982 `description' to provide a suggestion for the descriptive text to
10983 be used for this link when it gets inserted into an Org-mode
10984 buffer with \\[org-insert-link].")
10986 (defvar org-execute-file-search-functions nil
10987 "List of functions to execute a file search triggered by a link.
10989 Functions added to this hook must accept a single argument, the
10990 search string that was part of the file link, the part after the
10991 double colon. The function must first check if it would like to
10992 handle this search, for example by checking the `major-mode' or
10993 the file extension. If it decides not to handle this search, it
10994 should just return nil to give other functions a chance. If it
10995 does handle the search, it must return a non-nil value to keep
10996 other functions from trying.
10998 Each function can access the current prefix argument through the
10999 variable `current-prefix-arg'. Note that a single prefix is used
11000 to force opening a link in Emacs, so it may be good to only use a
11001 numeric or double prefix to guide the search function.
11003 In case this is needed, a function in this hook can also restore
11004 the window configuration before `org-open-at-point' was called using:
11006 (set-window-configuration org-window-config-before-follow-link)")
11008 (defun org-search-radio-target (target)
11009 "Search a radio target matching TARGET in current buffer.
11010 White spaces are not significant."
11011 (let ((re (format "<<<%s>>>"
11012 (mapconcat #'regexp-quote
11013 (org-split-string target "[ \t\n]+")
11014 "[ \t]+\\(?:\n[ \t]*\\)?")))
11015 (origin (point)))
11016 (goto-char (point-min))
11017 (catch :radio-match
11018 (while (re-search-forward re nil t)
11019 (backward-char)
11020 (let ((object (org-element-context)))
11021 (when (eq (org-element-type object) 'radio-target)
11022 (goto-char (org-element-property :begin object))
11023 (org-show-context 'link-search)
11024 (throw :radio-match nil))))
11025 (goto-char origin)
11026 (user-error "No match for radio target: %s" target))))
11028 (defun org-link-search (s &optional avoid-pos stealth)
11029 "Search for a search string S.
11031 If S starts with \"#\", it triggers a custom ID search.
11033 If S is enclosed within parenthesis, it initiates a coderef
11034 search.
11036 If S is surrounded by forward slashes, it is interpreted as
11037 a regular expression. In Org mode files, this will create an
11038 `org-occur' sparse tree. In ordinary files, `occur' will be used
11039 to list matches. If the current buffer is in `dired-mode', grep
11040 will be used to search in all files.
11042 When AVOID-POS is given, ignore matches near that position.
11044 When optional argument STEALTH is non-nil, do not modify
11045 visibility around point, thus ignoring `org-show-context-detail'
11046 variable.
11048 Search is case-insensitive and ignores white spaces. Return type
11049 of matched result, with is either `dedicated' or `fuzzy'."
11050 (unless (org-string-nw-p s) (error "Invalid search string \"%s\"" s))
11051 (let* ((case-fold-search t)
11052 (origin (point))
11053 (normalized (replace-regexp-in-string "\n[ \t]*" " " s))
11054 (words (org-split-string s "[ \t\n]+"))
11055 (s-multi-re (mapconcat #'regexp-quote words "[ \t]+\\(?:\n[ \t]*\\)?"))
11056 (s-single-re (mapconcat #'regexp-quote words "[ \t]+"))
11057 type)
11058 (cond
11059 ;; Check if there are any special search functions.
11060 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11061 ((eq (string-to-char s) ?#)
11062 ;; Look for a custom ID S if S starts with "#".
11063 (let* ((id (substring normalized 1))
11064 (match (org-find-property "CUSTOM_ID" id)))
11065 (if match (progn (goto-char match) (setf type 'dedicated))
11066 (error "No match for custom ID: %s" id))))
11067 ((string-match "\\`(\\(.*\\))\\'" normalized)
11068 ;; Look for coderef targets if S is enclosed within parenthesis.
11069 (let ((coderef (match-string-no-properties 1 normalized))
11070 (re (substring s-single-re 1 -1)))
11071 (goto-char (point-min))
11072 (catch :coderef-match
11073 (while (re-search-forward re nil t)
11074 (let ((element (org-element-at-point)))
11075 (when (and (memq (org-element-type element)
11076 '(example-block src-block))
11077 ;; Build proper regexp according to current
11078 ;; block's label format.
11079 (let ((label-fmt
11080 (regexp-quote
11081 (or (org-element-property :label-fmt element)
11082 org-coderef-label-format))))
11083 (save-excursion
11084 (beginning-of-line)
11085 (looking-at (format ".*?\\(%s\\)[ \t]*$"
11086 (format label-fmt coderef))))))
11087 (setq type 'dedicated)
11088 (goto-char (match-beginning 1))
11089 (throw :coderef-match nil))))
11090 (goto-char origin)
11091 (error "No match for coderef: %s" coderef))))
11092 ((string-match "\\`/\\(.*\\)/\\'" normalized)
11093 ;; Look for a regular expression.
11094 (funcall (if (derived-mode-p 'org-mode) #'org-occur #'org-do-occur)
11095 (match-string 1 s)))
11096 ;; Fuzzy links.
11098 (let* ((starred (eq (string-to-char normalized) ?*))
11099 (headline-search (and (derived-mode-p 'org-mode)
11100 (or org-link-search-must-match-exact-headline
11101 starred))))
11102 (cond
11103 ;; Look for targets, only if not in a headline search.
11104 ((and (not starred)
11105 (let ((target (format "<<%s>>" s-multi-re)))
11106 (catch :target-match
11107 (goto-char (point-min))
11108 (while (re-search-forward target nil t)
11109 (backward-char)
11110 (let ((context (org-element-context)))
11111 (when (eq (org-element-type context) 'target)
11112 (setq type 'dedicated)
11113 (goto-char (org-element-property :begin context))
11114 (throw :target-match t))))
11115 nil))))
11116 ;; Look for elements named after S, only if not in a headline
11117 ;; search.
11118 ((and (not starred)
11119 (let ((name (format "^[ \t]*#\\+NAME: +%s[ \t]*$" s-single-re)))
11120 (catch :name-match
11121 (goto-char (point-min))
11122 (while (re-search-forward name nil t)
11123 (let ((element (org-element-at-point)))
11124 (when (equal (org-split-string
11125 (org-element-property :name element)
11126 "[ \t]+")
11127 words)
11128 (setq type 'dedicated)
11129 (beginning-of-line)
11130 (throw :name-match t))))
11131 nil))))
11132 ;; Regular text search. Prefer headlines in Org mode
11133 ;; buffers.
11134 ((and (derived-mode-p 'org-mode)
11135 (let* ((wspace "[ \t]")
11136 (wspaceopt (concat wspace "*"))
11137 (cookie (concat "\\(?:"
11138 wspaceopt
11139 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11140 wspaceopt
11141 "\\)"))
11142 (sep (concat "\\(?:\\(?:" wspace "\\|" cookie "\\)+\\)"))
11143 (re (concat
11144 org-outline-regexp-bol
11145 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11146 "\\(?:\\[#.\\][ \t]+\\)?"
11147 "\\(?:" org-comment-string "[ \t]+\\)?"
11148 sep "?"
11149 (let ((title (mapconcat #'regexp-quote
11150 words
11151 sep)))
11152 (if starred (substring title 1) title))
11153 sep "?"
11154 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11155 "[ \t]*$")))
11156 (goto-char (point-min))
11157 (re-search-forward re nil t)))
11158 (goto-char (match-beginning 0))
11159 (setq type 'dedicated))
11160 ;; Offer to create non-existent headline depending on
11161 ;; `org-link-search-must-match-exact-headline'.
11162 ((and (derived-mode-p 'org-mode)
11163 (not org-link-search-inhibit-query)
11164 (eq org-link-search-must-match-exact-headline 'query-to-create)
11165 (yes-or-no-p "No match - create this as a new heading? "))
11166 (goto-char (point-max))
11167 (unless (bolp) (newline))
11168 (org-insert-heading nil t t)
11169 (insert s "\n")
11170 (beginning-of-line 0))
11171 ;; Only headlines are looked after. No need to process
11172 ;; further: throw an error.
11173 ((and (derived-mode-p 'org-mode)
11174 (or starred org-link-search-must-match-exact-headline))
11175 (goto-char origin)
11176 (error "No match for fuzzy expression: %s" normalized))
11177 ;; Regular text search.
11178 ((catch :fuzzy-match
11179 (goto-char (point-min))
11180 (while (re-search-forward s-multi-re nil t)
11181 ;; Skip match if it contains AVOID-POS or it is included
11182 ;; in a link with a description but outside the
11183 ;; description.
11184 (unless (or (and avoid-pos
11185 (<= (match-beginning 0) avoid-pos)
11186 (> (match-end 0) avoid-pos))
11187 (and (save-match-data
11188 (org-in-regexp org-bracket-link-regexp))
11189 (match-beginning 3)
11190 (or (> (match-beginning 3) (point))
11191 (<= (match-end 3) (point)))
11192 (org-element-lineage
11193 (save-match-data (org-element-context))
11194 '(link) t)))
11195 (goto-char (match-beginning 0))
11196 (setq type 'fuzzy)
11197 (throw :fuzzy-match t)))
11198 nil))
11199 ;; All failed. Throw an error.
11200 (t (goto-char origin)
11201 (error "No match for fuzzy expression: %s" normalized))))))
11202 ;; Disclose surroundings of match, if appropriate.
11203 (when (and (derived-mode-p 'org-mode) (not stealth))
11204 (org-show-context 'link-search))
11205 type))
11207 (defun org-get-buffer-for-internal-link (buffer)
11208 "Return a buffer to be used for displaying the link target of internal links."
11209 (cond
11210 ((not org-display-internal-link-with-indirect-buffer)
11211 buffer)
11212 ((string-match "(Clone)$" (buffer-name buffer))
11213 (message "Buffer is already a clone, not making another one")
11214 ;; we also do not modify visibility in this case
11215 buffer)
11216 (t ; make a new indirect buffer for displaying the link
11217 (let* ((bn (buffer-name buffer))
11218 (ibn (concat bn "(Clone)"))
11219 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11220 (with-current-buffer ib (org-overview))
11221 ib))))
11223 (defun org-do-occur (regexp &optional cleanup)
11224 "Call the Emacs command `occur'.
11225 If CLEANUP is non-nil, remove the printout of the regular expression
11226 in the *Occur* buffer. This is useful if the regex is long and not useful
11227 to read."
11228 (occur regexp)
11229 (when cleanup
11230 (let ((cwin (selected-window)) win beg end)
11231 (when (setq win (get-buffer-window "*Occur*"))
11232 (select-window win))
11233 (goto-char (point-min))
11234 (when (re-search-forward "match[a-z]+" nil t)
11235 (setq beg (match-end 0))
11236 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11237 (setq end (1- (match-beginning 0)))))
11238 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11239 (goto-char (point-min))
11240 (select-window cwin))))
11242 ;;; The mark ring for links jumps
11244 (defvar org-mark-ring nil
11245 "Mark ring for positions before jumps in Org-mode.")
11246 (defvar org-mark-ring-last-goto nil
11247 "Last position in the mark ring used to go back.")
11248 ;; Fill and close the ring
11249 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11250 (loop for i from 1 to org-mark-ring-length do
11251 (push (make-marker) org-mark-ring))
11252 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11253 org-mark-ring)
11255 (defun org-mark-ring-push (&optional pos buffer)
11256 "Put the current position or POS into the mark ring and rotate it."
11257 (interactive)
11258 (setq pos (or pos (point)))
11259 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11260 (move-marker (car org-mark-ring)
11261 (or pos (point))
11262 (or buffer (current-buffer)))
11263 (message "%s"
11264 (substitute-command-keys
11265 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11267 (defun org-mark-ring-goto (&optional n)
11268 "Jump to the previous position in the mark ring.
11269 With prefix arg N, jump back that many stored positions. When
11270 called several times in succession, walk through the entire ring.
11271 Org-mode commands jumping to a different position in the current file,
11272 or to another Org-mode file, automatically push the old position
11273 onto the ring."
11274 (interactive "p")
11275 (let (p m)
11276 (if (eq last-command this-command)
11277 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11278 (setq p org-mark-ring))
11279 (setq org-mark-ring-last-goto p)
11280 (setq m (car p))
11281 (org-pop-to-buffer-same-window (marker-buffer m))
11282 (goto-char m)
11283 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11285 (defun org-remove-angle-brackets (s)
11286 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11287 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11289 (defun org-add-angle-brackets (s)
11290 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11291 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11293 (defun org-remove-double-quotes (s)
11294 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11295 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11298 ;;; Following specific links
11300 (defun org-follow-timestamp-link ()
11301 "Open an agenda view for the time-stamp date/range at point."
11302 (cond
11303 ((org-at-date-range-p t)
11304 (let ((org-agenda-start-on-weekday)
11305 (t1 (match-string 1))
11306 (t2 (match-string 2)) tt1 tt2)
11307 (setq tt1 (time-to-days (org-time-string-to-time t1))
11308 tt2 (time-to-days (org-time-string-to-time t2)))
11309 (let ((org-agenda-buffer-tmp-name
11310 (format "*Org Agenda(a:%s)"
11311 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11312 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11313 ((org-at-timestamp-p t)
11314 (let ((org-agenda-buffer-tmp-name
11315 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11316 (org-agenda-list nil (time-to-days (org-time-string-to-time
11317 (substring (match-string 1) 0 10)))
11318 1)))
11319 (t (error "This should not happen"))))
11322 ;;; Following file links
11323 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11324 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11325 (declare-function mailcap-mime-info
11326 "mailcap" (string &optional request no-decode))
11327 (defvar org-wait nil)
11328 (defun org-open-file (path &optional in-emacs line search)
11329 "Open the file at PATH.
11330 First, this expands any special file name abbreviations. Then the
11331 configuration variable `org-file-apps' is checked if it contains an
11332 entry for this file type, and if yes, the corresponding command is launched.
11334 If no application is found, Emacs simply visits the file.
11336 With optional prefix argument IN-EMACS, Emacs will visit the file.
11337 With a double \\[universal-argument] \\[universal-argument] \
11338 prefix arg, Org tries to avoid opening in Emacs
11339 and to use an external application to visit the file.
11341 Optional LINE specifies a line to go to, optional SEARCH a string
11342 to search for. If LINE or SEARCH is given, the file will be
11343 opened in Emacs, unless an entry from org-file-apps that makes
11344 use of groups in a regexp matches.
11346 If you want to change the way frames are used when following a
11347 link, please customize `org-link-frame-setup'.
11349 If the file does not exist, an error is thrown."
11350 (let* ((file (if (equal path "")
11351 buffer-file-name
11352 (substitute-in-file-name (expand-file-name path))))
11353 (file-apps (append org-file-apps (org-default-apps)))
11354 (apps (org-remove-if
11355 'org-file-apps-entry-match-against-dlink-p file-apps))
11356 (apps-dlink (org-remove-if-not
11357 'org-file-apps-entry-match-against-dlink-p file-apps))
11358 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11359 (dirp (if remp nil (file-directory-p file)))
11360 (file (if (and dirp org-open-directory-means-index-dot-org)
11361 (concat (file-name-as-directory file) "index.org")
11362 file))
11363 (a-m-a-p (assq 'auto-mode apps))
11364 (dfile (downcase file))
11365 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11366 (link (cond ((and (eq line nil)
11367 (eq search nil))
11368 file)
11369 (line
11370 (concat file "::" (number-to-string line)))
11371 (search
11372 (concat file "::" search))))
11373 (dlink (downcase link))
11374 (old-buffer (current-buffer))
11375 (old-pos (point))
11376 (old-mode major-mode)
11377 ext cmd link-match-data)
11378 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11379 (setq ext (match-string 1 dfile))
11380 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11381 (setq ext (match-string 1 dfile))))
11382 (cond
11383 ((member in-emacs '((16) system))
11384 (setq cmd (cdr (assoc 'system apps))))
11385 (in-emacs (setq cmd 'emacs))
11387 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11388 (and dirp (cdr (assoc 'directory apps)))
11389 ; first, try matching against apps-dlink
11390 ; if we get a match here, store the match data for later
11391 (let ((match (assoc-default dlink apps-dlink
11392 'string-match)))
11393 (if match
11394 (progn (setq link-match-data (match-data))
11395 match)
11396 (progn (setq in-emacs (or in-emacs line search))
11397 nil))) ; if we have no match in apps-dlink,
11398 ; always open the file in emacs if line or search
11399 ; is given (for backwards compatibility)
11400 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11401 'string-match)
11402 (cdr (assoc ext apps))
11403 (cdr (assoc t apps))))))
11404 (when (eq cmd 'system)
11405 (setq cmd (cdr (assoc 'system apps))))
11406 (when (eq cmd 'default)
11407 (setq cmd (cdr (assoc t apps))))
11408 (when (eq cmd 'mailcap)
11409 (require 'mailcap)
11410 (mailcap-parse-mailcaps)
11411 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11412 (command (mailcap-mime-info mime-type)))
11413 (if (stringp command)
11414 (setq cmd command)
11415 (setq cmd 'emacs))))
11416 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11417 (not (file-exists-p file))
11418 (not org-open-non-existing-files))
11419 (user-error "No such file: %s" file))
11420 (cond
11421 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11422 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11423 (while (string-match "['\"]%s['\"]" cmd)
11424 (setq cmd (replace-match "%s" t t cmd)))
11425 (while (string-match "%s" cmd)
11426 (setq cmd (replace-match
11427 (save-match-data
11428 (shell-quote-argument
11429 (convert-standard-filename file)))
11430 t t cmd)))
11432 ;; Replace "%1", "%2" etc. in command with group matches from regex
11433 (save-match-data
11434 (let ((match-index 1)
11435 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11436 (set-match-data link-match-data)
11437 (while (<= match-index number-of-groups)
11438 (let ((regex (concat "%" (number-to-string match-index)))
11439 (replace-with (match-string match-index dlink)))
11440 (while (string-match regex cmd)
11441 (setq cmd (replace-match replace-with t t cmd))))
11442 (setq match-index (+ match-index 1)))))
11444 (save-window-excursion
11445 (message "Running %s...done" cmd)
11446 (start-process-shell-command cmd nil cmd)
11447 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11448 ((or (stringp cmd)
11449 (eq cmd 'emacs))
11450 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11451 (widen)
11452 (if line (progn (org-goto-line line)
11453 (if (derived-mode-p 'org-mode)
11454 (org-reveal)))
11455 (if search (org-link-search search))))
11456 ((consp cmd)
11457 (let ((file (convert-standard-filename file)))
11458 (save-match-data
11459 (set-match-data link-match-data)
11460 (eval cmd))))
11461 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11462 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11463 (or (not (equal old-buffer (current-buffer)))
11464 (not (equal old-pos (point))))
11465 (org-mark-ring-push old-pos old-buffer))))
11467 (defun org-file-apps-entry-match-against-dlink-p (entry)
11468 "This function returns non-nil if `entry' uses a regular
11469 expression which should be matched against the whole link by
11470 org-open-file.
11472 It assumes that is the case when the entry uses a regular
11473 expression which has at least one grouping construct and the
11474 action is either a lisp form or a command string containing
11475 `%1', i.e. using at least one subexpression match as a
11476 parameter."
11477 (let ((selector (car entry))
11478 (action (cdr entry)))
11479 (if (stringp selector)
11480 (and (> (regexp-opt-depth selector) 0)
11481 (or (and (stringp action)
11482 (string-match "%[0-9]" action))
11483 (consp action)))
11484 nil)))
11486 (defun org-default-apps ()
11487 "Return the default applications for this operating system."
11488 (cond
11489 ((eq system-type 'darwin)
11490 org-file-apps-defaults-macosx)
11491 ((eq system-type 'windows-nt)
11492 org-file-apps-defaults-windowsnt)
11493 (t org-file-apps-defaults-gnu)))
11495 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11496 "Convert extensions to regular expressions in the cars of LIST.
11497 Also, weed out any non-string entries, because the return value is used
11498 only for regexp matching.
11499 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11500 point to the symbol `emacs', indicating that the file should
11501 be opened in Emacs."
11502 (append
11503 (delq nil
11504 (mapcar (lambda (x)
11505 (if (not (stringp (car x)))
11507 (if (string-match "\\W" (car x))
11509 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11510 list))
11511 (if add-auto-mode
11512 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11514 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11515 (defun org-file-remote-p (file)
11516 "Test whether FILE specifies a location on a remote system.
11517 Return non-nil if the location is indeed remote.
11519 For example, the filename \"/user@host:/foo\" specifies a location
11520 on the system \"/user@host:\"."
11521 (cond ((fboundp 'file-remote-p)
11522 (file-remote-p file))
11523 ((fboundp 'tramp-handle-file-remote-p)
11524 (tramp-handle-file-remote-p file))
11525 ((and (boundp 'ange-ftp-name-format)
11526 (string-match (car ange-ftp-name-format) file))
11527 t)))
11530 ;;;; Refiling
11532 (defun org-get-org-file ()
11533 "Read a filename, with default directory `org-directory'."
11534 (let ((default (or org-default-notes-file remember-data-file)))
11535 (read-file-name (format "File name [%s]: " default)
11536 (file-name-as-directory org-directory)
11537 default)))
11539 (defun org-notes-order-reversed-p ()
11540 "Check if the current file should receive notes in reversed order."
11541 (cond
11542 ((not org-reverse-note-order) nil)
11543 ((eq t org-reverse-note-order) t)
11544 ((not (listp org-reverse-note-order)) nil)
11545 (t (catch 'exit
11546 (dolist (entry org-reverse-note-order)
11547 (if (string-match (car entry) buffer-file-name)
11548 (throw 'exit (cdr entry))))))))
11550 (defvar org-refile-target-table nil
11551 "The list of refile targets, created by `org-refile'.")
11553 (defvar org-agenda-new-buffers nil
11554 "Buffers created to visit agenda files.")
11556 (defvar org-refile-cache nil
11557 "Cache for refile targets.")
11559 (defvar org-refile-markers nil
11560 "All the markers used for caching refile locations.")
11562 (defun org-refile-marker (pos)
11563 "Get a new refile marker, but only if caching is in use."
11564 (if (not org-refile-use-cache)
11566 (let ((m (make-marker)))
11567 (move-marker m pos)
11568 (push m org-refile-markers)
11569 m)))
11571 (defun org-refile-cache-clear ()
11572 "Clear the refile cache and disable all the markers."
11573 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11574 (setq org-refile-markers nil)
11575 (setq org-refile-cache nil)
11576 (message "Refile cache has been cleared"))
11578 (defun org-refile-cache-check-set (set)
11579 "Check if all the markers in the cache still have live buffers."
11580 (let (marker)
11581 (catch 'exit
11582 (while (and set (setq marker (nth 3 (pop set))))
11583 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11584 (when (and marker (null (marker-buffer marker)))
11585 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11586 (sit-for 3)
11587 (throw 'exit nil)))
11588 t)))
11590 (defun org-refile-cache-put (set &rest identifiers)
11591 "Push the refile targets SET into the cache, under IDENTIFIERS."
11592 (let* ((key (sha1 (prin1-to-string identifiers)))
11593 (entry (assoc key org-refile-cache)))
11594 (if entry
11595 (setcdr entry set)
11596 (push (cons key set) org-refile-cache))))
11598 (defun org-refile-cache-get (&rest identifiers)
11599 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11600 (cond
11601 ((not org-refile-cache) nil)
11602 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11604 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11605 org-refile-cache))))
11606 (and set (org-refile-cache-check-set set) set)))))
11608 (defvar org-outline-path-cache nil
11609 "Alist between buffer positions and outline paths.
11610 It value is an alist (POSITION . PATH) where POSITION is the
11611 buffer position at the beginning of an entry and PATH is a list
11612 of strings describing the outline path for that entry, in reverse
11613 order.")
11615 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11616 "Produce a table with refile targets."
11617 (let ((case-fold-search nil)
11618 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11619 (entries (or org-refile-targets '((nil . (:level . 1)))))
11620 targets tgs files desc descre)
11621 (message "Getting targets...")
11622 (with-current-buffer (or default-buffer (current-buffer))
11623 (dolist (entry entries)
11624 (setq files (car entry) desc (cdr entry))
11625 (cond
11626 ((null files) (setq files (list (current-buffer))))
11627 ((eq files 'org-agenda-files)
11628 (setq files (org-agenda-files 'unrestricted)))
11629 ((and (symbolp files) (fboundp files))
11630 (setq files (funcall files)))
11631 ((and (symbolp files) (boundp files))
11632 (setq files (symbol-value files))))
11633 (if (stringp files) (setq files (list files)))
11634 (cond
11635 ((eq (car desc) :tag)
11636 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11637 ((eq (car desc) :todo)
11638 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11639 ((eq (car desc) :regexp)
11640 (setq descre (cdr desc)))
11641 ((eq (car desc) :level)
11642 (setq descre (concat "^\\*\\{" (number-to-string
11643 (if org-odd-levels-only
11644 (1- (* 2 (cdr desc)))
11645 (cdr desc)))
11646 "\\}[ \t]")))
11647 ((eq (car desc) :maxlevel)
11648 (setq descre (concat "^\\*\\{1," (number-to-string
11649 (if org-odd-levels-only
11650 (1- (* 2 (cdr desc)))
11651 (cdr desc)))
11652 "\\}[ \t]")))
11653 (t (error "Bad refiling target description %s" desc)))
11654 (dolist (f files)
11655 (with-current-buffer (if (bufferp f) f (org-get-agenda-file-buffer f))
11657 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11658 (progn
11659 (when (bufferp f)
11660 (setq f (buffer-file-name (buffer-base-buffer f))))
11661 (setq f (and f (expand-file-name f)))
11662 (when (eq org-refile-use-outline-path 'file)
11663 (push (list (file-name-nondirectory f) f nil nil) tgs))
11664 (org-with-wide-buffer
11665 (goto-char (point-min))
11666 (setq org-outline-path-cache nil)
11667 (while (re-search-forward descre nil t)
11668 (beginning-of-line)
11669 (looking-at org-complex-heading-regexp)
11670 (let ((begin (point))
11671 (heading (org-match-string-no-properties 4)))
11672 (unless (or (and
11673 org-refile-target-verify-function
11674 (not
11675 (funcall org-refile-target-verify-function)))
11676 (not heading)
11677 (member heading excluded-entries))
11678 (let ((re (format org-complex-heading-regexp-format
11679 (regexp-quote heading)))
11680 (target
11681 (if (not org-refile-use-outline-path) heading
11682 (mapconcat
11683 #'org-protect-slash
11684 (append
11685 (case org-refile-use-outline-path
11686 (file (list (file-name-nondirectory
11687 (buffer-file-name
11688 (buffer-base-buffer)))))
11689 (full-file-path
11690 (list (buffer-file-name
11691 (buffer-base-buffer))))
11692 (t nil))
11693 (org-get-outline-path t t))
11694 "/"))))
11695 (push (list target f re (org-refile-marker (point)))
11696 tgs)))
11697 (when (= (point) begin)
11698 ;; Verification function has not moved point.
11699 (end-of-line)))))))
11700 (when org-refile-use-cache
11701 (org-refile-cache-put tgs (buffer-file-name) descre))
11702 (setq targets (append tgs targets))))))
11703 (message "Getting targets...done")
11704 (nreverse targets)))
11706 (defun org-protect-slash (s)
11707 (while (string-match "/" s)
11708 (setq s (replace-match "\\" t t s)))
11711 (defun org--get-outline-path-1 (&optional use-cache)
11712 "Return outline path to current headline.
11714 Outline path is a list of strings, in reverse order. When
11715 optional argument USE-CACHE is non-nil, make use of a cache. See
11716 `org-get-outline-path' for details.
11718 Assume buffer is widened and point is on a headline."
11719 (or (and use-cache (cdr (assq (point) org-outline-path-cache)))
11720 (let ((p (point))
11721 (heading (progn
11722 (looking-at org-complex-heading-regexp)
11723 (if (not (match-end 4)) ""
11724 ;; Remove statistics cookies.
11725 (org-trim
11726 (org-link-display-format
11727 (replace-regexp-in-string
11728 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11729 (org-match-string-no-properties 4))))))))
11730 (if (org-up-heading-safe)
11731 (let ((path (cons heading (org--get-outline-path-1 use-cache))))
11732 (when use-cache
11733 (push (cons p path) org-outline-path-cache))
11734 path)
11735 ;; This is a new root node. Since we assume we are moving
11736 ;; forward, we can drop previous cache so as to limit number
11737 ;; of associations there.
11738 (let ((path (list heading)))
11739 (when use-cache (setq org-outline-path-cache (list (cons p path))))
11740 path)))))
11742 (defun org-get-outline-path (&optional with-self use-cache)
11743 "Return the outline path to the current entry.
11745 An outline path is a list of ancestors for current headline, as
11746 a list of strings. Statistics cookies are removed and links are
11747 replaced with their description, if any, or their path otherwise.
11749 When optional argument WITH-SELF is non-nil, the path also
11750 includes the current headline.
11752 When optional argument USE-CACHE is non-nil, cache outline paths
11753 between calls to this function so as to avoid backtracking. This
11754 argument is useful when planning to find more than one outline
11755 path in the same document. In that case, there are two
11756 conditions to satisfy:
11757 - `org-outline-path-cache' is set to nil before starting the
11758 process;
11759 - outline paths are computed by increasing buffer positions."
11760 (org-with-wide-buffer
11761 (and (or (and with-self (org-back-to-heading t))
11762 (org-up-heading-safe))
11763 (reverse (org--get-outline-path-1 use-cache)))))
11765 (defun org-format-outline-path (path &optional width prefix separator)
11766 "Format the outline path PATH for display.
11767 WIDTH is the maximum number of characters that is available.
11768 PREFIX is a prefix to be included in the returned string,
11769 such as the file name.
11770 SEPARATOR is inserted between the different parts of the path,
11771 the default is \"/\"."
11772 (setq width (or width 79))
11773 (setq path (delq nil path))
11774 (unless (> width 0)
11775 (user-error "Argument `width' must be positive"))
11776 (setq separator (or separator "/"))
11777 (let* ((org-odd-levels-only nil)
11778 (fpath (concat
11779 prefix (and prefix path separator)
11780 (mapconcat
11781 (lambda (s) (replace-regexp-in-string "[ \t]+\\'" "" s))
11782 (loop for head in path
11783 for n from 0
11784 collect (org-add-props
11785 head nil 'face
11786 (nth (% n org-n-level-faces) org-level-faces)))
11787 separator))))
11788 (when (> (length fpath) width)
11789 (if (< width 7)
11790 ;; It's unlikely that `width' will be this small, but don't
11791 ;; waste characters by adding ".." if it is.
11792 (setq fpath (substring fpath 0 width))
11793 (setf (substring fpath (- width 2)) "..")))
11794 fpath))
11796 (defun org-display-outline-path (&optional file current separator just-return-string)
11797 "Display the current outline path in the echo area.
11799 If FILE is non-nil, prepend the output with the file name.
11800 If CURRENT is non-nil, append the current heading to the output.
11801 SEPARATOR is passed through to `org-format-outline-path'. It separates
11802 the different parts of the path and defaults to \"/\".
11803 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11804 (interactive "P")
11805 (let* (case-fold-search
11806 (bfn (buffer-file-name (buffer-base-buffer)))
11807 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11808 res)
11809 (if current (setq path (append path
11810 (save-excursion
11811 (org-back-to-heading t)
11812 (if (looking-at org-complex-heading-regexp)
11813 (list (match-string 4)))))))
11814 (setq res
11815 (org-format-outline-path
11816 path
11817 (1- (frame-width))
11818 (and file bfn (concat (file-name-nondirectory bfn) separator))
11819 separator))
11820 (if just-return-string
11821 (org-no-properties res)
11822 (org-unlogged-message "%s" res))))
11824 (defvar org-refile-history nil
11825 "History for refiling operations.")
11827 (defvar org-after-refile-insert-hook nil
11828 "Hook run after `org-refile' has inserted its stuff at the new location.
11829 Note that this is still *before* the stuff will be removed from
11830 the *old* location.")
11832 (defvar org-capture-last-stored-marker)
11833 (defvar org-refile-keep nil
11834 "Non-nil means `org-refile' will copy instead of refile.")
11836 (defun org-copy ()
11837 "Like `org-refile', but copy."
11838 (interactive)
11839 (let ((org-refile-keep t))
11840 (funcall 'org-refile nil nil nil "Copy")))
11842 (defun org-refile (&optional arg default-buffer rfloc msg)
11843 "Move the entry or entries at point to another heading.
11844 The list of target headings is compiled using the information in
11845 `org-refile-targets', which see.
11847 At the target location, the entry is filed as a subitem of the
11848 target heading. Depending on `org-reverse-note-order', the new
11849 subitem will either be the first or the last subitem.
11851 If there is an active region, all entries in that region will be
11852 refiled. However, the region must fulfill the requirement that
11853 the first heading sets the top-level of the moved text.
11855 With prefix arg ARG, the command will only visit the target
11856 location and not actually move anything.
11858 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11859 refiling operation has put the subtree.
11861 With a numeric prefix argument of `2', refile to the running clock.
11863 With a numeric prefix argument of `3', emulate `org-refile-keep'
11864 being set to t and copy to the target location, don't move it.
11865 Beware that keeping refiled entries may result in duplicated ID
11866 properties.
11868 RFLOC can be a refile location obtained in a different way.
11870 MSG is a string to replace \"Refile\" in the default prompt with
11871 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11873 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11875 If you are using target caching (see `org-refile-use-cache'), you
11876 have to clear the target cache in order to find new targets.
11877 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11878 prefix argument (`C-u C-u C-u C-c C-w')."
11879 (interactive "P")
11880 (if (member arg '(0 (64)))
11881 (org-refile-cache-clear)
11882 (let* ((actionmsg (cond (msg msg)
11883 ((equal arg 3) "Refile (and keep)")
11884 (t "Refile")))
11885 (cbuf (current-buffer))
11886 (regionp (org-region-active-p))
11887 (region-start (and regionp (region-beginning)))
11888 (region-end (and regionp (region-end)))
11889 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11890 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11891 pos it nbuf file re level reversed)
11892 (setq last-command nil)
11893 (when regionp
11894 (goto-char region-start)
11895 (or (bolp) (goto-char (point-at-bol)))
11896 (setq region-start (point))
11897 (unless (or (org-kill-is-subtree-p
11898 (buffer-substring region-start region-end))
11899 (prog1 org-refile-active-region-within-subtree
11900 (let ((s (point-at-eol)))
11901 (org-toggle-heading)
11902 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11903 (user-error "The region is not a (sequence of) subtree(s)")))
11904 (if (equal arg '(16))
11905 (org-refile-goto-last-stored)
11906 (when (or
11907 (and (equal arg 2)
11908 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11909 (prog1
11910 (setq it (list (or org-clock-heading "running clock")
11911 (buffer-file-name
11912 (marker-buffer org-clock-hd-marker))
11914 (marker-position org-clock-hd-marker)))
11915 (setq arg nil)))
11916 (setq it (or rfloc
11917 (let (heading-text)
11918 (save-excursion
11919 (unless (and arg (listp arg))
11920 (org-back-to-heading t)
11921 (setq heading-text
11922 (replace-regexp-in-string
11923 org-bracket-link-regexp
11924 "\\3"
11925 (nth 4 (org-heading-components)))))
11926 (org-refile-get-location
11927 (cond ((and arg (listp arg)) "Goto")
11928 (regionp (concat actionmsg " region to"))
11929 (t (concat actionmsg " subtree \""
11930 heading-text "\" to")))
11931 default-buffer
11932 (and (not (equal '(4) arg))
11933 org-refile-allow-creating-parent-nodes)
11934 arg))))))
11935 (setq file (nth 1 it)
11936 re (nth 2 it)
11937 pos (nth 3 it))
11938 (if (and (not arg)
11940 (equal (buffer-file-name) file)
11941 (if regionp
11942 (and (>= pos region-start)
11943 (<= pos region-end))
11944 (and (>= pos (point))
11945 (< pos (save-excursion
11946 (org-end-of-subtree t t))))))
11947 (error "Cannot refile to position inside the tree or region"))
11948 (setq nbuf (or (find-buffer-visiting file)
11949 (find-file-noselect file)))
11950 (if (and arg (not (equal arg 3)))
11951 (progn
11952 (org-pop-to-buffer-same-window nbuf)
11953 (goto-char pos)
11954 (org-show-context 'org-goto))
11955 (if regionp
11956 (progn
11957 (org-kill-new (buffer-substring region-start region-end))
11958 (org-save-markers-in-region region-start region-end))
11959 (org-copy-subtree 1 nil t))
11960 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11961 (find-file-noselect file)))
11962 (setq reversed (org-notes-order-reversed-p))
11963 (save-excursion
11964 (save-restriction
11965 (widen)
11966 (if pos
11967 (progn
11968 (goto-char pos)
11969 (looking-at org-outline-regexp)
11970 (setq level (org-get-valid-level (funcall outline-level) 1))
11971 (goto-char
11972 (if reversed
11973 (or (outline-next-heading) (point-max))
11974 (or (save-excursion (org-get-next-sibling))
11975 (org-end-of-subtree t t)
11976 (point-max)))))
11977 (setq level 1)
11978 (if (not reversed)
11979 (goto-char (point-max))
11980 (goto-char (point-min))
11981 (or (outline-next-heading) (goto-char (point-max)))))
11982 (if (not (bolp)) (newline))
11983 (org-paste-subtree level nil nil t)
11984 (when org-log-refile
11985 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11986 (unless (eq org-log-refile 'note)
11987 (save-excursion (org-add-log-note))))
11988 (and org-auto-align-tags
11989 (let ((org-loop-over-headlines-in-active-region nil))
11990 (org-set-tags nil t)))
11991 (let ((bookmark-name (plist-get org-bookmark-names-plist
11992 :last-refile)))
11993 (when bookmark-name
11994 (with-demoted-errors
11995 (bookmark-set bookmark-name))))
11996 ;; If we are refiling for capture, make sure that the
11997 ;; last-capture pointers point here
11998 (when (org-bound-and-true-p org-refile-for-capture)
11999 (let ((bookmark-name (plist-get org-bookmark-names-plist
12000 :last-capture-marker)))
12001 (when bookmark-name
12002 (with-demoted-errors
12003 (bookmark-set bookmark-name))))
12004 (move-marker org-capture-last-stored-marker (point)))
12005 (if (fboundp 'deactivate-mark) (deactivate-mark))
12006 (run-hooks 'org-after-refile-insert-hook))))
12007 (unless org-refile-keep
12008 (if regionp
12009 (delete-region (point) (+ (point) (- region-end region-start)))
12010 (delete-region
12011 (and (org-back-to-heading t) (point))
12012 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
12013 (when (featurep 'org-inlinetask)
12014 (org-inlinetask-remove-END-maybe))
12015 (setq org-markers-to-move nil)
12016 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
12018 (defun org-refile-goto-last-stored ()
12019 "Go to the location where the last refile was stored."
12020 (interactive)
12021 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
12022 (message "This is the location of the last refile"))
12024 (defun org-refile--get-location (refloc tbl)
12025 "When user refile to REFLOC, find the associated target in TBL.
12026 Also check `org-refile-target-table'."
12027 (car (delq
12029 (mapcar
12030 (lambda (r) (or (assoc r tbl)
12031 (assoc r org-refile-target-table)))
12032 (list (replace-regexp-in-string "/$" "" refloc)
12033 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
12035 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
12036 no-exclude)
12037 "Prompt the user for a refile location, using PROMPT.
12038 PROMPT should not be suffixed with a colon and a space, because
12039 this function appends the default value from
12040 `org-refile-history' automatically, if that is not empty.
12041 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
12042 this is used for the GOTO interface."
12043 (let ((org-refile-targets org-refile-targets)
12044 (org-refile-use-outline-path org-refile-use-outline-path)
12045 excluded-entries)
12046 (when (and (derived-mode-p 'org-mode)
12047 (not org-refile-use-cache)
12048 (not no-exclude))
12049 (org-map-tree
12050 (lambda()
12051 (setq excluded-entries
12052 (append excluded-entries (list (org-get-heading t t)))))))
12053 (setq org-refile-target-table
12054 (org-refile-get-targets default-buffer excluded-entries)))
12055 (unless org-refile-target-table
12056 (user-error "No refile targets"))
12057 (let* ((cbuf (current-buffer))
12058 (partial-completion-mode nil)
12059 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12060 (cfunc (if (and org-refile-use-outline-path
12061 org-outline-path-complete-in-steps)
12062 'org-olpath-completing-read
12063 'org-icompleting-read))
12064 (extra (if org-refile-use-outline-path "/" ""))
12065 (cbnex (concat (buffer-name) extra))
12066 (filename (and cfn (expand-file-name cfn)))
12067 (tbl (mapcar
12068 (lambda (x)
12069 (if (and (not (member org-refile-use-outline-path
12070 '(file full-file-path)))
12071 (not (equal filename (nth 1 x))))
12072 (cons (concat (car x) extra " ("
12073 (file-name-nondirectory (nth 1 x)) ")")
12074 (cdr x))
12075 (cons (concat (car x) extra) (cdr x))))
12076 org-refile-target-table))
12077 (completion-ignore-case t)
12078 cdef
12079 (prompt (concat prompt
12080 (or (and (car org-refile-history)
12081 (concat " (default " (car org-refile-history) ")"))
12082 (and (assoc cbnex tbl) (setq cdef cbnex)
12083 (concat " (default " cbnex ")"))) ": "))
12084 pa answ parent-target child parent old-hist)
12085 (setq old-hist org-refile-history)
12086 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12087 nil 'org-refile-history (or cdef (car org-refile-history))))
12088 (if (setq pa (org-refile--get-location answ tbl))
12089 (progn
12090 (org-refile-check-position pa)
12091 (when (or (not org-refile-history)
12092 (not (eq old-hist org-refile-history))
12093 (not (equal (car pa) (car org-refile-history))))
12094 (setq org-refile-history
12095 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12096 org-refile-history
12097 (cdr org-refile-history))))
12098 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12099 (pop org-refile-history)))
12101 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12102 (progn
12103 (setq parent (match-string 1 answ)
12104 child (match-string 2 answ))
12105 (setq parent-target (org-refile--get-location parent tbl))
12106 (when (and parent-target
12107 (or (eq new-nodes t)
12108 (and (eq new-nodes 'confirm)
12109 (y-or-n-p (format "Create new node \"%s\"? "
12110 child)))))
12111 (org-refile-new-child parent-target child)))
12112 (user-error "Invalid target location")))))
12114 (declare-function org-string-nw-p "org-macs" (s))
12115 (defun org-refile-check-position (refile-pointer)
12116 "Check if the refile pointer matches the headline to which it points."
12117 (let* ((file (nth 1 refile-pointer))
12118 (re (nth 2 refile-pointer))
12119 (pos (nth 3 refile-pointer))
12120 buffer)
12121 (if (and (not (markerp pos)) (not file))
12122 (user-error "Please indicate a target file in the refile path")
12123 (when (org-string-nw-p re)
12124 (setq buffer (if (markerp pos)
12125 (marker-buffer pos)
12126 (or (find-buffer-visiting file)
12127 (find-file-noselect file))))
12128 (with-current-buffer buffer
12129 (save-excursion
12130 (save-restriction
12131 (widen)
12132 (goto-char pos)
12133 (beginning-of-line 1)
12134 (unless (org-looking-at-p re)
12135 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12137 (defun org-refile-new-child (parent-target child)
12138 "Use refile target PARENT-TARGET to add new CHILD below it."
12139 (unless parent-target
12140 (error "Cannot find parent for new node"))
12141 (let ((file (nth 1 parent-target))
12142 (pos (nth 3 parent-target))
12143 level)
12144 (with-current-buffer (or (find-buffer-visiting file)
12145 (find-file-noselect file))
12146 (save-excursion
12147 (save-restriction
12148 (widen)
12149 (if pos
12150 (goto-char pos)
12151 (goto-char (point-max))
12152 (if (not (bolp)) (newline)))
12153 (when (looking-at org-outline-regexp)
12154 (setq level (funcall outline-level))
12155 (org-end-of-subtree t t))
12156 (org-back-over-empty-lines)
12157 (insert "\n" (make-string
12158 (if pos (org-get-valid-level level 1) 1) ?*)
12159 " " child "\n")
12160 (beginning-of-line 0)
12161 (list (concat (car parent-target) "/" child) file "" (point)))))))
12163 (defun org-olpath-completing-read (prompt collection &rest args)
12164 "Read an outline path like a file name."
12165 (let ((thetable collection)
12166 (org-completion-use-ido nil) ; does not work with ido.
12167 (org-completion-use-iswitchb nil)) ; or iswitchb
12168 (apply #'org-icompleting-read
12169 prompt
12170 (lambda (string predicate &optional flag)
12171 (cond
12172 ((eq flag nil) (try-completion string thetable))
12173 ((eq flag t)
12174 (let ((l (length string)))
12175 (mapcar (lambda (x)
12176 (let ((r (substring x l))
12177 (f (if (string-match " ([^)]*)$" x)
12178 (match-string 0 x)
12179 "")))
12180 (if (string-match "/" r)
12181 (concat string (substring r 0 (match-end 0)) f)
12182 x)))
12183 (all-completions string thetable predicate))))
12184 ;; Exact match?
12185 ((eq flag 'lambda) (assoc string thetable))))
12186 args)))
12188 ;;;; Dynamic blocks
12190 (defun org-find-dblock (name)
12191 "Find the first dynamic block with name NAME in the buffer.
12192 If not found, stay at current position and return nil."
12193 (let ((case-fold-search t) pos)
12194 (save-excursion
12195 (goto-char (point-min))
12196 (setq pos (and (re-search-forward
12197 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12198 (match-beginning 0))))
12199 (if pos (goto-char pos))
12200 pos))
12202 (defun org-create-dblock (plist)
12203 "Create a dynamic block section, with parameters taken from PLIST.
12204 PLIST must contain a :name entry which is used as the name of the block."
12205 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12206 (end-of-line 1)
12207 (newline))
12208 (let ((col (current-column))
12209 (name (plist-get plist :name)))
12210 (insert "#+BEGIN: " name)
12211 (while plist
12212 (if (eq (car plist) :name)
12213 (setq plist (cddr plist))
12214 (insert " " (prin1-to-string (pop plist)))))
12215 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12216 (beginning-of-line -2)))
12218 (defun org-prepare-dblock ()
12219 "Prepare dynamic block for refresh.
12220 This empties the block, puts the cursor at the insert position and returns
12221 the property list including an extra property :name with the block name."
12222 (unless (looking-at org-dblock-start-re)
12223 (user-error "Not at a dynamic block"))
12224 (let* ((begdel (1+ (match-end 0)))
12225 (name (org-no-properties (match-string 1)))
12226 (params (append (list :name name)
12227 (read (concat "(" (match-string 3) ")")))))
12228 (save-excursion
12229 (beginning-of-line 1)
12230 (skip-chars-forward " \t")
12231 (setq params (plist-put params :indentation-column (current-column))))
12232 (unless (re-search-forward org-dblock-end-re nil t)
12233 (error "Dynamic block not terminated"))
12234 (setq params
12235 (append params
12236 (list :content (buffer-substring
12237 begdel (match-beginning 0)))))
12238 (delete-region begdel (match-beginning 0))
12239 (goto-char begdel)
12240 (open-line 1)
12241 params))
12243 (defun org-map-dblocks (&optional command)
12244 "Apply COMMAND to all dynamic blocks in the current buffer.
12245 If COMMAND is not given, use `org-update-dblock'."
12246 (let ((cmd (or command 'org-update-dblock)))
12247 (save-excursion
12248 (goto-char (point-min))
12249 (while (re-search-forward org-dblock-start-re nil t)
12250 (goto-char (match-beginning 0))
12251 (save-excursion
12252 (condition-case nil
12253 (funcall cmd)
12254 (error (message "Error during update of dynamic block"))))
12255 (unless (re-search-forward org-dblock-end-re nil t)
12256 (error "Dynamic block not terminated"))))))
12258 (defun org-dblock-update (&optional arg)
12259 "User command for updating dynamic blocks.
12260 Update the dynamic block at point. With prefix ARG, update all dynamic
12261 blocks in the buffer."
12262 (interactive "P")
12263 (if arg
12264 (org-update-all-dblocks)
12265 (or (looking-at org-dblock-start-re)
12266 (org-beginning-of-dblock))
12267 (org-update-dblock)))
12269 (defun org-update-dblock ()
12270 "Update the dynamic block at point.
12271 This means to empty the block, parse for parameters and then call
12272 the correct writing function."
12273 (interactive)
12274 (save-excursion
12275 (let* ((win (selected-window))
12276 (pos (point))
12277 (line (org-current-line))
12278 (params (org-prepare-dblock))
12279 (name (plist-get params :name))
12280 (indent (plist-get params :indentation-column))
12281 (cmd (intern (concat "org-dblock-write:" name))))
12282 (message "Updating dynamic block `%s' at line %d..." name line)
12283 (funcall cmd params)
12284 (message "Updating dynamic block `%s' at line %d...done" name line)
12285 (goto-char pos)
12286 (when (and indent (> indent 0))
12287 (setq indent (make-string indent ?\ ))
12288 (save-excursion
12289 (select-window win)
12290 (org-beginning-of-dblock)
12291 (forward-line 1)
12292 (while (not (looking-at org-dblock-end-re))
12293 (insert indent)
12294 (beginning-of-line 2))
12295 (when (looking-at org-dblock-end-re)
12296 (and (looking-at "[ \t]+")
12297 (replace-match ""))
12298 (insert indent)))))))
12300 (defun org-beginning-of-dblock ()
12301 "Find the beginning of the dynamic block at point.
12302 Error if there is no such block at point."
12303 (let ((pos (point))
12304 beg)
12305 (end-of-line 1)
12306 (if (and (re-search-backward org-dblock-start-re nil t)
12307 (setq beg (match-beginning 0))
12308 (re-search-forward org-dblock-end-re nil t)
12309 (> (match-end 0) pos))
12310 (goto-char beg)
12311 (goto-char pos)
12312 (error "Not in a dynamic block"))))
12314 (defun org-update-all-dblocks ()
12315 "Update all dynamic blocks in the buffer.
12316 This function can be used in a hook."
12317 (interactive)
12318 (when (derived-mode-p 'org-mode)
12319 (org-map-dblocks 'org-update-dblock)))
12322 ;;;; Completion
12324 (declare-function org-export-backend-options "ox" (cl-x) t)
12325 (defun org-get-export-keywords ()
12326 "Return a list of all currently understood export keywords.
12327 Export keywords include options, block names, attributes and
12328 keywords relative to each registered export back-end."
12329 (let (keywords)
12330 (dolist (backend
12331 (org-bound-and-true-p org-export-registered-backends)
12332 (delq nil keywords))
12333 ;; Back-end name (for keywords, like #+LATEX:)
12334 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12335 (dolist (option-entry (org-export-backend-options backend))
12336 ;; Back-end options.
12337 (push (nth 1 option-entry) keywords)))))
12339 (defconst org-options-keywords
12340 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12341 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12342 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12343 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12344 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12346 (defcustom org-structure-template-alist
12347 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12348 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12349 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12350 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12351 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12352 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12353 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12354 ("L" "#+LaTeX: ")
12355 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12356 ("H" "#+HTML: ")
12357 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12358 ("A" "#+ASCII: ")
12359 ("i" "#+INDEX: ?")
12360 ("I" "#+INCLUDE: %file ?"))
12361 "Structure completion elements.
12362 This is a list of abbreviation keys and values. The value gets inserted
12363 if you type `<' followed by the key and then press the completion key,
12364 usually `TAB'. %file will be replaced by a file name after prompting
12365 for the file using completion. The cursor will be placed at the position
12366 of the `?' in the template.
12367 There are two templates for each key, the first uses the original Org syntax,
12368 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12369 the default when the /org-mtags.el/ module has been loaded. See also the
12370 variable `org-mtags-prefer-muse-templates'."
12371 :group 'org-completion
12372 :type '(repeat
12373 (list
12374 (string :tag "Key")
12375 (string :tag "Template")))
12376 :version "25.1"
12377 :package-version '(Org . "8.3"))
12379 (defun org-try-structure-completion ()
12380 "Try to complete a structure template before point.
12381 This looks for strings like \"<e\" on an otherwise empty line and
12382 expands them."
12383 (let ((l (buffer-substring (point-at-bol) (point)))
12385 (when (and (looking-at "[ \t]*$")
12386 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12387 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12388 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12389 (match-beginning 1)) a)
12390 t)))
12392 (defun org-complete-expand-structure-template (start cell)
12393 "Expand a structure template."
12394 (let ((rpl (nth 1 cell))
12395 (ind ""))
12396 (delete-region start (point))
12397 (when (string-match "\\`[ \t]*#\\+" rpl)
12398 (cond
12399 ((bolp))
12400 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12401 (setq ind (buffer-substring (point-at-bol) (point))))
12402 (t (newline))))
12403 (setq start (point))
12404 (if (string-match "%file" rpl)
12405 (setq rpl (replace-match
12406 (concat
12407 "\""
12408 (save-match-data
12409 (abbreviate-file-name (read-file-name "Include file: ")))
12410 "\"")
12411 t t rpl)))
12412 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12413 (concat "\n" ind)))
12414 (insert rpl)
12415 (if (re-search-backward "\\?" start t) (delete-char 1))))
12417 ;;;; TODO, DEADLINE, Comments
12419 (defun org-toggle-comment ()
12420 "Change the COMMENT state of an entry."
12421 (interactive)
12422 (save-excursion
12423 (org-back-to-heading)
12424 (looking-at org-complex-heading-regexp)
12425 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12426 (skip-chars-forward " \t")
12427 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12428 (if (org-in-commented-heading-p t)
12429 (delete-region (point)
12430 (progn (search-forward " " (line-end-position) 'move)
12431 (skip-chars-forward " \t")
12432 (point)))
12433 (insert org-comment-string)
12434 (unless (eolp) (insert " ")))))
12436 (defvar org-last-todo-state-is-todo nil
12437 "This is non-nil when the last TODO state change led to a TODO state.
12438 If the last change removed the TODO tag or switched to DONE, then
12439 this is nil.")
12441 (defvar org-setting-tags nil) ; dynamically skipped
12443 (defvar org-todo-setup-filter-hook nil
12444 "Hook for functions that pre-filter todo specs.
12445 Each function takes a todo spec and returns either nil or the spec
12446 transformed into canonical form." )
12448 (defvar org-todo-get-default-hook nil
12449 "Hook for functions that get a default item for todo.
12450 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12451 nil or a string to be used for the todo mark." )
12453 (defvar org-agenda-headline-snapshot-before-repeat)
12455 (defun org-current-effective-time ()
12456 "Return current time adjusted for `org-extend-today-until' variable."
12457 (let* ((ct (org-current-time))
12458 (dct (decode-time ct))
12459 (ct1
12460 (cond
12461 (org-use-last-clock-out-time-as-effective-time
12462 (or (org-clock-get-last-clock-out-time) ct))
12463 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12464 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12465 (t ct))))
12466 ct1))
12468 (defun org-todo-yesterday (&optional arg)
12469 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12470 (interactive "P")
12471 (if (eq major-mode 'org-agenda-mode)
12472 (apply 'org-agenda-todo-yesterday arg)
12473 (let* ((org-use-effective-time t)
12474 (hour (third (decode-time
12475 (org-current-time))))
12476 (org-extend-today-until (1+ hour)))
12477 (org-todo arg))))
12479 (defvar org-block-entry-blocking ""
12480 "First entry preventing the TODO state change.")
12482 (defun org-cancel-repeater ()
12483 "Cancel a repeater by setting its numeric value to zero."
12484 (interactive)
12485 (save-excursion
12486 (org-back-to-heading t)
12487 (let ((bound1 (point))
12488 (bound0 (save-excursion (outline-next-heading) (point))))
12489 (when (re-search-forward
12490 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12491 org-deadline-time-regexp "\\)\\|\\("
12492 org-ts-regexp "\\)")
12493 bound0 t)
12494 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12495 (replace-match "0" t nil nil 1))))))
12497 (defun org-todo (&optional arg)
12498 "Change the TODO state of an item.
12499 The state of an item is given by a keyword at the start of the heading,
12500 like
12501 *** TODO Write paper
12502 *** DONE Call mom
12504 The different keywords are specified in the variable `org-todo-keywords'.
12505 By default the available states are \"TODO\" and \"DONE\".
12506 So for this example: when the item starts with TODO, it is changed to DONE.
12507 When it starts with DONE, the DONE is removed. And when neither TODO nor
12508 DONE are present, add TODO at the beginning of the heading.
12510 With \\[universal-argument] prefix arg, use completion to determine the new \
12511 state.
12512 With numeric prefix arg, switch to that state.
12513 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12514 keywords (nextset).
12515 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12516 With a numeric prefix arg of 0, inhibit note taking for the change.
12517 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12519 When called through ELisp, arg is also interpreted in the following way:
12520 `none' -> empty state
12521 \"\"(empty string) -> switch to empty state
12522 `done' -> switch to DONE
12523 `nextset' -> switch to the next set of keywords
12524 `previousset' -> switch to the previous set of keywords
12525 \"WAITING\" -> switch to the specified keyword, but only if it
12526 really is a member of `org-todo-keywords'."
12527 (interactive "P")
12528 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12529 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12530 'region-start-level 'region))
12531 org-loop-over-headlines-in-active-region)
12532 (org-map-entries
12533 `(org-todo ,arg)
12534 org-loop-over-headlines-in-active-region
12535 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12536 (if (equal arg '(16)) (setq arg 'nextset))
12537 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12538 (let ((org-blocker-hook org-blocker-hook)
12539 commentp
12540 case-fold-search)
12541 (when (equal arg '(64))
12542 (setq arg nil org-blocker-hook nil))
12543 (when (and org-blocker-hook
12544 (or org-inhibit-blocking
12545 (org-entry-get nil "NOBLOCKING")))
12546 (setq org-blocker-hook nil))
12547 (save-excursion
12548 (catch 'exit
12549 (org-back-to-heading t)
12550 (when (org-in-commented-heading-p t)
12551 (org-toggle-comment)
12552 (setq commentp t))
12553 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12554 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12555 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12556 (let* ((match-data (match-data))
12557 (startpos (point-at-bol))
12558 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12559 (org-log-done org-log-done)
12560 (org-log-repeat org-log-repeat)
12561 (org-todo-log-states org-todo-log-states)
12562 (org-inhibit-logging
12563 (if (equal arg 0)
12564 (progn (setq arg nil) 'note) org-inhibit-logging))
12565 (this (match-string 1))
12566 (hl-pos (match-beginning 0))
12567 (head (org-get-todo-sequence-head this))
12568 (ass (assoc head org-todo-kwd-alist))
12569 (interpret (nth 1 ass))
12570 (done-word (nth 3 ass))
12571 (final-done-word (nth 4 ass))
12572 (org-last-state (or this ""))
12573 (completion-ignore-case t)
12574 (member (member this org-todo-keywords-1))
12575 (tail (cdr member))
12576 (org-state (cond
12577 ((and org-todo-key-trigger
12578 (or (and (equal arg '(4))
12579 (eq org-use-fast-todo-selection 'prefix))
12580 (and (not arg) org-use-fast-todo-selection
12581 (not (eq org-use-fast-todo-selection
12582 'prefix)))))
12583 ;; Use fast selection
12584 (org-fast-todo-selection))
12585 ((and (equal arg '(4))
12586 (or (not org-use-fast-todo-selection)
12587 (not org-todo-key-trigger)))
12588 ;; Read a state with completion
12589 (org-icompleting-read
12590 "State: " (mapcar 'list org-todo-keywords-1)
12591 nil t))
12592 ((eq arg 'right)
12593 (if this
12594 (if tail (car tail) nil)
12595 (car org-todo-keywords-1)))
12596 ((eq arg 'left)
12597 (if (equal member org-todo-keywords-1)
12599 (if this
12600 (nth (- (length org-todo-keywords-1)
12601 (length tail) 2)
12602 org-todo-keywords-1)
12603 (org-last org-todo-keywords-1))))
12604 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12605 (setq arg nil))) ; hack to fall back to cycling
12606 (arg
12607 ;; user or caller requests a specific state
12608 (cond
12609 ((equal arg "") nil)
12610 ((eq arg 'none) nil)
12611 ((eq arg 'done) (or done-word (car org-done-keywords)))
12612 ((eq arg 'nextset)
12613 (or (car (cdr (member head org-todo-heads)))
12614 (car org-todo-heads)))
12615 ((eq arg 'previousset)
12616 (let ((org-todo-heads (reverse org-todo-heads)))
12617 (or (car (cdr (member head org-todo-heads)))
12618 (car org-todo-heads))))
12619 ((car (member arg org-todo-keywords-1)))
12620 ((stringp arg)
12621 (user-error "State `%s' not valid in this file" arg))
12622 ((nth (1- (prefix-numeric-value arg))
12623 org-todo-keywords-1))))
12624 ((null member) (or head (car org-todo-keywords-1)))
12625 ((equal this final-done-word) nil) ;; -> make empty
12626 ((null tail) nil) ;; -> first entry
12627 ((memq interpret '(type priority))
12628 (if (eq this-command last-command)
12629 (car tail)
12630 (if (> (length tail) 0)
12631 (or done-word (car org-done-keywords))
12632 nil)))
12634 (car tail))))
12635 (org-state (or
12636 (run-hook-with-args-until-success
12637 'org-todo-get-default-hook org-state org-last-state)
12638 org-state))
12639 (next (if org-state (concat " " org-state " ") " "))
12640 (change-plist (list :type 'todo-state-change :from this :to org-state
12641 :position startpos))
12642 dolog now-done-p)
12643 (when org-blocker-hook
12644 (setq org-last-todo-state-is-todo
12645 (not (member this org-done-keywords)))
12646 (unless (save-excursion
12647 (save-match-data
12648 (org-with-wide-buffer
12649 (run-hook-with-args-until-failure
12650 'org-blocker-hook change-plist))))
12651 (if (org-called-interactively-p 'interactive)
12652 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12653 this org-state org-block-entry-blocking)
12654 ;; fail silently
12655 (message "TODO state change from %s to %s blocked (by \"%s\")"
12656 this org-state org-block-entry-blocking)
12657 (throw 'exit nil))))
12658 (store-match-data match-data)
12659 (replace-match next t t)
12660 (cond ((equal this org-state)
12661 (message "TODO state was already %s" (org-trim next)))
12662 ((pos-visible-in-window-p hl-pos)
12663 (message "TODO state changed to %s" (org-trim next))))
12664 (unless head
12665 (setq head (org-get-todo-sequence-head org-state)
12666 ass (assoc head org-todo-kwd-alist)
12667 interpret (nth 1 ass)
12668 done-word (nth 3 ass)
12669 final-done-word (nth 4 ass)))
12670 (when (memq arg '(nextset previousset))
12671 (message "Keyword-Set %d/%d: %s"
12672 (- (length org-todo-sets) -1
12673 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12674 (length org-todo-sets)
12675 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12676 (setq org-last-todo-state-is-todo
12677 (not (member org-state org-done-keywords)))
12678 (setq now-done-p (and (member org-state org-done-keywords)
12679 (not (member this org-done-keywords))))
12680 (and logging (org-local-logging logging))
12681 (when (and (or org-todo-log-states org-log-done)
12682 (not (eq org-inhibit-logging t))
12683 (not (memq arg '(nextset previousset))))
12684 ;; we need to look at recording a time and note
12685 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12686 (nth 2 (assoc this org-todo-log-states))))
12687 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12688 (setq dolog 'time))
12689 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12690 (and org-state
12691 (member org-state org-not-done-keywords)
12692 (not (member this org-not-done-keywords))))
12693 ;; This is now a todo state and was not one before
12694 ;; If there was a CLOSED time stamp, get rid of it.
12695 (org-add-planning-info nil nil 'closed))
12696 (when (and now-done-p org-log-done)
12697 ;; It is now done, and it was not done before
12698 (org-add-planning-info 'closed (org-current-effective-time))
12699 (if (and (not dolog) (eq 'note org-log-done))
12700 (org-add-log-setup 'done org-state this 'findpos 'note)))
12701 (when (and org-state dolog)
12702 ;; This is a non-nil state, and we need to log it
12703 (org-add-log-setup 'state org-state this 'findpos dolog)))
12704 ;; Fixup tag positioning
12705 (org-todo-trigger-tag-changes org-state)
12706 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12707 (when org-provide-todo-statistics
12708 (org-update-parent-todo-statistics))
12709 (run-hooks 'org-after-todo-state-change-hook)
12710 (if (and arg (not (member org-state org-done-keywords)))
12711 (setq head (org-get-todo-sequence-head org-state)))
12712 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12713 ;; Do we need to trigger a repeat?
12714 (when now-done-p
12715 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12716 ;; This is for the agenda, take a snapshot of the headline.
12717 (save-match-data
12718 (setq org-agenda-headline-snapshot-before-repeat
12719 (org-get-heading))))
12720 (org-auto-repeat-maybe org-state))
12721 ;; Fixup cursor location if close to the keyword
12722 (if (and (outline-on-heading-p)
12723 (not (bolp))
12724 (save-excursion (beginning-of-line 1)
12725 (looking-at org-todo-line-regexp))
12726 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12727 (progn
12728 (goto-char (or (match-end 2) (match-end 1)))
12729 (and (looking-at " ") (just-one-space))))
12730 (when org-trigger-hook
12731 (save-excursion
12732 (run-hook-with-args 'org-trigger-hook change-plist)))
12733 (when commentp (org-toggle-comment))))))))
12735 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12736 "Block turning an entry into a TODO, using the hierarchy.
12737 This checks whether the current task should be blocked from state
12738 changes. Such blocking occurs when:
12740 1. The task has children which are not all in a completed state.
12742 2. A task has a parent with the property :ORDERED:, and there
12743 are siblings prior to the current task with incomplete
12744 status.
12746 3. The parent of the task is blocked because it has siblings that should
12747 be done first, or is child of a block grandparent TODO entry."
12749 (if (not org-enforce-todo-dependencies)
12750 t ; if locally turned off don't block
12751 (catch 'dont-block
12752 ;; If this is not a todo state change, or if this entry is already DONE,
12753 ;; do not block
12754 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12755 (member (plist-get change-plist :from)
12756 (cons 'done org-done-keywords))
12757 (member (plist-get change-plist :to)
12758 (cons 'todo org-not-done-keywords))
12759 (not (plist-get change-plist :to)))
12760 (throw 'dont-block t))
12761 ;; If this task has children, and any are undone, it's blocked
12762 (save-excursion
12763 (org-back-to-heading t)
12764 (let ((this-level (funcall outline-level)))
12765 (outline-next-heading)
12766 (let ((child-level (funcall outline-level)))
12767 (while (and (not (eobp))
12768 (> child-level this-level))
12769 ;; this todo has children, check whether they are all
12770 ;; completed
12771 (if (and (not (org-entry-is-done-p))
12772 (org-entry-is-todo-p))
12773 (progn (setq org-block-entry-blocking (org-get-heading))
12774 (throw 'dont-block nil)))
12775 (outline-next-heading)
12776 (setq child-level (funcall outline-level))))))
12777 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12778 ;; any previous siblings are undone, it's blocked
12779 (save-excursion
12780 (org-back-to-heading t)
12781 (let* ((pos (point))
12782 (parent-pos (and (org-up-heading-safe) (point))))
12783 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12784 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12785 (forward-line 1)
12786 (re-search-forward org-not-done-heading-regexp pos t))
12787 (setq org-block-entry-blocking (match-string 0))
12788 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12789 ;; Search further up the hierarchy, to see if an ancestor is blocked
12790 (while t
12791 (goto-char parent-pos)
12792 (if (not (looking-at org-not-done-heading-regexp))
12793 (throw 'dont-block t)) ; do not block, parent is not a TODO
12794 (setq pos (point))
12795 (setq parent-pos (and (org-up-heading-safe) (point)))
12796 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12797 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12798 (forward-line 1)
12799 (re-search-forward org-not-done-heading-regexp pos t)
12800 (setq org-block-entry-blocking (org-get-heading)))
12801 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12803 (defcustom org-track-ordered-property-with-tag nil
12804 "Should the ORDERED property also be shown as a tag?
12805 The ORDERED property decides if an entry should require subtasks to be
12806 completed in sequence. Since a property is not very visible, setting
12807 this option means that toggling the ORDERED property with the command
12808 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12809 not relevant for the behavior, but it makes things more visible.
12811 Note that toggling the tag with tags commands will not change the property
12812 and therefore not influence behavior!
12814 This can be t, meaning the tag ORDERED should be used, It can also be a
12815 string to select a different tag for this task."
12816 :group 'org-todo
12817 :type '(choice
12818 (const :tag "No tracking" nil)
12819 (const :tag "Track with ORDERED tag" t)
12820 (string :tag "Use other tag")))
12822 (defun org-toggle-ordered-property ()
12823 "Toggle the ORDERED property of the current entry.
12824 For better visibility, you can track the value of this property with a tag.
12825 See variable `org-track-ordered-property-with-tag'."
12826 (interactive)
12827 (let* ((t1 org-track-ordered-property-with-tag)
12828 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12829 (save-excursion
12830 (org-back-to-heading)
12831 (if (org-entry-get nil "ORDERED")
12832 (progn
12833 (org-delete-property "ORDERED")
12834 (and tag (org-toggle-tag tag 'off))
12835 (message "Subtasks can be completed in arbitrary order"))
12836 (org-entry-put nil "ORDERED" "t")
12837 (and tag (org-toggle-tag tag 'on))
12838 (message "Subtasks must be completed in sequence")))))
12840 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12841 (defun org-block-todo-from-checkboxes (change-plist)
12842 "Block turning an entry into a TODO, using checkboxes.
12843 This checks whether the current task should be blocked from state
12844 changes because there are unchecked boxes in this entry."
12845 (if (not org-enforce-todo-checkbox-dependencies)
12846 t ; if locally turned off don't block
12847 (catch 'dont-block
12848 ;; If this is not a todo state change, or if this entry is already DONE,
12849 ;; do not block
12850 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12851 (member (plist-get change-plist :from)
12852 (cons 'done org-done-keywords))
12853 (member (plist-get change-plist :to)
12854 (cons 'todo org-not-done-keywords))
12855 (not (plist-get change-plist :to)))
12856 (throw 'dont-block t))
12857 ;; If this task has checkboxes that are not checked, it's blocked
12858 (save-excursion
12859 (org-back-to-heading t)
12860 (let ((beg (point)) end)
12861 (outline-next-heading)
12862 (setq end (point))
12863 (goto-char beg)
12864 (if (org-list-search-forward
12865 (concat (org-item-beginning-re)
12866 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12867 "\\[[- ]\\]")
12868 end t)
12869 (progn
12870 (if (boundp 'org-blocked-by-checkboxes)
12871 (setq org-blocked-by-checkboxes t))
12872 (throw 'dont-block nil)))))
12873 t))) ; do not block
12875 (defun org-entry-blocked-p ()
12876 "Non-nil if entry at point is blocked."
12877 (and (not (org-entry-get nil "NOBLOCKING"))
12878 (member (org-entry-get nil "TODO") org-not-done-keywords)
12879 (not (run-hook-with-args-until-failure
12880 'org-blocker-hook
12881 (list :type 'todo-state-change
12882 :position (point)
12883 :from 'todo
12884 :to 'done)))))
12886 (defun org-update-statistics-cookies (all)
12887 "Update the statistics cookie, either from TODO or from checkboxes.
12888 This should be called with the cursor in a line with a statistics cookie."
12889 (interactive "P")
12890 (if all
12891 (progn
12892 (org-update-checkbox-count 'all)
12893 (org-map-entries 'org-update-parent-todo-statistics))
12894 (if (not (org-at-heading-p))
12895 (org-update-checkbox-count)
12896 (let ((pos (point-marker))
12897 end l1 l2)
12898 (ignore-errors (org-back-to-heading t))
12899 (if (not (org-at-heading-p))
12900 (org-update-checkbox-count)
12901 (setq l1 (org-outline-level))
12902 (setq end (save-excursion
12903 (outline-next-heading)
12904 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12905 (point)))
12906 (if (and (save-excursion
12907 (re-search-forward
12908 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12909 (not (save-excursion (re-search-forward
12910 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12911 (org-update-checkbox-count)
12912 (if (and l2 (> l2 l1))
12913 (progn
12914 (goto-char end)
12915 (org-update-parent-todo-statistics))
12916 (goto-char pos)
12917 (beginning-of-line 1)
12918 (while (re-search-forward
12919 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12920 (point-at-eol) t)
12921 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12922 (goto-char pos)
12923 (move-marker pos nil)))))
12925 (defvar org-entry-property-inherited-from) ;; defined below
12926 (defun org-update-parent-todo-statistics ()
12927 "Update any statistics cookie in the parent of the current headline.
12928 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12929 the entire subtree and this will travel up the hierarchy and update
12930 statistics everywhere."
12931 (let* ((prop (save-excursion (org-up-heading-safe)
12932 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12933 (recursive (or (not org-hierarchical-todo-statistics)
12934 (and prop (string-match "\\<recursive\\>" prop))))
12935 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12937 (first t)
12938 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12939 level ltoggle l1 new ndel
12940 (cnt-all 0) (cnt-done 0) is-percent kwd
12941 checkbox-beg ov ovs ove cookie-present)
12942 (catch 'exit
12943 (save-excursion
12944 (beginning-of-line 1)
12945 (setq ltoggle (funcall outline-level))
12946 ;; Three situations are to consider:
12948 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12949 ;; to the top-level ancestor on the headline;
12951 ;; 2. If parent has "recursive" property, repeat up to the
12952 ;; headline setting that property, taking inheritance into
12953 ;; account;
12955 ;; 3. Else, move up to direct parent and proceed only once.
12956 (while (and (setq level (org-up-heading-safe))
12957 (or recursive first)
12958 (>= (point) lim))
12959 (setq first nil cookie-present nil)
12960 (unless (and level
12961 (not (string-match
12962 "\\<checkbox\\>"
12963 (downcase (or (org-entry-get nil "COOKIE_DATA")
12964 "")))))
12965 (throw 'exit nil))
12966 (while (re-search-forward box-re (point-at-eol) t)
12967 (setq cnt-all 0 cnt-done 0 cookie-present t)
12968 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12969 (save-match-data
12970 (unless (outline-next-heading) (throw 'exit nil))
12971 (while (and (looking-at org-complex-heading-regexp)
12972 (> (setq l1 (length (match-string 1))) level))
12973 (setq kwd (and (or recursive (= l1 ltoggle))
12974 (match-string 2)))
12975 (if (or (eq org-provide-todo-statistics 'all-headlines)
12976 (and (eq org-provide-todo-statistics t)
12977 (or (member kwd org-done-keywords)))
12978 (and (listp org-provide-todo-statistics)
12979 (stringp (car org-provide-todo-statistics))
12980 (or (member kwd org-provide-todo-statistics)
12981 (member kwd org-done-keywords)))
12982 (and (listp org-provide-todo-statistics)
12983 (listp (car org-provide-todo-statistics))
12984 (or (member kwd (car org-provide-todo-statistics))
12985 (and (member kwd org-done-keywords)
12986 (member kwd (cadr org-provide-todo-statistics))))))
12987 (setq cnt-all (1+ cnt-all))
12988 (if (eq org-provide-todo-statistics t)
12989 (and kwd (setq cnt-all (1+ cnt-all)))))
12990 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12991 (member kwd org-done-keywords))
12992 (and (listp org-provide-todo-statistics)
12993 (listp (car org-provide-todo-statistics))
12994 (member kwd org-done-keywords)
12995 (member kwd (cadr org-provide-todo-statistics)))
12996 (and (listp org-provide-todo-statistics)
12997 (stringp (car org-provide-todo-statistics))
12998 (member kwd org-done-keywords)))
12999 (setq cnt-done (1+ cnt-done)))
13000 (outline-next-heading)))
13001 (setq new
13002 (if is-percent
13003 (format "[%d%%]" (floor (* 100.0 cnt-done)
13004 (max 1 cnt-all)))
13005 (format "[%d/%d]" cnt-done cnt-all))
13006 ndel (- (match-end 0) checkbox-beg))
13007 ;; handle overlays when updating cookie from column view
13008 (when (setq ov (car (overlays-at checkbox-beg)))
13009 (setq ovs (overlay-start ov) ove (overlay-end ov))
13010 (delete-overlay ov))
13011 (goto-char checkbox-beg)
13012 (insert new)
13013 (delete-region (point) (+ (point) ndel))
13014 (when org-auto-align-tags (org-fix-tags-on-the-fly))
13015 (when ov (move-overlay ov ovs ove)))
13016 (when cookie-present
13017 (run-hook-with-args 'org-after-todo-statistics-hook
13018 cnt-done (- cnt-all cnt-done))))))
13019 (run-hooks 'org-todo-statistics-hook)))
13021 (defvar org-after-todo-statistics-hook nil
13022 "Hook that is called after a TODO statistics cookie has been updated.
13023 Each function is called with two arguments: the number of not-done entries
13024 and the number of done entries.
13026 For example, the following function, when added to this hook, will switch
13027 an entry to DONE when all children are done, and back to TODO when new
13028 entries are set to a TODO status. Note that this hook is only called
13029 when there is a statistics cookie in the headline!
13031 (defun org-summary-todo (n-done n-not-done)
13032 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
13033 (let (org-log-done org-log-states) ; turn off logging
13034 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13037 (defvar org-todo-statistics-hook nil
13038 "Hook that is run whenever Org thinks TODO statistics should be updated.
13039 This hook runs even if there is no statistics cookie present, in which case
13040 `org-after-todo-statistics-hook' would not run.")
13042 (defun org-todo-trigger-tag-changes (state)
13043 "Apply the changes defined in `org-todo-state-tags-triggers'."
13044 (let ((l org-todo-state-tags-triggers)
13045 changes)
13046 (when (or (not state) (equal state ""))
13047 (setq changes (append changes (cdr (assoc "" l)))))
13048 (when (and (stringp state) (> (length state) 0))
13049 (setq changes (append changes (cdr (assoc state l)))))
13050 (when (member state org-not-done-keywords)
13051 (setq changes (append changes (cdr (assoc 'todo l)))))
13052 (when (member state org-done-keywords)
13053 (setq changes (append changes (cdr (assoc 'done l)))))
13054 (dolist (c changes)
13055 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13057 (defun org-local-logging (value)
13058 "Get logging settings from a property VALUE."
13059 ;; Directly set the variables, they are already local.
13060 (setq org-log-done nil
13061 org-log-repeat nil
13062 org-todo-log-states nil)
13063 (dolist (w (org-split-string value))
13064 (let (a)
13065 (cond
13066 ((setq a (assoc w org-startup-options))
13067 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13068 (set (nth 1 a) (nth 2 a))))
13069 ((setq a (org-extract-log-state-settings w))
13070 (and (member (car a) org-todo-keywords-1)
13071 (push a org-todo-log-states)))))))
13073 (defun org-get-todo-sequence-head (kwd)
13074 "Return the head of the TODO sequence to which KWD belongs.
13075 If KWD is not set, check if there is a text property remembering the
13076 right sequence."
13077 (let (p)
13078 (cond
13079 ((not kwd)
13080 (or (get-text-property (point-at-bol) 'org-todo-head)
13081 (progn
13082 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13083 nil (point-at-eol)))
13084 (get-text-property p 'org-todo-head))))
13085 ((not (member kwd org-todo-keywords-1))
13086 (car org-todo-keywords-1))
13087 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13089 (defun org-fast-todo-selection ()
13090 "Fast TODO keyword selection with single keys.
13091 Returns the new TODO keyword, or nil if no state change should occur."
13092 (let* ((fulltable org-todo-key-alist)
13093 (done-keywords org-done-keywords) ;; needed for the faces.
13094 (maxlen (apply 'max (mapcar
13095 (lambda (x)
13096 (if (stringp (car x)) (string-width (car x)) 0))
13097 fulltable)))
13098 (expert nil)
13099 (fwidth (+ maxlen 3 1 3))
13100 (ncol (/ (- (window-width) 4) fwidth))
13101 tg cnt e c tbl
13102 groups ingroup)
13103 (save-excursion
13104 (save-window-excursion
13105 (if expert
13106 (set-buffer (get-buffer-create " *Org todo*"))
13107 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13108 (erase-buffer)
13109 (org-set-local 'org-done-keywords done-keywords)
13110 (setq tbl fulltable cnt 0)
13111 (while (setq e (pop tbl))
13112 (cond
13113 ((equal e '(:startgroup))
13114 (push '() groups) (setq ingroup t)
13115 (when (not (= cnt 0))
13116 (setq cnt 0)
13117 (insert "\n"))
13118 (insert "{ "))
13119 ((equal e '(:endgroup))
13120 (setq ingroup nil cnt 0)
13121 (insert "}\n"))
13122 ((equal e '(:newline))
13123 (when (not (= cnt 0))
13124 (setq cnt 0)
13125 (insert "\n")
13126 (setq e (car tbl))
13127 (while (equal (car tbl) '(:newline))
13128 (insert "\n")
13129 (setq tbl (cdr tbl)))))
13131 (setq tg (car e) c (cdr e))
13132 (if ingroup (push tg (car groups)))
13133 (setq tg (org-add-props tg nil 'face
13134 (org-get-todo-face tg)))
13135 (if (and (= cnt 0) (not ingroup)) (insert " "))
13136 (insert "[" c "] " tg (make-string
13137 (- fwidth 4 (length tg)) ?\ ))
13138 (when (= (setq cnt (1+ cnt)) ncol)
13139 (insert "\n")
13140 (if ingroup (insert " "))
13141 (setq cnt 0)))))
13142 (insert "\n")
13143 (goto-char (point-min))
13144 (if (not expert) (org-fit-window-to-buffer))
13145 (message "[a-z..]:Set [SPC]:clear")
13146 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13147 (cond
13148 ((or (= c ?\C-g)
13149 (and (= c ?q) (not (rassoc c fulltable))))
13150 (setq quit-flag t))
13151 ((= c ?\ ) nil)
13152 ((setq e (rassoc c fulltable) tg (car e))
13154 (t (setq quit-flag t)))))))
13156 (defun org-entry-is-todo-p ()
13157 (member (org-get-todo-state) org-not-done-keywords))
13159 (defun org-entry-is-done-p ()
13160 (member (org-get-todo-state) org-done-keywords))
13162 (defun org-get-todo-state ()
13163 "Return the TODO keyword of the current subtree."
13164 (save-excursion
13165 (org-back-to-heading t)
13166 (and (looking-at org-todo-line-regexp)
13167 (match-end 2)
13168 (match-string 2))))
13170 (defun org-at-date-range-p (&optional inactive-ok)
13171 "Non-nil if point is inside a date range.
13173 When optional argument INACTIVE-OK is non-nil, also consider
13174 inactive time ranges.
13176 When this function returns a non-nil value, match data is set
13177 according to `org-tr-regexp-both' or `org-tr-regexp', depending
13178 on INACTIVE-OK."
13179 (interactive)
13180 (save-excursion
13181 (catch 'exit
13182 (let ((pos (point)))
13183 (skip-chars-backward "^[<\r\n")
13184 (skip-chars-backward "<[")
13185 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13186 (>= (match-end 0) pos)
13187 (throw 'exit t))
13188 (skip-chars-backward "^<[\r\n")
13189 (skip-chars-backward "<[")
13190 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13191 (>= (match-end 0) pos)
13192 (throw 'exit t)))
13193 nil)))
13195 (defun org-get-repeat (&optional tagline)
13196 "Check if there is a deadline/schedule with repeater in this entry."
13197 (save-match-data
13198 (save-excursion
13199 (org-back-to-heading t)
13200 (and (re-search-forward (if tagline
13201 (concat tagline "\\s-*" org-repeat-re)
13202 org-repeat-re)
13203 (org-entry-end-position) t)
13204 (match-string-no-properties 1)))))
13206 (defvar org-last-changed-timestamp)
13207 (defvar org-last-inserted-timestamp)
13208 (defvar org-log-post-message)
13209 (defvar org-log-note-purpose)
13210 (defvar org-log-note-how nil)
13211 (defvar org-log-note-extra)
13212 (defun org-auto-repeat-maybe (done-word)
13213 "Check if the current headline contains a repeated deadline/schedule.
13214 If yes, set TODO state back to what it was and change the base date
13215 of repeating deadline/scheduled time stamps to new date.
13216 This function is run automatically after each state change to a DONE state."
13217 ;; last-state is dynamically scoped into this function
13218 (let* ((repeat (org-get-repeat))
13219 (aa (assoc org-last-state org-todo-kwd-alist))
13220 (interpret (nth 1 aa))
13221 (head (nth 2 aa))
13222 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13223 (msg "Entry repeats: ")
13224 (org-log-done nil)
13225 (org-todo-log-states nil)
13226 re type n what ts time to-state)
13227 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13228 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13229 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13230 org-todo-repeat-to-state))
13231 (unless (and to-state (member to-state org-todo-keywords-1))
13232 (setq to-state (if (eq interpret 'type) org-last-state head)))
13233 (org-todo to-state)
13234 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13235 (org-entry-put nil "LAST_REPEAT" (format-time-string
13236 (org-time-stamp-format t t))))
13237 (when org-log-repeat
13238 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13239 (memq 'org-add-log-note post-command-hook))
13240 ;; OK, we are already setup for some record
13241 (if (eq org-log-repeat 'note)
13242 ;; make sure we take a note, not only a time stamp
13243 (setq org-log-note-how 'note))
13244 ;; Set up for taking a record
13245 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13246 org-last-state
13247 'findpos org-log-repeat)))
13248 (org-back-to-heading t)
13249 (org-add-planning-info nil nil 'closed)
13250 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13251 org-deadline-time-regexp "\\)\\|\\("
13252 org-ts-regexp "\\)"))
13253 (while (re-search-forward
13254 re (save-excursion (outline-next-heading) (point)) t)
13255 (setq type (if (match-end 1) org-scheduled-string
13256 (if (match-end 3) org-deadline-string "Plain:"))
13257 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13258 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13259 (setq n (string-to-number (match-string 2 ts))
13260 what (match-string 3 ts))
13261 (if (equal what "w") (setq n (* n 7) what "d"))
13262 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13263 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13264 ;; Preparation, see if we need to modify the start date for the change
13265 (when (match-end 1)
13266 (setq time (save-match-data (org-time-string-to-time ts)))
13267 (cond
13268 ((equal (match-string 1 ts) ".")
13269 ;; Shift starting date to today
13270 (org-timestamp-change
13271 (- (org-today) (time-to-days time))
13272 'day))
13273 ((equal (match-string 1 ts) "+")
13274 (let ((nshiftmax 10) (nshift 0))
13275 (while (or (= nshift 0)
13276 (<= (time-to-days time)
13277 (time-to-days (current-time))))
13278 (when (= (incf nshift) nshiftmax)
13279 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13280 (user-error "Abort")))
13281 (org-timestamp-change n (cdr (assoc what whata)))
13282 (org-at-timestamp-p t)
13283 (setq ts (match-string 1))
13284 (setq time (save-match-data (org-time-string-to-time ts)))))
13285 (org-timestamp-change (- n) (cdr (assoc what whata)))
13286 ;; rematch, so that we have everything in place for the real shift
13287 (org-at-timestamp-p t)
13288 (setq ts (match-string 1))
13289 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13290 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13291 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13292 (setq org-log-post-message msg)
13293 (message "%s" msg))))
13295 (defun org-show-todo-tree (arg)
13296 "Make a compact tree which shows all headlines marked with TODO.
13297 The tree will show the lines where the regexp matches, and all higher
13298 headlines above the match.
13299 With a \\[universal-argument] prefix, prompt for a regexp to match.
13300 With a numeric prefix N, construct a sparse tree for the Nth element
13301 of `org-todo-keywords-1'."
13302 (interactive "P")
13303 (let ((case-fold-search nil)
13304 (kwd-re
13305 (cond ((null arg) org-not-done-regexp)
13306 ((equal arg '(4))
13307 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13308 (mapcar 'list org-todo-keywords-1))))
13309 (concat "\\("
13310 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13311 "\\)\\>")))
13312 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13313 (regexp-quote (nth (1- (prefix-numeric-value arg))
13314 org-todo-keywords-1)))
13315 (t (user-error "Invalid prefix argument: %s" arg)))))
13316 (message "%d TODO entries found"
13317 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13319 (defun org-deadline (arg &optional time)
13320 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13321 With one universal prefix argument, remove any deadline from the item.
13322 With two universal prefix arguments, prompt for a warning delay.
13323 With argument TIME, set the deadline at the corresponding date. TIME
13324 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13325 (interactive "P")
13326 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13327 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13328 'region-start-level 'region))
13329 org-loop-over-headlines-in-active-region)
13330 (org-map-entries
13331 `(org-deadline ',arg ,time)
13332 org-loop-over-headlines-in-active-region
13333 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13334 (let* ((old-date (org-entry-get nil "DEADLINE"))
13335 (old-date-time (if old-date (org-time-string-to-time old-date)))
13336 (repeater (and old-date
13337 (string-match
13338 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13339 old-date)
13340 (match-string 1 old-date))))
13341 (cond
13342 ((equal arg '(4))
13343 (when (and old-date org-log-redeadline)
13344 (org-add-log-setup 'deldeadline nil old-date 'findpos
13345 org-log-redeadline))
13346 (org-remove-timestamp-with-keyword org-deadline-string)
13347 (message "Item no longer has a deadline."))
13348 ((equal arg '(16))
13349 (save-excursion
13350 (org-back-to-heading t)
13351 (if (re-search-forward
13352 org-deadline-time-regexp
13353 (save-excursion (outline-next-heading) (point)) t)
13354 (let* ((rpl0 (match-string 1))
13355 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13356 (replace-match
13357 (concat org-deadline-string
13358 " <" rpl
13359 (format " -%dd"
13360 (abs
13361 (- (time-to-days
13362 (save-match-data
13363 (org-read-date nil t nil "Warn starting from" old-date-time)))
13364 (time-to-days old-date-time))))
13365 ">") t t))
13366 (user-error "No deadline information to update"))))
13368 (org-add-planning-info 'deadline time 'closed)
13369 (when (and old-date
13370 org-log-redeadline
13371 (not (equal old-date org-last-inserted-timestamp)))
13372 (org-add-log-setup
13373 'redeadline org-last-inserted-timestamp old-date 'findpos
13374 org-log-redeadline))
13375 (when repeater
13376 (save-excursion
13377 (org-back-to-heading t)
13378 (when (re-search-forward (concat org-deadline-string " "
13379 org-last-inserted-timestamp)
13380 (save-excursion
13381 (outline-next-heading) (point)) t)
13382 (goto-char (1- (match-end 0)))
13383 (insert " " repeater)
13384 (setq org-last-inserted-timestamp
13385 (concat (substring org-last-inserted-timestamp 0 -1)
13386 " " repeater
13387 (substring org-last-inserted-timestamp -1))))))
13388 (message "Deadline on %s" org-last-inserted-timestamp))))))
13390 (defun org-schedule (arg &optional time)
13391 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13392 With one universal prefix argument, remove any scheduling date from the item.
13393 With two universal prefix arguments, prompt for a delay cookie.
13394 With argument TIME, scheduled at the corresponding date. TIME can
13395 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13396 (interactive "P")
13397 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13398 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13399 'region-start-level 'region))
13400 org-loop-over-headlines-in-active-region)
13401 (org-map-entries
13402 `(org-schedule ',arg ,time)
13403 org-loop-over-headlines-in-active-region
13404 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13405 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13406 (old-date-time (if old-date (org-time-string-to-time old-date)))
13407 (repeater (and old-date
13408 (string-match
13409 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13410 old-date)
13411 (match-string 1 old-date))))
13412 (cond
13413 ((equal arg '(4))
13414 (progn
13415 (when (and old-date org-log-reschedule)
13416 (org-add-log-setup 'delschedule nil old-date 'findpos
13417 org-log-reschedule))
13418 (org-remove-timestamp-with-keyword org-scheduled-string)
13419 (message "Item is no longer scheduled.")))
13420 ((equal arg '(16))
13421 (save-excursion
13422 (org-back-to-heading t)
13423 (if (re-search-forward
13424 org-scheduled-time-regexp
13425 (save-excursion (outline-next-heading) (point)) t)
13426 (let* ((rpl0 (match-string 1))
13427 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13428 (replace-match
13429 (concat org-scheduled-string
13430 " <" rpl
13431 (format " -%dd"
13432 (abs
13433 (- (time-to-days
13434 (save-match-data
13435 (org-read-date nil t nil "Delay until" old-date-time)))
13436 (time-to-days old-date-time))))
13437 ">") t t))
13438 (user-error "No scheduled information to update"))))
13440 (org-add-planning-info 'scheduled time 'closed)
13441 (when (and old-date
13442 org-log-reschedule
13443 (not (equal old-date org-last-inserted-timestamp)))
13444 (org-add-log-setup
13445 'reschedule org-last-inserted-timestamp old-date 'findpos
13446 org-log-reschedule))
13447 (when repeater
13448 (save-excursion
13449 (org-back-to-heading t)
13450 (when (re-search-forward (concat org-scheduled-string " "
13451 org-last-inserted-timestamp)
13452 (save-excursion
13453 (outline-next-heading) (point)) t)
13454 (goto-char (1- (match-end 0)))
13455 (insert " " repeater)
13456 (setq org-last-inserted-timestamp
13457 (concat (substring org-last-inserted-timestamp 0 -1)
13458 " " repeater
13459 (substring org-last-inserted-timestamp -1))))))
13460 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13462 (defun org-get-scheduled-time (pom &optional inherit)
13463 "Get the scheduled time as a time tuple, of a format suitable
13464 for calling org-schedule with, or if there is no scheduling,
13465 returns nil."
13466 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13467 (when time
13468 (apply 'encode-time (org-parse-time-string time)))))
13470 (defun org-get-deadline-time (pom &optional inherit)
13471 "Get the deadline as a time tuple, of a format suitable for
13472 calling org-deadline with, or if there is no scheduling, returns
13473 nil."
13474 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13475 (when time
13476 (apply 'encode-time (org-parse-time-string time)))))
13478 (defun org-remove-timestamp-with-keyword (keyword)
13479 "Remove all time stamps with KEYWORD in the current entry."
13480 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13481 beg)
13482 (save-excursion
13483 (org-back-to-heading t)
13484 (setq beg (point))
13485 (outline-next-heading)
13486 (while (re-search-backward re beg t)
13487 (replace-match "")
13488 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13489 (equal (char-before) ?\ ))
13490 (backward-delete-char 1)
13491 (if (string-match "^[ \t]*$" (buffer-substring
13492 (point-at-bol) (point-at-eol)))
13493 (delete-region (point-at-bol)
13494 (min (point-max) (1+ (point-at-eol))))))))))
13496 (defvar org-time-was-given) ; dynamically scoped parameter
13497 (defvar org-end-time-was-given) ; dynamically scoped parameter
13499 (defun org-at-planning-p ()
13500 "Non-nil when point is on a planning info line."
13501 ;; This is as accurate and faster than `org-element-at-point' since
13502 ;; planning info location is fixed in the section.
13503 (org-with-wide-buffer
13504 (beginning-of-line)
13505 (and (org-looking-at-p org-planning-line-re)
13506 (eq (point)
13507 (ignore-errors
13508 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13509 (org-back-to-heading t)
13510 (org-with-limited-levels (org-back-to-heading t)))
13511 (line-beginning-position 2))))))
13513 (defun org-add-planning-info (what &optional time &rest remove)
13514 "Insert new timestamp with keyword in the planning line.
13515 WHAT indicates what kind of time stamp to add. It is a symbol
13516 among `closed', `deadline', `scheduled' and nil. TIME indicates
13517 the time to use. If none is given, the user is prompted for
13518 a date. REMOVE indicates what kind of entries to remove. An old
13519 WHAT entry will also be removed."
13520 (let (org-time-was-given org-end-time-was-given default-time default-input)
13521 (catch 'exit
13522 (when (and (memq what '(scheduled deadline))
13523 (or (not time)
13524 (and (stringp time)
13525 (string-match "^[-+]+[0-9]" time))))
13526 ;; Try to get a default date/time from existing timestamp
13527 (save-excursion
13528 (org-back-to-heading t)
13529 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13530 (when (re-search-forward (if (eq what 'scheduled)
13531 org-scheduled-time-regexp
13532 org-deadline-time-regexp)
13533 end t)
13534 (setq ts (match-string 1)
13535 default-time (apply 'encode-time (org-parse-time-string ts))
13536 default-input (and ts (org-get-compact-tod ts)))))))
13537 (when what
13538 (setq time
13539 (if (stringp time)
13540 ;; This is a string (relative or absolute), set
13541 ;; proper date.
13542 (apply #'encode-time
13543 (org-read-date-analyze
13544 time default-time (decode-time default-time)))
13545 ;; If necessary, get the time from the user
13546 (or time (org-read-date nil 'to-time nil nil
13547 default-time default-input)))))
13549 (org-with-wide-buffer
13550 (org-back-to-heading t)
13551 (forward-line)
13552 (unless (bolp) (insert "\n"))
13553 (cond ((org-looking-at-p org-planning-line-re)
13554 ;; Move to current indentation.
13555 (skip-chars-forward " \t")
13556 ;; Check if we have to remove something.
13557 (dolist (type (if what (cons what remove) remove))
13558 (save-excursion
13559 (when (re-search-forward
13560 (case type
13561 (closed org-closed-time-regexp)
13562 (deadline org-deadline-time-regexp)
13563 (scheduled org-scheduled-time-regexp)
13564 (otherwise
13565 (error "Invalid planning type: %s" type)))
13566 (line-end-position) t)
13567 ;; Delete until next keyword or end of line.
13568 (delete-region
13569 (match-beginning 0)
13570 (if (re-search-forward org-keyword-time-not-clock-regexp
13571 (line-end-position)
13573 (match-beginning 0)
13574 (line-end-position))))))
13575 ;; If there is nothing more to add and no more keyword
13576 ;; is left, remove the line completely.
13577 (if (and (org-looking-at-p "[ \t]*$") (not what))
13578 (delete-region (line-beginning-position)
13579 (line-beginning-position 2))
13580 ;; If we removed last keyword, do not leave trailing
13581 ;; white space at the end of line.
13582 (let ((p (point)))
13583 (save-excursion
13584 (end-of-line)
13585 (unless (= (skip-chars-backward " \t" p) 0)
13586 (delete-region (point) (line-end-position)))))))
13587 ((not what) (throw 'exit nil)) ; Nothing to do.
13588 (t (insert-before-markers "\n")
13589 (backward-char 1)
13590 (when org-adapt-indentation
13591 (org-indent-to-column (1+ (org-outline-level))))))
13592 (when what
13593 ;; Insert planning keyword.
13594 (insert (case what
13595 (closed org-closed-string)
13596 (deadline org-deadline-string)
13597 (scheduled org-scheduled-string)
13598 (otherwise (error "Invalid planning type: %s" what)))
13599 " ")
13600 ;; Insert associated timestamp.
13601 (let ((ts (org-insert-time-stamp
13602 time
13603 (or org-time-was-given
13604 (and (eq what 'closed) org-log-done-with-time))
13605 (eq what 'closed)
13606 nil nil (list org-end-time-was-given))))
13607 (unless (eolp) (insert " "))
13608 ts))))))
13610 (defvar org-log-note-marker (make-marker))
13611 (defvar org-log-note-purpose nil)
13612 (defvar org-log-note-state nil)
13613 (defvar org-log-note-previous-state nil)
13614 (defvar org-log-note-extra nil)
13615 (defvar org-log-note-window-configuration nil)
13616 (defvar org-log-note-return-to (make-marker))
13617 (defvar org-log-note-effective-time nil
13618 "Remembered current time so that dynamically scoped
13619 `org-extend-today-until' affects tha timestamps in state change
13620 log")
13622 (defvar org-log-post-message nil
13623 "Message to be displayed after a log note has been stored.
13624 The auto-repeater uses this.")
13626 (defun org-add-note ()
13627 "Add a note to the current entry.
13628 This is done in the same way as adding a state change note."
13629 (interactive)
13630 (org-add-log-setup 'note nil nil 'findpos nil))
13632 (defun org-log-beginning (&optional create)
13633 "Return expected start of log notes in current entry.
13634 When optional argument CREATE is non-nil, the function creates
13635 a drawer to store notes, if necessary. Returned position ignores
13636 narrowing."
13637 (org-with-wide-buffer
13638 (org-end-of-meta-data)
13639 (let ((end (if (org-at-heading-p) (point)
13640 (save-excursion (outline-next-heading) (point))))
13641 (drawer (org-log-into-drawer)))
13642 (cond
13643 (drawer
13644 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13645 (case-fold-search t))
13646 (catch 'exit
13647 ;; Try to find existing drawer.
13648 (while (re-search-forward regexp end t)
13649 (let ((element (org-element-at-point)))
13650 (when (eq (org-element-type element) 'drawer)
13651 (let ((cend (org-element-property :contents-end element)))
13652 (when (and (not org-log-states-order-reversed) cend)
13653 (goto-char cend)))
13654 (throw 'exit nil))))
13655 ;; No drawer found. Create one, if permitted.
13656 (when create
13657 (unless (bolp) (insert "\n"))
13658 (let ((beg (point)))
13659 (insert ":" drawer ":\n:END:\n")
13660 (org-indent-region beg (point)))
13661 (end-of-line -1)))))
13662 (org-log-state-notes-insert-after-drawers
13663 (while (and (looking-at org-drawer-regexp)
13664 (progn (goto-char (match-end 0))
13665 (re-search-forward org-property-end-re end t)))
13666 (forward-line)))))
13667 (if (bolp) (point) (line-beginning-position 2))))
13669 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13670 "Set up the post command hook to take a note.
13671 If this is about to TODO state change, the new state is expected in STATE.
13672 When FINDPOS is non-nil, find the correct position for the note in
13673 the current entry. If not, assume that it can be inserted at point.
13674 HOW is an indicator what kind of note should be created.
13675 EXTRA is additional text that will be inserted into the notes buffer."
13676 (org-with-wide-buffer
13677 (when findpos
13678 (goto-char (org-log-beginning t))
13679 (unless org-log-states-order-reversed
13680 (org-skip-over-state-notes)
13681 (skip-chars-backward " \t\n\r")
13682 (forward-line)))
13683 (move-marker org-log-note-marker (point))
13684 ;; Preserve position even if a property drawer is inserted in the
13685 ;; process.
13686 (set-marker-insertion-type org-log-note-marker t)
13687 (setq org-log-note-purpose purpose
13688 org-log-note-state state
13689 org-log-note-previous-state prev-state
13690 org-log-note-how how
13691 org-log-note-extra extra
13692 org-log-note-effective-time (org-current-effective-time))
13693 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13695 (defun org-skip-over-state-notes ()
13696 "Skip past the list of State notes in an entry."
13697 (when (ignore-errors (goto-char (org-in-item-p)))
13698 (let* ((struct (org-list-struct))
13699 (prevs (org-list-prevs-alist struct))
13700 (regexp
13701 (concat "[ \t]*- +"
13702 (replace-regexp-in-string
13703 " +" " +"
13704 (org-replace-escapes
13705 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13706 `(("%d" . ,org-ts-regexp-inactive)
13707 ("%D" . ,org-ts-regexp)
13708 ("%s" . "\"\\S-+\"")
13709 ("%S" . "\"\\S-+\"")
13710 ("%t" . ,org-ts-regexp-inactive)
13711 ("%T" . ,org-ts-regexp)
13712 ("%u" . ".*?")
13713 ("%U" . ".*?")))))))
13714 (while (org-looking-at-p regexp)
13715 (goto-char (or (org-list-get-next-item (point) struct prevs)
13716 (org-list-get-item-end (point) struct)))))))
13718 (defun org-add-log-note (&optional purpose)
13719 "Pop up a window for taking a note, and add this note later at point."
13720 (remove-hook 'post-command-hook 'org-add-log-note)
13721 (setq org-log-note-window-configuration (current-window-configuration))
13722 (delete-other-windows)
13723 (move-marker org-log-note-return-to (point))
13724 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13725 (goto-char org-log-note-marker)
13726 (org-switch-to-buffer-other-window "*Org Note*")
13727 (erase-buffer)
13728 (if (memq org-log-note-how '(time state))
13729 (let (current-prefix-arg) (org-store-log-note))
13730 (let ((org-inhibit-startup t)) (org-mode))
13731 (insert (format "# Insert note for %s.
13732 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13733 (cond
13734 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13735 ((eq org-log-note-purpose 'done) "closed todo item")
13736 ((eq org-log-note-purpose 'state)
13737 (format "state change from \"%s\" to \"%s\""
13738 (or org-log-note-previous-state "")
13739 (or org-log-note-state "")))
13740 ((eq org-log-note-purpose 'reschedule)
13741 "rescheduling")
13742 ((eq org-log-note-purpose 'delschedule)
13743 "no longer scheduled")
13744 ((eq org-log-note-purpose 'redeadline)
13745 "changing deadline")
13746 ((eq org-log-note-purpose 'deldeadline)
13747 "removing deadline")
13748 ((eq org-log-note-purpose 'refile)
13749 "refiling")
13750 ((eq org-log-note-purpose 'note)
13751 "this entry")
13752 (t (error "This should not happen")))))
13753 (if org-log-note-extra (insert org-log-note-extra))
13754 (org-set-local 'org-finish-function 'org-store-log-note)
13755 (run-hooks 'org-log-buffer-setup-hook)))
13757 (defvar org-note-abort nil) ; dynamically scoped
13758 (defun org-store-log-note ()
13759 "Finish taking a log note, and insert it to where it belongs."
13760 (let ((txt (buffer-string)))
13761 (kill-buffer (current-buffer))
13762 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13763 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13764 (setq txt (replace-match "" t t txt)))
13765 (if (string-match "\\s-+\\'" txt)
13766 (setq txt (replace-match "" t t txt)))
13767 (setq lines (org-split-string txt "\n"))
13768 (when (and note (string-match "\\S-" note))
13769 (setq note
13770 (org-replace-escapes
13771 note
13772 (list (cons "%u" (user-login-name))
13773 (cons "%U" user-full-name)
13774 (cons "%t" (format-time-string
13775 (org-time-stamp-format 'long 'inactive)
13776 org-log-note-effective-time))
13777 (cons "%T" (format-time-string
13778 (org-time-stamp-format 'long nil)
13779 org-log-note-effective-time))
13780 (cons "%d" (format-time-string
13781 (org-time-stamp-format nil 'inactive)
13782 org-log-note-effective-time))
13783 (cons "%D" (format-time-string
13784 (org-time-stamp-format nil nil)
13785 org-log-note-effective-time))
13786 (cons "%s" (cond
13787 ((not org-log-note-state) "")
13788 ((org-string-match-p org-ts-regexp
13789 org-log-note-state)
13790 (format "\"[%s]\""
13791 (substring org-log-note-state 1 -1)))
13792 (t (format "\"%s\"" org-log-note-state))))
13793 (cons "%S"
13794 (cond
13795 ((not org-log-note-previous-state) "")
13796 ((org-string-match-p org-ts-regexp
13797 org-log-note-previous-state)
13798 (format "\"[%s]\""
13799 (substring
13800 org-log-note-previous-state 1 -1)))
13801 (t (format "\"%s\""
13802 org-log-note-previous-state)))))))
13803 (when lines (setq note (concat note " \\\\")))
13804 (push note lines))
13805 (when (or current-prefix-arg org-note-abort)
13806 (when (org-log-into-drawer)
13807 (org-remove-empty-drawer-at org-log-note-marker))
13808 (setq lines nil))
13809 (when lines
13810 (with-current-buffer (marker-buffer org-log-note-marker)
13811 (org-with-wide-buffer
13812 (goto-char org-log-note-marker)
13813 (move-marker org-log-note-marker nil)
13814 ;; Make sure point is at the beginning of an empty line.
13815 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13816 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13817 ;; In an existing list, add a new item at the top level.
13818 ;; Otherwise, indent line like a regular one.
13819 (let ((itemp (org-in-item-p)))
13820 (if itemp
13821 (org-indent-line-to
13822 (let ((struct (save-excursion
13823 (goto-char itemp) (org-list-struct))))
13824 (org-list-get-ind (org-list-get-top-point struct) struct)))
13825 (org-indent-line)))
13826 (insert (org-list-bullet-string "-") (pop lines))
13827 (let ((ind (org-list-item-body-column (line-beginning-position))))
13828 (dolist (line lines)
13829 (insert "\n")
13830 (org-indent-line-to ind)
13831 (insert line)))
13832 (message "Note stored")
13833 (org-back-to-heading t)
13834 (org-cycle-hide-drawers 'children))
13835 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13836 ;; from within `org-add-log-note' because `buffer-undo-list'
13837 ;; is then modified outside of `org-with-remote-undo'.
13838 (when (eq this-command 'org-agenda-todo)
13839 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13840 ;; Don't add undo information when called from `org-agenda-todo'
13841 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13842 (set-window-configuration org-log-note-window-configuration)
13843 (with-current-buffer (marker-buffer org-log-note-return-to)
13844 (goto-char org-log-note-return-to))
13845 (move-marker org-log-note-return-to nil)
13846 (and org-log-post-message (message "%s" org-log-post-message))))
13848 (defun org-remove-empty-drawer-at (pos)
13849 "Remove an empty drawer at position POS.
13850 POS may also be a marker."
13851 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13852 (org-with-wide-buffer
13853 (goto-char pos)
13854 (let ((drawer (org-element-at-point)))
13855 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13856 (not (org-element-property :contents-begin drawer)))
13857 (delete-region (org-element-property :begin drawer)
13858 (progn (goto-char (org-element-property :end drawer))
13859 (skip-chars-backward " \r\t\n")
13860 (forward-line)
13861 (point))))))))
13863 (defvar org-ts-type nil)
13864 (defun org-sparse-tree (&optional arg type)
13865 "Create a sparse tree, prompt for the details.
13866 This command can create sparse trees. You first need to select the type
13867 of match used to create the tree:
13869 t Show all TODO entries.
13870 T Show entries with a specific TODO keyword.
13871 m Show entries selected by a tags/property match.
13872 p Enter a property name and its value (both with completion on existing
13873 names/values) and show entries with that property.
13874 r Show entries matching a regular expression (`/' can be used as well).
13875 b Show deadlines and scheduled items before a date.
13876 a Show deadlines and scheduled items after a date.
13877 d Show deadlines due within `org-deadline-warning-days'.
13878 D Show deadlines and scheduled items between a date range."
13879 (interactive "P")
13880 (setq type (or type org-sparse-tree-default-date-type))
13881 (setq org-ts-type type)
13882 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13883 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13884 [c]ycle through date types: %s"
13885 (case type
13886 (all "all timestamps")
13887 (scheduled "only scheduled")
13888 (deadline "only deadline")
13889 (active "only active timestamps")
13890 (inactive "only inactive timestamps")
13891 (closed "with a closed time-stamp")
13892 (otherwise "scheduled/deadline")))
13893 (let ((answer (read-char-exclusive)))
13894 (case answer
13896 (org-sparse-tree
13898 (cadr
13899 (memq type '(nil all scheduled deadline active inactive closed)))))
13900 (?d (call-interactively 'org-check-deadlines))
13901 (?b (call-interactively 'org-check-before-date))
13902 (?a (call-interactively 'org-check-after-date))
13903 (?D (call-interactively 'org-check-dates-range))
13904 (?t (call-interactively 'org-show-todo-tree))
13905 (?T (org-show-todo-tree '(4)))
13906 (?m (call-interactively 'org-match-sparse-tree))
13907 ((?p ?P)
13908 (let* ((kwd (org-icompleting-read
13909 "Property: " (mapcar 'list (org-buffer-property-keys))))
13910 (value (org-icompleting-read
13911 "Value: " (mapcar 'list (org-property-values kwd)))))
13912 (unless (string-match "\\`{.*}\\'" value)
13913 (setq value (concat "\"" value "\"")))
13914 (org-match-sparse-tree arg (concat kwd "=" value))))
13915 ((?r ?R ?/) (call-interactively 'org-occur))
13916 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13918 (defvar org-occur-highlights nil
13919 "List of overlays used for occur matches.")
13920 (make-variable-buffer-local 'org-occur-highlights)
13921 (defvar org-occur-parameters nil
13922 "Parameters of the active org-occur calls.
13923 This is a list, each call to org-occur pushes as cons cell,
13924 containing the regular expression and the callback, onto the list.
13925 The list can contain several entries if `org-occur' has been called
13926 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13927 will only contain one set of parameters. When the highlights are
13928 removed (for example with `C-c C-c', or with the next edit (depending
13929 on `org-remove-highlights-with-change'), this variable is emptied
13930 as well.")
13931 (make-variable-buffer-local 'org-occur-parameters)
13933 (defun org-occur (regexp &optional keep-previous callback)
13934 "Make a compact tree which shows all matches of REGEXP.
13936 The tree will show the lines where the regexp matches, and any other context
13937 defined in `org-show-context-detail', which see.
13939 When optional argument KEEP-PREVIOUS is non-nil, highlighting and exposing
13940 done by a previous call to `org-occur' will be kept, to allow stacking of
13941 calls to this command.
13943 Optional argument CALLBACK can be a function of no argument. In this case,
13944 it is called with point at the end of the match, match data being set
13945 accordingly. Current match is shown only if the return value is non-nil.
13946 The function must neither move point nor alter narrowing."
13947 (interactive "sRegexp: \nP")
13948 (when (equal regexp "")
13949 (user-error "Regexp cannot be empty"))
13950 (unless keep-previous
13951 (org-remove-occur-highlights nil nil t))
13952 (push (cons regexp callback) org-occur-parameters)
13953 (let ((cnt 0))
13954 (save-excursion
13955 (goto-char (point-min))
13956 (if (or (not keep-previous) ; do not want to keep
13957 (not org-occur-highlights)) ; no previous matches
13958 ;; hide everything
13959 (org-overview))
13960 (while (re-search-forward regexp nil t)
13961 (when (or (not callback)
13962 (save-match-data (funcall callback)))
13963 (setq cnt (1+ cnt))
13964 (when org-highlight-sparse-tree-matches
13965 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13966 (org-show-context 'occur-tree))))
13967 (when org-remove-highlights-with-change
13968 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13969 nil 'local))
13970 (unless org-sparse-tree-open-archived-trees
13971 (org-hide-archived-subtrees (point-min) (point-max)))
13972 (run-hooks 'org-occur-hook)
13973 (if (org-called-interactively-p 'interactive)
13974 (message "%d match(es) for regexp %s" cnt regexp))
13975 cnt))
13977 (defun org-occur-next-match (&optional n reset)
13978 "Function for `next-error-function' to find sparse tree matches.
13979 N is the number of matches to move, when negative move backwards.
13980 RESET is entirely ignored - this function always goes back to the
13981 starting point when no match is found."
13982 (let* ((limit (if (< n 0) (point-min) (point-max)))
13983 (search-func (if (< n 0)
13984 'previous-single-char-property-change
13985 'next-single-char-property-change))
13986 (n (abs n))
13987 (pos (point))
13989 (catch 'exit
13990 (while (setq p1 (funcall search-func (point) 'org-type))
13991 (when (equal p1 limit)
13992 (goto-char pos)
13993 (user-error "No more matches"))
13994 (when (equal (get-char-property p1 'org-type) 'org-occur)
13995 (setq n (1- n))
13996 (when (= n 0)
13997 (goto-char p1)
13998 (throw 'exit (point))))
13999 (goto-char p1))
14000 (goto-char p1)
14001 (user-error "No more matches"))))
14003 (defun org-show-context (&optional key)
14004 "Make sure point and context are visible.
14005 Optional argument KEY, when non-nil, is a symbol. See
14006 `org-show-context-detail' for allowed values and how much is to
14007 be shown."
14008 (org-show-set-visibility
14009 (cond ((symbolp org-show-context-detail) org-show-context-detail)
14010 ((cdr (assq key org-show-context-detail)))
14011 (t (cdr (assq 'default org-show-context-detail))))))
14013 (defun org-show-set-visibility (detail)
14014 "Set visibility around point according to DETAIL.
14015 DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
14016 `tree', `canonical' or t. See `org-show-context-detail' for more
14017 information."
14018 (unless (org-before-first-heading-p)
14019 ;; Show current heading and possibly its entry, following headline
14020 ;; or all children.
14021 (if (and (org-at-heading-p) (not (eq detail 'local)))
14022 (org-flag-heading nil)
14023 (org-show-entry)
14024 (org-with-limited-levels
14025 (case detail
14026 ((tree canonical t) (outline-show-children))
14027 ((nil minimal ancestors))
14028 (t (save-excursion
14029 (outline-next-heading)
14030 (org-flag-heading nil))))))
14031 ;; Show all siblings.
14032 (when (eq detail 'lineage) (org-show-siblings))
14033 ;; Show ancestors, possibly with their children.
14034 (when (memq detail '(ancestors lineage tree canonical t))
14035 (save-excursion
14036 (while (org-up-heading-safe)
14037 (org-flag-heading nil)
14038 (when (memq detail '(canonical t)) (org-show-entry))
14039 (when (memq detail '(tree canonical t)) (outline-show-children)))))))
14041 (defvar org-reveal-start-hook nil
14042 "Hook run before revealing a location.")
14044 (defun org-reveal (&optional siblings)
14045 "Show current entry, hierarchy above it, and the following headline.
14047 This can be used to show a consistent set of context around
14048 locations exposed with `org-show-context'.
14050 With optional argument SIBLINGS, on each level of the hierarchy all
14051 siblings are shown. This repairs the tree structure to what it would
14052 look like when opened with hierarchical calls to `org-cycle'.
14054 With double optional argument \\[universal-argument] \\[universal-argument], \
14055 go to the parent and show the
14056 entire tree."
14057 (interactive "P")
14058 (run-hooks 'org-reveal-start-hook)
14059 (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
14060 ((equal siblings '(16))
14061 (save-excursion
14062 (when (org-up-heading-safe)
14063 (org-show-subtree)
14064 (run-hook-with-args 'org-cycle-hook 'subtree))))
14065 (t (org-show-set-visibility 'lineage))))
14067 (defun org-highlight-new-match (beg end)
14068 "Highlight from BEG to END and mark the highlight is an occur headline."
14069 (let ((ov (make-overlay beg end)))
14070 (overlay-put ov 'face 'secondary-selection)
14071 (overlay-put ov 'org-type 'org-occur)
14072 (push ov org-occur-highlights)))
14074 (defun org-remove-occur-highlights (&optional beg end noremove)
14075 "Remove the occur highlights from the buffer.
14076 BEG and END are ignored. If NOREMOVE is nil, remove this function
14077 from the `before-change-functions' in the current buffer."
14078 (interactive)
14079 (unless org-inhibit-highlight-removal
14080 (mapc 'delete-overlay org-occur-highlights)
14081 (setq org-occur-highlights nil)
14082 (setq org-occur-parameters nil)
14083 (unless noremove
14084 (remove-hook 'before-change-functions
14085 'org-remove-occur-highlights 'local))))
14087 ;;;; Priorities
14089 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14090 "Regular expression matching the priority indicator.")
14092 (defvar org-remove-priority-next-time nil)
14094 (defun org-priority-up ()
14095 "Increase the priority of the current item."
14096 (interactive)
14097 (org-priority 'up))
14099 (defun org-priority-down ()
14100 "Decrease the priority of the current item."
14101 (interactive)
14102 (org-priority 'down))
14104 (defun org-priority (&optional action show)
14105 "Change the priority of an item.
14106 ACTION can be `set', `up', `down', or a character."
14107 (interactive "P")
14108 (if (equal action '(4))
14109 (org-show-priority)
14110 (unless org-enable-priority-commands
14111 (user-error "Priority commands are disabled"))
14112 (setq action (or action 'set))
14113 (let (current new news have remove)
14114 (save-excursion
14115 (org-back-to-heading t)
14116 (if (looking-at org-priority-regexp)
14117 (setq current (string-to-char (match-string 2))
14118 have t))
14119 (cond
14120 ((eq action 'remove)
14121 (setq remove t new ?\ ))
14122 ((or (eq action 'set)
14123 (if (featurep 'xemacs) (characterp action) (integerp action)))
14124 (if (not (eq action 'set))
14125 (setq new action)
14126 (message "Priority %c-%c, SPC to remove: "
14127 org-highest-priority org-lowest-priority)
14128 (save-match-data
14129 (setq new (read-char-exclusive))))
14130 (if (and (= (upcase org-highest-priority) org-highest-priority)
14131 (= (upcase org-lowest-priority) org-lowest-priority))
14132 (setq new (upcase new)))
14133 (cond ((equal new ?\ ) (setq remove t))
14134 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14135 (user-error "Priority must be between `%c' and `%c'"
14136 org-highest-priority org-lowest-priority))))
14137 ((eq action 'up)
14138 (setq new (if have
14139 (1- current) ; normal cycling
14140 ;; last priority was empty
14141 (if (eq last-command this-command)
14142 org-lowest-priority ; wrap around empty to lowest
14143 ;; default
14144 (if org-priority-start-cycle-with-default
14145 org-default-priority
14146 (1- org-default-priority))))))
14147 ((eq action 'down)
14148 (setq new (if have
14149 (1+ current) ; normal cycling
14150 ;; last priority was empty
14151 (if (eq last-command this-command)
14152 org-highest-priority ; wrap around empty to highest
14153 ;; default
14154 (if org-priority-start-cycle-with-default
14155 org-default-priority
14156 (1+ org-default-priority))))))
14157 (t (user-error "Invalid action")))
14158 (if (or (< (upcase new) org-highest-priority)
14159 (> (upcase new) org-lowest-priority))
14160 (if (and (memq action '(up down))
14161 (not have) (not (eq last-command this-command)))
14162 ;; `new' is from default priority
14163 (error
14164 "The default can not be set, see `org-default-priority' why")
14165 ;; normal cycling: `new' is beyond highest/lowest priority
14166 ;; and is wrapped around to the empty priority
14167 (setq remove t)))
14168 (setq news (format "%c" new))
14169 (if have
14170 (if remove
14171 (replace-match "" t t nil 1)
14172 (replace-match news t t nil 2))
14173 (if remove
14174 (user-error "No priority cookie found in line")
14175 (let ((case-fold-search nil))
14176 (looking-at org-todo-line-regexp))
14177 (if (match-end 2)
14178 (progn
14179 (goto-char (match-end 2))
14180 (insert " [#" news "]"))
14181 (goto-char (match-beginning 3))
14182 (insert "[#" news "] "))))
14183 (org-set-tags nil 'align))
14184 (if remove
14185 (message "Priority removed")
14186 (message "Priority of current item set to %s" news)))))
14188 (defun org-show-priority ()
14189 "Show the priority of the current item.
14190 This priority is composed of the main priority given with the [#A] cookies,
14191 and by additional input from the age of a schedules or deadline entry."
14192 (interactive)
14193 (let ((pri (if (eq major-mode 'org-agenda-mode)
14194 (org-get-at-bol 'priority)
14195 (save-excursion
14196 (save-match-data
14197 (beginning-of-line)
14198 (and (looking-at org-heading-regexp)
14199 (org-get-priority (match-string 0))))))))
14200 (message "Priority is %d" (if pri pri -1000))))
14202 (defun org-get-priority (s)
14203 "Find priority cookie and return priority."
14204 (save-match-data
14205 (if (functionp org-get-priority-function)
14206 (funcall org-get-priority-function)
14207 (if (not (string-match org-priority-regexp s))
14208 (* 1000 (- org-lowest-priority org-default-priority))
14209 (* 1000 (- org-lowest-priority
14210 (string-to-char (match-string 2 s))))))))
14212 ;;;; Tags
14214 (defvar org-agenda-archives-mode)
14215 (defvar org-map-continue-from nil
14216 "Position from where mapping should continue.
14217 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14219 (defvar org-scanner-tags nil
14220 "The current tag list while the tags scanner is running.")
14221 (defvar org-trust-scanner-tags nil
14222 "Should `org-get-tags-at' use the tags for the scanner.
14223 This is for internal dynamical scoping only.
14224 When this is non-nil, the function `org-get-tags-at' will return the value
14225 of `org-scanner-tags' instead of building the list by itself. This
14226 can lead to large speed-ups when the tags scanner is used in a file with
14227 many entries, and when the list of tags is retrieved, for example to
14228 obtain a list of properties. Building the tags list for each entry in such
14229 a file becomes an N^2 operation - but with this variable set, it scales
14230 as N.")
14232 (defun org-scan-tags (action matcher todo-only &optional start-level)
14233 "Scan headline tags with inheritance and produce output ACTION.
14235 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14236 or `agenda' to produce an entry list for an agenda view. It can also be
14237 a Lisp form or a function that should be called at each matched headline, in
14238 this case the return value is a list of all return values from these calls.
14240 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14241 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14242 only lines with a not-done TODO keyword are included in the output.
14243 This should be the same variable that was scoped into
14244 and set by `org-make-tags-matcher' when it constructed MATCHER.
14246 START-LEVEL can be a string with asterisks, reducing the scope to
14247 headlines matching this string."
14248 (require 'org-agenda)
14249 (let* ((re (concat "^"
14250 (if start-level
14251 ;; Get the correct level to match
14252 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14253 org-outline-regexp)
14254 " *\\(\\<\\("
14255 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14256 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14257 (props (list 'face 'default
14258 'done-face 'org-agenda-done
14259 'undone-face 'default
14260 'mouse-face 'highlight
14261 'org-not-done-regexp org-not-done-regexp
14262 'org-todo-regexp org-todo-regexp
14263 'org-complex-heading-regexp org-complex-heading-regexp
14264 'help-echo
14265 (format "mouse-2 or RET jump to org file %s"
14266 (abbreviate-file-name
14267 (or (buffer-file-name (buffer-base-buffer))
14268 (buffer-name (buffer-base-buffer)))))))
14269 (org-map-continue-from nil)
14270 lspos tags tags-list
14271 (tags-alist (list (cons 0 org-file-tags)))
14272 (llast 0) rtn rtn1 level category i txt
14273 todo marker entry priority
14274 ts-date ts-date-type ts-date-pair)
14275 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14276 (setq action (list 'lambda nil action)))
14277 (save-excursion
14278 (goto-char (point-min))
14279 (when (eq action 'sparse-tree)
14280 (org-overview)
14281 (org-remove-occur-highlights))
14282 (while (let (case-fold-search)
14283 (re-search-forward re nil t))
14284 (setq org-map-continue-from nil)
14285 (catch :skip
14286 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14287 tags (if (match-end 4) (org-match-string-no-properties 4)))
14288 (goto-char (setq lspos (match-beginning 0)))
14289 (setq level (org-reduced-level (org-outline-level))
14290 category (org-get-category))
14291 (when (eq action 'agenda)
14292 (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
14293 ts-date (car ts-date-pair)
14294 ts-date-type (cdr ts-date-pair)))
14295 (setq i llast llast level)
14296 ;; remove tag lists from same and sublevels
14297 (while (>= i level)
14298 (when (setq entry (assoc i tags-alist))
14299 (setq tags-alist (delete entry tags-alist)))
14300 (setq i (1- i)))
14301 ;; add the next tags
14302 (when tags
14303 (setq tags (org-split-string tags ":")
14304 tags-alist
14305 (cons (cons level tags) tags-alist)))
14306 ;; compile tags for current headline
14307 (setq tags-list
14308 (if org-use-tag-inheritance
14309 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14310 tags)
14311 org-scanner-tags tags-list)
14312 (when org-use-tag-inheritance
14313 (setcdr (car tags-alist)
14314 (mapcar (lambda (x)
14315 (setq x (copy-sequence x))
14316 (org-add-prop-inherited x))
14317 (cdar tags-alist))))
14318 (when (and tags org-use-tag-inheritance
14319 (or (not (eq t org-use-tag-inheritance))
14320 org-tags-exclude-from-inheritance))
14321 ;; selective inheritance, remove uninherited ones
14322 (setcdr (car tags-alist)
14323 (org-remove-uninherited-tags (cdar tags-alist))))
14324 (when (and
14326 ;; eval matcher only when the todo condition is OK
14327 (and (or (not todo-only) (member todo org-not-done-keywords))
14328 (let ((case-fold-search t) (org-trust-scanner-tags t))
14329 (eval matcher)))
14331 ;; Call the skipper, but return t if it does not skip,
14332 ;; so that the `and' form continues evaluating
14333 (progn
14334 (unless (eq action 'sparse-tree) (org-agenda-skip))
14337 ;; Check if timestamps are deselecting this entry
14338 (or (not todo-only)
14339 (and (member todo org-not-done-keywords)
14340 (or (not org-agenda-tags-todo-honor-ignore-options)
14341 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14343 ;; select this headline
14344 (cond
14345 ((eq action 'sparse-tree)
14346 (and org-highlight-sparse-tree-matches
14347 (org-get-heading) (match-end 0)
14348 (org-highlight-new-match
14349 (match-beginning 1) (match-end 1)))
14350 (org-show-context 'tags-tree))
14351 ((eq action 'agenda)
14352 (setq txt (org-agenda-format-item
14354 (concat
14355 (if (eq org-tags-match-list-sublevels 'indented)
14356 (make-string (1- level) ?.) "")
14357 (org-get-heading))
14358 (make-string level ?\s)
14359 category
14360 tags-list)
14361 priority (org-get-priority txt))
14362 (goto-char lspos)
14363 (setq marker (org-agenda-new-marker))
14364 (org-add-props txt props
14365 'org-marker marker 'org-hd-marker marker 'org-category category
14366 'todo-state todo
14367 'ts-date ts-date
14368 'priority priority
14369 'type (concat "tagsmatch" ts-date-type))
14370 (push txt rtn))
14371 ((functionp action)
14372 (setq org-map-continue-from nil)
14373 (save-excursion
14374 (setq rtn1 (funcall action))
14375 (push rtn1 rtn)))
14376 (t (user-error "Invalid action")))
14378 ;; if we are to skip sublevels, jump to end of subtree
14379 (unless org-tags-match-list-sublevels
14380 (org-end-of-subtree t)
14381 (backward-char 1))))
14382 ;; Get the correct position from where to continue
14383 (if org-map-continue-from
14384 (goto-char org-map-continue-from)
14385 (and (= (point) lspos) (end-of-line 1)))))
14386 (when (and (eq action 'sparse-tree)
14387 (not org-sparse-tree-open-archived-trees))
14388 (org-hide-archived-subtrees (point-min) (point-max)))
14389 (nreverse rtn)))
14391 (defun org-remove-uninherited-tags (tags)
14392 "Remove all tags that are not inherited from the list TAGS."
14393 (cond
14394 ((eq org-use-tag-inheritance t)
14395 (if org-tags-exclude-from-inheritance
14396 (org-delete-all org-tags-exclude-from-inheritance tags)
14397 tags))
14398 ((not org-use-tag-inheritance) nil)
14399 ((stringp org-use-tag-inheritance)
14400 (delq nil (mapcar
14401 (lambda (x)
14402 (if (and (string-match org-use-tag-inheritance x)
14403 (not (member x org-tags-exclude-from-inheritance)))
14404 x nil))
14405 tags)))
14406 ((listp org-use-tag-inheritance)
14407 (delq nil (mapcar
14408 (lambda (x)
14409 (if (member x org-use-tag-inheritance) x nil))
14410 tags)))))
14412 (defun org-match-sparse-tree (&optional todo-only match)
14413 "Create a sparse tree according to tags string MATCH.
14414 MATCH can contain positive and negative selection of tags, like
14415 \"+WORK+URGENT-WITHBOSS\".
14416 If optional argument TODO-ONLY is non-nil, only select lines that are
14417 also TODO lines."
14418 (interactive "P")
14419 (org-agenda-prepare-buffers (list (current-buffer)))
14420 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14422 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14424 (defvar org-cached-props nil)
14425 (defun org-cached-entry-get (pom property)
14426 (if (or (eq t org-use-property-inheritance)
14427 (and (stringp org-use-property-inheritance)
14428 (let ((case-fold-search t))
14429 (org-string-match-p org-use-property-inheritance property)))
14430 (and (listp org-use-property-inheritance)
14431 (member-ignore-case property org-use-property-inheritance)))
14432 ;; Caching is not possible, check it directly.
14433 (org-entry-get pom property 'inherit)
14434 ;; Get all properties, so we can do complicated checks easily.
14435 (cdr (assoc-string property
14436 (or org-cached-props
14437 (setq org-cached-props (org-entry-properties pom)))
14438 t))))
14440 (defun org-global-tags-completion-table (&optional files)
14441 "Return the list of all tags in all agenda buffer/files.
14442 Optional FILES argument is a list of files which can be used
14443 instead of the agenda files."
14444 (save-excursion
14445 (org-uniquify
14446 (delq nil
14447 (apply 'append
14448 (mapcar
14449 (lambda (file)
14450 (set-buffer (find-file-noselect file))
14451 (append (org-get-buffer-tags)
14452 (mapcar (lambda (x) (if (stringp (car-safe x))
14453 (list (car-safe x)) nil))
14454 org-tag-alist)))
14455 (if (and files (car files))
14456 files
14457 (org-agenda-files))))))))
14459 (defun org-make-tags-matcher (match)
14460 "Create the TAGS/TODO matcher form for the selection string MATCH.
14462 The variable `todo-only' is scoped dynamically into this function.
14463 It will be set to t if the matcher restricts matching to TODO entries,
14464 otherwise will not be touched.
14466 Returns a cons of the selection string MATCH and the constructed
14467 lisp form implementing the matcher. The matcher is to be evaluated
14468 at an Org entry, with point on the headline, and returns t if the
14469 entry matches the selection string MATCH. The returned lisp form
14470 references two variables with information about the entry, which
14471 must be bound around the form's evaluation: todo, the TODO keyword
14472 at the entry (or nil of none); and tags-list, the list of all tags
14473 at the entry including inherited ones. Additionally, the category
14474 of the entry (if any) must be specified as the text property
14475 `org-category' on the headline.
14477 See also `org-scan-tags'.
14479 (declare (special todo-only))
14480 (unless (boundp 'todo-only)
14481 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14482 (unless match
14483 ;; Get a new match request, with completion against the global
14484 ;; tags table and the local tags in current buffer
14485 (let ((org-last-tags-completion-table
14486 (org-uniquify
14487 (delq nil (append (org-get-buffer-tags)
14488 (org-global-tags-completion-table))))))
14489 (setq match (org-completing-read-no-i
14490 "Match: " 'org-tags-completion-function nil nil nil
14491 'org-tags-history))))
14493 ;; Parse the string and create a lisp form
14494 (let ((match0 match)
14495 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14496 minus tag mm
14497 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14498 orterms term orlist re-p str-p level-p level-op time-p
14499 prop-p pn pv po gv rest (start 0) (ss 0))
14500 ;; Expand group tags
14501 (setq match (org-tags-expand match))
14503 ;; Check if there is a TODO part of this match, which would be the
14504 ;; part after a "/". TO make sure that this slash is not part of
14505 ;; a property value to be matched against, we also check that there
14506 ;; is no " after that slash.
14507 ;; First, find the last slash
14508 (while (string-match "/+" match ss)
14509 (setq start (match-beginning 0) ss (match-end 0)))
14510 (if (and (string-match "/+" match start)
14511 (not (save-match-data (string-match "\"" match start))))
14512 ;; match contains also a todo-matching request
14513 (progn
14514 (setq tagsmatch (substring match 0 (match-beginning 0))
14515 todomatch (substring match (match-end 0)))
14516 (if (string-match "^!" todomatch)
14517 (setq todo-only t todomatch (substring todomatch 1)))
14518 (if (string-match "^\\s-*$" todomatch)
14519 (setq todomatch nil)))
14520 ;; only matching tags
14521 (setq tagsmatch match todomatch nil))
14523 ;; Make the tags matcher
14524 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14525 (setq tagsmatcher t)
14526 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14527 (while (setq term (pop orterms))
14528 (while (and (equal (substring term -1) "\\") orterms)
14529 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14530 (while (string-match re term)
14531 (setq rest (substring term (match-end 0))
14532 minus (and (match-end 1)
14533 (equal (match-string 1 term) "-"))
14534 tag (save-match-data (replace-regexp-in-string
14535 "\\\\-" "-"
14536 (match-string 2 term)))
14537 re-p (equal (string-to-char tag) ?{)
14538 level-p (match-end 4)
14539 prop-p (match-end 5)
14540 mm (cond
14541 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14542 (level-p
14543 (setq level-op (org-op-to-function (match-string 3 term)))
14544 `(,level-op level ,(string-to-number
14545 (match-string 4 term))))
14546 (prop-p
14547 (setq pn (match-string 5 term)
14548 po (match-string 6 term)
14549 pv (match-string 7 term)
14550 re-p (equal (string-to-char pv) ?{)
14551 str-p (equal (string-to-char pv) ?\")
14552 time-p (save-match-data
14553 (string-match "^\"[[<].*[]>]\"$" pv))
14554 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14555 (if time-p (setq pv (org-matcher-time pv)))
14556 (setq po (org-op-to-function po (if time-p 'time str-p)))
14557 (cond
14558 ((equal pn "CATEGORY")
14559 (setq gv '(get-text-property (point) 'org-category)))
14560 ((equal pn "TODO")
14561 (setq gv 'todo))
14563 (setq gv `(org-cached-entry-get nil ,pn))))
14564 (if re-p
14565 (if (eq po 'org<>)
14566 `(not (string-match ,pv (or ,gv "")))
14567 `(string-match ,pv (or ,gv "")))
14568 (if str-p
14569 `(,po (or ,gv "") ,pv)
14570 `(,po (string-to-number (or ,gv ""))
14571 ,(string-to-number pv) ))))
14572 (t `(member ,tag tags-list)))
14573 mm (if minus (list 'not mm) mm)
14574 term rest)
14575 (push mm tagsmatcher))
14576 (push (if (> (length tagsmatcher) 1)
14577 (cons 'and tagsmatcher)
14578 (car tagsmatcher))
14579 orlist)
14580 (setq tagsmatcher nil))
14581 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14582 (setq tagsmatcher
14583 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14584 ;; Make the todo matcher
14585 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14586 (setq todomatcher t)
14587 (setq orterms (org-split-string todomatch "|") orlist nil)
14588 (dolist (term orterms)
14589 (while (string-match re term)
14590 (setq minus (and (match-end 1)
14591 (equal (match-string 1 term) "-"))
14592 kwd (match-string 2 term)
14593 re-p (equal (string-to-char kwd) ?{)
14594 term (substring term (match-end 0))
14595 mm (if re-p
14596 `(string-match ,(substring kwd 1 -1) todo)
14597 (list 'equal 'todo kwd))
14598 mm (if minus (list 'not mm) mm))
14599 (push mm todomatcher))
14600 (push (if (> (length todomatcher) 1)
14601 (cons 'and todomatcher)
14602 (car todomatcher))
14603 orlist)
14604 (setq todomatcher nil))
14605 (setq todomatcher (if (> (length orlist) 1)
14606 (cons 'or orlist) (car orlist))))
14608 ;; Return the string and lisp forms of the matcher
14609 (setq matcher (if todomatcher
14610 (list 'and tagsmatcher todomatcher)
14611 tagsmatcher))
14612 (when todo-only
14613 (setq matcher (list 'and '(member todo org-not-done-keywords)
14614 matcher)))
14615 (cons match0 matcher)))
14617 (defun org-tags-expand (match &optional single-as-list downcased tags-already-expanded)
14618 "Expand group tags in MATCH.
14620 This replaces every group tag in MATCH with a regexp tag search.
14621 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14622 will be replaced like this:
14624 Work => {\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14625 +Work => +{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14626 -Work => -{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14628 Replacing by a regexp preserves the structure of the match.
14629 E.g., this expansion
14631 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14633 will match anything tagged with \"Lab\" and \"Home\", or tagged
14634 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14636 A group tag in MATCH can contain regular expressions of its own.
14637 For example, a group tag \"Proj\" defined as { Proj : {P@.+} }
14638 will be replaced like this:
14640 Proj => {\\<\\(?:Proj\\)\\>\\|P@.+}
14642 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14643 assumed to be a single group tag, and the function will return
14644 the list of tags in this group.
14646 When DOWNCASE is non-nil, expand downcased TAGS."
14647 (if org-group-tags
14648 (let* ((case-fold-search t)
14649 (stable org-mode-syntax-table)
14650 (taggroups (or org-tag-groups-alist-for-agenda org-tag-groups-alist))
14651 (taggroups (if downcased
14652 (mapcar (lambda (tg) (mapcar #'downcase tg))
14653 taggroups)
14654 taggroups))
14655 (taggroups-keys (mapcar #'car taggroups))
14656 (return-match (if downcased (downcase match) match))
14657 (count 0)
14658 (work-already-expanded tags-already-expanded)
14659 regexps-in-match tags-in-group regexp-in-group regexp-in-group-escaped)
14660 ;; @ and _ are allowed as word-components in tags.
14661 (modify-syntax-entry ?@ "w" stable)
14662 (modify-syntax-entry ?_ "w" stable)
14663 ;; Temporarily replace regexp-expressions in the match-expression.
14664 (while (string-match "{.+?}" return-match)
14665 (incf count)
14666 (push (match-string 0 return-match) regexps-in-match)
14667 (setq return-match (replace-match (format "<%d>" count) t nil return-match)))
14668 (while (and taggroups-keys
14669 (with-syntax-table stable
14670 (string-match
14671 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14672 (regexp-opt taggroups-keys) "\\>\\)")
14673 return-match)))
14674 (let* ((dir (match-string 1 return-match))
14675 (tag (match-string 2 return-match))
14676 (tag (if downcased (downcase tag) tag)))
14677 (unless (or (get-text-property 0 'grouptag (match-string 2 return-match))
14678 (member tag work-already-expanded))
14679 (setq tags-in-group (assoc tag taggroups))
14680 (push tag work-already-expanded)
14681 ;; Recursively expand each tag in the group, if the tag hasn't
14682 ;; already been expanded. Restore the match-data after all recursive calls.
14683 (save-match-data
14684 (let (tags-expanded)
14685 (dolist (x (cdr tags-in-group))
14686 (if (and (member x taggroups-keys)
14687 (not (member x work-already-expanded)))
14688 (setq tags-expanded
14689 (delete-dups
14690 (append
14691 (org-tags-expand x t downcased
14692 work-already-expanded)
14693 tags-expanded)))
14694 (setq tags-expanded
14695 (append (list x) tags-expanded)))
14696 (setq work-already-expanded
14697 (delete-dups
14698 (append tags-expanded
14699 work-already-expanded))))
14700 (setq tags-in-group
14701 (delete-dups (cons (car tags-in-group)
14702 tags-expanded)))))
14703 ;; Filter tag-regexps from tags.
14704 (setq regexp-in-group-escaped
14705 (delq nil (mapcar (lambda (x)
14706 (if (stringp x)
14707 (and (equal "{" (substring x 0 1))
14708 (equal "}" (substring x -1))
14711 tags-in-group))
14712 regexp-in-group
14713 (mapcar (lambda (x)
14714 (substring x 1 -1))
14715 regexp-in-group-escaped)
14716 tags-in-group
14717 (delq nil (mapcar (lambda (x)
14718 (if (stringp x)
14719 (and (not (equal "{" (substring x 0 1)))
14720 (not (equal "}" (substring x -1)))
14723 tags-in-group)))
14724 ;; If single-as-list, do no more in the while-loop.
14725 (if (not single-as-list)
14726 (progn
14727 (when regexp-in-group
14728 (setq regexp-in-group
14729 (concat "\\|"
14730 (mapconcat 'identity regexp-in-group
14731 "\\|"))))
14732 (setq tags-in-group
14733 (concat dir
14734 "{\\<"
14735 (regexp-opt tags-in-group)
14736 "\\>"
14737 regexp-in-group
14738 "}"))
14739 (when (stringp tags-in-group)
14740 (org-add-props tags-in-group '(grouptag t)))
14741 (setq return-match
14742 (replace-match tags-in-group t t return-match)))
14743 (setq tags-in-group
14744 (append regexp-in-group-escaped tags-in-group))))
14745 (setq taggroups-keys (delete tag taggroups-keys))))
14746 ;; Add the regular expressions back into the match-expression again.
14747 (while regexps-in-match
14748 (setq return-match (replace-regexp-in-string (format "<%d>" count)
14749 (pop regexps-in-match)
14750 return-match t t))
14751 (decf count))
14752 (if single-as-list
14753 (if tags-in-group tags-in-group (list return-match))
14754 return-match))
14755 (if single-as-list
14756 (list (if downcased (downcase match) match))
14757 match)))
14759 (defun org-op-to-function (op &optional stringp)
14760 "Turn an operator into the appropriate function."
14761 (setq op
14762 (cond
14763 ((equal op "<" ) '(< string< org-time<))
14764 ((equal op ">" ) '(> org-string> org-time>))
14765 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14766 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14767 ((member op '("=" "==")) '(= string= org-time=))
14768 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14769 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14771 (defun org<> (a b) (not (= a b)))
14772 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14773 (defun org-string>= (a b) (not (string< a b)))
14774 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14775 (defun org-string<> (a b) (not (string= a b)))
14776 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14777 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14778 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14779 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14780 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14781 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14782 (defun org-2ft (s)
14783 "Convert S to a floating point time.
14784 If S is already a number, just return it. If it is a string, parse
14785 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14786 (cond
14787 ((numberp s) s)
14788 ((stringp s)
14789 (condition-case nil
14790 (float-time (apply 'encode-time (org-parse-time-string s)))
14791 (error 0.)))
14792 (t 0.)))
14794 (defun org-time-today ()
14795 "Time in seconds today at 0:00.
14796 Returns the float number of seconds since the beginning of the
14797 epoch to the beginning of today (00:00)."
14798 (float-time (apply 'encode-time
14799 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14801 (defun org-matcher-time (s)
14802 "Interpret a time comparison value."
14803 (save-match-data
14804 (cond
14805 ((string= s "<now>") (float-time))
14806 ((string= s "<today>") (org-time-today))
14807 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14808 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14809 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14810 (+ (org-time-today)
14811 (* (string-to-number (match-string 1 s))
14812 (cdr (assoc (match-string 2 s)
14813 '(("d" . 86400.0) ("w" . 604800.0)
14814 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14815 (t (org-2ft s)))))
14817 (defun org-match-any-p (re list)
14818 "Does re match any element of list?"
14819 (setq list (mapcar (lambda (x) (string-match re x)) list))
14820 (delq nil list))
14822 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14823 (defvar org-tags-overlay (make-overlay 1 1))
14824 (org-detach-overlay org-tags-overlay)
14826 (defun org-get-local-tags-at (&optional pos)
14827 "Get a list of tags defined in the current headline."
14828 (org-get-tags-at pos 'local))
14830 (defun org-get-local-tags ()
14831 "Get a list of tags defined in the current headline."
14832 (org-get-tags-at nil 'local))
14834 (defun org-get-tags-at (&optional pos local)
14835 "Get a list of all headline tags applicable at POS.
14836 POS defaults to point. If tags are inherited, the list contains
14837 the targets in the same sequence as the headlines appear, i.e.
14838 the tags of the current headline come last.
14839 When LOCAL is non-nil, only return tags from the current headline,
14840 ignore inherited ones."
14841 (interactive)
14842 (if (and org-trust-scanner-tags
14843 (or (not pos) (equal pos (point)))
14844 (not local))
14845 org-scanner-tags
14846 (let (tags ltags lastpos parent)
14847 (save-excursion
14848 (save-restriction
14849 (widen)
14850 (goto-char (or pos (point)))
14851 (save-match-data
14852 (catch 'done
14853 (condition-case nil
14854 (progn
14855 (org-back-to-heading t)
14856 (while (not (equal lastpos (point)))
14857 (setq lastpos (point))
14858 (when (looking-at
14859 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14860 (setq ltags (org-split-string
14861 (org-match-string-no-properties 1) ":"))
14862 (when parent
14863 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14864 (setq tags (append
14865 (if parent
14866 (org-remove-uninherited-tags ltags)
14867 ltags)
14868 tags)))
14869 (or org-use-tag-inheritance (throw 'done t))
14870 (if local (throw 'done t))
14871 (or (org-up-heading-safe) (error nil))
14872 (setq parent t)))
14873 (error nil)))))
14874 (if local
14875 tags
14876 (reverse (delete-dups
14877 (reverse (append
14878 (org-remove-uninherited-tags
14879 org-file-tags)
14880 tags)))))))))
14882 (defun org-add-prop-inherited (s)
14883 (add-text-properties 0 (length s) '(inherited t) s)
14886 (defun org-toggle-tag (tag &optional onoff)
14887 "Toggle the tag TAG for the current line.
14888 If ONOFF is `on' or `off', don't toggle but set to this state."
14889 (let (res current)
14890 (save-excursion
14891 (org-back-to-heading t)
14892 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14893 (point-at-eol) t)
14894 (progn
14895 (setq current (match-string 1))
14896 (replace-match ""))
14897 (setq current ""))
14898 (setq current (nreverse (org-split-string current ":")))
14899 (cond
14900 ((eq onoff 'on)
14901 (setq res t)
14902 (or (member tag current) (push tag current)))
14903 ((eq onoff 'off)
14904 (or (not (member tag current)) (setq current (delete tag current))))
14905 (t (if (member tag current)
14906 (setq current (delete tag current))
14907 (setq res t)
14908 (push tag current))))
14909 (end-of-line 1)
14910 (if current
14911 (progn
14912 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14913 (org-set-tags nil t))
14914 (delete-horizontal-space))
14915 (run-hooks 'org-after-tags-change-hook))
14916 res))
14918 (defun org-align-tags-here (to-col)
14919 ;; Assumes that this is a headline
14920 "Align tags on the current headline to TO-COL."
14921 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14922 (beginning-of-line 1)
14923 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14924 (< pos (match-beginning 2)))
14925 (progn
14926 (setq tags-l (- (match-end 2) (match-beginning 2)))
14927 (goto-char (match-beginning 1))
14928 (insert " ")
14929 (delete-region (point) (1+ (match-beginning 2)))
14930 (setq ncol (max (current-column)
14931 (1+ col)
14932 (if (> to-col 0)
14933 to-col
14934 (- (abs to-col) tags-l))))
14935 (setq p (point))
14936 (insert (make-string (- ncol (current-column)) ?\ ))
14937 (setq ncol (current-column))
14938 (when indent-tabs-mode (tabify p (point-at-eol)))
14939 (org-move-to-column (min ncol col)))
14940 (goto-char pos))))
14942 (defun org-set-tags-command (&optional arg just-align)
14943 "Call the set-tags command for the current entry."
14944 (interactive "P")
14945 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14946 (org-set-tags arg just-align)
14947 (save-excursion
14948 (unless (and (org-region-active-p)
14949 org-loop-over-headlines-in-active-region)
14950 (org-back-to-heading t))
14951 (org-set-tags arg just-align))))
14953 (defun org-set-tags-to (data)
14954 "Set the tags of the current entry to DATA, replacing the current tags.
14955 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14956 If DATA is nil or the empty string, any tags will be removed."
14957 (interactive "sTags: ")
14958 (setq data
14959 (cond
14960 ((eq data nil) "")
14961 ((equal data "") "")
14962 ((stringp data)
14963 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14964 ":"))
14965 ((listp data)
14966 (concat ":" (mapconcat 'identity data ":") ":"))))
14967 (when data
14968 (save-excursion
14969 (org-back-to-heading t)
14970 (when (looking-at org-complex-heading-regexp)
14971 (if (match-end 5)
14972 (progn
14973 (goto-char (match-beginning 5))
14974 (insert data)
14975 (delete-region (point) (point-at-eol))
14976 (org-set-tags nil 'align))
14977 (goto-char (point-at-eol))
14978 (insert " " data)
14979 (org-set-tags nil 'align)))
14980 (beginning-of-line 1)
14981 (if (looking-at ".*?\\([ \t]+\\)$")
14982 (delete-region (match-beginning 1) (match-end 1))))))
14984 (defun org-align-all-tags ()
14985 "Align the tags in all headings."
14986 (interactive)
14987 (save-excursion
14988 (or (ignore-errors (org-back-to-heading t))
14989 (outline-next-heading))
14990 (if (org-at-heading-p)
14991 (org-set-tags t)
14992 (message "No headings"))))
14994 (defvar org-indent-indentation-per-level)
14995 (defun org-set-tags (&optional arg just-align)
14996 "Set the tags for the current headline.
14997 With prefix ARG, realign all tags in headings in the current buffer.
14998 When JUST-ALIGN is non-nil, only align tags."
14999 (interactive "P")
15000 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
15001 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
15002 'region-start-level
15003 'region))
15004 org-loop-over-headlines-in-active-region)
15005 (org-map-entries
15006 ;; We don't use ARG and JUST-ALIGN here because these args
15007 ;; are not useful when looping over headlines.
15008 #'org-set-tags
15009 org-loop-over-headlines-in-active-region
15011 '(when (outline-invisible-p) (org-end-of-subtree nil t))))
15012 (let ((org-setting-tags t))
15013 (if arg
15014 (save-excursion
15015 (goto-char (point-min))
15016 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
15017 (while (re-search-forward org-outline-regexp-bol nil t)
15018 (org-set-tags nil t)
15019 (end-of-line)))
15020 (message "All tags realigned to column %d" org-tags-column))
15021 (let* ((current (org-get-tags-string))
15022 (col (current-column))
15023 (tags
15024 (if just-align current
15025 ;; Get a new set of tags from the user.
15026 (save-excursion
15027 (let* ((seen)
15028 (table
15029 (setq
15030 org-last-tags-completion-table
15031 ;; Uniquify tags in alists, yet preserve
15032 ;; structure (i.e., keywords).
15033 (delq nil
15034 (mapcar
15035 (lambda (pair)
15036 (let ((head (car pair)))
15037 (cond ((symbolp head) pair)
15038 ((member head seen) nil)
15039 (t (push head seen)
15040 pair))))
15041 (append
15042 org-tag-persistent-alist
15043 (or org-tag-alist (org-get-buffer-tags))
15044 (and
15045 org-complete-tags-always-offer-all-agenda-tags
15046 (org-global-tags-completion-table
15047 (org-agenda-files))))))))
15048 (current-tags (org-split-string current ":"))
15049 (inherited-tags
15050 (nreverse (nthcdr (length current-tags)
15051 (nreverse (org-get-tags-at))))))
15052 (replace-regexp-in-string
15053 "\\([-+&]+\\|,\\)"
15055 (if (or (eq t org-use-fast-tag-selection)
15056 (and org-use-fast-tag-selection
15057 (delq nil (mapcar #'cdr table))))
15058 (org-fast-tag-selection
15059 current-tags inherited-tags table
15060 (and org-fast-tag-selection-include-todo
15061 org-todo-key-alist))
15062 (let ((org-add-colon-after-tag-completion
15063 (< 1 (length table))))
15064 (org-trim
15065 (completing-read
15066 "Tags: "
15067 #'org-tags-completion-function
15068 nil nil current 'org-tags-history))))))))))
15070 (when org-tags-sort-function
15071 (setq tags
15072 (mapconcat
15073 #'identity
15074 (sort (org-split-string tags (org-re "[^[:alnum:]_@#%]+"))
15075 org-tags-sort-function)
15076 ":")))
15078 (if (not (org-string-nw-p tags)) (setq tags "")
15079 (unless (string-match ":\\'" tags) (setq tags (concat tags ":")))
15080 (unless (string-match "\\`:" tags) (setq tags (concat ":" tags))))
15082 ;; Insert new tags at the correct column
15083 (beginning-of-line)
15084 (let ((level (if (looking-at org-outline-regexp)
15085 (- (match-end 0) (point) 1)
15086 1)))
15087 (cond
15088 ((and (equal current "") (equal tags "")))
15089 ((re-search-forward
15090 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
15091 (line-end-position)
15093 (if (equal tags "") (replace-match "" t t)
15094 (goto-char (match-beginning 0))
15095 (let* ((c0 (current-column))
15096 ;; Compute offset for the case of org-indent-mode
15097 ;; active.
15098 (di (if (org-bound-and-true-p org-indent-mode)
15099 (* (1- org-indent-indentation-per-level)
15100 (1- level))
15102 (p0 (if (eq (char-before) ?*) (1+ (point)) (point)))
15103 (tc (+ org-tags-column
15104 (if (> org-tags-column 0) (- di) di)))
15105 (c1 (max (1+ c0)
15106 (if (> tc 0) tc
15107 (- (- tc) (string-width tags)))))
15108 (rpl (concat (make-string (max 0 (- c1 c0)) ?\s) tags)))
15109 (replace-match rpl t t)
15110 (when (and (not (featurep 'xemacs)) indent-tabs-mode)
15111 (tabify p0 (point))))))
15112 (t (error "Tags alignment failed"))))
15113 (org-move-to-column col))
15114 (unless just-align (run-hooks 'org-after-tags-change-hook))))))
15116 (defun org-change-tag-in-region (beg end tag off)
15117 "Add or remove TAG for each entry in the region.
15118 This works in the agenda, and also in an org-mode buffer."
15119 (interactive
15120 (list (region-beginning) (region-end)
15121 (let ((org-last-tags-completion-table
15122 (if (derived-mode-p 'org-mode)
15123 (org-uniquify
15124 (delq nil (append (org-get-buffer-tags)
15125 (org-global-tags-completion-table))))
15126 (org-global-tags-completion-table))))
15127 (org-icompleting-read
15128 "Tag: " 'org-tags-completion-function nil nil nil
15129 'org-tags-history))
15130 (progn
15131 (message "[s]et or [r]emove? ")
15132 (equal (read-char-exclusive) ?r))))
15133 (if (fboundp 'deactivate-mark) (deactivate-mark))
15134 (let ((agendap (equal major-mode 'org-agenda-mode))
15135 l1 l2 m buf pos newhead (cnt 0))
15136 (goto-char end)
15137 (setq l2 (1- (org-current-line)))
15138 (goto-char beg)
15139 (setq l1 (org-current-line))
15140 (loop for l from l1 to l2 do
15141 (org-goto-line l)
15142 (setq m (get-text-property (point) 'org-hd-marker))
15143 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
15144 (and agendap m))
15145 (setq buf (if agendap (marker-buffer m) (current-buffer))
15146 pos (if agendap m (point)))
15147 (with-current-buffer buf
15148 (save-excursion
15149 (save-restriction
15150 (goto-char pos)
15151 (setq cnt (1+ cnt))
15152 (org-toggle-tag tag (if off 'off 'on))
15153 (setq newhead (org-get-heading)))))
15154 (and agendap (org-agenda-change-all-lines newhead m))))
15155 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
15157 (defun org-tags-completion-function (string predicate &optional flag)
15158 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
15159 (confirm (lambda (x) (stringp (car x)))))
15160 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
15161 (setq s1 (match-string 1 string)
15162 s2 (match-string 2 string))
15163 (setq s1 "" s2 string))
15164 (cond
15165 ((eq flag nil)
15166 ;; try completion
15167 (setq rtn (try-completion s2 ctable confirm))
15168 (if (stringp rtn)
15169 (setq rtn
15170 (concat s1 s2 (substring rtn (length s2))
15171 (if (and org-add-colon-after-tag-completion
15172 (assoc rtn ctable))
15173 ":" ""))))
15174 rtn)
15175 ((eq flag t)
15176 ;; all-completions
15177 (all-completions s2 ctable confirm))
15178 ((eq flag 'lambda)
15179 ;; exact match?
15180 (assoc s2 ctable)))))
15182 (defun org-fast-tag-insert (kwd tags face &optional end)
15183 "Insert KDW, and the TAGS, the latter with face FACE.
15184 Also insert END."
15185 (insert (format "%-12s" (concat kwd ":"))
15186 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15187 (or end "")))
15189 (defun org-fast-tag-show-exit (flag)
15190 (save-excursion
15191 (org-goto-line 3)
15192 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15193 (replace-match ""))
15194 (when flag
15195 (end-of-line 1)
15196 (org-move-to-column (- (window-width) 19) t)
15197 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15199 (defun org-set-current-tags-overlay (current prefix)
15200 "Add an overlay to CURRENT tag with PREFIX."
15201 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15202 (if (featurep 'xemacs)
15203 (org-overlay-display org-tags-overlay (concat prefix s)
15204 'secondary-selection)
15205 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15206 (org-overlay-display org-tags-overlay (concat prefix s)))))
15208 (defvar org-last-tag-selection-key nil)
15209 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15210 "Fast tag selection with single keys.
15211 CURRENT is the current list of tags in the headline, INHERITED is the
15212 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15213 possibly with grouping information. TODO-TABLE is a similar table with
15214 TODO keywords, should these have keys assigned to them.
15215 If the keys are nil, a-z are automatically assigned.
15216 Returns the new tags string, or nil to not change the current settings."
15217 (let* ((fulltable (append table todo-table))
15218 (maxlen (apply 'max (mapcar
15219 (lambda (x)
15220 (if (stringp (car x)) (string-width (car x)) 0))
15221 fulltable)))
15222 (buf (current-buffer))
15223 (expert (eq org-fast-tag-selection-single-key 'expert))
15224 (buffer-tags nil)
15225 (fwidth (+ maxlen 3 1 3))
15226 (ncol (/ (- (window-width) 4) fwidth))
15227 (i-face 'org-done)
15228 (c-face 'org-todo)
15229 tg cnt e c char c1 c2 ntable tbl rtn
15230 ov-start ov-end ov-prefix
15231 (exit-after-next org-fast-tag-selection-single-key)
15232 (done-keywords org-done-keywords)
15233 groups ingroup intaggroup)
15234 (save-excursion
15235 (beginning-of-line 1)
15236 (if (looking-at
15237 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15238 (setq ov-start (match-beginning 1)
15239 ov-end (match-end 1)
15240 ov-prefix "")
15241 (setq ov-start (1- (point-at-eol))
15242 ov-end (1+ ov-start))
15243 (skip-chars-forward "^\n\r")
15244 (setq ov-prefix
15245 (concat
15246 (buffer-substring (1- (point)) (point))
15247 (if (> (current-column) org-tags-column)
15249 (make-string (- org-tags-column (current-column)) ?\ ))))))
15250 (move-overlay org-tags-overlay ov-start ov-end)
15251 (save-window-excursion
15252 (if expert
15253 (set-buffer (get-buffer-create " *Org tags*"))
15254 (delete-other-windows)
15255 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15256 (org-switch-to-buffer-other-window " *Org tags*"))
15257 (erase-buffer)
15258 (org-set-local 'org-done-keywords done-keywords)
15259 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15260 (org-fast-tag-insert "Current" current c-face "\n\n")
15261 (org-fast-tag-show-exit exit-after-next)
15262 (org-set-current-tags-overlay current ov-prefix)
15263 (setq tbl fulltable char ?a cnt 0)
15264 (while (setq e (pop tbl))
15265 (cond
15266 ((eq (car e) :startgroup)
15267 (push '() groups) (setq ingroup t)
15268 (unless (zerop cnt)
15269 (setq cnt 0)
15270 (insert "\n"))
15271 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15272 ((eq (car e) :endgroup)
15273 (setq ingroup nil cnt 0)
15274 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15275 ((eq (car e) :startgrouptag)
15276 (setq intaggroup t)
15277 (unless (zerop cnt)
15278 (setq cnt 0)
15279 (insert "\n"))
15280 (insert "[ "))
15281 ((eq (car e) :endgrouptag)
15282 (setq intaggroup nil cnt 0)
15283 (insert "]\n"))
15284 ((equal e '(:newline))
15285 (unless (zerop cnt)
15286 (setq cnt 0)
15287 (insert "\n")
15288 (setq e (car tbl))
15289 (while (equal (car tbl) '(:newline))
15290 (insert "\n")
15291 (setq tbl (cdr tbl)))))
15292 ((equal e '(:grouptags)) (insert " : "))
15294 (setq tg (copy-sequence (car e)) c2 nil)
15295 (if (cdr e)
15296 (setq c (cdr e))
15297 ;; automatically assign a character.
15298 (setq c1 (string-to-char
15299 (downcase (substring
15300 tg (if (= (string-to-char tg) ?@) 1 0)))))
15301 (if (or (rassoc c1 ntable) (rassoc c1 table))
15302 (while (or (rassoc char ntable) (rassoc char table))
15303 (setq char (1+ char)))
15304 (setq c2 c1))
15305 (setq c (or c2 char)))
15306 (when ingroup (push tg (car groups)))
15307 (setq tg (org-add-props tg nil 'face
15308 (cond
15309 ((not (assoc tg table))
15310 (org-get-todo-face tg))
15311 ((member tg current) c-face)
15312 ((member tg inherited) i-face))))
15313 (when (equal (caar tbl) :grouptags)
15314 (org-add-props tg nil 'face 'org-tag-group))
15315 (when (and (zerop cnt) (not ingroup) (not intaggroup)) (insert " "))
15316 (insert "[" c "] " tg (make-string
15317 (- fwidth 4 (length tg)) ?\ ))
15318 (push (cons tg c) ntable)
15319 (when (= (incf cnt) ncol)
15320 (insert "\n")
15321 (when (or ingroup intaggroup) (insert " "))
15322 (setq cnt 0)))))
15323 (setq ntable (nreverse ntable))
15324 (insert "\n")
15325 (goto-char (point-min))
15326 (unless expert (org-fit-window-to-buffer))
15327 (setq rtn
15328 (catch 'exit
15329 (while t
15330 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15331 (if (not groups) "no " "")
15332 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15333 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15334 (setq org-last-tag-selection-key c)
15335 (cond
15336 ((= c ?\r) (throw 'exit t))
15337 ((= c ?!)
15338 (setq groups (not groups))
15339 (goto-char (point-min))
15340 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15341 ((= c ?\C-c)
15342 (if (not expert)
15343 (org-fast-tag-show-exit
15344 (setq exit-after-next (not exit-after-next)))
15345 (setq expert nil)
15346 (delete-other-windows)
15347 (set-window-buffer (split-window-vertically) " *Org tags*")
15348 (org-switch-to-buffer-other-window " *Org tags*")
15349 (org-fit-window-to-buffer)))
15350 ((or (= c ?\C-g)
15351 (and (= c ?q) (not (rassoc c ntable))))
15352 (org-detach-overlay org-tags-overlay)
15353 (setq quit-flag t))
15354 ((= c ?\ )
15355 (setq current nil)
15356 (when exit-after-next (setq exit-after-next 'now)))
15357 ((= c ?\t)
15358 (condition-case nil
15359 (setq tg (org-icompleting-read
15360 "Tag: "
15361 (or buffer-tags
15362 (with-current-buffer buf
15363 (setq buffer-tags
15364 (org-get-buffer-tags))))))
15365 (quit (setq tg "")))
15366 (when (string-match "\\S-" tg)
15367 (add-to-list 'buffer-tags (list tg))
15368 (if (member tg current)
15369 (setq current (delete tg current))
15370 (push tg current)))
15371 (when exit-after-next (setq exit-after-next 'now)))
15372 ((setq e (rassoc c todo-table) tg (car e))
15373 (with-current-buffer buf
15374 (save-excursion (org-todo tg)))
15375 (when exit-after-next (setq exit-after-next 'now)))
15376 ((setq e (rassoc c ntable) tg (car e))
15377 (if (member tg current)
15378 (setq current (delete tg current))
15379 (loop for g in groups do
15380 (when (member tg g)
15381 (dolist (x g) (setq current (delete x current)))))
15382 (push tg current))
15383 (when exit-after-next (setq exit-after-next 'now))))
15385 ;; Create a sorted list
15386 (setq current
15387 (sort current
15388 (lambda (a b)
15389 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15390 (when (eq exit-after-next 'now) (throw 'exit t))
15391 (goto-char (point-min))
15392 (beginning-of-line 2)
15393 (delete-region (point) (point-at-eol))
15394 (org-fast-tag-insert "Current" current c-face)
15395 (org-set-current-tags-overlay current ov-prefix)
15396 (while (re-search-forward
15397 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15398 (setq tg (match-string 1))
15399 (add-text-properties
15400 (match-beginning 1) (match-end 1)
15401 (list 'face
15402 (cond
15403 ((member tg current) c-face)
15404 ((member tg inherited) i-face)
15405 (t (get-text-property (match-beginning 1) 'face))))))
15406 (goto-char (point-min)))))
15407 (org-detach-overlay org-tags-overlay)
15408 (if rtn
15409 (mapconcat 'identity current ":")
15410 nil))))
15412 (defun org-get-tags-string ()
15413 "Get the TAGS string in the current headline."
15414 (unless (org-at-heading-p t)
15415 (user-error "Not on a heading"))
15416 (save-excursion
15417 (beginning-of-line 1)
15418 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15419 (org-match-string-no-properties 1)
15420 "")))
15422 (defun org-get-tags ()
15423 "Get the list of tags specified in the current headline."
15424 (org-split-string (org-get-tags-string) ":"))
15426 (defun org-get-buffer-tags ()
15427 "Get a table of all tags used in the buffer, for completion."
15428 (org-with-wide-buffer
15429 (goto-char (point-min))
15430 (let ((tag-re (concat org-outline-regexp-bol
15431 "\\(?:.*?[ \t]\\)?"
15432 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15433 tags)
15434 (while (re-search-forward tag-re nil t)
15435 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15436 (push tag tags)))
15437 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15439 ;;;; The mapping API
15441 (defun org-map-entries (func &optional match scope &rest skip)
15442 "Call FUNC at each headline selected by MATCH in SCOPE.
15444 FUNC is a function or a lisp form. The function will be called without
15445 arguments, with the cursor positioned at the beginning of the headline.
15446 The return values of all calls to the function will be collected and
15447 returned as a list.
15449 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15450 does not need to preserve point. After evaluation, the cursor will be
15451 moved to the end of the line (presumably of the headline of the
15452 processed entry) and search continues from there. Under some
15453 circumstances, this may not produce the wanted results. For example,
15454 if you have removed (e.g. archived) the current (sub)tree it could
15455 mean that the next entry will be skipped entirely. In such cases, you
15456 can specify the position from where search should continue by making
15457 FUNC set the variable `org-map-continue-from' to the desired buffer
15458 position.
15460 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15461 Only headlines that are matched by this query will be considered during
15462 the iteration. When MATCH is nil or t, all headlines will be
15463 visited by the iteration.
15465 SCOPE determines the scope of this command. It can be any of:
15467 nil The current buffer, respecting the restriction if any
15468 tree The subtree started with the entry at point
15469 region The entries within the active region, if any
15470 region-start-level
15471 The entries within the active region, but only those at
15472 the same level than the first one.
15473 file The current buffer, without restriction
15474 file-with-archives
15475 The current buffer, and any archives associated with it
15476 agenda All agenda files
15477 agenda-with-archives
15478 All agenda files with any archive files associated with them
15479 \(file1 file2 ...)
15480 If this is a list, all files in the list will be scanned
15482 The remaining args are treated as settings for the skipping facilities of
15483 the scanner. The following items can be given here:
15485 archive skip trees with the archive tag
15486 comment skip trees with the COMMENT keyword
15487 function or Emacs Lisp form:
15488 will be used as value for `org-agenda-skip-function', so
15489 whenever the function returns a position, FUNC will not be
15490 called for that entry and search will continue from the
15491 position returned
15493 If your function needs to retrieve the tags including inherited tags
15494 at the *current* entry, you can use the value of the variable
15495 `org-scanner-tags' which will be much faster than getting the value
15496 with `org-get-tags-at'. If your function gets properties with
15497 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15498 to t around the call to `org-entry-properties' to get the same speedup.
15499 Note that if your function moves around to retrieve tags and properties at
15500 a *different* entry, you cannot use these techniques."
15501 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15502 (not (org-region-active-p)))
15503 (let* ((org-agenda-archives-mode nil) ; just to make sure
15504 (org-agenda-skip-archived-trees (memq 'archive skip))
15505 (org-agenda-skip-comment-trees (memq 'comment skip))
15506 (org-agenda-skip-function
15507 (car (org-delete-all '(comment archive) skip)))
15508 (org-tags-match-list-sublevels t)
15509 (start-level (eq scope 'region-start-level))
15510 matcher file res
15511 org-todo-keywords-for-agenda
15512 org-done-keywords-for-agenda
15513 org-todo-keyword-alist-for-agenda
15514 org-tag-alist-for-agenda
15515 todo-only)
15517 (cond
15518 ((eq match t) (setq matcher t))
15519 ((eq match nil) (setq matcher t))
15520 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15522 (save-excursion
15523 (save-restriction
15524 (cond ((eq scope 'tree)
15525 (org-back-to-heading t)
15526 (org-narrow-to-subtree)
15527 (setq scope nil))
15528 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15529 (org-region-active-p))
15530 ;; If needed, set start-level to a string like "2"
15531 (when start-level
15532 (save-excursion
15533 (goto-char (region-beginning))
15534 (unless (org-at-heading-p) (outline-next-heading))
15535 (setq start-level (org-current-level))))
15536 (narrow-to-region (region-beginning)
15537 (save-excursion
15538 (goto-char (region-end))
15539 (unless (and (bolp) (org-at-heading-p))
15540 (outline-next-heading))
15541 (point)))
15542 (setq scope nil)))
15544 (if (not scope)
15545 (progn
15546 (org-agenda-prepare-buffers
15547 (and buffer-file-name (list buffer-file-name)))
15548 (setq res (org-scan-tags func matcher todo-only start-level)))
15549 ;; Get the right scope
15550 (cond
15551 ((and scope (listp scope) (symbolp (car scope)))
15552 (setq scope (eval scope)))
15553 ((eq scope 'agenda)
15554 (setq scope (org-agenda-files t)))
15555 ((eq scope 'agenda-with-archives)
15556 (setq scope (org-agenda-files t))
15557 (setq scope (org-add-archive-files scope)))
15558 ((eq scope 'file)
15559 (setq scope (and buffer-file-name (list buffer-file-name))))
15560 ((eq scope 'file-with-archives)
15561 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15562 (org-agenda-prepare-buffers scope)
15563 (dolist (file scope)
15564 (with-current-buffer (org-find-base-buffer-visiting file)
15565 (save-excursion
15566 (save-restriction
15567 (widen)
15568 (goto-char (point-min))
15569 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15570 res)))
15572 ;;; Properties API
15574 (defconst org-special-properties
15575 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15576 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15577 "The special properties valid in Org mode.
15578 These are properties that are not defined in the property drawer,
15579 but in some other way.")
15581 (defconst org-default-properties
15582 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15583 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15584 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15585 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15586 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15587 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15588 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15589 "Some properties that are used by Org mode for various purposes.
15590 Being in this list makes sure that they are offered for completion.")
15592 (defun org--valid-property-p (property)
15593 "Non nil when string PROPERTY is a valid property name."
15594 (not
15595 (or (equal property "")
15596 (org-string-match-p "\\s-" property))))
15598 (defun org--update-property-plist (key val props)
15599 "Associate KEY to VAL in alist PROPS.
15600 Modifications are made by side-effect. Return new alist."
15601 (let* ((appending (string= (substring key -1) "+"))
15602 (key (if appending (substring key 0 -1) key))
15603 (old (assoc-string key props t)))
15604 (if (not old) (cons (cons key val) props)
15605 (setcdr old (if appending (concat (cdr old) " " val) val))
15606 props)))
15608 (defun org-get-property-block (&optional beg force)
15609 "Return the (beg . end) range of the body of the property drawer.
15610 BEG is the beginning of the current subtree, or of the part
15611 before the first headline. If it is not given, it will be found.
15612 If the drawer does not exist, create it if FORCE is non-nil, or
15613 return nil."
15614 (org-with-wide-buffer
15615 (when beg (goto-char beg))
15616 (unless (org-before-first-heading-p)
15617 (let ((beg (cond (beg)
15618 ((or (not (featurep 'org-inlinetask))
15619 (org-inlinetask-in-task-p))
15620 (org-back-to-heading t))
15621 (t (org-with-limited-levels (org-back-to-heading t))))))
15622 (forward-line)
15623 (when (org-looking-at-p org-planning-line-re) (forward-line))
15624 (cond ((looking-at org-property-drawer-re)
15625 (forward-line)
15626 (cons (point) (progn (goto-char (match-end 0))
15627 (line-beginning-position))))
15628 (force
15629 (goto-char beg)
15630 (org-insert-property-drawer)
15631 (let ((pos (save-excursion (search-forward ":END:")
15632 (line-beginning-position))))
15633 (cons pos pos))))))))
15635 (defun org-at-property-p ()
15636 "Non-nil when point is inside a property drawer.
15637 See `org-property-re' for match data, if applicable."
15638 (save-excursion
15639 (beginning-of-line)
15640 (and (looking-at org-property-re)
15641 (let ((property-drawer (save-match-data (org-get-property-block))))
15642 (and property-drawer
15643 (>= (point) (car property-drawer))
15644 (< (point) (cdr property-drawer)))))))
15646 (defun org-property-action ()
15647 "Do an action on properties."
15648 (interactive)
15649 (unless (org-at-property-p) (user-error "Not at a property"))
15650 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15651 (let ((c (read-char-exclusive)))
15652 (case c
15653 (?s (call-interactively #'org-set-property))
15654 (?d (call-interactively #'org-delete-property))
15655 (?D (call-interactively #'org-delete-property-globally))
15656 (?c (call-interactively #'org-compute-property-at-point))
15657 (otherwise (user-error "No such property action %c" c)))))
15659 (defun org-inc-effort ()
15660 "Increment the value of the effort property in the current entry."
15661 (interactive)
15662 (org-set-effort nil t))
15664 (defvar org-clock-effort) ; Defined in org-clock.el.
15665 (defvar org-clock-current-task) ; Defined in org-clock.el.
15666 (defun org-set-effort (&optional value increment)
15667 "Set the effort property of the current entry.
15668 With numerical prefix arg, use the nth allowed value, 0 stands for the
15669 10th allowed value.
15671 When INCREMENT is non-nil, set the property to the next allowed value."
15672 (interactive "P")
15673 (if (equal value 0) (setq value 10))
15674 (let* ((completion-ignore-case t)
15675 (prop org-effort-property)
15676 (cur (org-entry-get nil prop))
15677 (allowed (org-property-get-allowed-values nil prop 'table))
15678 (existing (mapcar 'list (org-property-values prop)))
15679 (heading (nth 4 (org-heading-components)))
15681 (val (cond
15682 ((stringp value) value)
15683 ((and allowed (integerp value))
15684 (or (car (nth (1- value) allowed))
15685 (car (org-last allowed))))
15686 ((and allowed increment)
15687 (or (caadr (member (list cur) allowed))
15688 (user-error "Allowed effort values are not set")))
15689 (allowed
15690 (message "Select 1-9,0, [RET%s]: %s"
15691 (if cur (concat "=" cur) "")
15692 (mapconcat 'car allowed " "))
15693 (setq rpl (read-char-exclusive))
15694 (if (equal rpl ?\r)
15696 (setq rpl (- rpl ?0))
15697 (if (equal rpl 0) (setq rpl 10))
15698 (if (and (> rpl 0) (<= rpl (length allowed)))
15699 (car (nth (1- rpl) allowed))
15700 (org-completing-read "Effort: " allowed nil))))
15702 (let (org-completion-use-ido org-completion-use-iswitchb)
15703 (org-completing-read
15704 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15705 (concat "[" cur "]") "")
15706 ": ")
15707 existing nil nil "" nil cur))))))
15708 (unless (equal (org-entry-get nil prop) val)
15709 (org-entry-put nil prop val))
15710 (org-refresh-property
15711 '((effort . identity)
15712 (effort-minutes . org-duration-string-to-minutes))
15713 val)
15714 (when (string= heading org-clock-current-task)
15715 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15716 (org-clock-update-mode-line))
15717 (message "%s is now %s" prop val)))
15719 (defun org-entry-properties (&optional pom which)
15720 "Get all properties of the current entry.
15722 When POM is a buffer position, get all properties from the entry
15723 there instead.
15725 This includes the TODO keyword, the tags, time strings for
15726 deadline, scheduled, and clocking, and any additional properties
15727 defined in the entry.
15729 If WHICH is nil or `all', get all properties. If WHICH is
15730 `special' or `standard', only get that subclass. If WHICH is
15731 a string, only get that property.
15733 Return value is an alist. Keys are properties, as upcased
15734 strings."
15735 (org-with-point-at pom
15736 (when (and (derived-mode-p 'org-mode)
15737 (ignore-errors (org-back-to-heading t)))
15738 (catch 'exit
15739 (let* ((beg (point))
15740 (specific (and (stringp which) (upcase which)))
15741 (which (cond ((not specific) which)
15742 ((member specific org-special-properties) 'special)
15743 (t 'standard)))
15744 props)
15745 ;; Get the special properties, like TODO and TAGS.
15746 (when (memq which '(nil all special))
15747 (when (or (not specific) (string= specific "CLOCKSUM"))
15748 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15749 (when clocksum
15750 (push (cons "CLOCKSUM"
15751 (org-columns-number-to-string
15752 (/ (float clocksum) 60.) 'add_times))
15753 props)))
15754 (when specific (throw 'exit props)))
15755 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15756 (let ((clocksumt (get-text-property (point)
15757 :org-clock-minutes-today)))
15758 (when clocksumt
15759 (push (cons "CLOCKSUM_T"
15760 (org-columns-number-to-string
15761 (/ (float clocksumt) 60.) 'add_times))
15762 props)))
15763 (when specific (throw 'exit props)))
15764 (when (or (not specific) (string= specific "ITEM"))
15765 (when (looking-at org-complex-heading-regexp)
15766 (push (cons "ITEM"
15767 (concat
15768 (org-match-string-no-properties 1)
15769 (let ((title (org-match-string-no-properties 4)))
15770 (when (org-string-nw-p title)
15771 (concat " " (org-remove-tabs title))))))
15772 props))
15773 (when specific (throw 'exit props)))
15774 (when (or (not specific) (string= specific "TODO"))
15775 (let ((case-fold-search nil))
15776 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15777 (push (cons "TODO" (org-match-string-no-properties 2)) props)))
15778 (when specific (throw 'exit props)))
15779 (when (or (not specific) (string= specific "PRIORITY"))
15780 (push (cons "PRIORITY"
15781 (if (looking-at org-priority-regexp)
15782 (org-match-string-no-properties 2)
15783 (char-to-string org-default-priority)))
15784 props)
15785 (when specific (throw 'exit props)))
15786 (when (or (not specific) (string= specific "FILE"))
15787 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15788 props)
15789 (when specific (throw 'exit props)))
15790 (when (or (not specific) (string= specific "TAGS"))
15791 (let ((value (org-string-nw-p (org-get-tags-string))))
15792 (when value (push (cons "TAGS" value) props)))
15793 (when specific (throw 'exit props)))
15794 (when (or (not specific) (string= specific "ALLTAGS"))
15795 (let ((value (org-get-tags-at)))
15796 (when value
15797 (push (cons "ALLTAGS"
15798 (format ":%s:" (mapconcat #'identity value ":")))
15799 props)))
15800 (when specific (throw 'exit props)))
15801 (when (or (not specific) (string= specific "BLOCKED"))
15802 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15803 (when specific (throw 'exit props)))
15804 (when (or (not specific)
15805 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15806 (forward-line)
15807 (when (org-looking-at-p org-planning-line-re)
15808 (end-of-line)
15809 (let ((bol (line-beginning-position))
15810 ;; Backward compatibility: time keywords used to
15811 ;; be configurable (before 8.3). Make sure we
15812 ;; get the correct keyword.
15813 (key-assoc `(("CLOSED" . ,org-closed-string)
15814 ("DEADLINE" . ,org-deadline-string)
15815 ("SCHEDULED" . ,org-scheduled-string))))
15816 (dolist (pair (if specific (list (assoc specific key-assoc))
15817 key-assoc))
15818 (save-excursion
15819 (when (search-backward (cdr pair) bol t)
15820 (goto-char (match-end 0))
15821 (skip-chars-forward " \t")
15822 (and (looking-at org-ts-regexp-both)
15823 (push (cons (car pair)
15824 (org-match-string-no-properties 0))
15825 props)))))))
15826 (when specific (throw 'exit props)))
15827 (when (or (not specific)
15828 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15829 (let ((find-ts
15830 (lambda (end ts)
15831 (let ((regexp (cond
15832 ((string= specific "TIMESTAMP")
15833 org-ts-regexp)
15834 ((string= specific "TIMESTAMP_IA")
15835 org-ts-regexp-inactive)
15836 ((assoc "TIMESTAMP_IA" ts)
15837 org-ts-regexp)
15838 ((assoc "TIMESTAMP" ts)
15839 org-ts-regexp-inactive)
15840 (t org-ts-regexp-both))))
15841 (catch 'next
15842 (while (re-search-forward regexp end t)
15843 (backward-char)
15844 (let ((object (org-element-context)))
15845 ;; Accept to match timestamps in node
15846 ;; properties, too.
15847 (when (memq (org-element-type object)
15848 '(node-property timestamp))
15849 (let ((type
15850 (org-element-property :type object)))
15851 (cond
15852 ((and (memq type '(active active-range))
15853 (not (equal specific "TIMESTAMP_IA")))
15854 (unless (assoc "TIMESTAMP" ts)
15855 (push (cons "TIMESTAMP"
15856 (org-element-property
15857 :raw-value object))
15859 (when specific (throw 'exit ts))))
15860 ((and (memq type '(inactive inactive-range))
15861 (not (string= specific "TIMESTAMP")))
15862 (unless (assoc "TIMESTAMP_IA" ts)
15863 (push (cons "TIMESTAMP_IA"
15864 (org-element-property
15865 :raw-value object))
15867 (when specific (throw 'exit ts))))))
15868 ;; Both timestamp types are found,
15869 ;; move to next part.
15870 (when (= (length ts) 2) (throw 'next ts)))))
15871 ts)))))
15872 (goto-char beg)
15873 ;; First look for timestamps within headline.
15874 (let ((ts (funcall find-ts (line-end-position) nil)))
15875 (if (= (length ts) 2) (setq props (nconc ts props))
15876 (forward-line)
15877 ;; Then find timestamps in the section, skipping
15878 ;; planning line.
15879 (when (org-looking-at-p org-planning-line-re)
15880 (forward-line))
15881 (let ((end (save-excursion (outline-next-heading))))
15882 (setq props (nconc (funcall find-ts end ts) props))))))))
15883 ;; Get the standard properties, like :PROP:.
15884 (when (memq which '(nil all standard))
15885 ;; If we are looking after a specific property, delegate
15886 ;; to `org-entry-get', which is faster. However, make an
15887 ;; exception for "CATEGORY", since it can be also set
15888 ;; through keywords (i.e. #+CATEGORY).
15889 (if (and specific (not (equal specific "CATEGORY")))
15890 (let ((value (org-entry-get beg specific nil t)))
15891 (throw 'exit (and value (list (cons specific value)))))
15892 (let ((range (org-get-property-block beg)))
15893 (when range
15894 (let ((end (cdr range)) seen-base)
15895 (goto-char (car range))
15896 ;; Unlike to `org--update-property-plist', we
15897 ;; handle the case where base values is found
15898 ;; after its extension. We also forbid standard
15899 ;; properties to be named as special properties.
15900 (while (re-search-forward org-property-re end t)
15901 (let* ((key (upcase (org-match-string-no-properties 2)))
15902 (extendp (org-string-match-p "\\+\\'" key))
15903 (key-base (if extendp (substring key 0 -1) key))
15904 (value (org-match-string-no-properties 3)))
15905 (cond
15906 ((member-ignore-case key-base org-special-properties))
15907 (extendp
15908 (setq props
15909 (org--update-property-plist key value props)))
15910 ((member key seen-base))
15911 (t (push key seen-base)
15912 (let ((p (assoc-string key props t)))
15913 (if p (setcdr p (concat value " " (cdr p)))
15914 (push (cons key value) props))))))))))))
15915 (unless (assoc "CATEGORY" props)
15916 (push (cons "CATEGORY" (org-get-category beg)) props)
15917 (when (string= specific "CATEGORY") (throw 'exit props)))
15918 ;; Return value.
15919 props)))))
15921 (defun org-property--local-values (property literal-nil)
15922 "Return value for PROPERTY in current entry.
15923 Value is a list whose car is the base value for PROPERTY and cdr
15924 a list of accumulated values. Return nil if neither is found in
15925 the entry. Also return nil when PROPERTY is set to \"nil\",
15926 unless LITERAL-NIL is non-nil."
15927 (let ((range (org-get-property-block)))
15928 (when range
15929 (goto-char (car range))
15930 (let* ((case-fold-search t)
15931 (end (cdr range))
15932 (value
15933 ;; Base value.
15934 (save-excursion
15935 (let ((v (and (re-search-forward
15936 (org-re-property property nil t) end t)
15937 (org-match-string-no-properties 3))))
15938 (list (if literal-nil v (org-not-nil v)))))))
15939 ;; Find additional values.
15940 (let* ((property+ (org-re-property (concat property "+") nil t)))
15941 (while (re-search-forward property+ end t)
15942 (push (org-match-string-no-properties 3) value)))
15943 ;; Return final values.
15944 (and (not (equal value '(nil))) (nreverse value))))))
15946 (defun org-entry-get (pom property &optional inherit literal-nil)
15947 "Get value of PROPERTY for entry or content at point-or-marker POM.
15949 If INHERIT is non-nil and the entry does not have the property,
15950 then also check higher levels of the hierarchy. If INHERIT is
15951 the symbol `selective', use inheritance only if the setting in
15952 `org-use-property-inheritance' selects PROPERTY for inheritance.
15954 If the property is present but empty, the return value is the
15955 empty string. If the property is not present at all, nil is
15956 returned. In any other case, return the value as a string.
15957 Search is case-insensitive.
15959 If LITERAL-NIL is set, return the string value \"nil\" as
15960 a string, do not interpret it as the list atom nil. This is used
15961 for inheritance when a \"nil\" value can supersede a non-nil
15962 value higher up the hierarchy."
15963 (org-with-point-at pom
15964 (cond
15965 ((member-ignore-case property (cons "CATEGORY" org-special-properties))
15966 ;; We need a special property. Use `org-entry-properties' to
15967 ;; retrieve it, but specify the wanted property.
15968 (cdr (assoc-string property (org-entry-properties nil property))))
15969 ((and inherit
15970 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15971 (org-entry-get-with-inheritance property literal-nil))
15973 (let* ((local (org-property--local-values property literal-nil))
15974 (value (and local (mapconcat #'identity (delq nil local) " "))))
15975 (if literal-nil value (org-not-nil value)))))))
15977 (defun org-property-or-variable-value (var &optional inherit)
15978 "Check if there is a property fixing the value of VAR.
15979 If yes, return this value. If not, return the current value of the variable."
15980 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15981 (if (and prop (stringp prop) (string-match "\\S-" prop))
15982 (read prop)
15983 (symbol-value var))))
15985 (defun org-entry-delete (pom property)
15986 "Delete PROPERTY from entry at point-or-marker POM.
15987 Accumulated properties, i.e. PROPERTY+, are also removed. Return
15988 non-nil when a property was removed."
15989 (unless (member property org-special-properties)
15990 (org-with-point-at pom
15991 (let ((range (org-get-property-block)))
15992 (when range
15993 (let* ((begin (car range))
15994 (origin (cdr range))
15995 (end (copy-marker origin))
15996 (re (org-re-property
15997 (concat (regexp-quote property) "\\+?") t t)))
15998 (goto-char begin)
15999 (while (re-search-forward re end t)
16000 (delete-region (match-beginning 0) (line-beginning-position 2)))
16001 ;; If drawer is empty, remove it altogether.
16002 (when (= begin end)
16003 (delete-region (line-beginning-position 0)
16004 (line-beginning-position 2)))
16005 ;; Return non-nil if some property was removed.
16006 (prog1 (/= end origin) (set-marker end nil))))))))
16008 ;; Multi-values properties are properties that contain multiple values
16009 ;; These values are assumed to be single words, separated by whitespace.
16010 (defun org-entry-add-to-multivalued-property (pom property value)
16011 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
16012 (let* ((old (org-entry-get pom property))
16013 (values (and old (org-split-string old "[ \t]"))))
16014 (setq value (org-entry-protect-space value))
16015 (unless (member value values)
16016 (setq values (append values (list value)))
16017 (org-entry-put pom property
16018 (mapconcat 'identity values " ")))))
16020 (defun org-entry-remove-from-multivalued-property (pom property value)
16021 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
16022 (let* ((old (org-entry-get pom property))
16023 (values (and old (org-split-string old "[ \t]"))))
16024 (setq value (org-entry-protect-space value))
16025 (when (member value values)
16026 (setq values (delete value values))
16027 (org-entry-put pom property
16028 (mapconcat 'identity values " ")))))
16030 (defun org-entry-member-in-multivalued-property (pom property value)
16031 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
16032 (let* ((old (org-entry-get pom property))
16033 (values (and old (org-split-string old "[ \t]"))))
16034 (setq value (org-entry-protect-space value))
16035 (member value values)))
16037 (defun org-entry-get-multivalued-property (pom property)
16038 "Return a list of values in a multivalued property."
16039 (let* ((value (org-entry-get pom property))
16040 (values (and value (org-split-string value "[ \t]"))))
16041 (mapcar 'org-entry-restore-space values)))
16043 (defun org-entry-put-multivalued-property (pom property &rest values)
16044 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
16045 VALUES should be a list of strings. Spaces will be protected."
16046 (org-entry-put pom property
16047 (mapconcat 'org-entry-protect-space values " "))
16048 (let* ((value (org-entry-get pom property))
16049 (values (and value (org-split-string value "[ \t]"))))
16050 (mapcar 'org-entry-restore-space values)))
16052 (defun org-entry-protect-space (s)
16053 "Protect spaces and newline in string S."
16054 (while (string-match " " s)
16055 (setq s (replace-match "%20" t t s)))
16056 (while (string-match "\n" s)
16057 (setq s (replace-match "%0A" t t s)))
16060 (defun org-entry-restore-space (s)
16061 "Restore spaces and newline in string S."
16062 (while (string-match "%20" s)
16063 (setq s (replace-match " " t t s)))
16064 (while (string-match "%0A" s)
16065 (setq s (replace-match "\n" t t s)))
16068 (defvar org-entry-property-inherited-from (make-marker)
16069 "Marker pointing to the entry from where a property was inherited.
16070 Each call to `org-entry-get-with-inheritance' will set this marker to the
16071 location of the entry where the inheritance search matched. If there was
16072 no match, the marker will point nowhere.
16073 Note that also `org-entry-get' calls this function, if the INHERIT flag
16074 is set.")
16076 (defun org-entry-get-with-inheritance (property &optional literal-nil)
16077 "Get PROPERTY of entry or content at point, search higher levels if needed.
16078 The search will stop at the first ancestor which has the property defined.
16079 If the value found is \"nil\", return nil to show that the property
16080 should be considered as undefined (this is the meaning of nil here).
16081 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
16082 (move-marker org-entry-property-inherited-from nil)
16083 (org-with-wide-buffer
16084 (let (value)
16085 (catch 'exit
16086 (while t
16087 (let ((v (org-property--local-values property literal-nil)))
16088 (when v
16089 (setq value
16090 (concat (mapconcat #'identity (delq nil v) " ")
16091 (and value " ")
16092 value)))
16093 (cond
16094 ((car v)
16095 (org-back-to-heading t)
16096 (move-marker org-entry-property-inherited-from (point))
16097 (throw 'exit nil))
16098 ((org-up-heading-safe))
16100 (let ((global
16101 (cdr (or (assoc-string property org-file-properties t)
16102 (assoc-string property org-global-properties t)
16103 (assoc-string property org-global-properties-fixed t)))))
16104 (cond ((not global))
16105 (value (setq value (concat global " " value)))
16106 (t (setq value global))))
16107 (throw 'exit nil))))))
16108 (if literal-nil value (org-not-nil value)))))
16110 (defvar org-property-changed-functions nil
16111 "Hook called when the value of a property has changed.
16112 Each hook function should accept two arguments, the name of the property
16113 and the new value.")
16115 (defun org-entry-put (pom property value)
16116 "Set PROPERTY to VALUE for entry at point-or-marker POM.
16118 If the value is nil, it is converted to the empty string. If it
16119 is not a string, an error is raised. Also raise an error on
16120 invalid property names.
16122 PROPERTY can be any regular property (see
16123 `org-special-properties'). It can also be \"TODO\",
16124 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
16126 For the last two properties, VALUE may have any of the special
16127 values \"earlier\" and \"later\". The function then increases or
16128 decreases scheduled or deadline date by one day."
16129 (cond ((null value) (setq value ""))
16130 ((not (stringp value)) (error "Properties values should be strings"))
16131 ((not (org--valid-property-p property))
16132 (user-error "Invalid property name: \"%s\"" property)))
16133 (org-with-point-at pom
16134 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16135 (org-back-to-heading t)
16136 (org-with-limited-levels (org-back-to-heading t)))
16137 (let ((beg (point)))
16138 (cond
16139 ((equal property "TODO")
16140 (cond ((not (org-string-nw-p value)) (setq value 'none))
16141 ((not (member value org-todo-keywords-1))
16142 (user-error "\"%s\" is not a valid TODO state" value)))
16143 (org-todo value)
16144 (org-set-tags nil 'align))
16145 ((equal property "PRIORITY")
16146 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
16147 (org-set-tags nil 'align))
16148 ((equal property "SCHEDULED")
16149 (forward-line)
16150 (if (and (org-looking-at-p org-planning-line-re)
16151 (re-search-forward
16152 org-scheduled-time-regexp (line-end-position) t))
16153 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16154 ((string= value "later") (org-timestamp-change 1 'day))
16155 ((string= value "") (org-schedule '(4)))
16156 (t (org-schedule nil value)))
16157 (if (member value '("earlier" "later" ""))
16158 (call-interactively #'org-schedule)
16159 (org-schedule nil value))))
16160 ((equal property "DEADLINE")
16161 (forward-line)
16162 (if (and (org-looking-at-p org-planning-line-re)
16163 (re-search-forward
16164 org-deadline-time-regexp (line-end-position) t))
16165 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16166 ((string= value "later") (org-timestamp-change 1 'day))
16167 ((string= value "") (org-deadline '(4)))
16168 (t (org-deadline nil value)))
16169 (if (member value '("earlier" "later" ""))
16170 (call-interactively #'org-deadline)
16171 (org-deadline nil value))))
16172 ((member property org-special-properties)
16173 (error "The %s property cannot be set with `org-entry-put'" property))
16175 (let* ((range (org-get-property-block beg 'force))
16176 (end (cdr range))
16177 (case-fold-search t))
16178 (goto-char (car range))
16179 (if (re-search-forward (org-re-property property nil t) end t)
16180 (progn (delete-region (match-beginning 0) (match-end 0))
16181 (goto-char (match-beginning 0)))
16182 (goto-char end)
16183 (insert "\n")
16184 (backward-char))
16185 (insert ":" property ":")
16186 (when value (insert " " value))
16187 (org-indent-line)))))
16188 (run-hook-with-args 'org-property-changed-functions property value)))
16190 (defun org-buffer-property-keys (&optional specials defaults columns)
16191 "Get all property keys in the current buffer.
16193 When SPECIALS is non-nil, also list the special properties that
16194 reflect things like tags and TODO state.
16196 When DEFAULTS is non-nil, also include properties that has
16197 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
16198 DESCRIPTION, LOCATION, and LOGGING and others.
16200 When COLUMNS in non-nil, also include property names given in
16201 COLUMN formats in the current buffer."
16202 (let ((case-fold-search t)
16203 (props (append
16204 (and specials org-special-properties)
16205 (and defaults (cons org-effort-property org-default-properties))
16206 nil)))
16207 (org-with-wide-buffer
16208 (goto-char (point-min))
16209 (while (re-search-forward org-property-start-re nil t)
16210 (let ((range (org-get-property-block)))
16211 (catch 'skip
16212 (unless range
16213 (when (and (not (org-before-first-heading-p))
16214 (y-or-n-p (format "Malformed drawer at %d, repair?"
16215 (line-beginning-position))))
16216 (org-get-property-block nil t))
16217 (throw 'skip nil))
16218 (goto-char (car range))
16219 (let ((begin (car range))
16220 (end (cdr range)))
16221 ;; Make sure that found property block is not located
16222 ;; before current point, as it would generate an infloop.
16223 ;; It can happen, for example, in the following
16224 ;; situation:
16226 ;; * Headline
16227 ;; :PROPERTIES:
16228 ;; ...
16229 ;; :END:
16230 ;; *************** Inlinetask
16231 ;; #+BEGIN_EXAMPLE
16232 ;; :PROPERTIES:
16233 ;; #+END_EXAMPLE
16235 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
16236 (while (< (point) end)
16237 (let ((p (progn (looking-at org-property-re)
16238 (org-match-string-no-properties 2))))
16239 ;; Only add true property name, not extension symbol.
16240 (add-to-list 'props
16241 (if (not (org-string-match-p "\\+\\'" p)) p
16242 (substring p 0 -1))))
16243 (forward-line))))
16244 (outline-next-heading)))
16245 (when columns
16246 (goto-char (point-min))
16247 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16248 (let ((element (org-element-at-point)))
16249 (when (memq (org-element-type element) '(keyword node-property))
16250 (let ((value (org-element-property :value element))
16251 (start 0))
16252 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16253 (setq start (match-end 0))
16254 (let ((p (org-match-string-no-properties 1 value)))
16255 (unless (member-ignore-case p org-special-properties)
16256 (add-to-list 'props p))))))))))
16257 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16259 (defun org-property-values (key)
16260 "List all non-nil values of property KEY in current buffer."
16261 (org-with-wide-buffer
16262 (goto-char (point-min))
16263 (let ((case-fold-search t)
16264 (re (org-re-property key))
16265 values)
16266 (while (re-search-forward re nil t)
16267 (add-to-list 'values (org-entry-get (point) key)))
16268 values)))
16270 (defun org-insert-property-drawer ()
16271 "Insert a property drawer into the current entry."
16272 (org-with-wide-buffer
16273 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16274 (org-back-to-heading t)
16275 (org-with-limited-levels (org-back-to-heading t)))
16276 (forward-line)
16277 (when (org-looking-at-p org-planning-line-re) (forward-line))
16278 (unless (org-looking-at-p org-property-drawer-re)
16279 ;; Make sure we start editing a line from current entry, not from
16280 ;; next one. It prevents extending text properties or overlays
16281 ;; belonging to the latter.
16282 (when (bolp) (backward-char))
16283 (let ((begin (1+ (point)))
16284 (inhibit-read-only t))
16285 (insert "\n:PROPERTIES:\n:END:")
16286 (when (eobp) (insert "\n"))
16287 (org-indent-region begin (point))))))
16289 (defun org-insert-drawer (&optional arg drawer)
16290 "Insert a drawer at point.
16292 When optional argument ARG is non-nil, insert a property drawer.
16294 Optional argument DRAWER, when non-nil, is a string representing
16295 drawer's name. Otherwise, the user is prompted for a name.
16297 If a region is active, insert the drawer around that region
16298 instead.
16300 Point is left between drawer's boundaries."
16301 (interactive "P")
16302 (let* ((drawer (if arg "PROPERTIES"
16303 (or drawer (read-from-minibuffer "Drawer: ")))))
16304 (cond
16305 ;; With C-u, fall back on `org-insert-property-drawer'
16306 (arg (org-insert-property-drawer))
16307 ;; Check validity of suggested drawer's name.
16308 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16309 (user-error "Invalid drawer name"))
16310 ;; With an active region, insert a drawer at point.
16311 ((not (org-region-active-p))
16312 (progn
16313 (unless (bolp) (insert "\n"))
16314 (insert (format ":%s:\n\n:END:\n" drawer))
16315 (forward-line -2)))
16316 ;; Otherwise, insert the drawer at point
16318 (let ((rbeg (region-beginning))
16319 (rend (copy-marker (region-end))))
16320 (unwind-protect
16321 (progn
16322 (goto-char rbeg)
16323 (beginning-of-line)
16324 (when (save-excursion
16325 (re-search-forward org-outline-regexp-bol rend t))
16326 (user-error "Drawers cannot contain headlines"))
16327 ;; Position point at the beginning of the first
16328 ;; non-blank line in region. Insert drawer's opening
16329 ;; there, then indent it.
16330 (org-skip-whitespace)
16331 (beginning-of-line)
16332 (insert ":" drawer ":\n")
16333 (forward-line -1)
16334 (indent-for-tab-command)
16335 ;; Move point to the beginning of the first blank line
16336 ;; after the last non-blank line in region. Insert
16337 ;; drawer's closing, then indent it.
16338 (goto-char rend)
16339 (skip-chars-backward " \r\t\n")
16340 (insert "\n:END:")
16341 (deactivate-mark t)
16342 (indent-for-tab-command)
16343 (unless (eolp) (insert "\n")))
16344 ;; Clear marker, whatever the outcome of insertion is.
16345 (set-marker rend nil)))))))
16347 (defvar org-property-set-functions-alist nil
16348 "Property set function alist.
16349 Each entry should have the following format:
16351 (PROPERTY . READ-FUNCTION)
16353 The read function will be called with the same argument as
16354 `org-completing-read'.")
16356 (defun org-set-property-function (property)
16357 "Get the function that should be used to set PROPERTY.
16358 This is computed according to `org-property-set-functions-alist'."
16359 (or (cdr (assoc property org-property-set-functions-alist))
16360 'org-completing-read))
16362 (defun org-read-property-value (property)
16363 "Read PROPERTY value from user."
16364 (let* ((completion-ignore-case t)
16365 (allowed (org-property-get-allowed-values nil property 'table))
16366 (cur (org-entry-get nil property))
16367 (prompt (concat property " value"
16368 (if (and cur (string-match "\\S-" cur))
16369 (concat " [" cur "]") "") ": "))
16370 (set-function (org-set-property-function property))
16371 (val (if allowed
16372 (funcall set-function prompt allowed nil
16373 (not (get-text-property 0 'org-unrestricted
16374 (caar allowed))))
16375 (let (org-completion-use-ido org-completion-use-iswitchb)
16376 (funcall set-function prompt
16377 (mapcar 'list (org-property-values property))
16378 nil nil "" nil cur)))))
16379 (org-trim val)))
16381 (defvar org-last-set-property nil)
16382 (defvar org-last-set-property-value nil)
16383 (defun org-read-property-name ()
16384 "Read a property name."
16385 (let ((completion-ignore-case t)
16386 (default-prop (or (and (org-at-property-p)
16387 (org-match-string-no-properties 2))
16388 org-last-set-property)))
16389 (org-completing-read
16390 (concat "Property"
16391 (if default-prop (concat " [" default-prop "]") "")
16392 ": ")
16393 (mapcar #'list (org-buffer-property-keys nil t t))
16394 nil nil nil nil default-prop)))
16396 (defun org-set-property-and-value (use-last)
16397 "Allow to set [PROPERTY]: [value] direction from prompt.
16398 When use-default, don't even ask, just use the last
16399 \"[PROPERTY]: [value]\" string from the history."
16400 (interactive "P")
16401 (let* ((completion-ignore-case t)
16402 (pv (or (and use-last org-last-set-property-value)
16403 (org-completing-read
16404 "Enter a \"[Property]: [value]\" pair: "
16405 nil nil nil nil nil
16406 org-last-set-property-value)))
16407 prop val)
16408 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16409 (setq prop (match-string 1 pv)
16410 val (match-string 2 pv))
16411 (org-set-property prop val))))
16413 (defun org-set-property (property value)
16414 "In the current entry, set PROPERTY to VALUE.
16416 When called interactively, this will prompt for a property name, offering
16417 completion on existing and default properties. And then it will prompt
16418 for a value, offering completion either on allowed values (via an inherited
16419 xxx_ALL property) or on existing values in other instances of this property
16420 in the current file.
16422 Throw an error when trying to set a property with an invalid name."
16423 (interactive (list nil nil))
16424 (let ((property (or property (org-read-property-name))))
16425 ;; `org-entry-put' also makes the following check, but this one
16426 ;; avoids polluting `org-last-set-property' and
16427 ;; `org-last-set-property-value' needlessly.
16428 (unless (org--valid-property-p property)
16429 (user-error "Invalid property name: \"%s\"" property))
16430 (let ((value (or value (org-read-property-value property)))
16431 (fn (cdr (assoc-string property org-properties-postprocess-alist t))))
16432 (setq org-last-set-property property)
16433 (setq org-last-set-property-value (concat property ": " value))
16434 ;; Possibly postprocess the inserted value:
16435 (when fn (setq value (funcall fn value)))
16436 (unless (equal (org-entry-get nil property) value)
16437 (org-entry-put nil property value)))))
16439 (defun org-find-property (property &optional value)
16440 "Find first entry in buffer that sets PROPERTY.
16442 When optional argument VALUE is non-nil, only consider an entry
16443 if it contains PROPERTY set to this value. If PROPERTY should be
16444 explicitly set to nil, use string \"nil\" for VALUE.
16446 Return position where the entry begins, or nil if there is no
16447 such entry. If narrowing is in effect, only search the visible
16448 part of the buffer."
16449 (save-excursion
16450 (goto-char (point-min))
16451 (let ((case-fold-search t)
16452 (re (org-re-property property nil (not value) value)))
16453 (catch 'exit
16454 (while (re-search-forward re nil t)
16455 (when (if value (org-at-property-p)
16456 (org-entry-get (point) property nil t))
16457 (throw 'exit (progn (org-back-to-heading t) (point)))))))))
16459 (defun org-delete-property (property)
16460 "In the current entry, delete PROPERTY."
16461 (interactive
16462 (let* ((completion-ignore-case t)
16463 (cat (org-entry-get (point) "CATEGORY"))
16464 (props0 (org-entry-properties nil 'standard))
16465 (props (if cat props0
16466 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16467 (prop (if (< 1 (length props))
16468 (org-icompleting-read "Property: " props nil t)
16469 (caar props))))
16470 (list prop)))
16471 (if (not property)
16472 (message "No property to delete in this entry")
16473 (org-entry-delete nil property)
16474 (message "Property \"%s\" deleted" property)))
16476 (defun org-delete-property-globally (property)
16477 "Remove PROPERTY globally, from all entries.
16478 This function ignores narrowing, if any."
16479 (interactive
16480 (let* ((completion-ignore-case t)
16481 (prop (org-icompleting-read
16482 "Globally remove property: "
16483 (mapcar #'list (org-buffer-property-keys)))))
16484 (list prop)))
16485 (org-with-wide-buffer
16486 (goto-char (point-min))
16487 (let ((count 0)
16488 (re (org-re-property (concat (regexp-quote property) "\\+?") t t)))
16489 (while (re-search-forward re nil t)
16490 (when (org-entry-delete (point) property) (incf count)))
16491 (message "Property \"%s\" removed from %d entries" property count))))
16493 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16495 (defun org-compute-property-at-point ()
16496 "Compute the property at point.
16497 This looks for an enclosing column format, extracts the operator and
16498 then applies it to the property in the column format's scope."
16499 (interactive)
16500 (unless (org-at-property-p)
16501 (user-error "Not at a property"))
16502 (let ((prop (org-match-string-no-properties 2)))
16503 (org-columns-get-format-and-top-level)
16504 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16505 (user-error "No operator defined for property %s" prop))
16506 (org-columns-compute prop)))
16508 (defvar org-property-allowed-value-functions nil
16509 "Hook for functions supplying allowed values for a specific property.
16510 The functions must take a single argument, the name of the property, and
16511 return a flat list of allowed values. If \":ETC\" is one of
16512 the values, this means that these values are intended as defaults for
16513 completion, but that other values should be allowed too.
16514 The functions must return nil if they are not responsible for this
16515 property.")
16517 (defun org-property-get-allowed-values (pom property &optional table)
16518 "Get allowed values for the property PROPERTY.
16519 When TABLE is non-nil, return an alist that can directly be used for
16520 completion."
16521 (let (vals)
16522 (cond
16523 ((equal property "TODO")
16524 (setq vals (org-with-point-at pom
16525 (append org-todo-keywords-1 '("")))))
16526 ((equal property "PRIORITY")
16527 (let ((n org-lowest-priority))
16528 (while (>= n org-highest-priority)
16529 (push (char-to-string n) vals)
16530 (setq n (1- n)))))
16531 ((equal property "CATEGORY"))
16532 ((member property org-special-properties))
16533 ((setq vals (run-hook-with-args-until-success
16534 'org-property-allowed-value-functions property)))
16536 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16537 (when (and vals (string-match "\\S-" vals))
16538 (setq vals (car (read-from-string (concat "(" vals ")"))))
16539 (setq vals (mapcar (lambda (x)
16540 (cond ((stringp x) x)
16541 ((numberp x) (number-to-string x))
16542 ((symbolp x) (symbol-name x))
16543 (t "???")))
16544 vals)))))
16545 (when (member ":ETC" vals)
16546 (setq vals (remove ":ETC" vals))
16547 (org-add-props (car vals) '(org-unrestricted t)))
16548 (if table (mapcar 'list vals) vals)))
16550 (defun org-property-previous-allowed-value (&optional previous)
16551 "Switch to the next allowed value for this property."
16552 (interactive)
16553 (org-property-next-allowed-value t))
16555 (defun org-property-next-allowed-value (&optional previous)
16556 "Switch to the next allowed value for this property."
16557 (interactive)
16558 (unless (org-at-property-p)
16559 (user-error "Not at a property"))
16560 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16561 (key (match-string 2))
16562 (value (match-string 3))
16563 (allowed (or (org-property-get-allowed-values (point) key)
16564 (and (member value '("[ ]" "[-]" "[X]"))
16565 '("[ ]" "[X]"))))
16566 (heading (save-match-data (nth 4 (org-heading-components))))
16567 nval)
16568 (unless allowed
16569 (user-error "Allowed values for this property have not been defined"))
16570 (if previous (setq allowed (reverse allowed)))
16571 (if (member value allowed)
16572 (setq nval (car (cdr (member value allowed)))))
16573 (setq nval (or nval (car allowed)))
16574 (if (equal nval value)
16575 (user-error "Only one allowed value for this property"))
16576 (org-at-property-p)
16577 (replace-match (concat " :" key ": " nval) t t)
16578 (org-indent-line)
16579 (beginning-of-line 1)
16580 (skip-chars-forward " \t")
16581 (when (equal prop org-effort-property)
16582 (org-refresh-property
16583 '((effort . identity)
16584 (effort-minutes . org-duration-string-to-minutes))
16585 nval)
16586 (when (string= org-clock-current-task heading)
16587 (setq org-clock-effort nval)
16588 (org-clock-update-mode-line)))
16589 (run-hook-with-args 'org-property-changed-functions key nval)))
16591 (defun org-find-olp (path &optional this-buffer)
16592 "Return a marker pointing to the entry at outline path OLP.
16593 If anything goes wrong, throw an error.
16594 You can wrap this call to catch the error like this:
16596 (condition-case msg
16597 (org-mobile-locate-entry (match-string 4))
16598 (error (nth 1 msg)))
16600 The return value will then be either a string with the error message,
16601 or a marker if everything is OK.
16603 If THIS-BUFFER is set, the outline path does not contain a file,
16604 only headings."
16605 (let* ((file (if this-buffer buffer-file-name (pop path)))
16606 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16607 (level 1)
16608 (lmin 1)
16609 (lmax 1)
16610 limit re end found pos heading cnt flevel)
16611 (unless buffer (error "File not found :%s" file))
16612 (with-current-buffer buffer
16613 (save-excursion
16614 (save-restriction
16615 (widen)
16616 (setq limit (point-max))
16617 (goto-char (point-min))
16618 (dolist (heading path)
16619 (setq re (format org-complex-heading-regexp-format
16620 (regexp-quote heading)))
16621 (setq cnt 0 pos (point))
16622 (while (re-search-forward re end t)
16623 (setq level (- (match-end 1) (match-beginning 1)))
16624 (if (and (>= level lmin) (<= level lmax))
16625 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16626 (when (= cnt 0) (error "Heading not found on level %d: %s"
16627 lmax heading))
16628 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16629 lmax heading))
16630 (goto-char found)
16631 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16632 (setq end (save-excursion (org-end-of-subtree t t))))
16633 (when (org-at-heading-p)
16634 (point-marker)))))))
16636 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16637 "Find node HEADING in BUFFER.
16638 Return a marker to the heading if it was found, or nil if not.
16639 If POS-ONLY is set, return just the position instead of a marker.
16641 The heading text must match exact, but it may have a TODO keyword,
16642 a priority cookie and tags in the standard locations."
16643 (with-current-buffer (or buffer (current-buffer))
16644 (save-excursion
16645 (save-restriction
16646 (widen)
16647 (goto-char (point-min))
16648 (let (case-fold-search)
16649 (if (re-search-forward
16650 (format org-complex-heading-regexp-format
16651 (regexp-quote heading)) nil t)
16652 (if pos-only
16653 (match-beginning 0)
16654 (move-marker (make-marker) (match-beginning 0)))))))))
16656 (defun org-find-exact-heading-in-directory (heading &optional dir)
16657 "Find Org node headline HEADING in all .org files in directory DIR.
16658 When the target headline is found, return a marker to this location."
16659 (let ((files (directory-files (or dir default-directory)
16660 t "\\`[^.#].*\\.org\\'"))
16661 visiting m buffer)
16662 (catch 'found
16663 (dolist (file files)
16664 (message "trying %s" file)
16665 (setq visiting (org-find-base-buffer-visiting file))
16666 (setq buffer (or visiting (find-file-noselect file)))
16667 (setq m (org-find-exact-headline-in-buffer
16668 heading buffer))
16669 (when (and (not m) (not visiting)) (kill-buffer buffer))
16670 (and m (throw 'found m))))))
16672 (defun org-find-entry-with-id (ident)
16673 "Locate the entry that contains the ID property with exact value IDENT.
16674 IDENT can be a string, a symbol or a number, this function will search for
16675 the string representation of it.
16676 Return the position where this entry starts, or nil if there is no such entry."
16677 (interactive "sID: ")
16678 (let ((id (cond
16679 ((stringp ident) ident)
16680 ((symbolp ident) (symbol-name ident))
16681 ((numberp ident) (number-to-string ident))
16682 (t (error "IDENT %s must be a string, symbol or number" ident)))))
16683 (org-with-wide-buffer (org-find-property "ID" id))))
16685 ;;;; Timestamps
16687 (defvar org-last-changed-timestamp nil)
16688 (defvar org-last-inserted-timestamp nil
16689 "The last time stamp inserted with `org-insert-time-stamp'.")
16690 (defvar org-ts-what) ; dynamically scoped parameter
16692 (defun org-time-stamp (arg &optional inactive)
16693 "Prompt for a date/time and insert a time stamp.
16695 If the user specifies a time like HH:MM or if this command is
16696 called with at least one prefix argument, the time stamp contains
16697 the date and the time. Otherwise, only the date is included.
16699 All parts of a date not specified by the user are filled in from
16700 the timestamp at point, if any, or the current date/time
16701 otherwise.
16703 If there is already a timestamp at the cursor, it is replaced.
16705 With two universal prefix arguments, insert an active timestamp
16706 with the current time without prompting the user.
16708 When called from lisp, the timestamp is inactive if INACTIVE is
16709 non-nil."
16710 (interactive "P")
16711 (let* ((ts (cond
16712 ((org-at-date-range-p t)
16713 (match-string (if (< (point) (- (match-beginning 2) 2)) 1 2)))
16714 ((org-at-timestamp-p t) (match-string 0))))
16715 ;; Default time is either the timestamp at point or today.
16716 ;; When entering a range, only the range start is considered.
16717 (default-time (if (not ts) (current-time)
16718 (apply #'encode-time (org-parse-time-string ts))))
16719 (default-input (and ts (org-get-compact-tod ts)))
16720 (repeater (and ts
16721 (string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
16722 (match-string 0 ts)))
16723 org-time-was-given
16724 org-end-time-was-given
16725 (time
16726 (and (if (equal arg '(16)) (current-time)
16727 ;; Preserve `this-command' and `last-command'.
16728 (let ((this-command this-command)
16729 (last-command last-command))
16730 (org-read-date
16731 arg 'totime nil nil default-time default-input
16732 inactive))))))
16733 (cond
16734 ((and ts
16735 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16736 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16737 (insert "--")
16738 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16740 ;; Make sure we're on a timestamp. When in the middle of a date
16741 ;; range, move arbitrarily to range end.
16742 (unless (org-at-timestamp-p t)
16743 (skip-chars-forward "-")
16744 (org-at-timestamp-p t))
16745 (replace-match "")
16746 (setq org-last-changed-timestamp
16747 (org-insert-time-stamp
16748 time (or org-time-was-given arg)
16749 inactive nil nil (list org-end-time-was-given)))
16750 (when repeater
16751 (backward-char)
16752 (insert " " repeater)
16753 (setq org-last-changed-timestamp
16754 (concat (substring org-last-inserted-timestamp 0 -1)
16755 " " repeater ">")))
16756 (message "Timestamp updated"))
16757 ((equal arg '(16)) (org-insert-time-stamp time t inactive))
16758 (t (org-insert-time-stamp
16759 time (or org-time-was-given arg) inactive nil nil
16760 (list org-end-time-was-given))))))
16762 ;; FIXME: can we use this for something else, like computing time differences?
16763 (defun org-get-compact-tod (s)
16764 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16765 (let* ((t1 (match-string 1 s))
16766 (h1 (string-to-number (match-string 2 s)))
16767 (m1 (string-to-number (match-string 3 s)))
16768 (t2 (and (match-end 4) (match-string 5 s)))
16769 (h2 (and t2 (string-to-number (match-string 6 s))))
16770 (m2 (and t2 (string-to-number (match-string 7 s))))
16771 dh dm)
16772 (if (not t2)
16774 (setq dh (- h2 h1) dm (- m2 m1))
16775 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16776 (concat t1 "+" (number-to-string dh)
16777 (and (/= 0 dm) (format ":%02d" dm)))))))
16779 (defun org-time-stamp-inactive (&optional arg)
16780 "Insert an inactive time stamp.
16781 An inactive time stamp is enclosed in square brackets instead of angle
16782 brackets. It is inactive in the sense that it does not trigger agenda entries,
16783 does not link to the calendar and cannot be changed with the S-cursor keys.
16784 So these are more for recording a certain time/date."
16785 (interactive "P")
16786 (org-time-stamp arg 'inactive))
16788 (defvar org-date-ovl (make-overlay 1 1))
16789 (overlay-put org-date-ovl 'face 'org-date-selected)
16790 (org-detach-overlay org-date-ovl)
16792 (defvar org-ans1) ; dynamically scoped parameter
16793 (defvar org-ans2) ; dynamically scoped parameter
16795 (defvar org-plain-time-of-day-regexp) ; defined below
16797 (defvar org-overriding-default-time nil) ; dynamically scoped
16798 (defvar org-read-date-overlay nil)
16799 (defvar org-dcst nil) ; dynamically scoped
16800 (defvar org-read-date-history nil)
16801 (defvar org-read-date-final-answer nil)
16802 (defvar org-read-date-analyze-futurep nil)
16803 (defvar org-read-date-analyze-forced-year nil)
16804 (defvar org-read-date-inactive)
16806 (defvar org-read-date-minibuffer-local-map
16807 (let* ((map (make-sparse-keymap)))
16808 (set-keymap-parent map minibuffer-local-map)
16809 (org-defkey map (kbd ".")
16810 (lambda () (interactive)
16811 ;; Are we at the beginning of the prompt?
16812 (if (org-looking-back "^[^:]+: "
16813 (let ((inhibit-field-text-motion t))
16814 (line-beginning-position)))
16815 (org-eval-in-calendar '(calendar-goto-today))
16816 (insert "."))))
16817 (org-defkey map (kbd "C-.")
16818 (lambda () (interactive)
16819 (org-eval-in-calendar '(calendar-goto-today))))
16820 (org-defkey map [(meta shift left)]
16821 (lambda () (interactive)
16822 (org-eval-in-calendar '(calendar-backward-month 1))))
16823 (org-defkey map [(meta shift right)]
16824 (lambda () (interactive)
16825 (org-eval-in-calendar '(calendar-forward-month 1))))
16826 (org-defkey map [(meta shift up)]
16827 (lambda () (interactive)
16828 (org-eval-in-calendar '(calendar-backward-year 1))))
16829 (org-defkey map [(meta shift down)]
16830 (lambda () (interactive)
16831 (org-eval-in-calendar '(calendar-forward-year 1))))
16832 (org-defkey map [?\e (shift left)]
16833 (lambda () (interactive)
16834 (org-eval-in-calendar '(calendar-backward-month 1))))
16835 (org-defkey map [?\e (shift right)]
16836 (lambda () (interactive)
16837 (org-eval-in-calendar '(calendar-forward-month 1))))
16838 (org-defkey map [?\e (shift up)]
16839 (lambda () (interactive)
16840 (org-eval-in-calendar '(calendar-backward-year 1))))
16841 (org-defkey map [?\e (shift down)]
16842 (lambda () (interactive)
16843 (org-eval-in-calendar '(calendar-forward-year 1))))
16844 (org-defkey map [(shift up)]
16845 (lambda () (interactive)
16846 (org-eval-in-calendar '(calendar-backward-week 1))))
16847 (org-defkey map [(shift down)]
16848 (lambda () (interactive)
16849 (org-eval-in-calendar '(calendar-forward-week 1))))
16850 (org-defkey map [(shift left)]
16851 (lambda () (interactive)
16852 (org-eval-in-calendar '(calendar-backward-day 1))))
16853 (org-defkey map [(shift right)]
16854 (lambda () (interactive)
16855 (org-eval-in-calendar '(calendar-forward-day 1))))
16856 (org-defkey map "!"
16857 (lambda () (interactive)
16858 (org-eval-in-calendar '(diary-view-entries))
16859 (message "")))
16860 (org-defkey map ">"
16861 (lambda () (interactive)
16862 (org-eval-in-calendar '(calendar-scroll-left 1))))
16863 (org-defkey map "<"
16864 (lambda () (interactive)
16865 (org-eval-in-calendar '(calendar-scroll-right 1))))
16866 (org-defkey map "\C-v"
16867 (lambda () (interactive)
16868 (org-eval-in-calendar
16869 '(calendar-scroll-left-three-months 1))))
16870 (org-defkey map "\M-v"
16871 (lambda () (interactive)
16872 (org-eval-in-calendar
16873 '(calendar-scroll-right-three-months 1))))
16874 map)
16875 "Keymap for minibuffer commands when using `org-read-date'.")
16877 (defvar org-def)
16878 (defvar org-defdecode)
16879 (defvar org-with-time)
16881 (defun org-read-date (&optional org-with-time to-time from-string prompt
16882 default-time default-input inactive)
16883 "Read a date, possibly a time, and make things smooth for the user.
16884 The prompt will suggest to enter an ISO date, but you can also enter anything
16885 which will at least partially be understood by `parse-time-string'.
16886 Unrecognized parts of the date will default to the current day, month, year,
16887 hour and minute. If this command is called to replace a timestamp at point,
16888 or to enter the second timestamp of a range, the default time is taken
16889 from the existing stamp. Furthermore, the command prefers the future,
16890 so if you are giving a date where the year is not given, and the day-month
16891 combination is already past in the current year, it will assume you
16892 mean next year. For details, see the manual. A few examples:
16894 3-2-5 --> 2003-02-05
16895 feb 15 --> currentyear-02-15
16896 2/15 --> currentyear-02-15
16897 sep 12 9 --> 2009-09-12
16898 12:45 --> today 12:45
16899 22 sept 0:34 --> currentyear-09-22 0:34
16900 12 --> currentyear-currentmonth-12
16901 Fri --> nearest Friday after today
16902 -Tue --> last Tuesday
16903 etc.
16905 Furthermore you can specify a relative date by giving, as the *first* thing
16906 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16907 change in days weeks, months, years.
16908 With a single plus or minus, the date is relative to today. With a double
16909 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16910 +4d --> four days from today
16911 +4 --> same as above
16912 +2w --> two weeks from today
16913 ++5 --> five days from default date
16915 The function understands only English month and weekday abbreviations.
16917 While prompting, a calendar is popped up - you can also select the
16918 date with the mouse (button 1). The calendar shows a period of three
16919 months. To scroll it to other months, use the keys `>' and `<'.
16920 If you don't like the calendar, turn it off with
16921 (setq org-read-date-popup-calendar nil)
16923 With optional argument TO-TIME, the date will immediately be converted
16924 to an internal time.
16925 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16926 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16927 still enter a time, and this function will inform the calling routine
16928 about this change. The calling routine may then choose to change the
16929 format used to insert the time stamp into the buffer to include the time.
16930 With optional argument FROM-STRING, read from this string instead from
16931 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16932 the time/date that is used for everything that is not specified by the
16933 user."
16934 (require 'parse-time)
16935 (let* ((org-time-stamp-rounding-minutes
16936 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16937 (org-dcst org-display-custom-times)
16938 (ct (org-current-time))
16939 (org-def (or org-overriding-default-time default-time ct))
16940 (org-defdecode (decode-time org-def))
16941 (dummy (progn
16942 (when (< (nth 2 org-defdecode) org-extend-today-until)
16943 (setcar (nthcdr 2 org-defdecode) -1)
16944 (setcar (nthcdr 1 org-defdecode) 59)
16945 (setq org-def (apply 'encode-time org-defdecode)
16946 org-defdecode (decode-time org-def)))))
16947 (cur-frame (selected-frame))
16948 (mouse-autoselect-window nil) ; Don't let the mouse jump
16949 (calendar-frame-setup nil)
16950 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16951 (calendar-move-hook nil)
16952 (calendar-view-diary-initially-flag nil)
16953 (calendar-view-holidays-initially-flag nil)
16954 (timestr (format-time-string
16955 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16956 (prompt (concat (if prompt (concat prompt " ") "")
16957 (format "Date+time [%s]: " timestr)))
16958 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16960 (cond
16961 (from-string (setq ans from-string))
16962 (org-read-date-popup-calendar
16963 (save-excursion
16964 (save-window-excursion
16965 (calendar)
16966 (when (eq calendar-setup 'calendar-only)
16967 (setq cal-frame
16968 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16969 (select-frame cal-frame))
16970 (org-eval-in-calendar '(setq cursor-type nil) t)
16971 (unwind-protect
16972 (progn
16973 (calendar-forward-day (- (time-to-days org-def)
16974 (calendar-absolute-from-gregorian
16975 (calendar-current-date))))
16976 (org-eval-in-calendar nil t)
16977 (let* ((old-map (current-local-map))
16978 (map (copy-keymap calendar-mode-map))
16979 (minibuffer-local-map
16980 (copy-keymap org-read-date-minibuffer-local-map)))
16981 (org-defkey map (kbd "RET") 'org-calendar-select)
16982 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16983 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16984 (unwind-protect
16985 (progn
16986 (use-local-map map)
16987 (setq org-read-date-inactive inactive)
16988 (add-hook 'post-command-hook 'org-read-date-display)
16989 (setq org-ans0 (read-string prompt default-input
16990 'org-read-date-history nil))
16991 ;; org-ans0: from prompt
16992 ;; org-ans1: from mouse click
16993 ;; org-ans2: from calendar motion
16994 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16995 (remove-hook 'post-command-hook 'org-read-date-display)
16996 (use-local-map old-map)
16997 (when org-read-date-overlay
16998 (delete-overlay org-read-date-overlay)
16999 (setq org-read-date-overlay nil)))))
17000 (bury-buffer "*Calendar*")
17001 (when cal-frame
17002 (delete-frame cal-frame)
17003 (select-frame-set-input-focus cur-frame))))))
17005 (t ; Naked prompt only
17006 (unwind-protect
17007 (setq ans (read-string prompt default-input
17008 'org-read-date-history timestr))
17009 (when org-read-date-overlay
17010 (delete-overlay org-read-date-overlay)
17011 (setq org-read-date-overlay nil)))))
17013 (setq final (org-read-date-analyze ans org-def org-defdecode))
17015 (when org-read-date-analyze-forced-year
17016 (message "Year was forced into %s"
17017 (if org-read-date-force-compatible-dates
17018 "compatible range (1970-2037)"
17019 "range representable on this machine"))
17020 (ding))
17022 ;; One round trip to get rid of 34th of August and stuff like that....
17023 (setq final (decode-time (apply 'encode-time final)))
17025 (setq org-read-date-final-answer ans)
17027 (if to-time
17028 (apply 'encode-time final)
17029 (if (and (boundp 'org-time-was-given) org-time-was-given)
17030 (format "%04d-%02d-%02d %02d:%02d"
17031 (nth 5 final) (nth 4 final) (nth 3 final)
17032 (nth 2 final) (nth 1 final))
17033 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
17035 (defun org-read-date-display ()
17036 "Display the current date prompt interpretation in the minibuffer."
17037 (when org-read-date-display-live
17038 (when org-read-date-overlay
17039 (delete-overlay org-read-date-overlay))
17040 (when (minibufferp (current-buffer))
17041 (save-excursion
17042 (end-of-line 1)
17043 (while (not (equal (buffer-substring
17044 (max (point-min) (- (point) 4)) (point))
17045 " "))
17046 (insert " ")))
17047 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
17048 " " (or org-ans1 org-ans2)))
17049 (org-end-time-was-given nil)
17050 (f (org-read-date-analyze ans org-def org-defdecode))
17051 (fmts (if org-dcst
17052 org-time-stamp-custom-formats
17053 org-time-stamp-formats))
17054 (fmt (if (or org-with-time
17055 (and (boundp 'org-time-was-given) org-time-was-given))
17056 (cdr fmts)
17057 (car fmts)))
17058 (txt (format-time-string fmt (apply 'encode-time f)))
17059 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
17060 (txt (concat "=> " txt)))
17061 (when (and org-end-time-was-given
17062 (string-match org-plain-time-of-day-regexp txt))
17063 (setq txt (concat (substring txt 0 (match-end 0)) "-"
17064 org-end-time-was-given
17065 (substring txt (match-end 0)))))
17066 (when org-read-date-analyze-futurep
17067 (setq txt (concat txt " (=>F)")))
17068 (setq org-read-date-overlay
17069 (make-overlay (1- (point-at-eol)) (point-at-eol)))
17070 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
17072 (defun org-read-date-analyze (ans org-def org-defdecode)
17073 "Analyze the combined answer of the date prompt."
17074 ;; FIXME: cleanup and comment
17075 ;; Pass `current-time' result to `decode-time' (instead of calling
17076 ;; without arguments) so that only `current-time' has to be
17077 ;; overriden in tests.
17078 (let ((nowdecode (decode-time (current-time)))
17079 delta deltan deltaw deltadef year month day
17080 hour minute second wday pm h2 m2 tl wday1
17081 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
17082 (setq org-read-date-analyze-futurep nil
17083 org-read-date-analyze-forced-year nil)
17084 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
17085 (setq ans "+0"))
17087 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
17088 (setq ans (replace-match "" t t ans)
17089 deltan (car delta)
17090 deltaw (nth 1 delta)
17091 deltadef (nth 2 delta)))
17093 ;; Check if there is an iso week date in there. If yes, store the
17094 ;; info and postpone interpreting it until the rest of the parsing
17095 ;; is done.
17096 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
17097 (setq iso-year (if (match-end 1)
17098 (org-small-year-to-year
17099 (string-to-number (match-string 1 ans))))
17100 iso-weekday (if (match-end 3)
17101 (string-to-number (match-string 3 ans)))
17102 iso-week (string-to-number (match-string 2 ans)))
17103 (setq ans (replace-match "" t t ans)))
17105 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
17106 (when (string-match
17107 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
17108 (setq year (if (match-end 2)
17109 (string-to-number (match-string 2 ans))
17110 (progn (setq kill-year t)
17111 (string-to-number (format-time-string "%Y"))))
17112 month (string-to-number (match-string 3 ans))
17113 day (string-to-number (match-string 4 ans)))
17114 (if (< year 100) (setq year (+ 2000 year)))
17115 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17116 t nil ans)))
17118 ;; Help matching dotted european dates
17119 (when (string-match
17120 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
17121 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
17122 (setq kill-year t)
17123 (string-to-number (format-time-string "%Y")))
17124 day (string-to-number (match-string 1 ans))
17125 month (string-to-number (match-string 2 ans))
17126 ans (replace-match (format "%04d-%02d-%02d" year month day)
17127 t nil ans)))
17129 ;; Help matching american dates, like 5/30 or 5/30/7
17130 (when (string-match
17131 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
17132 (setq year (if (match-end 4)
17133 (string-to-number (match-string 4 ans))
17134 (progn (setq kill-year t)
17135 (string-to-number (format-time-string "%Y"))))
17136 month (string-to-number (match-string 1 ans))
17137 day (string-to-number (match-string 2 ans)))
17138 (if (< year 100) (setq year (+ 2000 year)))
17139 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17140 t nil ans)))
17141 ;; Help matching am/pm times, because `parse-time-string' does not do that.
17142 ;; If there is a time with am/pm, and *no* time without it, we convert
17143 ;; so that matching will be successful.
17144 (loop for i from 1 to 2 do ; twice, for end time as well
17145 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
17146 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
17147 (setq hour (string-to-number (match-string 1 ans))
17148 minute (if (match-end 3)
17149 (string-to-number (match-string 3 ans))
17151 pm (equal ?p
17152 (string-to-char (downcase (match-string 4 ans)))))
17153 (if (and (= hour 12) (not pm))
17154 (setq hour 0)
17155 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
17156 (setq ans (replace-match (format "%02d:%02d" hour minute)
17157 t t ans))))
17159 ;; Check if a time range is given as a duration
17160 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
17161 (setq hour (string-to-number (match-string 1 ans))
17162 h2 (+ hour (string-to-number (match-string 3 ans)))
17163 minute (string-to-number (match-string 2 ans))
17164 m2 (+ minute (if (match-end 5) (string-to-number
17165 (match-string 5 ans))0)))
17166 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
17167 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
17168 t t ans)))
17170 ;; Check if there is a time range
17171 (when (boundp 'org-end-time-was-given)
17172 (setq org-time-was-given nil)
17173 (when (and (string-match org-plain-time-of-day-regexp ans)
17174 (match-end 8))
17175 (setq org-end-time-was-given (match-string 8 ans))
17176 (setq ans (concat (substring ans 0 (match-beginning 7))
17177 (substring ans (match-end 7))))))
17179 (setq tl (parse-time-string ans)
17180 day (or (nth 3 tl) (nth 3 org-defdecode))
17181 month
17182 (cond ((nth 4 tl))
17183 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
17184 ;; Day was specified. Make sure DAY+MONTH
17185 ;; combination happens in the future.
17186 ((nth 3 tl)
17187 (setq futurep t)
17188 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
17189 (nth 4 nowdecode)))
17190 (t (nth 4 org-defdecode)))
17191 year
17192 (cond ((and (not kill-year) (nth 5 tl)))
17193 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
17194 ;; Month was guessed in the future and is at least
17195 ;; equal to NOWDECODE's. Fix year accordingly.
17196 (futurep
17197 (if (or (> month (nth 4 nowdecode))
17198 (>= day (nth 3 nowdecode)))
17199 (nth 5 nowdecode)
17200 (1+ (nth 5 nowdecode))))
17201 ;; Month was specified. Make sure MONTH+YEAR
17202 ;; combination happens in the future.
17203 ((nth 4 tl)
17204 (setq futurep t)
17205 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
17206 ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
17207 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
17208 (t (nth 5 nowdecode))))
17209 (t (nth 5 org-defdecode)))
17210 hour (or (nth 2 tl) (nth 2 org-defdecode))
17211 minute (or (nth 1 tl) (nth 1 org-defdecode))
17212 second (or (nth 0 tl) 0)
17213 wday (nth 6 tl))
17215 (when (and (eq org-read-date-prefer-future 'time)
17216 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
17217 (equal day (nth 3 nowdecode))
17218 (equal month (nth 4 nowdecode))
17219 (equal year (nth 5 nowdecode))
17220 (nth 2 tl)
17221 (or (< (nth 2 tl) (nth 2 nowdecode))
17222 (and (= (nth 2 tl) (nth 2 nowdecode))
17223 (nth 1 tl)
17224 (< (nth 1 tl) (nth 1 nowdecode)))))
17225 (setq day (1+ day)
17226 futurep t))
17228 ;; Special date definitions below
17229 (cond
17230 (iso-week
17231 ;; There was an iso week
17232 (require 'cal-iso)
17233 (setq futurep nil)
17234 (setq year (or iso-year year)
17235 day (or iso-weekday wday 1)
17236 wday nil ; to make sure that the trigger below does not match
17237 iso-date (calendar-gregorian-from-absolute
17238 (calendar-iso-to-absolute
17239 (list iso-week day year))))
17240 ; FIXME: Should we also push ISO weeks into the future?
17241 ; (when (and org-read-date-prefer-future
17242 ; (not iso-year)
17243 ; (< (calendar-absolute-from-gregorian iso-date)
17244 ; (time-to-days (current-time))))
17245 ; (setq year (1+ year)
17246 ; iso-date (calendar-gregorian-from-absolute
17247 ; (calendar-iso-to-absolute
17248 ; (list iso-week day year)))))
17249 (setq month (car iso-date)
17250 year (nth 2 iso-date)
17251 day (nth 1 iso-date)))
17252 (deltan
17253 (setq futurep nil)
17254 (unless deltadef
17255 ;; Pass `current-time' result to `decode-time' (instead of
17256 ;; calling without arguments) so that only `current-time' has
17257 ;; to be overriden in tests.
17258 (let ((now (decode-time (current-time))))
17259 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17260 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17261 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17262 ((equal deltaw "m") (setq month (+ month deltan)))
17263 ((equal deltaw "y") (setq year (+ year deltan)))))
17264 ((and wday (not (nth 3 tl)))
17265 ;; Weekday was given, but no day, so pick that day in the week
17266 ;; on or after the derived date.
17267 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17268 (unless (equal wday wday1)
17269 (setq day (+ day (% (- wday wday1 -7) 7))))))
17270 (if (and (boundp 'org-time-was-given)
17271 (nth 2 tl))
17272 (setq org-time-was-given t))
17273 (if (< year 100) (setq year (+ 2000 year)))
17274 ;; Check of the date is representable
17275 (if org-read-date-force-compatible-dates
17276 (progn
17277 (if (< year 1970)
17278 (setq year 1970 org-read-date-analyze-forced-year t))
17279 (if (> year 2037)
17280 (setq year 2037 org-read-date-analyze-forced-year t)))
17281 (condition-case nil
17282 (ignore (encode-time second minute hour day month year))
17283 (error
17284 (setq year (nth 5 org-defdecode))
17285 (setq org-read-date-analyze-forced-year t))))
17286 (setq org-read-date-analyze-futurep futurep)
17287 (list second minute hour day month year)))
17289 (defvar parse-time-weekdays)
17290 (defun org-read-date-get-relative (s today default)
17291 "Check string S for special relative date string.
17292 TODAY and DEFAULT are internal times, for today and for a default.
17293 Return shift list (N what def-flag)
17294 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17295 N is the number of WHATs to shift.
17296 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17297 the DEFAULT date rather than TODAY."
17298 (require 'parse-time)
17299 (when (and
17300 (string-match
17301 (concat
17302 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17303 "\\([0-9]+\\)?"
17304 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17305 "\\([ \t]\\|$\\)") s)
17306 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17307 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17308 (string-to-char (substring (match-string 1 s) -1))
17309 ?+))
17310 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17311 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17312 (what (if (match-end 3) (match-string 3 s) "d"))
17313 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17314 (date (if rel default today))
17315 (wday (nth 6 (decode-time date)))
17316 delta)
17317 (if wday1
17318 (progn
17319 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17320 (if (= delta 0) (setq delta 7))
17321 (if (= dir ?-)
17322 (progn
17323 (setq delta (- delta 7))
17324 (if (= delta 0) (setq delta -7))))
17325 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17326 (list delta "d" rel))
17327 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17329 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17330 "Turn a user-specified date into the internal representation.
17331 The internal representation needed by the calendar is (month day year).
17332 This is a wrapper to handle the brain-dead convention in calendar that
17333 user function argument order change dependent on argument order."
17334 (if (boundp 'calendar-date-style)
17335 (cond
17336 ((eq calendar-date-style 'american)
17337 (list arg1 arg2 arg3))
17338 ((eq calendar-date-style 'european)
17339 (list arg2 arg1 arg3))
17340 ((eq calendar-date-style 'iso)
17341 (list arg2 arg3 arg1)))
17342 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17343 (if (org-bound-and-true-p european-calendar-style)
17344 (list arg2 arg1 arg3)
17345 (list arg1 arg2 arg3)))))
17347 (defun org-eval-in-calendar (form &optional keepdate)
17348 "Eval FORM in the calendar window and return to current window.
17349 Unless KEEPDATE is non-nil, update `org-ans2' to the cursor date."
17350 (let ((sf (selected-frame))
17351 (sw (selected-window)))
17352 (select-window (get-buffer-window "*Calendar*" t))
17353 (eval form)
17354 (when (and (not keepdate) (calendar-cursor-to-date))
17355 (let* ((date (calendar-cursor-to-date))
17356 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17357 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17358 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17359 (select-window sw)
17360 (org-select-frame-set-input-focus sf)))
17362 (defun org-calendar-select ()
17363 "Return to `org-read-date' with the date currently selected.
17364 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17365 (interactive)
17366 (when (calendar-cursor-to-date)
17367 (let* ((date (calendar-cursor-to-date))
17368 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17369 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17370 (if (active-minibuffer-window) (exit-minibuffer))))
17372 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17373 "Insert a date stamp for the date given by the internal TIME.
17374 See `format-time-string' for the format of TIME.
17375 WITH-HM means use the stamp format that includes the time of the day.
17376 INACTIVE means use square brackets instead of angular ones, so that the
17377 stamp will not contribute to the agenda.
17378 PRE and POST are optional strings to be inserted before and after the
17379 stamp.
17380 The command returns the inserted time stamp."
17381 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17382 stamp)
17383 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17384 (insert-before-markers (or pre ""))
17385 (when (listp extra)
17386 (setq extra (car extra))
17387 (if (and (stringp extra)
17388 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17389 (setq extra (format "-%02d:%02d"
17390 (string-to-number (match-string 1 extra))
17391 (string-to-number (match-string 2 extra))))
17392 (setq extra nil)))
17393 (when extra
17394 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17395 (insert-before-markers (setq stamp (format-time-string fmt time)))
17396 (insert-before-markers (or post ""))
17397 (setq org-last-inserted-timestamp stamp)))
17399 (defun org-toggle-time-stamp-overlays ()
17400 "Toggle the use of custom time stamp formats."
17401 (interactive)
17402 (setq org-display-custom-times (not org-display-custom-times))
17403 (unless org-display-custom-times
17404 (let ((p (point-min)) (bmp (buffer-modified-p)))
17405 (while (setq p (next-single-property-change p 'display))
17406 (if (and (get-text-property p 'display)
17407 (eq (get-text-property p 'face) 'org-date))
17408 (remove-text-properties
17409 p (setq p (next-single-property-change p 'display))
17410 '(display t))))
17411 (set-buffer-modified-p bmp)))
17412 (if (featurep 'xemacs)
17413 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17414 (org-restart-font-lock)
17415 (setq org-table-may-need-update t)
17416 (if org-display-custom-times
17417 (message "Time stamps are overlaid with custom format")
17418 (message "Time stamp overlays removed")))
17420 (defun org-display-custom-time (beg end)
17421 "Overlay modified time stamp format over timestamp between BEG and END."
17422 (let* ((ts (buffer-substring beg end))
17423 t1 w1 with-hm tf time str w2 (off 0))
17424 (save-match-data
17425 (setq t1 (org-parse-time-string ts t))
17426 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17427 (setq off (- (match-end 0) (match-beginning 0)))))
17428 (setq end (- end off))
17429 (setq w1 (- end beg)
17430 with-hm (and (nth 1 t1) (nth 2 t1))
17431 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17432 time (org-fix-decoded-time t1)
17433 str (org-add-props
17434 (format-time-string
17435 (substring tf 1 -1) (apply 'encode-time time))
17436 nil 'mouse-face 'highlight)
17437 w2 (length str))
17438 (if (not (= w2 w1))
17439 (add-text-properties (1+ beg) (+ 2 beg)
17440 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17441 (if (featurep 'xemacs)
17442 (progn
17443 (put-text-property beg end 'invisible t)
17444 (put-text-property beg end 'end-glyph (make-glyph str)))
17445 (put-text-property beg end 'display str))))
17447 (defun org-fix-decoded-time (time)
17448 "Set 0 instead of nil for the first 6 elements of time.
17449 Don't touch the rest."
17450 (let ((n 0))
17451 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17453 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17455 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17456 "Difference between TIMESTAMP-STRING and now in days.
17457 If SECONDS is non-nil, return the difference in seconds."
17458 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17459 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17460 (funcall fdiff (current-time)))))
17462 (defun org-deadline-close (timestamp-string &optional ndays)
17463 "Is the time in TIMESTAMP-STRING close to the current date?"
17464 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17465 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17466 (not (org-entry-is-done-p))))
17468 (defun org-get-wdays (ts &optional delay zero-delay)
17469 "Get the deadline lead time appropriate for timestring TS.
17470 When DELAY is non-nil, get the delay time for scheduled items
17471 instead of the deadline lead time. When ZERO-DELAY is non-nil
17472 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17473 don't try to find the delay cookie in the scheduled timestamp."
17474 (let ((tv (if delay org-scheduled-delay-days
17475 org-deadline-warning-days)))
17476 (cond
17477 ((or (and delay (< tv 0))
17478 (and delay zero-delay (<= tv 0))
17479 (and (not delay) (<= tv 0)))
17480 ;; Enforce this value no matter what
17481 (- tv))
17482 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17483 ;; lead time is specified.
17484 (floor (* (string-to-number (match-string 1 ts))
17485 (cdr (assoc (match-string 2 ts)
17486 '(("d" . 1) ("w" . 7)
17487 ("m" . 30.4) ("y" . 365.25)
17488 ("h" . 0.041667)))))))
17489 ;; go for the default.
17490 (t tv))))
17492 (defun org-calendar-select-mouse (ev)
17493 "Return to `org-read-date' with the date currently selected.
17494 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17495 (interactive "e")
17496 (mouse-set-point ev)
17497 (when (calendar-cursor-to-date)
17498 (let* ((date (calendar-cursor-to-date))
17499 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17500 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17501 (if (active-minibuffer-window) (exit-minibuffer))))
17503 (defun org-check-deadlines (ndays)
17504 "Check if there are any deadlines due or past due.
17505 A deadline is considered due if it happens within `org-deadline-warning-days'
17506 days from today's date. If the deadline appears in an entry marked DONE,
17507 it is not shown. The prefix arg NDAYS can be used to test that many
17508 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17509 (interactive "P")
17510 (let* ((org-warn-days
17511 (cond
17512 ((equal ndays '(4)) 100000)
17513 (ndays (prefix-numeric-value ndays))
17514 (t (abs org-deadline-warning-days))))
17515 (case-fold-search nil)
17516 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17517 (callback
17518 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17519 (message "%d deadlines past-due or due within %d days"
17520 (org-occur regexp nil callback)
17521 org-warn-days)))
17523 (defsubst org-re-timestamp (type)
17524 "Return a regexp for timestamp TYPE.
17525 Allowed values for TYPE are:
17527 all: all timestamps
17528 active: only active timestamps (<...>)
17529 inactive: only inactive timestamps ([...])
17530 scheduled: only scheduled timestamps
17531 deadline: only deadline timestamps
17532 closed: only closed time-stamps
17534 When TYPE is nil, fall back on returning a regexp that matches
17535 both scheduled and deadline timestamps."
17536 (case type
17537 (all org-ts-regexp-both)
17538 (active org-ts-regexp)
17539 (inactive org-ts-regexp-inactive)
17540 (scheduled org-scheduled-time-regexp)
17541 (deadline org-deadline-time-regexp)
17542 (closed org-closed-time-regexp)
17543 (otherwise
17544 (concat "\\<"
17545 (regexp-opt (list org-deadline-string org-scheduled-string))
17546 " *<\\([^>]+\\)>"))))
17548 (defun org-check-before-date (date)
17549 "Check if there are deadlines or scheduled entries before DATE."
17550 (interactive (list (org-read-date)))
17551 (let ((case-fold-search nil)
17552 (regexp (org-re-timestamp org-ts-type))
17553 (callback
17554 `(lambda ()
17555 (let ((match (match-string 1)))
17556 (and ,(if (memq org-ts-type '(active inactive all))
17557 '(eq (org-element-type (save-excursion
17558 (backward-char)
17559 (org-element-context)))
17560 'timestamp)
17561 '(org-at-planning-p))
17562 (time-less-p
17563 (org-time-string-to-time match)
17564 (org-time-string-to-time date)))))))
17565 (message "%d entries before %s"
17566 (org-occur regexp nil callback) date)))
17568 (defun org-check-after-date (date)
17569 "Check if there are deadlines or scheduled entries after DATE."
17570 (interactive (list (org-read-date)))
17571 (let ((case-fold-search nil)
17572 (regexp (org-re-timestamp org-ts-type))
17573 (callback
17574 `(lambda ()
17575 (let ((match (match-string 1)))
17576 (and ,(if (memq org-ts-type '(active inactive all))
17577 '(eq (org-element-type (save-excursion
17578 (backward-char)
17579 (org-element-context)))
17580 'timestamp)
17581 '(org-at-planning-p))
17582 (not (time-less-p
17583 (org-time-string-to-time match)
17584 (org-time-string-to-time date))))))))
17585 (message "%d entries after %s"
17586 (org-occur regexp nil callback) date)))
17588 (defun org-check-dates-range (start-date end-date)
17589 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17590 (interactive (list (org-read-date nil nil nil "Range starts")
17591 (org-read-date nil nil nil "Range end")))
17592 (let ((case-fold-search nil)
17593 (regexp (org-re-timestamp org-ts-type))
17594 (callback
17595 `(lambda ()
17596 (let ((match (match-string 1)))
17597 (and
17598 ,(if (memq org-ts-type '(active inactive all))
17599 '(eq (org-element-type (save-excursion
17600 (backward-char)
17601 (org-element-context)))
17602 'timestamp)
17603 '(org-at-planning-p))
17604 (not (time-less-p
17605 (org-time-string-to-time match)
17606 (org-time-string-to-time start-date)))
17607 (time-less-p
17608 (org-time-string-to-time match)
17609 (org-time-string-to-time end-date)))))))
17610 (message "%d entries between %s and %s"
17611 (org-occur regexp nil callback) start-date end-date)))
17613 (defun org-evaluate-time-range (&optional to-buffer)
17614 "Evaluate a time range by computing the difference between start and end.
17615 Normally the result is just printed in the echo area, but with prefix arg
17616 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17617 If the time range is actually in a table, the result is inserted into the
17618 next column.
17619 For time difference computation, a year is assumed to be exactly 365
17620 days in order to avoid rounding problems."
17621 (interactive "P")
17623 (org-clock-update-time-maybe)
17624 (save-excursion
17625 (unless (org-at-date-range-p t)
17626 (goto-char (point-at-bol))
17627 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17628 (if (not (org-at-date-range-p t))
17629 (user-error "Not at a time-stamp range, and none found in current line")))
17630 (let* ((ts1 (match-string 1))
17631 (ts2 (match-string 2))
17632 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17633 (match-end (match-end 0))
17634 (time1 (org-time-string-to-time ts1))
17635 (time2 (org-time-string-to-time ts2))
17636 (t1 (org-float-time time1))
17637 (t2 (org-float-time time2))
17638 (diff (abs (- t2 t1)))
17639 (negative (< (- t2 t1) 0))
17640 ;; (ys (floor (* 365 24 60 60)))
17641 (ds (* 24 60 60))
17642 (hs (* 60 60))
17643 (fy "%dy %dd %02d:%02d")
17644 (fy1 "%dy %dd")
17645 (fd "%dd %02d:%02d")
17646 (fd1 "%dd")
17647 (fh "%02d:%02d")
17648 y d h m align)
17649 (if havetime
17650 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17652 d (floor (/ diff ds)) diff (mod diff ds)
17653 h (floor (/ diff hs)) diff (mod diff hs)
17654 m (floor (/ diff 60)))
17655 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17657 d (floor (+ (/ diff ds) 0.5))
17658 h 0 m 0))
17659 (if (not to-buffer)
17660 (message "%s" (org-make-tdiff-string y d h m))
17661 (if (org-at-table-p)
17662 (progn
17663 (goto-char match-end)
17664 (setq align t)
17665 (and (looking-at " *|") (goto-char (match-end 0))))
17666 (goto-char match-end))
17667 (if (looking-at
17668 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17669 (replace-match ""))
17670 (if negative (insert " -"))
17671 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17672 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17673 (insert " " (format fh h m))))
17674 (if align (org-table-align))
17675 (message "Time difference inserted")))))
17677 (defun org-make-tdiff-string (y d h m)
17678 (let ((fmt "")
17679 (l nil))
17680 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17681 l (push y l)))
17682 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17683 l (push d l)))
17684 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17685 l (push h l)))
17686 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17687 l (push m l)))
17688 (apply 'format fmt (nreverse l))))
17690 (defun org-time-string-to-time (s &optional buffer pos)
17691 "Convert a timestamp string into internal time."
17692 (condition-case errdata
17693 (apply 'encode-time (org-parse-time-string s))
17694 (error (error "Bad timestamp `%s'%s\nError was: %s"
17695 s (if (not (and buffer pos))
17697 (format-message " at %d in buffer `%s'" pos buffer))
17698 (cdr errdata)))))
17700 (defun org-time-string-to-seconds (s)
17701 "Convert a timestamp string to a number of seconds."
17702 (org-float-time (org-time-string-to-time s)))
17704 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17705 "Convert a time stamp to an absolute day number.
17706 If there is a specifier for a cyclic time stamp, get the closest
17707 date to DAYNR.
17708 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17709 The variable `date' is bound by the calendar when this is called."
17710 (cond
17711 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17712 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17713 daynr
17714 (+ daynr 1000)))
17715 ((and daynr (string-match "\\+\\([0-9]+\\)[hdwmy]" s)
17716 (> (string-to-number (match-string 1 s)) 0))
17717 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17718 (time-to-days (current-time))) (match-string 0 s)
17719 prefer show-all))
17720 (t (time-to-days
17721 (condition-case errdata
17722 (apply 'encode-time (org-parse-time-string s))
17723 (error (error "Bad timestamp `%s'%s\nError was: %s"
17724 s (if (not (and buffer pos))
17726 (format-message " at %d in buffer `%s'" pos buffer))
17727 (cdr errdata))))))))
17729 (defun org-days-to-iso-week (days)
17730 "Return the iso week number."
17731 (require 'cal-iso)
17732 (car (calendar-iso-from-absolute days)))
17734 (defun org-small-year-to-year (year)
17735 "Convert 2-digit years into 4-digit years.
17736 YEAR is expanded into one of the 30 next years, if possible, or
17737 into a past one. Any year larger than 99 is returned unchanged."
17738 (if (>= year 100) year
17739 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17740 (century (/ current 100))
17741 (offset (- year (% current 100))))
17742 (cond ((> offset 30) (+ (* (1- century) 100) year))
17743 ((> offset -70) (+ (* century 100) year))
17744 (t (+ (* (1+ century) 100) year))))))
17746 (defun org-time-from-absolute (d)
17747 "Return the time corresponding to date D.
17748 D may be an absolute day number, or a calendar-type list (month day year)."
17749 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17750 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17752 (defun org-calendar-holiday ()
17753 "List of holidays, for Diary display in Org-mode."
17754 (require 'holidays)
17755 (let ((hl (funcall
17756 (if (fboundp 'calendar-check-holidays)
17757 'calendar-check-holidays 'check-calendar-holidays) date)))
17758 (if hl (mapconcat 'identity hl "; "))))
17760 (defun org-diary-sexp-entry (sexp entry date)
17761 "Process a SEXP diary ENTRY for DATE."
17762 (require 'diary-lib)
17763 (let ((result (if calendar-debug-sexp
17764 (let ((stack-trace-on-error t))
17765 (eval (car (read-from-string sexp))))
17766 (condition-case nil
17767 (eval (car (read-from-string sexp)))
17768 (error
17769 (beep)
17770 (message "Bad sexp at line %d in %s: %s"
17771 (org-current-line)
17772 (buffer-file-name) sexp)
17773 (sleep-for 2))))))
17774 (cond ((stringp result) (split-string result "; "))
17775 ((and (consp result)
17776 (not (consp (cdr result)))
17777 (stringp (cdr result))) (cdr result))
17778 ((and (consp result)
17779 (stringp (car result))) result)
17780 (result entry))))
17782 (defun org-diary-to-ical-string (frombuf)
17783 "Get iCalendar entries from diary entries in buffer FROMBUF.
17784 This uses the icalendar.el library."
17785 (let* ((tmpdir (if (featurep 'xemacs)
17786 (temp-directory)
17787 temporary-file-directory))
17788 (tmpfile (make-temp-name
17789 (expand-file-name "orgics" tmpdir)))
17790 buf rtn b e)
17791 (with-current-buffer frombuf
17792 (icalendar-export-region (point-min) (point-max) tmpfile)
17793 (setq buf (find-buffer-visiting tmpfile))
17794 (set-buffer buf)
17795 (goto-char (point-min))
17796 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17797 (setq b (match-beginning 0)))
17798 (goto-char (point-max))
17799 (if (re-search-backward "^END:VEVENT" nil t)
17800 (setq e (match-end 0)))
17801 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17802 (kill-buffer buf)
17803 (delete-file tmpfile)
17804 rtn))
17806 (defun org-closest-date (start current change prefer show-all)
17807 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17808 When PREFER is `past', return a date that is either CURRENT or past.
17809 When PREFER is `future', return a date that is either CURRENT or future.
17810 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17811 ;; Make the proper lists from the dates
17812 (catch 'exit
17813 (let ((a1 '(("h" . hour)
17814 ("d" . day)
17815 ("w" . week)
17816 ("m" . month)
17817 ("y" . year)))
17818 (shour (nth 2 (org-parse-time-string start)))
17819 dn dw sday cday n1 n2 n0
17820 d m y y1 y2 date1 date2 nmonths nm ny m2)
17822 (setq start (org-date-to-gregorian start)
17823 current (org-date-to-gregorian
17824 (if show-all
17825 current
17826 (time-to-days (current-time))))
17827 sday (calendar-absolute-from-gregorian start)
17828 cday (calendar-absolute-from-gregorian current))
17830 (if (<= cday sday) (throw 'exit sday))
17832 (when (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17833 (setq dn (string-to-number (match-string 1 change))
17834 dw (cdr (assoc (match-string 2 change) a1))))
17835 (unless (and dn (> dn 0))
17836 (user-error "Invalid change specifier: %s" change))
17837 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17838 (cond
17839 ((eq dw 'hour)
17840 (let ((missing-hours
17841 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17842 dn)))
17843 (setq n1 (if (zerop missing-hours) cday
17844 (- cday (1+ (floor (/ missing-hours 24)))))
17845 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17846 ((eq dw 'day)
17847 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17848 n2 (+ n1 dn)))
17849 ((eq dw 'year)
17850 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17851 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17852 (setq date1 (list m d y1)
17853 n1 (calendar-absolute-from-gregorian date1)
17854 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17855 n2 (calendar-absolute-from-gregorian date2)))
17856 ((eq dw 'month)
17857 ;; approx number of month between the two dates
17858 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17859 ;; How often does dn fit in there?
17860 (setq d (nth 1 start) m (car start) y (nth 2 start)
17861 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17862 m (+ m nm)
17863 ny (floor (/ m 12))
17864 y (+ y ny)
17865 m (- m (* ny 12)))
17866 (while (> m 12) (setq m (- m 12) y (1+ y)))
17867 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17868 (setq m2 (+ m dn) y2 y)
17869 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17870 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17871 (while (<= n2 cday)
17872 (setq n1 n2 m m2 y y2)
17873 (setq m2 (+ m dn) y2 y)
17874 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17875 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17876 ;; Make sure n1 is the earlier date
17877 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17878 (if show-all
17879 (cond
17880 ((eq prefer 'past) (if (= cday n2) n2 n1))
17881 ((eq prefer 'future) (if (= cday n1) n1 n2))
17882 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17883 (cond
17884 ((eq prefer 'past) (if (= cday n2) n2 n1))
17885 ((eq prefer 'future) (if (= cday n1) n1 n2))
17886 (t (if (= cday n1) n1 n2)))))))
17888 (defun org-date-to-gregorian (date)
17889 "Turn any specification of DATE into a Gregorian date for the calendar."
17890 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17891 ((and (listp date) (= (length date) 3)) date)
17892 ((stringp date)
17893 (setq date (org-parse-time-string date))
17894 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17895 ((listp date)
17896 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17898 (defun org-parse-time-string (s &optional nodefault)
17899 "Parse the standard Org-mode time string.
17900 This should be a lot faster than the normal `parse-time-string'.
17901 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17902 hour and minute fields will be nil if not given."
17903 (cond ((string-match org-ts-regexp0 s)
17904 (list 0
17905 (if (or (match-beginning 8) (not nodefault))
17906 (string-to-number (or (match-string 8 s) "0")))
17907 (if (or (match-beginning 7) (not nodefault))
17908 (string-to-number (or (match-string 7 s) "0")))
17909 (string-to-number (match-string 4 s))
17910 (string-to-number (match-string 3 s))
17911 (string-to-number (match-string 2 s))
17912 nil nil nil))
17913 ((string-match "^<[^>]+>$" s)
17914 (decode-time (seconds-to-time (org-matcher-time s))))
17915 (t (error "Not a standard Org-mode time string: %s" s))))
17917 (defun org-timestamp-up (&optional arg)
17918 "Increase the date item at the cursor by one.
17919 If the cursor is on the year, change the year. If it is on the month,
17920 the day or the time, change that.
17921 With prefix ARG, change by that many units."
17922 (interactive "p")
17923 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17925 (defun org-timestamp-down (&optional arg)
17926 "Decrease the date item at the cursor by one.
17927 If the cursor is on the year, change the year. If it is on the month,
17928 the day or the time, change that.
17929 With prefix ARG, change by that many units."
17930 (interactive "p")
17931 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17933 (defun org-timestamp-up-day (&optional arg)
17934 "Increase the date in the time stamp by one day.
17935 With prefix ARG, change that many days."
17936 (interactive "p")
17937 (if (and (not (org-at-timestamp-p t))
17938 (org-at-heading-p))
17939 (org-todo 'up)
17940 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17942 (defun org-timestamp-down-day (&optional arg)
17943 "Decrease the date in the time stamp by one day.
17944 With prefix ARG, change that many days."
17945 (interactive "p")
17946 (if (and (not (org-at-timestamp-p t))
17947 (org-at-heading-p))
17948 (org-todo 'down)
17949 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17951 (defun org-at-timestamp-p (&optional inactive-ok)
17952 "Non-nil if point is inside a timestamp.
17954 When optional argument INACTIVE-OK is non-nil, also consider
17955 inactive timestamps.
17957 When this function returns a non-nil value, match data is set
17958 according to `org-ts-regexp3' or `org-ts-regexp2', depending on
17959 INACTIVE-OK."
17960 (interactive)
17961 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17962 (pos (point))
17963 (ans (or (looking-at tsr)
17964 (save-excursion
17965 (skip-chars-backward "^[<\n\r\t")
17966 (if (> (point) (point-min)) (backward-char 1))
17967 (and (looking-at tsr)
17968 (> (- (match-end 0) pos) -1))))))
17969 (and ans
17970 (boundp 'org-ts-what)
17971 (setq org-ts-what
17972 (cond
17973 ((= pos (match-beginning 0)) 'bracket)
17974 ;; Point is considered to be "on the bracket" whether
17975 ;; it's really on it or right after it.
17976 ((= pos (1- (match-end 0))) 'bracket)
17977 ((= pos (match-end 0)) 'after)
17978 ((org-pos-in-match-range pos 2) 'year)
17979 ((org-pos-in-match-range pos 3) 'month)
17980 ((org-pos-in-match-range pos 7) 'hour)
17981 ((org-pos-in-match-range pos 8) 'minute)
17982 ((or (org-pos-in-match-range pos 4)
17983 (org-pos-in-match-range pos 5)) 'day)
17984 ((and (> pos (or (match-end 8) (match-end 5)))
17985 (< pos (match-end 0)))
17986 (- pos (or (match-end 8) (match-end 5))))
17987 (t 'day))))
17988 ans))
17990 (defun org-toggle-timestamp-type ()
17991 "Toggle the type (<active> or [inactive]) of a time stamp."
17992 (interactive)
17993 (when (org-at-timestamp-p t)
17994 (let ((beg (match-beginning 0)) (end (match-end 0))
17995 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17996 (save-excursion
17997 (goto-char beg)
17998 (while (re-search-forward "[][<>]" end t)
17999 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
18000 t t)))
18001 (message "Timestamp is now %sactive"
18002 (if (equal (char-after beg) ?<) "" "in")))))
18004 (defun org-at-clock-log-p nil
18005 "Is the cursor on the clock log line?"
18006 (save-excursion
18007 (move-beginning-of-line 1)
18008 (looking-at org-clock-line-re)))
18010 (defvar org-clock-history) ; defined in org-clock.el
18011 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
18012 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
18013 "Change the date in the time stamp at point.
18014 The date will be changed by N times WHAT. WHAT can be `day', `month',
18015 `year', `minute', `second'. If WHAT is not given, the cursor position
18016 in the timestamp determines what will be changed.
18017 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
18018 (let ((origin (point)) origin-cat
18019 with-hm inactive
18020 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
18021 org-ts-what
18022 extra rem
18023 ts time time0 fixnext clrgx)
18024 (if (not (org-at-timestamp-p t))
18025 (user-error "Not at a timestamp"))
18026 (if (and (not what) (eq org-ts-what 'bracket))
18027 (org-toggle-timestamp-type)
18028 ;; Point isn't on brackets. Remember the part of the time-stamp
18029 ;; the point was in. Indeed, size of time-stamps may change,
18030 ;; but point must be kept in the same category nonetheless.
18031 (setq origin-cat org-ts-what)
18032 (if (and (not what) (not (eq org-ts-what 'day))
18033 org-display-custom-times
18034 (get-text-property (point) 'display)
18035 (not (get-text-property (1- (point)) 'display)))
18036 (setq org-ts-what 'day))
18037 (setq org-ts-what (or what org-ts-what)
18038 inactive (= (char-after (match-beginning 0)) ?\[)
18039 ts (match-string 0))
18040 (replace-match "")
18041 (when (string-match
18042 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
18044 (setq extra (match-string 1 ts))
18045 (if suppress-tmp-delay
18046 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
18047 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
18048 (setq with-hm t))
18049 (setq time0 (org-parse-time-string ts))
18050 (when (and updown
18051 (eq org-ts-what 'minute)
18052 (not current-prefix-arg))
18053 ;; This looks like s-up and s-down. Change by one rounding step.
18054 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
18055 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
18056 (setcar (cdr time0) (+ (nth 1 time0)
18057 (if (> n 0) (- rem) (- dm rem))))))
18058 (setq time
18059 (apply #'encode-time
18060 (or (car time0) 0)
18061 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
18062 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
18063 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
18064 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
18065 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
18066 (nthcdr 6 time0)))
18067 (when (and (member org-ts-what '(hour minute))
18068 extra
18069 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
18070 (setq extra (org-modify-ts-extra
18071 extra
18072 (if (eq org-ts-what 'hour) 2 5)
18073 n dm)))
18074 (when (integerp org-ts-what)
18075 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
18076 (if (eq what 'calendar)
18077 (let ((cal-date (org-get-date-from-calendar)))
18078 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
18079 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
18080 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
18081 (setcar time0 (or (car time0) 0))
18082 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
18083 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
18084 (setq time (apply 'encode-time time0))))
18085 ;; Insert the new time-stamp, and ensure point stays in the same
18086 ;; category as before (i.e. not after the last position in that
18087 ;; category).
18088 (let ((pos (point)))
18089 ;; Stay before inserted string. `save-excursion' is of no use.
18090 (setq org-last-changed-timestamp
18091 (org-insert-time-stamp time with-hm inactive nil nil extra))
18092 (goto-char pos))
18093 (save-match-data
18094 (looking-at org-ts-regexp3)
18095 (goto-char (cond
18096 ;; `day' category ends before `hour' if any, or at
18097 ;; the end of the day name.
18098 ((eq origin-cat 'day)
18099 (min (or (match-beginning 7) (1- (match-end 5))) origin))
18100 ((eq origin-cat 'hour) (min (match-end 7) origin))
18101 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
18102 ((integerp origin-cat) (min (1- (match-end 0)) origin))
18103 ;; `year' and `month' have both fixed size: point
18104 ;; couldn't have moved into another part.
18105 (t origin))))
18106 ;; Update clock if on a CLOCK line.
18107 (org-clock-update-time-maybe)
18108 ;; Maybe adjust the closest clock in `org-clock-history'
18109 (when org-clock-adjust-closest
18110 (if (not (and (org-at-clock-log-p)
18111 (< 1 (length (delq nil (mapcar 'marker-position
18112 org-clock-history))))))
18113 (message "No clock to adjust")
18114 (cond ((save-excursion ; fix previous clock?
18115 (re-search-backward org-ts-regexp0 nil t)
18116 (org-looking-back (concat org-clock-string " \\[")
18117 (line-beginning-position)))
18118 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
18119 ((save-excursion ; fix next clock?
18120 (re-search-backward org-ts-regexp0 nil t)
18121 (looking-at (concat org-ts-regexp0 "\\] =>")))
18122 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
18123 (save-window-excursion
18124 ;; Find closest clock to point, adjust the previous/next one in history
18125 (let* ((p (save-excursion (org-back-to-heading t)))
18126 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
18127 (clfixnth
18128 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
18129 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
18130 (if (not clfixpos)
18131 (message "No clock to adjust")
18132 (save-excursion
18133 (org-goto-marker-or-bmk clfixpos)
18134 (org-show-subtree)
18135 (when (re-search-forward clrgx nil t)
18136 (goto-char (match-beginning 1))
18137 (let (org-clock-adjust-closest)
18138 (org-timestamp-change n org-ts-what updown))
18139 (message "Clock adjusted in %s for heading: %s"
18140 (file-name-nondirectory (buffer-file-name))
18141 (org-get-heading t t)))))))))
18142 ;; Try to recenter the calendar window, if any.
18143 (if (and org-calendar-follow-timestamp-change
18144 (get-buffer-window "*Calendar*" t)
18145 (memq org-ts-what '(day month year)))
18146 (org-recenter-calendar (time-to-days time))))))
18148 (defun org-modify-ts-extra (s pos n dm)
18149 "Change the different parts of the lead-time and repeat fields in timestamp."
18150 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
18151 ng h m new rem)
18152 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
18153 (cond
18154 ((or (org-pos-in-match-range pos 2)
18155 (org-pos-in-match-range pos 3))
18156 (setq m (string-to-number (match-string 3 s))
18157 h (string-to-number (match-string 2 s)))
18158 (if (org-pos-in-match-range pos 2)
18159 (setq h (+ h n))
18160 (setq n (* dm (org-no-warnings (signum n))))
18161 (when (not (= 0 (setq rem (% m dm))))
18162 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
18163 (setq m (+ m n)))
18164 (if (< m 0) (setq m (+ m 60) h (1- h)))
18165 (if (> m 59) (setq m (- m 60) h (1+ h)))
18166 (setq h (mod h 24))
18167 (setq ng 1 new (format "-%02d:%02d" h m)))
18168 ((org-pos-in-match-range pos 6)
18169 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
18170 ((org-pos-in-match-range pos 5)
18171 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
18173 ((org-pos-in-match-range pos 9)
18174 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
18175 ((org-pos-in-match-range pos 8)
18176 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
18178 (when ng
18179 (setq s (concat
18180 (substring s 0 (match-beginning ng))
18182 (substring s (match-end ng))))))
18185 (defun org-recenter-calendar (date)
18186 "If the calendar is visible, recenter it to DATE."
18187 (let ((cwin (get-buffer-window "*Calendar*" t)))
18188 (when cwin
18189 (let ((calendar-move-hook nil))
18190 (with-selected-window cwin
18191 (calendar-goto-date (if (listp date) date
18192 (calendar-gregorian-from-absolute date))))))))
18194 (defun org-goto-calendar (&optional arg)
18195 "Go to the Emacs calendar at the current date.
18196 If there is a time stamp in the current line, go to that date.
18197 A prefix ARG can be used to force the current date."
18198 (interactive "P")
18199 (let ((tsr org-ts-regexp) diff
18200 (calendar-move-hook nil)
18201 (calendar-view-holidays-initially-flag nil)
18202 (calendar-view-diary-initially-flag nil))
18203 (if (or (org-at-timestamp-p)
18204 (save-excursion
18205 (beginning-of-line 1)
18206 (looking-at (concat ".*" tsr))))
18207 (let ((d1 (time-to-days (current-time)))
18208 (d2 (time-to-days
18209 (org-time-string-to-time (match-string 1)))))
18210 (setq diff (- d2 d1))))
18211 (calendar)
18212 (calendar-goto-today)
18213 (if (and diff (not arg)) (calendar-forward-day diff))))
18215 (defun org-get-date-from-calendar ()
18216 "Return a list (month day year) of date at point in calendar."
18217 (with-current-buffer "*Calendar*"
18218 (save-match-data
18219 (calendar-cursor-to-date))))
18221 (defun org-date-from-calendar ()
18222 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
18223 If there is already a time stamp at the cursor position, update it."
18224 (interactive)
18225 (if (org-at-timestamp-p t)
18226 (org-timestamp-change 0 'calendar)
18227 (let ((cal-date (org-get-date-from-calendar)))
18228 (org-insert-time-stamp
18229 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
18231 (defcustom org-effort-durations
18232 `(("min" . 1)
18233 ("h" . 60)
18234 ("d" . ,(* 60 8))
18235 ("w" . ,(* 60 8 5))
18236 ("m" . ,(* 60 8 5 4))
18237 ("y" . ,(* 60 8 5 40)))
18238 "Conversion factor to minutes for an effort modifier.
18240 Each entry has the form (MODIFIER . MINUTES).
18242 In an effort string, a number followed by MODIFIER is multiplied
18243 by the specified number of MINUTES to obtain an effort in
18244 minutes.
18246 For example, if the value of this variable is ((\"hours\" . 60)), then an
18247 effort string \"2hours\" is equivalent to 120 minutes."
18248 :group 'org-agenda
18249 :version "25.1"
18250 :package-version '(Org . "8.3")
18251 :type '(alist :key-type (string :tag "Modifier")
18252 :value-type (number :tag "Minutes")))
18254 (defun org-minutes-to-clocksum-string (m)
18255 "Format number of minutes as a clocksum string.
18256 The format is determined by `org-time-clocksum-format',
18257 `org-time-clocksum-use-fractional' and
18258 `org-time-clocksum-fractional-format' and
18259 `org-time-clocksum-use-effort-durations'."
18260 (let ((clocksum "")
18261 (m (round m)) ; Don't allow fractions of minutes
18262 h d w mo y fmt n)
18263 (setq h (if org-time-clocksum-use-effort-durations
18264 (cdr (assoc "h" org-effort-durations)) 60)
18265 d (if org-time-clocksum-use-effort-durations
18266 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
18267 w (if org-time-clocksum-use-effort-durations
18268 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18269 mo (if org-time-clocksum-use-effort-durations
18270 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18271 y (if org-time-clocksum-use-effort-durations
18272 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18273 ;; fractional format
18274 (if org-time-clocksum-use-fractional
18275 (cond
18276 ;; single format string
18277 ((stringp org-time-clocksum-fractional-format)
18278 (format org-time-clocksum-fractional-format (/ m (float h))))
18279 ;; choice of fractional formats for different time units
18280 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18281 (> (/ (truncate m) (* y d h)) 0))
18282 (format fmt (/ m (* y d (float h)))))
18283 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18284 (> (/ (truncate m) (* mo d h)) 0))
18285 (format fmt (/ m (* mo d (float h)))))
18286 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18287 (> (/ (truncate m) (* w d h)) 0))
18288 (format fmt (/ m (* w d (float h)))))
18289 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18290 (> (/ (truncate m) (* d h)) 0))
18291 (format fmt (/ m (* d (float h)))))
18292 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18293 (> (/ (truncate m) h) 0))
18294 (format fmt (/ m (float h))))
18295 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18296 (format fmt m))
18297 ;; fall back to smallest time unit with a format
18298 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18299 (format fmt (/ m (float h))))
18300 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18301 (format fmt (/ m (* d (float h)))))
18302 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18303 (format fmt (/ m (* w d (float h)))))
18304 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18305 (format fmt (/ m (* mo d (float h)))))
18306 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18307 (format fmt (/ m (* y d (float h))))))
18308 ;; standard (non-fractional) format, with single format string
18309 (if (stringp org-time-clocksum-format)
18310 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18311 ;; separate formats components
18312 (and (setq fmt (plist-get org-time-clocksum-format :years))
18313 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18314 (plist-get org-time-clocksum-format :require-years))
18315 (setq clocksum (concat clocksum (format fmt n))
18316 m (- m (* n y d h))))
18317 (and (setq fmt (plist-get org-time-clocksum-format :months))
18318 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18319 (plist-get org-time-clocksum-format :require-months))
18320 (setq clocksum (concat clocksum (format fmt n))
18321 m (- m (* n mo d h))))
18322 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18323 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18324 (plist-get org-time-clocksum-format :require-weeks))
18325 (setq clocksum (concat clocksum (format fmt n))
18326 m (- m (* n w d h))))
18327 (and (setq fmt (plist-get org-time-clocksum-format :days))
18328 (or (> (setq n (/ (truncate m) (* d h))) 0)
18329 (plist-get org-time-clocksum-format :require-days))
18330 (setq clocksum (concat clocksum (format fmt n))
18331 m (- m (* n d h))))
18332 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18333 (or (> (setq n (/ (truncate m) h)) 0)
18334 (plist-get org-time-clocksum-format :require-hours))
18335 (setq clocksum (concat clocksum (format fmt n))
18336 m (- m (* n h))))
18337 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18338 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18339 (setq clocksum (concat clocksum (format fmt m))))
18340 ;; return formatted time duration
18341 clocksum))))
18343 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18344 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18345 "Org mode version 8.0")
18347 (defun org-hours-to-clocksum-string (n)
18348 (org-minutes-to-clocksum-string (* n 60)))
18350 (defun org-hh:mm-string-to-minutes (s)
18351 "Convert a string H:MM to a number of minutes.
18352 If the string is just a number, interpret it as minutes.
18353 In fact, the first hh:mm or number in the string will be taken,
18354 there can be extra stuff in the string.
18355 If no number is found, the return value is 0."
18356 (cond
18357 ((integerp s) s)
18358 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18359 (+ (* (string-to-number (match-string 1 s)) 60)
18360 (string-to-number (match-string 2 s))))
18361 ((string-match "\\([0-9]+\\)" s)
18362 (string-to-number (match-string 1 s)))
18363 (t 0)))
18365 (defcustom org-image-actual-width t
18366 "Should we use the actual width of images when inlining them?
18368 When set to t, always use the image width.
18370 When set to a number, use imagemagick (when available) to set
18371 the image's width to this value.
18373 When set to a number in a list, try to get the width from any
18374 #+ATTR.* keyword if it matches a width specification like
18376 #+ATTR_HTML: :width 300px
18378 and fall back on that number if none is found.
18380 When set to nil, try to get the width from an #+ATTR.* keyword
18381 and fall back on the original width if none is found.
18383 This requires Emacs >= 24.1, build with imagemagick support."
18384 :group 'org-appearance
18385 :version "24.4"
18386 :package-version '(Org . "8.0")
18387 :type '(choice
18388 (const :tag "Use the image width" t)
18389 (integer :tag "Use a number of pixels")
18390 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18391 (const :tag "Use #+ATTR* or don't resize" nil)))
18393 (defcustom org-agenda-inhibit-startup nil
18394 "Inhibit startup when preparing agenda buffers.
18395 When this variable is t, the initialization of the Org agenda
18396 buffers is inhibited: e.g. the visibility state is not set, the
18397 tables are not re-aligned, etc."
18398 :type 'boolean
18399 :version "24.3"
18400 :group 'org-agenda)
18402 (define-obsolete-variable-alias
18403 'org-agenda-ignore-drawer-properties
18404 'org-agenda-ignore-properties "25.1")
18406 (defcustom org-agenda-ignore-properties nil
18407 "Avoid updating text properties when building the agenda.
18408 Properties are used to prepare buffers for effort estimates,
18409 appointments, statistics and subtree-local categories.
18410 If you don't use these in the agenda, you can add them to this
18411 list and agenda building will be a bit faster.
18412 The value is a list, with zero or more of the symbols `effort', `appt',
18413 `stats' or `category'."
18414 :type '(set :greedy t
18415 (const effort)
18416 (const appt)
18417 (const stats)
18418 (const category))
18419 :version "25.1"
18420 :package-version '(Org . "8.3")
18421 :group 'org-agenda)
18423 (defun org-duration-string-to-minutes (s &optional output-to-string)
18424 "Convert a duration string S to minutes.
18426 A bare number is interpreted as minutes, modifiers can be set by
18427 customizing `org-effort-durations' (which see).
18429 Entries containing a colon are interpreted as H:MM by
18430 `org-hh:mm-string-to-minutes'."
18431 (let ((result 0)
18432 (re (concat "\\([0-9.]+\\) *\\("
18433 (regexp-opt (mapcar 'car org-effort-durations))
18434 "\\)")))
18435 (while (string-match re s)
18436 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18437 (string-to-number (match-string 1 s))))
18438 (setq s (replace-match "" nil t s)))
18439 (setq result (floor result))
18440 (incf result (org-hh:mm-string-to-minutes s))
18441 (if output-to-string (number-to-string result) result)))
18443 ;;;; Files
18445 (defun org-save-all-org-buffers ()
18446 "Save all Org-mode buffers without user confirmation."
18447 (interactive)
18448 (message "Saving all Org-mode buffers...")
18449 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18450 (when (featurep 'org-id) (org-id-locations-save))
18451 (message "Saving all Org-mode buffers... done"))
18453 (defun org-revert-all-org-buffers ()
18454 "Revert all Org-mode buffers.
18455 Prompt for confirmation when there are unsaved changes.
18456 Be sure you know what you are doing before letting this function
18457 overwrite your changes.
18459 This function is useful in a setup where one tracks org files
18460 with a version control system, to revert on one machine after pulling
18461 changes from another. I believe the procedure must be like this:
18463 1. M-x org-save-all-org-buffers
18464 2. Pull changes from the other machine, resolve conflicts
18465 3. M-x org-revert-all-org-buffers"
18466 (interactive)
18467 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18468 (user-error "Abort"))
18469 (save-excursion
18470 (save-window-excursion
18471 (mapc
18472 (lambda (b)
18473 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18474 (with-current-buffer b buffer-file-name))
18475 (org-pop-to-buffer-same-window b)
18476 (revert-buffer t 'no-confirm)))
18477 (buffer-list))
18478 (when (and (featurep 'org-id) org-id-track-globally)
18479 (org-id-locations-load)))))
18481 ;;;; Agenda files
18483 ;;;###autoload
18484 (defun org-switchb (&optional arg)
18485 "Switch between Org buffers.
18486 With one prefix argument, restrict available buffers to files.
18487 With two prefix arguments, restrict available buffers to agenda files.
18489 Defaults to `iswitchb' for buffer name completion.
18490 Set `org-completion-use-ido' to make it use ido instead."
18491 (interactive "P")
18492 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18493 ((equal arg '(16)) (org-buffer-list 'agenda))
18494 (t (org-buffer-list))))
18495 (org-completion-use-iswitchb org-completion-use-iswitchb)
18496 (org-completion-use-ido org-completion-use-ido))
18497 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18498 (setq org-completion-use-iswitchb t))
18499 (org-pop-to-buffer-same-window
18500 (org-icompleting-read "Org buffer: "
18501 (mapcar 'list (mapcar 'buffer-name blist))
18502 nil t))))
18504 ;;; Define some older names previously used for this functionality
18505 ;;;###autoload
18506 (defalias 'org-ido-switchb 'org-switchb)
18507 ;;;###autoload
18508 (defalias 'org-iswitchb 'org-switchb)
18510 (defun org-buffer-list (&optional predicate exclude-tmp)
18511 "Return a list of Org buffers.
18512 PREDICATE can be `export', `files' or `agenda'.
18514 export restrict the list to Export buffers.
18515 files restrict the list to buffers visiting Org files.
18516 agenda restrict the list to buffers visiting agenda files.
18518 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18519 (let* ((bfn nil)
18520 (agenda-files (and (eq predicate 'agenda)
18521 (mapcar 'file-truename (org-agenda-files t))))
18522 (filter
18523 (cond
18524 ((eq predicate 'files)
18525 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18526 ((eq predicate 'export)
18527 (lambda (b) (string-match "\\*Org .*Export" (buffer-name b))))
18528 ((eq predicate 'agenda)
18529 (lambda (b)
18530 (with-current-buffer b
18531 (and (derived-mode-p 'org-mode)
18532 (setq bfn (buffer-file-name b))
18533 (member (file-truename bfn) agenda-files)))))
18534 (t (lambda (b) (with-current-buffer b
18535 (or (derived-mode-p 'org-mode)
18536 (string-match "\\*Org .*Export"
18537 (buffer-name b)))))))))
18538 (delq nil
18539 (mapcar
18540 (lambda(b)
18541 (if (and (funcall filter b)
18542 (or (not exclude-tmp)
18543 (not (string-match "tmp" (buffer-name b)))))
18545 nil))
18546 (buffer-list)))))
18548 (defun org-agenda-files (&optional unrestricted archives)
18549 "Get the list of agenda files.
18550 Optional UNRESTRICTED means return the full list even if a restriction
18551 is currently in place.
18552 When ARCHIVES is t, include all archive files that are really being
18553 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18554 `org-agenda-archives-mode' is t."
18555 (let ((files
18556 (cond
18557 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18558 ((stringp org-agenda-files) (org-read-agenda-file-list))
18559 ((listp org-agenda-files) org-agenda-files)
18560 (t (error "Invalid value of `org-agenda-files'")))))
18561 (setq files (apply 'append
18562 (mapcar (lambda (f)
18563 (if (file-directory-p f)
18564 (directory-files
18565 f t org-agenda-file-regexp)
18566 (list f)))
18567 files)))
18568 (when org-agenda-skip-unavailable-files
18569 (setq files (delq nil
18570 (mapcar (function
18571 (lambda (file)
18572 (and (file-readable-p file) file)))
18573 files))))
18574 (when (or (eq archives t)
18575 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18576 (setq files (org-add-archive-files files)))
18577 files))
18579 (defun org-agenda-file-p (&optional file)
18580 "Return non-nil, if FILE is an agenda file.
18581 If FILE is omitted, use the file associated with the current
18582 buffer."
18583 (let ((fname (or file (buffer-file-name))))
18584 (and fname
18585 (member (file-truename fname)
18586 (mapcar #'file-truename (org-agenda-files t))))))
18588 (defun org-edit-agenda-file-list ()
18589 "Edit the list of agenda files.
18590 Depending on setup, this either uses customize to edit the variable
18591 `org-agenda-files', or it visits the file that is holding the list. In the
18592 latter case, the buffer is set up in a way that saving it automatically kills
18593 the buffer and restores the previous window configuration."
18594 (interactive)
18595 (if (stringp org-agenda-files)
18596 (let ((cw (current-window-configuration)))
18597 (find-file org-agenda-files)
18598 (org-set-local 'org-window-configuration cw)
18599 (org-add-hook 'after-save-hook
18600 (lambda ()
18601 (set-window-configuration
18602 (prog1 org-window-configuration
18603 (kill-buffer (current-buffer))))
18604 (org-install-agenda-files-menu)
18605 (message "New agenda file list installed"))
18606 nil 'local)
18607 (message "%s" (substitute-command-keys
18608 "Edit list and finish with \\[save-buffer]")))
18609 (customize-variable 'org-agenda-files)))
18611 (defun org-store-new-agenda-file-list (list)
18612 "Set new value for the agenda file list and save it correctly."
18613 (if (stringp org-agenda-files)
18614 (let ((fe (org-read-agenda-file-list t)) b u)
18615 (while (setq b (find-buffer-visiting org-agenda-files))
18616 (kill-buffer b))
18617 (with-temp-file org-agenda-files
18618 (insert
18619 (mapconcat
18620 (lambda (f) ;; Keep un-expanded entries.
18621 (if (setq u (assoc f fe))
18622 (cdr u)
18624 list "\n")
18625 "\n")))
18626 (let ((org-mode-hook nil) (org-inhibit-startup t)
18627 (org-insert-mode-line-in-empty-file nil))
18628 (setq org-agenda-files list)
18629 (customize-save-variable 'org-agenda-files org-agenda-files))))
18631 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18632 "Read the list of agenda files from a file.
18633 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18634 filenames, used by `org-store-new-agenda-file-list' to write back
18635 un-expanded file names."
18636 (when (file-directory-p org-agenda-files)
18637 (error "`org-agenda-files' cannot be a single directory"))
18638 (when (stringp org-agenda-files)
18639 (with-temp-buffer
18640 (insert-file-contents org-agenda-files)
18641 (mapcar
18642 (lambda (f)
18643 (let ((e (expand-file-name (substitute-in-file-name f)
18644 org-directory)))
18645 (if pair-with-expansion
18646 (cons e f)
18647 e)))
18648 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18650 ;;;###autoload
18651 (defun org-cycle-agenda-files ()
18652 "Cycle through the files in `org-agenda-files'.
18653 If the current buffer visits an agenda file, find the next one in the list.
18654 If the current buffer does not, find the first agenda file."
18655 (interactive)
18656 (let* ((fs (or (org-agenda-files t)
18657 (user-error "No agenda files")))
18658 (files (copy-sequence fs))
18659 (tcf (and buffer-file-name (file-truename buffer-file-name)))
18660 file)
18661 (when tcf
18662 (while (and (setq file (pop files))
18663 (not (equal (file-truename file) tcf)))))
18664 (find-file (car (or files fs)))
18665 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18667 (defun org-agenda-file-to-front (&optional to-end)
18668 "Move/add the current file to the top of the agenda file list.
18669 If the file is not present in the list, it is added to the front. If it is
18670 present, it is moved there. With optional argument TO-END, add/move to the
18671 end of the list."
18672 (interactive "P")
18673 (let ((org-agenda-skip-unavailable-files nil)
18674 (file-alist (mapcar (lambda (x)
18675 (cons (file-truename x) x))
18676 (org-agenda-files t)))
18677 (ctf (file-truename
18678 (or buffer-file-name
18679 (user-error "Please save the current buffer to a file"))))
18680 x had)
18681 (setq x (assoc ctf file-alist) had x)
18683 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18684 (if to-end
18685 (setq file-alist (append (delq x file-alist) (list x)))
18686 (setq file-alist (cons x (delq x file-alist))))
18687 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18688 (org-install-agenda-files-menu)
18689 (message "File %s to %s of agenda file list"
18690 (if had "moved" "added") (if to-end "end" "front"))))
18692 (defun org-remove-file (&optional file)
18693 "Remove current file from the list of files in variable `org-agenda-files'.
18694 These are the files which are being checked for agenda entries.
18695 Optional argument FILE means use this file instead of the current."
18696 (interactive)
18697 (let* ((org-agenda-skip-unavailable-files nil)
18698 (file (or file buffer-file-name
18699 (user-error "Current buffer does not visit a file")))
18700 (true-file (file-truename file))
18701 (afile (abbreviate-file-name file))
18702 (files (delq nil (mapcar
18703 (lambda (x)
18704 (if (equal true-file
18705 (file-truename x))
18706 nil x))
18707 (org-agenda-files t)))))
18708 (if (not (= (length files) (length (org-agenda-files t))))
18709 (progn
18710 (org-store-new-agenda-file-list files)
18711 (org-install-agenda-files-menu)
18712 (message "Removed from Org Agenda list: %s" afile))
18713 (message "File was not in list: %s (not removed)" afile))))
18715 (defun org-file-menu-entry (file)
18716 (vector file (list 'find-file file) t))
18718 (defun org-check-agenda-file (file)
18719 "Make sure FILE exists. If not, ask user what to do."
18720 (when (not (file-exists-p file))
18721 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18722 (abbreviate-file-name file))
18723 (let ((r (downcase (read-char-exclusive))))
18724 (cond
18725 ((equal r ?r)
18726 (org-remove-file file)
18727 (throw 'nextfile t))
18728 (t (user-error "Abort"))))))
18730 (defun org-get-agenda-file-buffer (file)
18731 "Get an agenda buffer visiting FILE.
18732 If the buffer needs to be created, add it to the list of buffers
18733 which might be released later."
18734 (let ((buf (org-find-base-buffer-visiting file)))
18735 (if buf
18736 buf ; just return it
18737 ;; Make a new buffer and remember it
18738 (setq buf (find-file-noselect file))
18739 (if buf (push buf org-agenda-new-buffers))
18740 buf)))
18742 (defun org-release-buffers (blist)
18743 "Release all buffers in list, asking the user for confirmation when needed.
18744 When a buffer is unmodified, it is just killed. When modified, it is saved
18745 \(if the user agrees) and then killed."
18746 (let (file)
18747 (dolist (buf blist)
18748 (setq file (buffer-file-name buf))
18749 (when (and (buffer-modified-p buf)
18750 file
18751 (y-or-n-p (format "Save file %s? " file)))
18752 (with-current-buffer buf (save-buffer)))
18753 (kill-buffer buf))))
18755 (defun org-agenda-prepare-buffers (files)
18756 "Create buffers for all agenda files, protect archived trees and comments."
18757 (interactive)
18758 (let ((pa '(:org-archived t))
18759 (pc '(:org-comment t))
18760 (pall '(:org-archived t :org-comment t))
18761 (inhibit-read-only t)
18762 (org-inhibit-startup org-agenda-inhibit-startup)
18763 (rea (concat ":" org-archive-tag ":"))
18764 file re pos)
18765 (setq org-tag-alist-for-agenda nil
18766 org-tag-groups-alist-for-agenda nil)
18767 (save-excursion
18768 (save-restriction
18769 (dolist (file files)
18770 (catch 'nextfile
18771 (if (bufferp file)
18772 (set-buffer file)
18773 (org-check-agenda-file file)
18774 (set-buffer (org-get-agenda-file-buffer file)))
18775 (widen)
18776 (org-set-regexps-and-options 'tags-only)
18777 (setq pos (point))
18778 (or (memq 'category org-agenda-ignore-properties)
18779 (org-refresh-category-properties))
18780 (or (memq 'stats org-agenda-ignore-properties)
18781 (org-refresh-stats-properties))
18782 (or (memq 'effort org-agenda-ignore-properties)
18783 (org-refresh-effort-properties))
18784 (or (memq 'appt org-agenda-ignore-properties)
18785 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18786 (setq org-todo-keywords-for-agenda
18787 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18788 (setq org-done-keywords-for-agenda
18789 (append org-done-keywords-for-agenda org-done-keywords))
18790 (setq org-todo-keyword-alist-for-agenda
18791 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18792 (setq org-tag-alist-for-agenda
18793 (org-uniquify
18794 (append org-tag-alist-for-agenda
18795 org-tag-alist
18796 org-tag-persistent-alist)))
18797 ;; Merge current file's tag groups into global
18798 ;; `org-tag-groups-alist-for-agenda'.
18799 (when org-group-tags
18800 (dolist (alist org-tag-groups-alist)
18801 (let ((old (assoc (car alist) org-tag-groups-alist-for-agenda)))
18802 (if old
18803 (setcdr old (org-uniquify (append (cdr old) (cdr alist))))
18804 (push alist org-tag-groups-alist-for-agenda)))))
18805 (org-with-silent-modifications
18806 (save-excursion
18807 (remove-text-properties (point-min) (point-max) pall)
18808 (when org-agenda-skip-archived-trees
18809 (goto-char (point-min))
18810 (while (re-search-forward rea nil t)
18811 (if (org-at-heading-p t)
18812 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18813 (goto-char (point-min))
18814 (setq re (format "^\\*+ .*\\<%s\\>" org-comment-string))
18815 (while (re-search-forward re nil t)
18816 (when (save-match-data (org-in-commented-heading-p t))
18817 (add-text-properties
18818 (match-beginning 0) (org-end-of-subtree t) pc)))))
18819 (goto-char pos)))))
18820 (setq org-todo-keywords-for-agenda
18821 (org-uniquify org-todo-keywords-for-agenda))
18822 (setq org-todo-keyword-alist-for-agenda
18823 (org-uniquify org-todo-keyword-alist-for-agenda))))
18826 ;;;; CDLaTeX minor mode
18828 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18829 "Keymap for the minor `org-cdlatex-mode'.")
18831 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18832 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18833 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18834 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18835 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18837 (defvar org-cdlatex-texmathp-advice-is-done nil
18838 "Flag remembering if we have applied the advice to texmathp already.")
18840 (define-minor-mode org-cdlatex-mode
18841 "Toggle the minor `org-cdlatex-mode'.
18842 This mode supports entering LaTeX environment and math in LaTeX fragments
18843 in Org-mode.
18844 \\{org-cdlatex-mode-map}"
18845 nil " OCDL" nil
18846 (when org-cdlatex-mode
18847 (require 'cdlatex)
18848 (run-hooks 'cdlatex-mode-hook)
18849 (cdlatex-compute-tables))
18850 (unless org-cdlatex-texmathp-advice-is-done
18851 (setq org-cdlatex-texmathp-advice-is-done t)
18852 (defadvice texmathp (around org-math-always-on activate)
18853 "Always return t in org-mode buffers.
18854 This is because we want to insert math symbols without dollars even outside
18855 the LaTeX math segments. If Orgmode thinks that point is actually inside
18856 an embedded LaTeX fragment, let texmathp do its job.
18857 \\[org-cdlatex-mode-map]"
18858 (interactive)
18859 (let (p)
18860 (cond
18861 ((not (derived-mode-p 'org-mode)) ad-do-it)
18862 ((eq this-command 'cdlatex-math-symbol)
18863 (setq ad-return-value t
18864 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18866 (let ((p (org-inside-LaTeX-fragment-p)))
18867 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18868 (setq ad-return-value t
18869 texmathp-why '("Org-mode embedded math" . 0))
18870 (if p ad-do-it)))))))))
18872 (defun turn-on-org-cdlatex ()
18873 "Unconditionally turn on `org-cdlatex-mode'."
18874 (org-cdlatex-mode 1))
18876 (defun org-try-cdlatex-tab ()
18877 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18878 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18879 - inside a LaTeX fragment, or
18880 - after the first word in a line, where an abbreviation expansion could
18881 insert a LaTeX environment."
18882 (when org-cdlatex-mode
18883 (cond
18884 ;; Before any word on the line: No expansion possible.
18885 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18886 ;; Just after first word on the line: Expand it. Make sure it
18887 ;; cannot happen on headlines, though.
18888 ((save-excursion
18889 (skip-chars-backward "a-zA-Z0-9*")
18890 (skip-chars-backward " \t")
18891 (and (bolp) (not (org-at-heading-p))))
18892 (cdlatex-tab) t)
18893 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18895 (defun org-cdlatex-underscore-caret (&optional arg)
18896 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18897 Revert to the normal definition outside of these fragments."
18898 (interactive "P")
18899 (if (org-inside-LaTeX-fragment-p)
18900 (call-interactively 'cdlatex-sub-superscript)
18901 (let (org-cdlatex-mode)
18902 (call-interactively (key-binding (vector last-input-event))))))
18904 (defun org-cdlatex-math-modify (&optional arg)
18905 "Execute `cdlatex-math-modify' in LaTeX fragments.
18906 Revert to the normal definition outside of these fragments."
18907 (interactive "P")
18908 (if (org-inside-LaTeX-fragment-p)
18909 (call-interactively 'cdlatex-math-modify)
18910 (let (org-cdlatex-mode)
18911 (call-interactively (key-binding (vector last-input-event))))))
18913 (defun org-cdlatex-environment-indent (&optional environment item)
18914 "Execute `cdlatex-environment' and indent the inserted environment.
18916 ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
18918 The inserted environment is indented to current indentation
18919 unless point is at the beginning of the line, in which the
18920 environment remains unintended."
18921 (interactive)
18922 ;; cdlatex-environment always return nil. Therefore, capture output
18923 ;; first and determine if an environment was selected.
18924 (let* ((beg (point-marker))
18925 (end (copy-marker (point) t))
18926 (inserted (progn
18927 (ignore-errors (cdlatex-environment environment item))
18928 (< beg end)))
18929 ;; Figure out how many lines to move forward after the
18930 ;; environment has been inserted.
18931 (lines (when inserted
18932 (save-excursion
18933 (- (loop while (< beg (point))
18934 with x = 0
18935 do (forward-line -1)
18936 (incf x)
18937 finally return x)
18938 (if (progn (goto-char beg)
18939 (and (progn (skip-chars-forward " \t") (eolp))
18940 (progn (skip-chars-backward " \t") (bolp))))
18941 1 0)))))
18942 (env (org-trim (delete-and-extract-region beg end))))
18943 (when inserted
18944 ;; Get indentation of next line unless at column 0.
18945 (let ((ind (if (bolp) 0
18946 (save-excursion
18947 (org-return-indent)
18948 (prog1 (org-get-indentation)
18949 (when (progn (skip-chars-forward " \t") (eolp))
18950 (delete-region beg (point)))))))
18951 (bol (progn (skip-chars-backward " \t") (bolp))))
18952 ;; Insert a newline before environment unless at column zero
18953 ;; to "escape" the current line. Insert a newline if
18954 ;; something is one the same line as \end{ENVIRONMENT}.
18955 (insert
18956 (concat (unless bol "\n") env
18957 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
18958 (unless (zerop ind)
18959 (save-excursion
18960 (goto-char beg)
18961 (while (< (point) end)
18962 (unless (eolp) (org-indent-line-to ind))
18963 (forward-line))))
18964 (goto-char beg)
18965 (forward-line lines)
18966 (org-indent-line-to ind)))
18967 (set-marker beg nil)
18968 (set-marker end nil)))
18971 ;;;; LaTeX fragments
18973 (defun org-inside-LaTeX-fragment-p ()
18974 "Test if point is inside a LaTeX fragment.
18975 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18976 sequence appearing also before point.
18977 Even though the matchers for math are configurable, this function assumes
18978 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18979 delimiters are skipped when they have been removed by customization.
18980 The return value is nil, or a cons cell with the delimiter and the
18981 position of this delimiter.
18983 This function does a reasonably good job, but can locally be fooled by
18984 for example currency specifications. For example it will assume being in
18985 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18986 fragments that are properly closed, but during editing, we have to live
18987 with the uncertainty caused by missing closing delimiters. This function
18988 looks only before point, not after."
18989 (catch 'exit
18990 (let ((pos (point))
18991 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18992 (lim (progn
18993 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18994 (point)))
18995 dd-on str (start 0) m re)
18996 (goto-char pos)
18997 (when dodollar
18998 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18999 re (nth 1 (assoc "$" org-latex-regexps)))
19000 (while (string-match re str start)
19001 (cond
19002 ((= (match-end 0) (length str))
19003 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
19004 ((= (match-end 0) (- (length str) 5))
19005 (throw 'exit nil))
19006 (t (setq start (match-end 0))))))
19007 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
19008 (goto-char pos)
19009 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
19010 (and (match-beginning 2) (throw 'exit nil))
19011 ;; count $$
19012 (while (re-search-backward "\\$\\$" lim t)
19013 (setq dd-on (not dd-on)))
19014 (goto-char pos)
19015 (if dd-on (cons "$$" m))))))
19017 (defun org-inside-latex-macro-p ()
19018 "Is point inside a LaTeX macro or its arguments?"
19019 (save-match-data
19020 (org-in-regexp
19021 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
19023 (defun org--format-latex-make-overlay (beg end image)
19024 "Build an overlay between BEG and END using IMAGE file."
19025 (let ((ov (make-overlay beg end)))
19026 (overlay-put ov 'org-overlay-type 'org-latex-overlay)
19027 (overlay-put ov 'evaporate t)
19028 (overlay-put ov
19029 'modification-hooks
19030 (list (lambda (o _flag _beg _end &optional _l)
19031 (delete-overlay o))))
19032 (if (featurep 'xemacs)
19033 (progn
19034 (overlay-put ov 'invisible t)
19035 (overlay-put ov 'end-glyph (make-glyph (vector 'png :file image))))
19036 (overlay-put ov
19037 'display
19038 (list 'image :type 'png :file image :ascent 'center)))))
19040 (defun org--list-latex-overlays (&optional beg end)
19041 "List all Org LaTeX overlays in current buffer.
19042 Limit to overlays between BEG and END when those are provided."
19043 (org-remove-if-not
19044 (lambda (o) (eq (overlay-get o 'org-overlay-type) 'org-latex-overlay))
19045 (overlays-in (or beg (point-min)) (or end (point-max)))))
19047 (defun org-remove-latex-fragment-image-overlays (&optional beg end)
19048 "Remove all overlays with LaTeX fragment images in current buffer.
19049 When optional arguments BEG and END are non-nil, remove all
19050 overlays between them instead. Return a non-nil value when some
19051 overlays were removed, nil otherwise."
19052 (let ((overlays (org--list-latex-overlays beg end)))
19053 (mapc #'delete-overlay overlays)
19054 overlays))
19056 (define-obsolete-function-alias
19057 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
19058 (defun org-toggle-latex-fragment (&optional arg)
19059 "Preview the LaTeX fragment at point, or all locally or globally.
19061 If the cursor is on a LaTeX fragment, create the image and overlay
19062 it over the source code, if there is none. Remove it otherwise.
19063 If there is no fragment at point, display all fragments in the
19064 current section.
19066 With prefix ARG, preview or clear image for all fragments in the
19067 current subtree or in the whole buffer when used before the first
19068 headline. With a double prefix ARG \\[universal-argument] \
19069 \\[universal-argument] preview or clear images
19070 for all fragments in the buffer."
19071 (interactive "P")
19072 (unless (buffer-file-name (buffer-base-buffer))
19073 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
19074 (when (display-graphic-p)
19075 (catch 'exit
19076 (save-excursion
19077 (let ((window-start (window-start)) msg)
19078 (save-restriction
19079 (cond
19080 ((or (equal arg '(16))
19081 (and (equal arg '(4))
19082 (org-with-limited-levels (org-before-first-heading-p))))
19083 (if (org-remove-latex-fragment-image-overlays)
19084 (progn (message "LaTeX fragments images removed from buffer")
19085 (throw 'exit nil))
19086 (setq msg "Creating images for buffer...")))
19087 ((equal arg '(4))
19088 (org-with-limited-levels (org-back-to-heading t))
19089 (let ((beg (point))
19090 (end (progn (org-end-of-subtree t) (point))))
19091 (if (org-remove-latex-fragment-image-overlays beg end)
19092 (progn
19093 (message "LaTeX fragment images removed from subtree")
19094 (throw 'exit nil))
19095 (setq msg "Creating images for subtree...")
19096 (narrow-to-region beg end))))
19097 ((let ((datum (org-element-context)))
19098 (when (memq (org-element-type datum)
19099 '(latex-environment latex-fragment))
19100 (let* ((beg (org-element-property :begin datum))
19101 (end (org-element-property :end datum)))
19102 (if (org-remove-latex-fragment-image-overlays beg end)
19103 (progn (message "LaTeX fragment image removed")
19104 (throw 'exit nil))
19105 (narrow-to-region beg end)
19106 (setq msg "Creating image..."))))))
19108 (org-with-limited-levels
19109 (let ((beg (if (org-at-heading-p) (line-beginning-position)
19110 (outline-previous-heading)
19111 (point)))
19112 (end (progn (outline-next-heading) (point))))
19113 (if (org-remove-latex-fragment-image-overlays beg end)
19114 (progn
19115 (message "LaTeX fragment images removed from section")
19116 (throw 'exit nil))
19117 (setq msg "Creating images for section...")
19118 (narrow-to-region beg end))))))
19119 (let ((file (buffer-file-name (buffer-base-buffer))))
19120 (org-format-latex
19121 (concat org-latex-preview-ltxpng-directory
19122 (file-name-sans-extension (file-name-nondirectory file)))
19123 ;; Emacs cannot overlay images from remote hosts.
19124 ;; Create it in `temporary-file-directory' instead.
19125 (if (file-remote-p file) temporary-file-directory
19126 default-directory)
19127 'overlays msg 'forbuffer
19128 org-latex-create-formula-image-program)))
19129 ;; Work around a bug that doesn't restore window's start
19130 ;; when widening back the buffer.
19131 (set-window-start nil window-start)
19132 (message (concat msg "done")))))))
19134 (defun org-format-latex
19135 (prefix &optional dir overlays msg forbuffer processing-type)
19136 "Replace LaTeX fragments with links to an image, and produce images.
19138 When optional argument OVERLAYS is non-nil, display the image on
19139 top of the fragment instead of replacing it.
19141 PROCESSING-TYPE is the conversion method to use, as a symbol.
19143 Some of the options can be changed using the variable
19144 `org-format-latex-options', which see."
19145 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
19146 (unless (eq processing-type 'verbatim)
19147 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
19148 (cnt 0)
19149 checkdir-flag)
19150 (goto-char (point-min))
19151 ;; Optimize overlay creation: (info "(elisp) Managing Overlays").
19152 (when (and overlays (memq processing-type '(dvipng imagemagick)))
19153 (overlay-recenter (point-max)))
19154 (while (re-search-forward math-regexp nil t)
19155 (unless (and overlays
19156 (eq (get-char-property (point) 'org-overlay-type)
19157 'org-latex-overlay))
19158 (let* ((context (org-element-context))
19159 (type (org-element-type context)))
19160 (when (memq type '(latex-environment latex-fragment))
19161 (let ((block-type (eq type 'latex-environment))
19162 (value (org-element-property :value context))
19163 (beg (org-element-property :begin context))
19164 (end (save-excursion
19165 (goto-char (org-element-property :end context))
19166 (skip-chars-backward " \r\t\n")
19167 (point))))
19168 (case processing-type
19169 (mathjax
19170 ;; Prepare for MathJax processing.
19171 (if (not (string-match "\\`\\$\\$?" value))
19172 (goto-char end)
19173 (delete-region beg end)
19174 (if (string= (match-string 0 value) "$$")
19175 (insert "\\[" (substring value 2 -2) "\\]")
19176 (insert "\\(" (substring value 1 -1) "\\)"))))
19177 ((dvipng imagemagick)
19178 ;; Process to an image.
19179 (incf cnt)
19180 (goto-char beg)
19181 (let* ((face (face-at-point))
19182 ;; Get the colors from the face at point.
19184 (let ((color (plist-get org-format-latex-options
19185 :foreground)))
19186 (if (and forbuffer (eq color 'auto))
19187 (face-attribute face :foreground nil 'default)
19188 color)))
19190 (let ((color (plist-get org-format-latex-options
19191 :background)))
19192 (if (and forbuffer (eq color 'auto))
19193 (face-attribute face :background nil 'default)
19194 color)))
19195 (hash (sha1 (prin1-to-string
19196 (list org-format-latex-header
19197 org-latex-default-packages-alist
19198 org-latex-packages-alist
19199 org-format-latex-options
19200 forbuffer value fg bg))))
19201 (absprefix (expand-file-name prefix dir))
19202 (linkfile (format "%s_%s.png" prefix hash))
19203 (movefile (format "%s_%s.png" absprefix hash))
19204 (sep (and block-type "\n\n"))
19205 (link (concat sep "[[file:" linkfile "]]" sep))
19206 (options
19207 (org-combine-plists
19208 org-format-latex-options
19209 `(:foreground ,fg :background ,bg))))
19210 (when msg (message msg cnt))
19211 (unless checkdir-flag ; Ensure the directory exists.
19212 (setq checkdir-flag t)
19213 (let ((todir (file-name-directory absprefix)))
19214 (unless (file-directory-p todir)
19215 (make-directory todir t))))
19216 (unless (file-exists-p movefile)
19217 (org-create-formula-image
19218 value movefile options forbuffer processing-type))
19219 (if overlays
19220 (progn
19221 (dolist (o (overlays-in beg end))
19222 (when (eq (overlay-get o 'org-overlay-type)
19223 'org-latex-overlay)
19224 (delete-overlay o)))
19225 (org--format-latex-make-overlay beg end movefile)
19226 (goto-char end))
19227 (delete-region beg end)
19228 (insert
19229 (org-add-props link
19230 (list 'org-latex-src
19231 (replace-regexp-in-string "\"" "" value)
19232 'org-latex-src-embed-type
19233 (if block-type 'paragraph 'character)))))))
19234 (mathml
19235 ;; Process to MathML.
19236 (unless (org-format-latex-mathml-available-p)
19237 (user-error "LaTeX to MathML converter not configured"))
19238 (incf cnt)
19239 (when msg (message msg cnt))
19240 (goto-char beg)
19241 (delete-region beg end)
19242 (insert (org-format-latex-as-mathml
19243 value block-type prefix dir)))
19244 (otherwise
19245 (error "Unknown conversion type %s for LaTeX fragments"
19246 processing-type)))))))))))
19248 (defun org-create-math-formula (latex-frag &optional mathml-file)
19249 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
19250 Use `org-latex-to-mathml-convert-command'. If the conversion is
19251 sucessful, return the portion between \"<math...> </math>\"
19252 elements otherwise return nil. When MATHML-FILE is specified,
19253 write the results in to that file. When invoked as an
19254 interactive command, prompt for LATEX-FRAG, with initial value
19255 set to the current active region and echo the results for user
19256 inspection."
19257 (interactive (list (let ((frag (when (org-region-active-p)
19258 (buffer-substring-no-properties
19259 (region-beginning) (region-end)))))
19260 (read-string "LaTeX Fragment: " frag nil frag))))
19261 (unless latex-frag (user-error "Invalid LaTeX fragment"))
19262 (let* ((tmp-in-file (file-relative-name
19263 (make-temp-name (expand-file-name "ltxmathml-in"))))
19264 (ignore (write-region latex-frag nil tmp-in-file))
19265 (tmp-out-file (file-relative-name
19266 (make-temp-name (expand-file-name "ltxmathml-out"))))
19267 (cmd (format-spec
19268 org-latex-to-mathml-convert-command
19269 `((?j . ,(and org-latex-to-mathml-jar-file
19270 (shell-quote-argument
19271 (expand-file-name
19272 org-latex-to-mathml-jar-file))))
19273 (?I . ,(shell-quote-argument tmp-in-file))
19274 (?i . ,latex-frag)
19275 (?o . ,(shell-quote-argument tmp-out-file)))))
19276 mathml shell-command-output)
19277 (when (org-called-interactively-p 'any)
19278 (unless (org-format-latex-mathml-available-p)
19279 (user-error "LaTeX to MathML converter not configured")))
19280 (message "Running %s" cmd)
19281 (setq shell-command-output (shell-command-to-string cmd))
19282 (setq mathml
19283 (when (file-readable-p tmp-out-file)
19284 (with-current-buffer (find-file-noselect tmp-out-file t)
19285 (goto-char (point-min))
19286 (when (re-search-forward
19287 (concat
19288 (regexp-quote
19289 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\"")
19290 "[^>]*?>"
19291 "\\(.\\|\n\\)*"
19292 "</math>")
19293 nil t)
19294 (prog1 (match-string 0) (kill-buffer))))))
19295 (cond
19296 (mathml
19297 (setq mathml
19298 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
19299 (when mathml-file
19300 (write-region mathml nil mathml-file))
19301 (when (org-called-interactively-p 'any)
19302 (message mathml)))
19303 ((message "LaTeX to MathML conversion failed")
19304 (message shell-command-output)))
19305 (delete-file tmp-in-file)
19306 (when (file-exists-p tmp-out-file)
19307 (delete-file tmp-out-file))
19308 mathml))
19310 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
19311 prefix &optional dir)
19312 "Use `org-create-math-formula' but check local cache first."
19313 (let* ((absprefix (expand-file-name prefix dir))
19314 (print-length nil) (print-level nil)
19315 (formula-id (concat
19316 "formula-"
19317 (sha1
19318 (prin1-to-string
19319 (list latex-frag
19320 org-latex-to-mathml-convert-command)))))
19321 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
19322 (formula-cache-dir (file-name-directory formula-cache)))
19324 (unless (file-directory-p formula-cache-dir)
19325 (make-directory formula-cache-dir t))
19327 (unless (file-exists-p formula-cache)
19328 (org-create-math-formula latex-frag formula-cache))
19330 (if (file-exists-p formula-cache)
19331 ;; Successful conversion. Return the link to MathML file.
19332 (org-add-props
19333 (format "[[file:%s]]" (file-relative-name formula-cache dir))
19334 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
19335 'org-latex-src-embed-type (if latex-frag-type
19336 'paragraph 'character)))
19337 ;; Failed conversion. Return the LaTeX fragment verbatim
19338 latex-frag)))
19340 (defun org-create-formula-image (string tofile options buffer &optional type)
19341 "Create an image from LaTeX source using dvipng or convert.
19342 This function calls either `org-create-formula-image-with-dvipng'
19343 or `org-create-formula-image-with-imagemagick' depending on the
19344 value of `org-latex-create-formula-image-program' or on the value
19345 of the optional TYPE variable.
19347 Note: ultimately these two function should be combined as they
19348 share a good deal of logic."
19349 (org-check-external-command
19350 "latex" "needed to convert LaTeX fragments to images")
19351 (funcall
19352 (case (or type org-latex-create-formula-image-program)
19353 (dvipng
19354 (org-check-external-command
19355 "dvipng" "needed to convert LaTeX fragments to images")
19356 #'org-create-formula-image-with-dvipng)
19357 (imagemagick
19358 (org-check-external-command
19359 "convert" "you need to install imagemagick")
19360 #'org-create-formula-image-with-imagemagick)
19361 (t (error
19362 "Invalid value of `org-latex-create-formula-image-program'")))
19363 string tofile options buffer))
19365 (declare-function org-export-get-backend "ox" (name))
19366 (declare-function org-export--get-global-options "ox" (&optional backend))
19367 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19368 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19369 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19370 (defun org-create-formula--latex-header ()
19371 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19372 (let ((info (org-combine-plists (org-export--get-global-options
19373 (org-export-get-backend 'latex))
19374 (org-export--get-inbuffer-options
19375 (org-export-get-backend 'latex)))))
19376 (org-latex-guess-babel-language
19377 (org-latex-guess-inputenc
19378 (org-splice-latex-header
19379 org-format-latex-header
19380 org-latex-default-packages-alist
19381 org-latex-packages-alist t
19382 (plist-get info :latex-header)))
19383 info)))
19385 (defun org--get-display-dpi ()
19386 "Get the DPI of the display.
19388 Assumes that the display has the same pixel width in the
19389 horizontal and vertical directions."
19390 (if (display-graphic-p)
19391 (round (/ (display-pixel-height)
19392 (/ (display-mm-height) 25.4)))
19393 (error "Attempt to calculate the dpi of a non-graphic display")))
19395 ;; This function borrows from Ganesh Swami's latex2png.el
19396 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19397 "This calls dvipng."
19398 (require 'ox-latex)
19399 (let* ((tmpdir (if (featurep 'xemacs)
19400 (temp-directory)
19401 temporary-file-directory))
19402 (texfilebase (make-temp-name
19403 (expand-file-name "orgtex" tmpdir)))
19404 (texfile (concat texfilebase ".tex"))
19405 (dvifile (concat texfilebase ".dvi"))
19406 (pngfile (concat texfilebase ".png"))
19407 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19408 ;; This assumes that the display has the same pixel width in
19409 ;; the horizontal and vertical directions
19410 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19411 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19412 "Black"))
19413 (bg (or (plist-get options (if buffer :background :html-background))
19414 "Transparent")))
19415 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19416 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19417 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19418 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19419 (let ((latex-header (org-create-formula--latex-header)))
19420 (with-temp-file texfile
19421 (insert latex-header)
19422 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19423 (let ((dir default-directory))
19424 (ignore-errors
19425 (cd tmpdir)
19426 (call-process "latex" nil nil nil texfile))
19427 (cd dir))
19428 (if (not (file-exists-p dvifile))
19429 (progn (message "Failed to create dvi file from %s" texfile) nil)
19430 (ignore-errors
19431 (if (featurep 'xemacs)
19432 (call-process "dvipng" nil nil nil
19433 "-fg" fg "-bg" bg
19434 "-T" "tight"
19435 "-o" pngfile
19436 dvifile)
19437 (call-process "dvipng" nil nil nil
19438 "-fg" fg "-bg" bg
19439 "-D" dpi
19440 ;;"-x" scale "-y" scale
19441 "-T" "tight"
19442 "-o" pngfile
19443 dvifile)))
19444 (if (not (file-exists-p pngfile))
19445 (if org-format-latex-signal-error
19446 (error "Failed to create png file from %s" texfile)
19447 (message "Failed to create png file from %s" texfile)
19448 nil)
19449 ;; Use the requested file name and clean up
19450 (copy-file pngfile tofile 'replace)
19451 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19452 (if (file-exists-p (concat texfilebase e))
19453 (delete-file (concat texfilebase e))))
19454 pngfile))))
19456 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19457 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19458 "This calls convert, which is included into imagemagick."
19459 (require 'ox-latex)
19460 (let* ((tmpdir (if (featurep 'xemacs)
19461 (temp-directory)
19462 temporary-file-directory))
19463 (texfilebase (make-temp-name
19464 (expand-file-name "orgtex" tmpdir)))
19465 (texfile (concat texfilebase ".tex"))
19466 (pdffile (concat texfilebase ".pdf"))
19467 (pngfile (concat texfilebase ".png"))
19468 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19469 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19470 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19471 "black"))
19472 (bg (or (plist-get options (if buffer :background :html-background))
19473 "white")))
19474 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19475 (setq fg (org-latex-color-format fg)))
19476 (if (eq bg 'default) (setq bg (org-latex-color :background))
19477 (setq bg (org-latex-color-format
19478 (if (string= bg "Transparent") "white" bg))))
19479 (let ((latex-header (org-create-formula--latex-header)))
19480 (with-temp-file texfile
19481 (insert latex-header)
19482 (insert "\n\\begin{document}\n"
19483 "\\definecolor{fg}{rgb}{" fg "}\n"
19484 "\\definecolor{bg}{rgb}{" bg "}\n"
19485 "\n\\pagecolor{bg}\n"
19486 "\n{\\color{fg}\n"
19487 string
19488 "\n}\n"
19489 "\n\\end{document}\n")))
19490 (org-latex-compile texfile t)
19491 (if (not (file-exists-p pdffile))
19492 (progn (message "Failed to create pdf file from %s" texfile) nil)
19493 (ignore-errors
19494 (if (featurep 'xemacs)
19495 (call-process "convert" nil nil nil
19496 "-density" "96"
19497 "-trim"
19498 "-antialias"
19499 pdffile
19500 "-quality" "100"
19501 ;; "-sharpen" "0x1.0"
19502 pngfile)
19503 (call-process "convert" nil nil nil
19504 "-density" dpi
19505 "-trim"
19506 "-antialias"
19507 pdffile
19508 "-quality" "100"
19509 ;; "-sharpen" "0x1.0"
19510 pngfile)))
19511 (if (not (file-exists-p pngfile))
19512 (if org-format-latex-signal-error
19513 (error "Failed to create png file from %s" texfile)
19514 (message "Failed to create png file from %s" texfile)
19515 nil)
19516 ;; Use the requested file name and clean up
19517 (copy-file pngfile tofile 'replace)
19518 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19519 (if (file-exists-p (concat texfilebase e))
19520 (delete-file (concat texfilebase e))))
19521 pngfile))))
19523 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19524 "Fill a LaTeX header template TPL.
19525 In the template, the following place holders will be recognized:
19527 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19528 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19529 [PACKAGES] \\usepackage statements for PKG
19530 [NO-PACKAGES] do not include PKG
19531 [EXTRA] the string EXTRA
19532 [NO-EXTRA] do not include EXTRA
19534 For backward compatibility, if both the positive and the negative place
19535 holder is missing, the positive one (without the \"NO-\") will be
19536 assumed to be present at the end of the template.
19537 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19538 EXTRA is a string.
19539 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19540 (let (rpl (end ""))
19541 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19542 (setq rpl (if (or (match-end 1) (not def-pkg))
19543 "" (org-latex-packages-to-string def-pkg snippets-p t))
19544 tpl (replace-match rpl t t tpl))
19545 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19547 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19548 (setq rpl (if (or (match-end 1) (not pkg))
19549 "" (org-latex-packages-to-string pkg snippets-p t))
19550 tpl (replace-match rpl t t tpl))
19551 (if pkg (setq end
19552 (concat end "\n"
19553 (org-latex-packages-to-string pkg snippets-p)))))
19555 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19556 (setq rpl (if (or (match-end 1) (not extra))
19557 "" (concat extra "\n"))
19558 tpl (replace-match rpl t t tpl))
19559 (if (and extra (string-match "\\S-" extra))
19560 (setq end (concat end "\n" extra))))
19562 (if (string-match "\\S-" end)
19563 (concat tpl "\n" end)
19564 tpl)))
19566 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19567 "Turn an alist of packages into a string with the \\usepackage macros."
19568 (setq pkg (mapconcat (lambda(p)
19569 (cond
19570 ((stringp p) p)
19571 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19572 (format "%% Package %s omitted" (cadr p)))
19573 ((equal "" (car p))
19574 (format "\\usepackage{%s}" (cadr p)))
19576 (format "\\usepackage[%s]{%s}"
19577 (car p) (cadr p)))))
19579 "\n"))
19580 (if newline (concat pkg "\n") pkg))
19582 (defun org-dvipng-color (attr)
19583 "Return a RGB color specification for dvipng."
19584 (apply 'format "rgb %s %s %s"
19585 (mapcar 'org-normalize-color
19586 (if (featurep 'xemacs)
19587 (color-rgb-components
19588 (face-property 'default
19589 (cond ((eq attr :foreground) 'foreground)
19590 ((eq attr :background) 'background))))
19591 (color-values (face-attribute 'default attr nil))))))
19593 (defun org-dvipng-color-format (color-name)
19594 "Convert COLOR-NAME to a RGB color value for dvipng."
19595 (apply 'format "rgb %s %s %s"
19596 (mapcar 'org-normalize-color
19597 (color-values color-name))))
19599 (defun org-latex-color (attr)
19600 "Return a RGB color for the LaTeX color package."
19601 (apply 'format "%s,%s,%s"
19602 (mapcar 'org-normalize-color
19603 (if (featurep 'xemacs)
19604 (color-rgb-components
19605 (face-property 'default
19606 (cond ((eq attr :foreground) 'foreground)
19607 ((eq attr :background) 'background))))
19608 (color-values (face-attribute 'default attr nil))))))
19610 (defun org-latex-color-format (color-name)
19611 "Convert COLOR-NAME to a RGB color value."
19612 (apply 'format "%s,%s,%s"
19613 (mapcar 'org-normalize-color
19614 (color-values color-name))))
19616 (defun org-normalize-color (value)
19617 "Return string to be used as color value for an RGB component."
19618 (format "%g" (/ value 65535.0)))
19622 ;; Image display
19624 (defvar org-inline-image-overlays nil)
19625 (make-variable-buffer-local 'org-inline-image-overlays)
19627 (defun org-toggle-inline-images (&optional include-linked)
19628 "Toggle the display of inline images.
19629 INCLUDE-LINKED is passed to `org-display-inline-images'."
19630 (interactive "P")
19631 (if org-inline-image-overlays
19632 (progn
19633 (org-remove-inline-images)
19634 (when (org-called-interactively-p 'interactive)
19635 (message "Inline image display turned off")))
19636 (org-display-inline-images include-linked)
19637 (when (org-called-interactively-p 'interactive)
19638 (message (if org-inline-image-overlays
19639 (format "%d images displayed inline"
19640 (length org-inline-image-overlays))
19641 "No images to display inline")))))
19643 (defun org-redisplay-inline-images ()
19644 "Refresh the display of inline images."
19645 (interactive)
19646 (if (not org-inline-image-overlays)
19647 (org-toggle-inline-images)
19648 (org-toggle-inline-images)
19649 (org-toggle-inline-images)))
19651 (defun org-display-inline-images (&optional include-linked refresh beg end)
19652 "Display inline images.
19654 An inline image is a link which follows either of these
19655 conventions:
19657 1. Its path is a file with an extension matching return value
19658 from `image-file-name-regexp' and it has no contents.
19660 2. Its description consists in a single link of the previous
19661 type.
19663 When optional argument INCLUDE-LINKED is non-nil, also links with
19664 a text description part will be inlined. This can be nice for
19665 a quick look at those images, but it does not reflect what
19666 exported files will look like.
19668 When optional argument REFRESH is non-nil, refresh existing
19669 images between BEG and END. This will create new image displays
19670 only if necessary. BEG and END default to the buffer
19671 boundaries."
19672 (interactive "P")
19673 (when (display-graphic-p)
19674 (unless refresh
19675 (org-remove-inline-images)
19676 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19677 (org-with-wide-buffer
19678 (goto-char (or beg (point-min)))
19679 (let ((case-fold-search t)
19680 (file-extension-re (org-image-file-name-regexp)))
19681 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19682 (let ((link (save-match-data (org-element-context))))
19683 ;; Check if we're at an inline image.
19684 (when (and (equal (org-element-property :type link) "file")
19685 (or include-linked
19686 (not (org-element-property :contents-begin link)))
19687 (let ((parent (org-element-property :parent link)))
19688 (or (not (eq (org-element-type parent) 'link))
19689 (not (cdr (org-element-contents parent)))))
19690 (org-string-match-p file-extension-re
19691 (org-element-property :path link)))
19692 (let ((file (expand-file-name
19693 (org-link-unescape
19694 (org-element-property :path link)))))
19695 (when (file-exists-p file)
19696 (let ((width
19697 ;; Apply `org-image-actual-width' specifications.
19698 (cond
19699 ((not (image-type-available-p 'imagemagick)) nil)
19700 ((eq org-image-actual-width t) nil)
19701 ((listp org-image-actual-width)
19703 ;; First try to find a width among
19704 ;; attributes associated to the paragraph
19705 ;; containing link.
19706 (let ((paragraph
19707 (let ((e link))
19708 (while (and (setq e (org-element-property
19709 :parent e))
19710 (not (eq (org-element-type e)
19711 'paragraph))))
19712 e)))
19713 (when paragraph
19714 (save-excursion
19715 (goto-char (org-element-property :begin paragraph))
19716 (when
19717 (re-search-forward
19718 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19719 (org-element-property
19720 :post-affiliated paragraph)
19722 (string-to-number (match-string 1))))))
19723 ;; Otherwise, fall-back to provided number.
19724 (car org-image-actual-width)))
19725 ((numberp org-image-actual-width)
19726 org-image-actual-width)))
19727 (old (get-char-property-and-overlay
19728 (org-element-property :begin link)
19729 'org-image-overlay)))
19730 (if (and (car-safe old) refresh)
19731 (image-refresh (overlay-get (cdr old) 'display))
19732 (let ((image (create-image file
19733 (and width 'imagemagick)
19735 :width width)))
19736 (when image
19737 (let* ((link
19738 ;; If inline image is the description
19739 ;; of another link, be sure to
19740 ;; consider the latter as the one to
19741 ;; apply the overlay on.
19742 (let ((parent
19743 (org-element-property :parent link)))
19744 (if (eq (org-element-type parent) 'link)
19745 parent
19746 link)))
19747 (ov (make-overlay
19748 (org-element-property :begin link)
19749 (progn
19750 (goto-char
19751 (org-element-property :end link))
19752 (skip-chars-backward " \t")
19753 (point)))))
19754 (overlay-put ov 'display image)
19755 (overlay-put ov 'face 'default)
19756 (overlay-put ov 'org-image-overlay t)
19757 (overlay-put
19758 ov 'modification-hooks
19759 (list 'org-display-inline-remove-overlay))
19760 (push ov org-inline-image-overlays)))))))))))))))
19762 (define-obsolete-function-alias
19763 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19765 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19766 "Remove inline-display overlay if a corresponding region is modified."
19767 (let ((inhibit-modification-hooks t))
19768 (when (and ov after)
19769 (delete ov org-inline-image-overlays)
19770 (delete-overlay ov))))
19772 (defun org-remove-inline-images ()
19773 "Remove inline display of images."
19774 (interactive)
19775 (mapc 'delete-overlay org-inline-image-overlays)
19776 (setq org-inline-image-overlays nil))
19778 ;;;; Key bindings
19780 ;; Outline functions from `outline-mode-prefix-map'
19781 ;; that can be remapped in Org:
19782 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19783 (define-key org-mode-map [remap outline-show-subtree] 'org-show-subtree)
19784 (define-key org-mode-map [remap outline-forward-same-level]
19785 'org-forward-heading-same-level)
19786 (define-key org-mode-map [remap outline-backward-same-level]
19787 'org-backward-heading-same-level)
19788 (define-key org-mode-map [remap outline-show-branches]
19789 'org-kill-note-or-show-branches)
19790 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19791 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19792 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19793 (define-key org-mode-map [remap outline-next-visible-heading]
19794 'org-next-visible-heading)
19795 (define-key org-mode-map [remap outline-previous-visible-heading]
19796 'org-previous-visible-heading)
19798 ;; Outline functions from `outline-mode-prefix-map' that can not
19799 ;; be remapped in Org:
19801 ;; - the column "key binding" shows whether the Outline function is still
19802 ;; available in Org mode on the same key that it has been bound to in
19803 ;; Outline mode:
19804 ;; - "overridden": key used for a different functionality in Org mode
19805 ;; - else: key still bound to the same Outline function in Org mode
19807 ;; | Outline function | key binding | Org replacement |
19808 ;; |------------------------------------+-------------+--------------------------|
19809 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19810 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19811 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19812 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19813 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19814 ;; | `show-entry' | overridden | no replacement |
19815 ;; | `show-children' | `C-c C-i' | visibility cycling |
19816 ;; | `show-branches' | `C-c C-k' | still same function |
19817 ;; | `show-subtree' | overridden | visibility cycling |
19818 ;; | `show-all' | overridden | no replacement |
19819 ;; | `hide-subtree' | overridden | visibility cycling |
19820 ;; | `hide-body' | overridden | no replacement |
19821 ;; | `hide-entry' | overridden | visibility cycling |
19822 ;; | `hide-leaves' | overridden | no replacement |
19823 ;; | `hide-sublevels' | overridden | no replacement |
19824 ;; | `hide-other' | overridden | no replacement |
19826 ;; Make `C-c C-x' a prefix key
19827 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19829 ;; TAB key with modifiers
19830 (org-defkey org-mode-map "\C-i" 'org-cycle)
19831 (org-defkey org-mode-map [(tab)] 'org-cycle)
19832 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19833 (org-defkey org-mode-map "\M-\t" #'pcomplete)
19834 ;; The following line is necessary under Suse GNU/Linux
19835 (unless (featurep 'xemacs)
19836 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19837 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19838 (define-key org-mode-map [backtab] 'org-shifttab)
19840 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19841 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19842 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19844 ;; Cursor keys with modifiers
19845 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19846 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19847 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19848 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19850 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19851 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19852 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19853 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19854 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19855 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19857 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19858 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19859 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19860 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19862 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19863 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19864 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19865 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19867 ;; Babel keys
19868 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19869 (mapc (lambda (pair)
19870 (define-key org-babel-map (car pair) (cdr pair)))
19871 org-babel-key-bindings)
19873 ;;; Extra keys for tty access.
19874 ;; We only set them when really needed because otherwise the
19875 ;; menus don't show the simple keys
19877 (when (or org-use-extra-keys
19878 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19879 (not window-system))
19880 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19881 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19882 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19883 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19884 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19885 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19886 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19887 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19888 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19889 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19890 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19891 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19892 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19893 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19894 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19895 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19896 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19897 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19898 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19899 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19900 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19901 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19902 (org-defkey org-mode-map [?\e (tab)] #'pcomplete)
19903 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19904 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19905 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19906 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19907 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19909 ;; All the other keys
19911 (org-defkey org-mode-map "\C-c\C-a" 'outline-show-all) ; in case allout messed up.
19912 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19913 (if (boundp 'narrow-map)
19914 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19915 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19916 (if (boundp 'narrow-map)
19917 (org-defkey narrow-map "b" 'org-narrow-to-block)
19918 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19919 (if (boundp 'narrow-map)
19920 (org-defkey narrow-map "e" 'org-narrow-to-element)
19921 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19922 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19923 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19924 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19925 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19926 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19927 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19928 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19929 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19930 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19931 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19932 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-archive-subtree)
19933 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19934 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19935 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19936 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19937 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19938 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19939 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19940 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19941 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19942 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19943 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19944 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19945 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19946 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19947 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19948 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19949 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19950 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19951 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19952 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19953 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19954 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19955 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19956 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19957 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19958 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19959 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19960 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19961 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19962 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19963 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19964 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19965 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19966 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19967 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19968 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19969 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19970 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19971 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19972 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19973 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19974 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19975 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19976 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19977 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19978 (org-defkey org-mode-map "\C-c^" 'org-sort)
19979 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19980 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19981 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19982 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19983 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19984 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19985 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19986 (org-defkey org-mode-map "\M-^" 'org-delete-indentation)
19987 (org-defkey org-mode-map "\C-m" 'org-return)
19988 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19989 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19990 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19991 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19992 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19993 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19994 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19995 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19996 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19997 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19998 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19999 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
20000 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
20001 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
20002 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
20003 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
20004 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
20005 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
20006 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
20007 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
20008 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
20009 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
20010 (org-defkey org-mode-map "\M-h" 'org-mark-element)
20011 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
20012 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
20014 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
20015 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
20016 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
20018 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
20019 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
20020 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
20021 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
20022 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
20023 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
20024 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
20025 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
20026 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
20027 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
20028 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
20029 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
20030 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
20031 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
20032 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
20033 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
20034 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
20035 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
20036 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
20037 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
20038 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
20039 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
20041 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
20042 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
20043 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
20044 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
20045 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
20047 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
20049 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
20051 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
20052 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
20054 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
20057 (when (featurep 'xemacs)
20058 (org-defkey org-mode-map 'button3 'popup-mode-menu))
20061 (defconst org-speed-commands-default
20063 ("Outline Navigation")
20064 ("n" . (org-speed-move-safe 'org-next-visible-heading))
20065 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
20066 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
20067 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
20068 ("F" . org-next-block)
20069 ("B" . org-previous-block)
20070 ("u" . (org-speed-move-safe 'outline-up-heading))
20071 ("j" . org-goto)
20072 ("g" . (org-refile t))
20073 ("Outline Visibility")
20074 ("c" . org-cycle)
20075 ("C" . org-shifttab)
20076 (" " . org-display-outline-path)
20077 ("s" . org-narrow-to-subtree)
20078 ("=" . org-columns)
20079 ("Outline Structure Editing")
20080 ("U" . org-metaup)
20081 ("D" . org-metadown)
20082 ("r" . org-metaright)
20083 ("l" . org-metaleft)
20084 ("R" . org-shiftmetaright)
20085 ("L" . org-shiftmetaleft)
20086 ("i" . (progn (forward-char 1) (call-interactively
20087 'org-insert-heading-respect-content)))
20088 ("^" . org-sort)
20089 ("w" . org-refile)
20090 ("a" . org-archive-subtree-default-with-confirmation)
20091 ("@" . org-mark-subtree)
20092 ("#" . org-toggle-comment)
20093 ("Clock Commands")
20094 ("I" . org-clock-in)
20095 ("O" . org-clock-out)
20096 ("Meta Data Editing")
20097 ("t" . org-todo)
20098 ("," . (org-priority))
20099 ("0" . (org-priority ?\ ))
20100 ("1" . (org-priority ?A))
20101 ("2" . (org-priority ?B))
20102 ("3" . (org-priority ?C))
20103 (":" . org-set-tags-command)
20104 ("e" . org-set-effort)
20105 ("E" . org-inc-effort)
20106 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
20107 (org-entry-put (point) "APPT_WARNTIME" m)))
20108 ("Agenda Views etc")
20109 ("v" . org-agenda)
20110 ("/" . org-sparse-tree)
20111 ("Misc")
20112 ("o" . org-open-at-point)
20113 ("?" . org-speed-command-help)
20114 ("<" . (org-agenda-set-restriction-lock 'subtree))
20115 (">" . (org-agenda-remove-restriction-lock))
20117 "The default speed commands.")
20119 (defun org-print-speed-command (e)
20120 (if (> (length (car e)) 1)
20121 (progn
20122 (princ "\n")
20123 (princ (car e))
20124 (princ "\n")
20125 (princ (make-string (length (car e)) ?-))
20126 (princ "\n"))
20127 (princ (car e))
20128 (princ " ")
20129 (if (symbolp (cdr e))
20130 (princ (symbol-name (cdr e)))
20131 (prin1 (cdr e)))
20132 (princ "\n")))
20134 (defun org-speed-command-help ()
20135 "Show the available speed commands."
20136 (interactive)
20137 (if (not org-use-speed-commands)
20138 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
20139 (with-output-to-temp-buffer "*Help*"
20140 (princ "User-defined Speed commands\n===========================\n")
20141 (mapc 'org-print-speed-command org-speed-commands-user)
20142 (princ "\n")
20143 (princ "Built-in Speed commands\n=======================\n")
20144 (mapc 'org-print-speed-command org-speed-commands-default))
20145 (with-current-buffer "*Help*"
20146 (setq truncate-lines t))))
20148 (defun org-speed-move-safe (cmd)
20149 "Execute CMD, but make sure that the cursor always ends up in a headline.
20150 If not, return to the original position and throw an error."
20151 (interactive)
20152 (let ((pos (point)))
20153 (call-interactively cmd)
20154 (unless (and (bolp) (org-at-heading-p))
20155 (goto-char pos)
20156 (error "Boundary reached while executing %s" cmd))))
20158 (defvar org-self-insert-command-undo-counter 0)
20160 (defvar org-table-auto-blank-field) ; defined in org-table.el
20161 (defvar org-speed-command nil)
20163 (define-obsolete-function-alias
20164 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
20166 (defun org-speed-command-activate (keys)
20167 "Hook for activating single-letter speed commands.
20168 `org-speed-commands-default' specifies a minimal command set.
20169 Use `org-speed-commands-user' for further customization."
20170 (when (or (and (bolp) (looking-at org-outline-regexp))
20171 (and (functionp org-use-speed-commands)
20172 (funcall org-use-speed-commands)))
20173 (cdr (assoc keys (append org-speed-commands-user
20174 org-speed-commands-default)))))
20176 (define-obsolete-function-alias
20177 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
20179 (defun org-babel-speed-command-activate (keys)
20180 "Hook for activating single-letter code block commands."
20181 (when (and (bolp) (looking-at org-babel-src-block-regexp))
20182 (cdr (assoc keys org-babel-key-bindings))))
20184 (defcustom org-speed-command-hook
20185 '(org-speed-command-default-hook org-babel-speed-command-hook)
20186 "Hook for activating speed commands at strategic locations.
20187 Hook functions are called in sequence until a valid handler is
20188 found.
20190 Each hook takes a single argument, a user-pressed command key
20191 which is also a `self-insert-command' from the global map.
20193 Within the hook, examine the cursor position and the command key
20194 and return nil or a valid handler as appropriate. Handler could
20195 be one of an interactive command, a function, or a form.
20197 Set `org-use-speed-commands' to non-nil value to enable this
20198 hook. The default setting is `org-speed-command-activate'."
20199 :group 'org-structure
20200 :version "24.1"
20201 :type 'hook)
20203 (defun org-self-insert-command (N)
20204 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
20205 If the cursor is in a table looking at whitespace, the whitespace is
20206 overwritten, and the table is not marked as requiring realignment."
20207 (interactive "p")
20208 (org-check-before-invisible-edit 'insert)
20209 (cond
20210 ((and org-use-speed-commands
20211 (let ((kv (this-command-keys-vector)))
20212 (setq org-speed-command
20213 (run-hook-with-args-until-success
20214 'org-speed-command-hook
20215 (make-string 1 (aref kv (1- (length kv))))))))
20216 (cond
20217 ((commandp org-speed-command)
20218 (setq this-command org-speed-command)
20219 (call-interactively org-speed-command))
20220 ((functionp org-speed-command)
20221 (funcall org-speed-command))
20222 ((and org-speed-command (listp org-speed-command))
20223 (eval org-speed-command))
20224 (t (let (org-use-speed-commands)
20225 (call-interactively 'org-self-insert-command)))))
20226 ((and
20227 (org-table-p)
20228 (progn
20229 ;; Check if we blank the field, and if that triggers align.
20230 (and (featurep 'org-table) org-table-auto-blank-field
20231 (memq last-command
20232 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
20233 (if (or (eq (char-after) ?\s) (looking-at "[^|\n]* |"))
20234 ;; Got extra space, this field does not determine
20235 ;; column width.
20236 (let (org-table-may-need-update) (org-table-blank-field))
20237 ;; No extra space, this field may determine column
20238 ;; width.
20239 (org-table-blank-field)))
20241 (eq N 1)
20242 (looking-at "[^|\n]* \\( \\)|"))
20243 ;; There is room for insertion without re-aligning the table.
20244 (delete-region (match-beginning 1) (match-end 1))
20245 (self-insert-command N))
20247 (setq org-table-may-need-update t)
20248 (self-insert-command N)
20249 (org-fix-tags-on-the-fly)
20250 (if org-self-insert-cluster-for-undo
20251 (if (not (eq last-command 'org-self-insert-command))
20252 (setq org-self-insert-command-undo-counter 1)
20253 (if (>= org-self-insert-command-undo-counter 20)
20254 (setq org-self-insert-command-undo-counter 1)
20255 (and (> org-self-insert-command-undo-counter 0)
20256 buffer-undo-list (listp buffer-undo-list)
20257 (not (cadr buffer-undo-list)) ; remove nil entry
20258 (setcdr buffer-undo-list (cddr buffer-undo-list)))
20259 (setq org-self-insert-command-undo-counter
20260 (1+ org-self-insert-command-undo-counter))))))))
20262 (defun org-check-before-invisible-edit (kind)
20263 "Check is editing if kind KIND would be dangerous with invisible text around.
20264 The detailed reaction depends on the user option `org-catch-invisible-edits'."
20265 ;; First, try to get out of here as quickly as possible, to reduce overhead
20266 (if (and org-catch-invisible-edits
20267 (or (not (boundp 'visible-mode)) (not visible-mode))
20268 (or (get-char-property (point) 'invisible)
20269 (get-char-property (max (point-min) (1- (point))) 'invisible)))
20270 ;; OK, we need to take a closer look
20271 (let* ((invisible-at-point (get-char-property (point) 'invisible))
20272 (invisible-before-point (if (bobp) nil (get-char-property
20273 (1- (point)) 'invisible)))
20274 (border-and-ok-direction
20276 ;; Check if we are acting predictably before invisible text
20277 (and invisible-at-point (not invisible-before-point)
20278 (memq kind '(insert delete-backward)))
20279 ;; Check if we are acting predictably after invisible text
20280 ;; This works not well, and I have turned it off. It seems
20281 ;; better to always show and stop after invisible text.
20282 ;; (and (not invisible-at-point) invisible-before-point
20283 ;; (memq kind '(insert delete)))
20285 (when (or (memq invisible-at-point '(outline org-hide-block t))
20286 (memq invisible-before-point '(outline org-hide-block t)))
20287 (if (eq org-catch-invisible-edits 'error)
20288 (user-error "Editing in invisible areas is prohibited, make them visible first"))
20289 (if (and org-custom-properties-overlays
20290 (y-or-n-p "Display invisible properties in this buffer? "))
20291 (org-toggle-custom-properties-visibility)
20292 ;; Make the area visible
20293 (save-excursion
20294 (if invisible-before-point
20295 (goto-char (previous-single-char-property-change
20296 (point) 'invisible)))
20297 (outline-show-subtree))
20298 (cond
20299 ((eq org-catch-invisible-edits 'show)
20300 ;; That's it, we do the edit after showing
20301 (message
20302 "Unfolding invisible region around point before editing")
20303 (sit-for 1))
20304 ((and (eq org-catch-invisible-edits 'smart)
20305 border-and-ok-direction)
20306 (message "Unfolding invisible region around point before editing"))
20308 ;; Don't do the edit, make the user repeat it in full visibility
20309 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
20311 (defun org-fix-tags-on-the-fly ()
20312 (when (and (equal (char-after (point-at-bol)) ?*)
20313 (org-at-heading-p))
20314 (org-align-tags-here org-tags-column)))
20316 (defun org-delete-backward-char (N)
20317 "Like `delete-backward-char', insert whitespace at field end in tables.
20318 When deleting backwards, in tables this function will insert whitespace in
20319 front of the next \"|\" separator, to keep the table aligned. The table will
20320 still be marked for re-alignment if the field did fill the entire column,
20321 because, in this case the deletion might narrow the column."
20322 (interactive "p")
20323 (save-match-data
20324 (org-check-before-invisible-edit 'delete-backward)
20325 (if (and (org-table-p)
20326 (eq N 1)
20327 (string-match "|" (buffer-substring (point-at-bol) (point)))
20328 (looking-at ".*?|"))
20329 (let ((pos (point))
20330 (noalign (looking-at "[^|\n\r]* |"))
20331 (c org-table-may-need-update))
20332 (backward-delete-char N)
20333 (if (not overwrite-mode)
20334 (progn
20335 (skip-chars-forward "^|")
20336 (insert " ")
20337 (goto-char (1- pos))))
20338 ;; noalign: if there were two spaces at the end, this field
20339 ;; does not determine the width of the column.
20340 (if noalign (setq org-table-may-need-update c)))
20341 (backward-delete-char N)
20342 (org-fix-tags-on-the-fly))))
20344 (defun org-delete-char (N)
20345 "Like `delete-char', but insert whitespace at field end in tables.
20346 When deleting characters, in tables this function will insert whitespace in
20347 front of the next \"|\" separator, to keep the table aligned. The table will
20348 still be marked for re-alignment if the field did fill the entire column,
20349 because, in this case the deletion might narrow the column."
20350 (interactive "p")
20351 (save-match-data
20352 (org-check-before-invisible-edit 'delete)
20353 (if (and (org-table-p)
20354 (not (bolp))
20355 (not (= (char-after) ?|))
20356 (eq N 1))
20357 (if (looking-at ".*?|")
20358 (let ((pos (point))
20359 (noalign (looking-at "[^|\n\r]* |"))
20360 (c org-table-may-need-update))
20361 (replace-match
20362 (concat (substring (match-string 0) 1 -1) " |") nil t)
20363 (goto-char pos)
20364 ;; noalign: if there were two spaces at the end, this field
20365 ;; does not determine the width of the column.
20366 (if noalign (setq org-table-may-need-update c)))
20367 (delete-char N))
20368 (delete-char N)
20369 (org-fix-tags-on-the-fly))))
20371 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20372 (put 'org-self-insert-command 'delete-selection
20373 (lambda ()
20374 (not (run-hook-with-args-until-success
20375 'self-insert-uses-region-functions))))
20376 (put 'orgtbl-self-insert-command 'delete-selection
20377 (lambda ()
20378 (not (run-hook-with-args-until-success
20379 'self-insert-uses-region-functions))))
20380 (put 'org-delete-char 'delete-selection 'supersede)
20381 (put 'org-delete-backward-char 'delete-selection 'supersede)
20382 (put 'org-yank 'delete-selection 'yank)
20384 ;; Make `flyspell-mode' delay after some commands
20385 (put 'org-self-insert-command 'flyspell-delayed t)
20386 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20387 (put 'org-delete-char 'flyspell-delayed t)
20388 (put 'org-delete-backward-char 'flyspell-delayed t)
20390 ;; Make pabbrev-mode expand after org-mode commands
20391 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20392 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20394 (defun org-remap (map &rest commands)
20395 "In MAP, remap the functions given in COMMANDS.
20396 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20397 (let (new old)
20398 (while commands
20399 (setq old (pop commands) new (pop commands))
20400 (if (fboundp 'command-remapping)
20401 (org-defkey map (vector 'remap old) new)
20402 (substitute-key-definition old new map global-map)))))
20404 (defun org-transpose-words ()
20405 "Transpose words for Org.
20406 This uses the `org-mode-transpose-word-syntax-table' syntax
20407 table, which interprets characters in `org-emphasis-alist' as
20408 word constituents."
20409 (interactive)
20410 (with-syntax-table org-mode-transpose-word-syntax-table
20411 (call-interactively 'transpose-words)))
20412 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20414 (when (eq org-enable-table-editor 'optimized)
20415 ;; If the user wants maximum table support, we need to hijack
20416 ;; some standard editing functions
20417 (org-remap org-mode-map
20418 'self-insert-command 'org-self-insert-command
20419 'delete-char 'org-delete-char
20420 'delete-backward-char 'org-delete-backward-char)
20421 (org-defkey org-mode-map "|" 'org-force-self-insert))
20423 (defvar org-ctrl-c-ctrl-c-hook nil
20424 "Hook for functions attaching themselves to `C-c C-c'.
20426 This can be used to add additional functionality to the C-c C-c
20427 key which executes context-dependent commands. This hook is run
20428 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20429 run after the last test.
20431 Each function will be called with no arguments. The function
20432 must check if the context is appropriate for it to act. If yes,
20433 it should do its thing and then return a non-nil value. If the
20434 context is wrong, just do nothing and return nil.")
20436 (defvar org-ctrl-c-ctrl-c-final-hook nil
20437 "Hook for functions attaching themselves to `C-c C-c'.
20439 This can be used to add additional functionality to the C-c C-c
20440 key which executes context-dependent commands. This hook is run
20441 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20442 before the first test.
20444 Each function will be called with no arguments. The function
20445 must check if the context is appropriate for it to act. If yes,
20446 it should do its thing and then return a non-nil value. If the
20447 context is wrong, just do nothing and return nil.")
20449 (defvar org-tab-first-hook nil
20450 "Hook for functions to attach themselves to TAB.
20451 See `org-ctrl-c-ctrl-c-hook' for more information.
20452 This hook runs as the first action when TAB is pressed, even before
20453 `org-cycle' messes around with the `outline-regexp' to cater for
20454 inline tasks and plain list item folding.
20455 If any function in this hook returns t, any other actions that
20456 would have been caused by TAB (such as table field motion or visibility
20457 cycling) will not occur.")
20459 (defvar org-tab-after-check-for-table-hook nil
20460 "Hook for functions to attach themselves to TAB.
20461 See `org-ctrl-c-ctrl-c-hook' for more information.
20462 This hook runs after it has been established that the cursor is not in a
20463 table, but before checking if the cursor is in a headline or if global cycling
20464 should be done.
20465 If any function in this hook returns t, not other actions like visibility
20466 cycling will be done.")
20468 (defvar org-tab-after-check-for-cycling-hook nil
20469 "Hook for functions to attach themselves to TAB.
20470 See `org-ctrl-c-ctrl-c-hook' for more information.
20471 This hook runs after it has been established that not table field motion and
20472 not visibility should be done because of current context. This is probably
20473 the place where a package like yasnippets can hook in.")
20475 (defvar org-tab-before-tab-emulation-hook nil
20476 "Hook for functions to attach themselves to TAB.
20477 See `org-ctrl-c-ctrl-c-hook' for more information.
20478 This hook runs after every other options for TAB have been exhausted, but
20479 before indentation and \t insertion takes place.")
20481 (defvar org-metaleft-hook nil
20482 "Hook for functions attaching themselves to `M-left'.
20483 See `org-ctrl-c-ctrl-c-hook' for more information.")
20484 (defvar org-metaright-hook nil
20485 "Hook for functions attaching themselves to `M-right'.
20486 See `org-ctrl-c-ctrl-c-hook' for more information.")
20487 (defvar org-metaup-hook nil
20488 "Hook for functions attaching themselves to `M-up'.
20489 See `org-ctrl-c-ctrl-c-hook' for more information.")
20490 (defvar org-metadown-hook nil
20491 "Hook for functions attaching themselves to `M-down'.
20492 See `org-ctrl-c-ctrl-c-hook' for more information.")
20493 (defvar org-shiftmetaleft-hook nil
20494 "Hook for functions attaching themselves to `M-S-left'.
20495 See `org-ctrl-c-ctrl-c-hook' for more information.")
20496 (defvar org-shiftmetaright-hook nil
20497 "Hook for functions attaching themselves to `M-S-right'.
20498 See `org-ctrl-c-ctrl-c-hook' for more information.")
20499 (defvar org-shiftmetaup-hook nil
20500 "Hook for functions attaching themselves to `M-S-up'.
20501 See `org-ctrl-c-ctrl-c-hook' for more information.")
20502 (defvar org-shiftmetadown-hook nil
20503 "Hook for functions attaching themselves to `M-S-down'.
20504 See `org-ctrl-c-ctrl-c-hook' for more information.")
20505 (defvar org-metareturn-hook nil
20506 "Hook for functions attaching themselves to `M-RET'.
20507 See `org-ctrl-c-ctrl-c-hook' for more information.")
20508 (defvar org-shiftup-hook nil
20509 "Hook for functions attaching themselves to `S-up'.
20510 See `org-ctrl-c-ctrl-c-hook' for more information.")
20511 (defvar org-shiftup-final-hook nil
20512 "Hook for functions attaching themselves to `S-up'.
20513 This one runs after all other options except shift-select have been excluded.
20514 See `org-ctrl-c-ctrl-c-hook' for more information.")
20515 (defvar org-shiftdown-hook nil
20516 "Hook for functions attaching themselves to `S-down'.
20517 See `org-ctrl-c-ctrl-c-hook' for more information.")
20518 (defvar org-shiftdown-final-hook nil
20519 "Hook for functions attaching themselves to `S-down'.
20520 This one runs after all other options except shift-select have been excluded.
20521 See `org-ctrl-c-ctrl-c-hook' for more information.")
20522 (defvar org-shiftleft-hook nil
20523 "Hook for functions attaching themselves to `S-left'.
20524 See `org-ctrl-c-ctrl-c-hook' for more information.")
20525 (defvar org-shiftleft-final-hook nil
20526 "Hook for functions attaching themselves to `S-left'.
20527 This one runs after all other options except shift-select have been excluded.
20528 See `org-ctrl-c-ctrl-c-hook' for more information.")
20529 (defvar org-shiftright-hook nil
20530 "Hook for functions attaching themselves to `S-right'.
20531 See `org-ctrl-c-ctrl-c-hook' for more information.")
20532 (defvar org-shiftright-final-hook nil
20533 "Hook for functions attaching themselves to `S-right'.
20534 This one runs after all other options except shift-select have been excluded.
20535 See `org-ctrl-c-ctrl-c-hook' for more information.")
20537 (defun org-modifier-cursor-error ()
20538 "Throw an error, a modified cursor command was applied in wrong context."
20539 (user-error "This command is active in special context like tables, headlines or items"))
20541 (defun org-shiftselect-error ()
20542 "Throw an error because Shift-Cursor command was applied in wrong context."
20543 (if (and (boundp 'shift-select-mode) shift-select-mode)
20544 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20545 (user-error "This command works only in special context like headlines or timestamps")))
20547 (defun org-call-for-shift-select (cmd)
20548 (let ((this-command-keys-shift-translated t))
20549 (call-interactively cmd)))
20551 (defun org-shifttab (&optional arg)
20552 "Global visibility cycling or move to previous table field.
20553 Call `org-table-previous-field' within a table.
20554 When ARG is nil, cycle globally through visibility states.
20555 When ARG is a numeric prefix, show contents of this level."
20556 (interactive "P")
20557 (cond
20558 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20559 ((integerp arg)
20560 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20561 (message "Content view to level: %d" arg)
20562 (org-content (prefix-numeric-value arg2))
20563 (org-cycle-show-empty-lines t)
20564 (setq org-cycle-global-status 'overview)))
20565 (t (call-interactively 'org-global-cycle))))
20567 (defun org-shiftmetaleft ()
20568 "Promote subtree or delete table column.
20569 Calls `org-promote-subtree', `org-outdent-item-tree', or
20570 `org-table-delete-column', depending on context. See the
20571 individual commands for more information."
20572 (interactive)
20573 (cond
20574 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20575 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20576 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20577 ((if (not (org-region-active-p)) (org-at-item-p)
20578 (save-excursion (goto-char (region-beginning))
20579 (org-at-item-p)))
20580 (call-interactively 'org-outdent-item-tree))
20581 (t (org-modifier-cursor-error))))
20583 (defun org-shiftmetaright ()
20584 "Demote subtree or insert table column.
20585 Calls `org-demote-subtree', `org-indent-item-tree', or
20586 `org-table-insert-column', depending on context. See the
20587 individual commands for more information."
20588 (interactive)
20589 (cond
20590 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20591 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20592 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20593 ((if (not (org-region-active-p)) (org-at-item-p)
20594 (save-excursion (goto-char (region-beginning))
20595 (org-at-item-p)))
20596 (call-interactively 'org-indent-item-tree))
20597 (t (org-modifier-cursor-error))))
20599 (defun org-shiftmetaup (&optional arg)
20600 "Drag the line at point up.
20601 In a table, kill the current row.
20602 On a clock timestamp, update the value of the timestamp like `S-<up>'
20603 but also adjust the previous clocked item in the clock history.
20604 Everywhere else, drag the line at point up."
20605 (interactive "P")
20606 (cond
20607 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20608 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20609 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20610 (call-interactively 'org-timestamp-up)))
20611 (t (call-interactively 'org-drag-line-backward))))
20613 (defun org-shiftmetadown (&optional arg)
20614 "Drag the line at point down.
20615 In a table, insert an empty row at the current line.
20616 On a clock timestamp, update the value of the timestamp like `S-<down>'
20617 but also adjust the previous clocked item in the clock history.
20618 Everywhere else, drag the line at point down."
20619 (interactive "P")
20620 (cond
20621 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20622 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20623 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20624 (call-interactively 'org-timestamp-down)))
20625 (t (call-interactively 'org-drag-line-forward))))
20627 (defsubst org-hidden-tree-error ()
20628 (user-error
20629 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20631 (defun org-metaleft (&optional arg)
20632 "Promote heading, list item at point or move table column left.
20634 Calls `org-do-promote', `org-outdent-item' or `org-table-move-column',
20635 depending on context. With no specific context, calls the Emacs
20636 default `backward-word'. See the individual commands for more
20637 information.
20639 This function runs the hook `org-metaleft-hook' as a first step,
20640 and returns at first non-nil value."
20641 (interactive "P")
20642 (cond
20643 ((run-hook-with-args-until-success 'org-metaleft-hook))
20644 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20645 ((org-with-limited-levels
20646 (or (org-at-heading-p)
20647 (and (org-region-active-p)
20648 (save-excursion
20649 (goto-char (region-beginning))
20650 (org-at-heading-p)))))
20651 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20652 (call-interactively 'org-do-promote))
20653 ;; At an inline task.
20654 ((org-at-heading-p)
20655 (call-interactively 'org-inlinetask-promote))
20656 ((or (org-at-item-p)
20657 (and (org-region-active-p)
20658 (save-excursion
20659 (goto-char (region-beginning))
20660 (org-at-item-p))))
20661 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20662 (call-interactively 'org-outdent-item))
20663 (t (call-interactively 'backward-word))))
20665 (defun org-metaright (&optional arg)
20666 "Demote heading, list item at point or move table column right.
20668 In front of a drawer or a block keyword, indent it correctly.
20670 Calls `org-do-demote', `org-indent-item', `org-table-move-column',
20671 `org-indnet-drawer' or `org-indent-block' depending on context.
20672 With no specific context, calls the Emacs default `forward-word'.
20673 See the individual commands for more information.
20675 This function runs the hook `org-metaright-hook' as a first step,
20676 and returns at first non-nil value."
20677 (interactive "P")
20678 (cond
20679 ((run-hook-with-args-until-success 'org-metaright-hook))
20680 ((org-at-table-p) (call-interactively 'org-table-move-column))
20681 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20682 ((org-at-block-p) (call-interactively 'org-indent-block))
20683 ((org-with-limited-levels
20684 (or (org-at-heading-p)
20685 (and (org-region-active-p)
20686 (save-excursion
20687 (goto-char (region-beginning))
20688 (org-at-heading-p)))))
20689 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20690 (call-interactively 'org-do-demote))
20691 ;; At an inline task.
20692 ((org-at-heading-p)
20693 (call-interactively 'org-inlinetask-demote))
20694 ((or (org-at-item-p)
20695 (and (org-region-active-p)
20696 (save-excursion
20697 (goto-char (region-beginning))
20698 (org-at-item-p))))
20699 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20700 (call-interactively 'org-indent-item))
20701 (t (call-interactively 'forward-word))))
20703 (defun org-check-for-hidden (what)
20704 "Check if there are hidden headlines/items in the current visual line.
20705 WHAT can be either `headlines' or `items'. If the current line is
20706 an outline or item heading and it has a folded subtree below it,
20707 this function returns t, nil otherwise."
20708 (let ((re (cond
20709 ((eq what 'headlines) org-outline-regexp-bol)
20710 ((eq what 'items) (org-item-beginning-re))
20711 (t (error "This should not happen"))))
20712 beg end)
20713 (save-excursion
20714 (catch 'exit
20715 (unless (org-region-active-p)
20716 (setq beg (point-at-bol))
20717 (beginning-of-line 2)
20718 (while (and (not (eobp)) ;; this is like `next-line'
20719 (get-char-property (1- (point)) 'invisible))
20720 (beginning-of-line 2))
20721 (setq end (point))
20722 (goto-char beg)
20723 (goto-char (point-at-eol))
20724 (setq end (max end (point)))
20725 (while (re-search-forward re end t)
20726 (if (get-char-property (match-beginning 0) 'invisible)
20727 (throw 'exit t))))
20728 nil))))
20730 (defun org-metaup (&optional arg)
20731 "Move subtree up or move table row up.
20732 Calls `org-move-subtree-up' or `org-table-move-row' or
20733 `org-move-item-up', depending on context. See the individual commands
20734 for more information."
20735 (interactive "P")
20736 (cond
20737 ((run-hook-with-args-until-success 'org-metaup-hook))
20738 ((org-region-active-p)
20739 (let* ((a (min (region-beginning) (region-end)))
20740 (b (1- (max (region-beginning) (region-end))))
20741 (c (save-excursion (goto-char a)
20742 (move-beginning-of-line 0)))
20743 (d (save-excursion (goto-char a)
20744 (move-end-of-line 0) (point))))
20745 (transpose-regions a b c d)
20746 (goto-char c)))
20747 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20748 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20749 ((org-at-item-p) (call-interactively 'org-move-item-up))
20750 (t (org-drag-element-backward))))
20752 (defun org-metadown (&optional arg)
20753 "Move subtree down or move table row down.
20754 Calls `org-move-subtree-down' or `org-table-move-row' or
20755 `org-move-item-down', depending on context. See the individual
20756 commands for more information."
20757 (interactive "P")
20758 (cond
20759 ((run-hook-with-args-until-success 'org-metadown-hook))
20760 ((org-region-active-p)
20761 (let* ((a (min (region-beginning) (region-end)))
20762 (b (max (region-beginning) (region-end)))
20763 (c (save-excursion (goto-char b)
20764 (move-beginning-of-line 1)))
20765 (d (save-excursion (goto-char b)
20766 (move-end-of-line 1) (1+ (point)))))
20767 (transpose-regions a b c d)
20768 (goto-char d)))
20769 ((org-at-table-p) (call-interactively 'org-table-move-row))
20770 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20771 ((org-at-item-p) (call-interactively 'org-move-item-down))
20772 (t (org-drag-element-forward))))
20774 (defun org-shiftup (&optional arg)
20775 "Increase item in timestamp or increase priority of current headline.
20776 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20777 depending on context. See the individual commands for more information."
20778 (interactive "P")
20779 (cond
20780 ((run-hook-with-args-until-success 'org-shiftup-hook))
20781 ((and org-support-shift-select (org-region-active-p))
20782 (org-call-for-shift-select 'previous-line))
20783 ((org-at-timestamp-p t)
20784 (call-interactively (if org-edit-timestamp-down-means-later
20785 'org-timestamp-down 'org-timestamp-up)))
20786 ((and (not (eq org-support-shift-select 'always))
20787 org-enable-priority-commands
20788 (org-at-heading-p))
20789 (call-interactively 'org-priority-up))
20790 ((and (not org-support-shift-select) (org-at-item-p))
20791 (call-interactively 'org-previous-item))
20792 ((org-clocktable-try-shift 'up arg))
20793 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20794 (org-support-shift-select
20795 (org-call-for-shift-select 'previous-line))
20796 (t (org-shiftselect-error))))
20798 (defun org-shiftdown (&optional arg)
20799 "Decrease item in timestamp or decrease priority of current headline.
20800 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20801 depending on context. See the individual commands for more information."
20802 (interactive "P")
20803 (cond
20804 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20805 ((and org-support-shift-select (org-region-active-p))
20806 (org-call-for-shift-select 'next-line))
20807 ((org-at-timestamp-p t)
20808 (call-interactively (if org-edit-timestamp-down-means-later
20809 'org-timestamp-up 'org-timestamp-down)))
20810 ((and (not (eq org-support-shift-select 'always))
20811 org-enable-priority-commands
20812 (org-at-heading-p))
20813 (call-interactively 'org-priority-down))
20814 ((and (not org-support-shift-select) (org-at-item-p))
20815 (call-interactively 'org-next-item))
20816 ((org-clocktable-try-shift 'down arg))
20817 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20818 (org-support-shift-select
20819 (org-call-for-shift-select 'next-line))
20820 (t (org-shiftselect-error))))
20822 (defun org-shiftright (&optional arg)
20823 "Cycle the thing at point or in the current line, depending on context.
20824 Depending on context, this does one of the following:
20826 - switch a timestamp at point one day into the future
20827 - on a headline, switch to the next TODO keyword.
20828 - on an item, switch entire list to the next bullet type
20829 - on a property line, switch to the next allowed value
20830 - on a clocktable definition line, move time block into the future"
20831 (interactive "P")
20832 (cond
20833 ((run-hook-with-args-until-success 'org-shiftright-hook))
20834 ((and org-support-shift-select (org-region-active-p))
20835 (org-call-for-shift-select 'forward-char))
20836 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20837 ((and (not (eq org-support-shift-select 'always))
20838 (org-at-heading-p))
20839 (let ((org-inhibit-logging
20840 (not org-treat-S-cursor-todo-selection-as-state-change))
20841 (org-inhibit-blocking
20842 (not org-treat-S-cursor-todo-selection-as-state-change)))
20843 (org-call-with-arg 'org-todo 'right)))
20844 ((or (and org-support-shift-select
20845 (not (eq org-support-shift-select 'always))
20846 (org-at-item-bullet-p))
20847 (and (not org-support-shift-select) (org-at-item-p)))
20848 (org-call-with-arg 'org-cycle-list-bullet nil))
20849 ((and (not (eq org-support-shift-select 'always))
20850 (org-at-property-p))
20851 (call-interactively 'org-property-next-allowed-value))
20852 ((org-clocktable-try-shift 'right arg))
20853 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20854 (org-support-shift-select
20855 (org-call-for-shift-select 'forward-char))
20856 (t (org-shiftselect-error))))
20858 (defun org-shiftleft (&optional arg)
20859 "Cycle the thing at point or in the current line, depending on context.
20860 Depending on context, this does one of the following:
20862 - switch a timestamp at point one day into the past
20863 - on a headline, switch to the previous TODO keyword.
20864 - on an item, switch entire list to the previous bullet type
20865 - on a property line, switch to the previous allowed value
20866 - on a clocktable definition line, move time block into the past"
20867 (interactive "P")
20868 (cond
20869 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20870 ((and org-support-shift-select (org-region-active-p))
20871 (org-call-for-shift-select 'backward-char))
20872 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20873 ((and (not (eq org-support-shift-select 'always))
20874 (org-at-heading-p))
20875 (let ((org-inhibit-logging
20876 (not org-treat-S-cursor-todo-selection-as-state-change))
20877 (org-inhibit-blocking
20878 (not org-treat-S-cursor-todo-selection-as-state-change)))
20879 (org-call-with-arg 'org-todo 'left)))
20880 ((or (and org-support-shift-select
20881 (not (eq org-support-shift-select 'always))
20882 (org-at-item-bullet-p))
20883 (and (not org-support-shift-select) (org-at-item-p)))
20884 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20885 ((and (not (eq org-support-shift-select 'always))
20886 (org-at-property-p))
20887 (call-interactively 'org-property-previous-allowed-value))
20888 ((org-clocktable-try-shift 'left arg))
20889 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20890 (org-support-shift-select
20891 (org-call-for-shift-select 'backward-char))
20892 (t (org-shiftselect-error))))
20894 (defun org-shiftcontrolright ()
20895 "Switch to next TODO set."
20896 (interactive)
20897 (cond
20898 ((and org-support-shift-select (org-region-active-p))
20899 (org-call-for-shift-select 'forward-word))
20900 ((and (not (eq org-support-shift-select 'always))
20901 (org-at-heading-p))
20902 (org-call-with-arg 'org-todo 'nextset))
20903 (org-support-shift-select
20904 (org-call-for-shift-select 'forward-word))
20905 (t (org-shiftselect-error))))
20907 (defun org-shiftcontrolleft ()
20908 "Switch to previous TODO set."
20909 (interactive)
20910 (cond
20911 ((and org-support-shift-select (org-region-active-p))
20912 (org-call-for-shift-select 'backward-word))
20913 ((and (not (eq org-support-shift-select 'always))
20914 (org-at-heading-p))
20915 (org-call-with-arg 'org-todo 'previousset))
20916 (org-support-shift-select
20917 (org-call-for-shift-select 'backward-word))
20918 (t (org-shiftselect-error))))
20920 (defun org-shiftcontrolup (&optional n)
20921 "Change timestamps synchronously up in CLOCK log lines.
20922 Optional argument N tells to change by that many units."
20923 (interactive "P")
20924 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20925 (let (org-support-shift-select)
20926 (org-clock-timestamps-up n))
20927 (user-error "Not at a clock log")))
20929 (defun org-shiftcontroldown (&optional n)
20930 "Change timestamps synchronously down in CLOCK log lines.
20931 Optional argument N tells to change by that many units."
20932 (interactive "P")
20933 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20934 (let (org-support-shift-select)
20935 (org-clock-timestamps-down n))
20936 (user-error "Not at a clock log")))
20938 (defun org-increase-number-at-point (&optional inc)
20939 "Increment the number at point.
20940 With an optional prefix numeric argument INC, increment using
20941 this numeric value."
20942 (interactive "p")
20943 (if (not (number-at-point))
20944 (user-error "Not on a number")
20945 (unless inc (setq inc 1))
20946 (let ((pos (point))
20947 (beg (skip-chars-backward "-+^/*0-9eE."))
20948 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20949 (setq nap (buffer-substring-no-properties
20950 (+ pos beg) (+ pos beg end)))
20951 (delete-region (+ pos beg) (+ pos beg end))
20952 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20953 (when (org-at-table-p)
20954 (org-table-align)
20955 (org-table-end-of-field 1))))
20957 (defun org-decrease-number-at-point (&optional inc)
20958 "Decrement the number at point.
20959 With an optional prefix numeric argument INC, decrement using
20960 this numeric value."
20961 (interactive "p")
20962 (org-increase-number-at-point (- (or inc 1))))
20964 (defun org-ctrl-c-ret ()
20965 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20966 (interactive)
20967 (cond
20968 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20969 (t (call-interactively 'org-insert-heading))))
20971 (defun org-find-visible ()
20972 (let ((s (point)))
20973 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20974 (get-char-property s 'invisible)))
20976 (defun org-find-invisible ()
20977 (let ((s (point)))
20978 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20979 (not (get-char-property s 'invisible))))
20982 (defun org-copy-visible (beg end)
20983 "Copy the visible parts of the region."
20984 (interactive "r")
20985 (let (snippets s)
20986 (save-excursion
20987 (save-restriction
20988 (narrow-to-region beg end)
20989 (setq s (goto-char (point-min)))
20990 (while (not (= (point) (point-max)))
20991 (goto-char (org-find-invisible))
20992 (push (buffer-substring s (point)) snippets)
20993 (setq s (goto-char (org-find-visible))))))
20994 (kill-new (apply 'concat (nreverse snippets)))))
20996 (defun org-copy-special ()
20997 "Copy region in table or copy current subtree.
20998 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20999 See the individual commands for more information."
21000 (interactive)
21001 (call-interactively
21002 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
21004 (defun org-cut-special ()
21005 "Cut region in table or cut current subtree.
21006 Calls `org-table-copy' or `org-cut-subtree', depending on context.
21007 See the individual commands for more information."
21008 (interactive)
21009 (call-interactively
21010 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
21012 (defun org-paste-special (arg)
21013 "Paste rectangular region into table, or past subtree relative to level.
21014 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
21015 See the individual commands for more information."
21016 (interactive "P")
21017 (if (org-at-table-p)
21018 (org-table-paste-rectangle)
21019 (org-paste-subtree arg)))
21021 (defsubst org-in-fixed-width-region-p ()
21022 "Is point in a fixed-width region?"
21023 (save-match-data
21024 (eq 'fixed-width (org-element-type (org-element-at-point)))))
21026 (defun org-edit-special (&optional arg)
21027 "Call a special editor for the element at point.
21028 When at a table, call the formula editor with `org-table-edit-formulas'.
21029 When in a source code block, call `org-edit-src-code'.
21030 When in a fixed-width region, call `org-edit-fixed-width-region'.
21031 When in an export block, call `org-edit-export-block'.
21032 When at an #+INCLUDE keyword, visit the included file.
21033 When at a footnote reference, call `org-edit-footnote-reference'
21034 On a link, call `ffap' to visit the link at point.
21035 Otherwise, return a user error."
21036 (interactive "P")
21037 (let ((element (org-element-at-point)))
21038 (assert (not buffer-read-only) nil
21039 "Buffer is read-only: %s" (buffer-name))
21040 (case (org-element-type element)
21041 (src-block
21042 (if (not arg) (org-edit-src-code)
21043 (let* ((info (org-babel-get-src-block-info))
21044 (lang (nth 0 info))
21045 (params (nth 2 info))
21046 (session (cdr (assq :session params))))
21047 (if (not session) (org-edit-src-code)
21048 ;; At a src-block with a session and function called with
21049 ;; an ARG: switch to the buffer related to the inferior
21050 ;; process.
21051 (switch-to-buffer
21052 (funcall (intern (concat "org-babel-prep-session:" lang))
21053 session params))))))
21054 (keyword
21055 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
21056 (org-open-link-from-string
21057 (format "[[%s]]"
21058 (expand-file-name
21059 (let ((value (org-element-property :value element)))
21060 (cond ((not (org-string-nw-p value))
21061 (user-error "No file to edit"))
21062 ((string-match "\\`\"\\(.*?\\)\"" value)
21063 (match-string 1 value))
21064 ((string-match "\\`[^ \t\"]\\S-*" value)
21065 (match-string 0 value))
21066 (t (user-error "No valid file specified")))))))
21067 (user-error "No special environment to edit here")))
21068 (table
21069 (if (eq (org-element-property :type element) 'table.el)
21070 (org-edit-table.el)
21071 (call-interactively 'org-table-edit-formulas)))
21072 ;; Only Org tables contain `table-row' type elements.
21073 (table-row (call-interactively 'org-table-edit-formulas))
21074 (example-block (org-edit-src-code))
21075 (export-block (org-edit-export-block))
21076 (fixed-width (org-edit-fixed-width-region))
21077 (otherwise
21078 ;; No notable element at point. Though, we may be at a link or
21079 ;; a footnote reference, which are objects. Thus, scan deeper.
21080 (let ((context (org-element-context element)))
21081 (case (org-element-type context)
21082 (link (call-interactively #'ffap))
21083 (footnote-reference (org-edit-footnote-reference))
21084 (t (user-error "No special environment to edit here"))))))))
21086 (defvar org-table-coordinate-overlays) ; defined in org-table.el
21087 (defun org-ctrl-c-ctrl-c (&optional arg)
21088 "Set tags in headline, or update according to changed information at point.
21090 This command does many different things, depending on context:
21092 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
21093 this is what we do.
21095 - If the cursor is on a statistics cookie, update it.
21097 - If the cursor is in a headline, prompt for tags and insert them
21098 into the current line, aligned to `org-tags-column'. When called
21099 with prefix arg, realign all tags in the current buffer.
21101 - If the cursor is in one of the special #+KEYWORD lines, this
21102 triggers scanning the buffer for these lines and updating the
21103 information.
21105 - If the cursor is inside a table, realign the table. This command
21106 works even if the automatic table editor has been turned off.
21108 - If the cursor is on a #+TBLFM line, re-apply the formulas to
21109 the entire table.
21111 - If the cursor is at a footnote reference or definition, jump to
21112 the corresponding definition or references, respectively.
21114 - If the cursor is a the beginning of a dynamic block, update it.
21116 - If the current buffer is a capture buffer, close note and file it.
21118 - If the cursor is on a <<<target>>>, update radio targets and
21119 corresponding links in this buffer.
21121 - If the cursor is on a numbered item in a plain list, renumber the
21122 ordered list.
21124 - If the cursor is on a checkbox, toggle it.
21126 - If the cursor is on a code block, evaluate it. The variable
21127 `org-confirm-babel-evaluate' can be used to control prompting
21128 before code block evaluation, by default every code block
21129 evaluation requires confirmation. Code block evaluation can be
21130 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
21131 (interactive "P")
21132 (cond
21133 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
21134 org-occur-highlights)
21135 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
21136 (org-remove-occur-highlights)
21137 (message "Temporary highlights/overlays removed from current buffer"))
21138 ((and (local-variable-p 'org-finish-function (current-buffer))
21139 (fboundp org-finish-function))
21140 (funcall org-finish-function))
21141 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
21143 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
21144 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21145 (user-error "C-c C-c can do nothing useful at this location"))
21146 (let* ((context (org-element-context))
21147 (type (org-element-type context)))
21148 (case type
21149 ;; When at a link, act according to the parent instead.
21150 (link (setq context (org-element-property :parent context))
21151 (setq type (org-element-type context)))
21152 ;; Unsupported object types: refer to the first supported
21153 ;; element or object containing it.
21154 ((bold code entity export-snippet inline-babel-call inline-src-block
21155 italic latex-fragment line-break macro strike-through subscript
21156 superscript underline verbatim)
21157 (setq context
21158 (org-element-lineage
21159 context '(radio-target paragraph verse-block table-cell)))))
21160 ;; For convenience: at the first line of a paragraph on the
21161 ;; same line as an item, apply function on that item instead.
21162 (when (eq type 'paragraph)
21163 (let ((parent (org-element-property :parent context)))
21164 (when (and (eq (org-element-type parent) 'item)
21165 (= (line-beginning-position)
21166 (org-element-property :begin parent)))
21167 (setq context parent type 'item))))
21168 ;; Act according to type of element or object at point.
21169 (case type
21170 (clock (org-clock-update-time-maybe))
21171 (dynamic-block
21172 (save-excursion
21173 (goto-char (org-element-property :post-affiliated context))
21174 (org-update-dblock)))
21175 (footnote-definition
21176 (goto-char (org-element-property :post-affiliated context))
21177 (call-interactively 'org-footnote-action))
21178 (footnote-reference (call-interactively 'org-footnote-action))
21179 ((headline inlinetask)
21180 (save-excursion (goto-char (org-element-property :begin context))
21181 (call-interactively 'org-set-tags)))
21182 (item
21183 ;; At an item: a double C-u set checkbox to "[-]"
21184 ;; unconditionally, whereas a single one will toggle its
21185 ;; presence. Without a universal argument, if the item
21186 ;; has a checkbox, toggle it. Otherwise repair the list.
21187 (let* ((box (org-element-property :checkbox context))
21188 (struct (org-element-property :structure context))
21189 (old-struct (copy-tree struct))
21190 (parents (org-list-parents-alist struct))
21191 (prevs (org-list-prevs-alist struct))
21192 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
21193 (org-list-set-checkbox
21194 (org-element-property :begin context) struct
21195 (cond ((equal arg '(16)) "[-]")
21196 ((and (not box) (equal arg '(4))) "[ ]")
21197 ((or (not box) (equal arg '(4))) nil)
21198 ((eq box 'on) "[ ]")
21199 (t "[X]")))
21200 ;; Mimic `org-list-write-struct' but with grabbing
21201 ;; a return value from `org-list-struct-fix-box'.
21202 (org-list-struct-fix-ind struct parents 2)
21203 (org-list-struct-fix-item-end struct)
21204 (org-list-struct-fix-bul struct prevs)
21205 (org-list-struct-fix-ind struct parents)
21206 (let ((block-item
21207 (org-list-struct-fix-box struct parents prevs orderedp)))
21208 (if (and box (equal struct old-struct))
21209 (if (equal arg '(16))
21210 (message "Checkboxes already reset")
21211 (user-error "Cannot toggle this checkbox: %s"
21212 (if (eq box 'on)
21213 "all subitems checked"
21214 "unchecked subitems")))
21215 (org-list-struct-apply-struct struct old-struct)
21216 (org-update-checkbox-count-maybe))
21217 (when block-item
21218 (message "Checkboxes were removed due to empty box at line %d"
21219 (org-current-line block-item))))))
21220 (keyword
21221 (let ((org-inhibit-startup-visibility-stuff t)
21222 (org-startup-align-all-tables nil))
21223 (when (boundp 'org-table-coordinate-overlays)
21224 (mapc 'delete-overlay org-table-coordinate-overlays)
21225 (setq org-table-coordinate-overlays nil))
21226 (org-save-outline-visibility 'use-markers (org-mode-restart)))
21227 (message "Local setup has been refreshed"))
21228 (plain-list
21229 ;; At a plain list, with a double C-u argument, set
21230 ;; checkboxes of each item to "[-]", whereas a single one
21231 ;; will toggle their presence according to the state of the
21232 ;; first item in the list. Without an argument, repair the
21233 ;; list.
21234 (let* ((begin (org-element-property :contents-begin context))
21235 (beginm (move-marker (make-marker) begin))
21236 (struct (org-element-property :structure context))
21237 (old-struct (copy-tree struct))
21238 (first-box (save-excursion
21239 (goto-char begin)
21240 (looking-at org-list-full-item-re)
21241 (match-string-no-properties 3)))
21242 (new-box (cond ((equal arg '(16)) "[-]")
21243 ((equal arg '(4)) (unless first-box "[ ]"))
21244 ((equal first-box "[X]") "[ ]")
21245 (t "[X]"))))
21246 (cond
21247 (arg
21248 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
21249 (org-list-get-all-items
21250 begin struct (org-list-prevs-alist struct))))
21251 ((and first-box (eq (point) begin))
21252 ;; For convenience, when point is at bol on the first
21253 ;; item of the list and no argument is provided, simply
21254 ;; toggle checkbox of that item, if any.
21255 (org-list-set-checkbox begin struct new-box)))
21256 (org-list-write-struct
21257 struct (org-list-parents-alist struct) old-struct)
21258 (org-update-checkbox-count-maybe)
21259 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
21260 ((property-drawer node-property)
21261 (call-interactively 'org-property-action))
21262 ((radio-target target)
21263 (call-interactively 'org-update-radio-target-regexp))
21264 (statistics-cookie
21265 (call-interactively 'org-update-statistics-cookies))
21266 ((table table-cell table-row)
21267 ;; At a table, recalculate every field and align it. Also
21268 ;; send the table if necessary. If the table has
21269 ;; a `table.el' type, just give up. At a table row or
21270 ;; cell, maybe recalculate line but always align table.
21271 (if (eq (org-element-property :type context) 'table.el)
21272 (message "%s" (substitute-command-keys "\\<org-mode-map>\
21273 Use \\[org-edit-special] to edit table.el tables"))
21274 (let ((org-enable-table-editor t))
21275 (if (or (eq type 'table)
21276 ;; Check if point is at a TBLFM line.
21277 (and (eq type 'table-row)
21278 (= (point) (org-element-property :end context))))
21279 (save-excursion
21280 (if (org-at-TBLFM-p)
21281 (progn (require 'org-table)
21282 (org-table-calc-current-TBLFM))
21283 (goto-char (org-element-property :contents-begin context))
21284 (org-call-with-arg 'org-table-recalculate (or arg t))
21285 (orgtbl-send-table 'maybe)))
21286 (org-table-maybe-eval-formula)
21287 (cond (arg (call-interactively 'org-table-recalculate))
21288 ((org-table-maybe-recalculate-line))
21289 (t (org-table-align)))))))
21290 (timestamp (org-timestamp-change 0 'day))
21291 (otherwise
21292 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21293 (user-error
21294 "C-c C-c can do nothing useful at this location")))))))))
21296 (defun org-mode-restart ()
21297 (interactive)
21298 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
21299 (funcall major-mode)
21300 (hack-local-variables)
21301 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
21302 (org-indent-mode -1)))
21303 (message "%s restarted" major-mode))
21305 (defun org-kill-note-or-show-branches ()
21306 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
21307 (interactive)
21308 (if (not org-finish-function)
21309 (progn
21310 (outline-hide-subtree)
21311 (call-interactively 'outline-show-branches))
21312 (let ((org-note-abort t))
21313 (funcall org-finish-function))))
21315 (defun org-delete-indentation (&optional ARG)
21316 "Join current line to previous and fix whitespace at join.
21318 If previous line is a headline add to headline title. Otherwise
21319 the function calls `delete-indentation'.
21321 With argument, join this line to following line."
21322 (interactive "*P")
21323 (if (save-excursion
21324 (if ARG (beginning-of-line)
21325 (forward-line -1))
21326 (looking-at org-complex-heading-regexp))
21327 ;; At headline.
21328 (let ((tags-column (when (match-beginning 5)
21329 (save-excursion (goto-char (match-beginning 5))
21330 (current-column))))
21331 (string (concat " " (progn (when ARG (forward-line 1))
21332 (org-trim (delete-and-extract-region
21333 (line-beginning-position)
21334 (line-end-position)))))))
21335 (unless (bobp) (delete-region (point) (1- (point))))
21336 (goto-char (or (match-end 4)
21337 (match-beginning 5)
21338 (match-end 0)))
21339 (skip-chars-backward " \t")
21340 (save-excursion (insert string))
21341 ;; Adjust alignment of tags.
21342 (when tags-column
21343 (org-align-tags-here (if org-auto-align-tags
21344 org-tags-column
21345 tags-column))))
21346 (delete-indentation ARG)))
21348 (defun org-open-line (n)
21349 "Insert a new row in tables, call `open-line' elsewhere.
21350 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
21351 (interactive "*p")
21352 (cond
21353 ((not org-special-ctrl-o)
21354 (open-line n))
21355 ((org-at-table-p)
21356 (org-table-insert-row))
21358 (open-line n))))
21360 (defun org-return (&optional indent)
21361 "Goto next table row or insert a newline.
21363 Calls `org-table-next-row' or `newline', depending on context.
21365 When optional INDENT argument is non-nil, call
21366 `newline-and-indent' instead of `newline'.
21368 When `org-return-follows-link' is non-nil and point is on
21369 a timestamp or a link, call `org-open-at-point'. However, it
21370 will not happen if point is in a table or on a \"dead\"
21371 object (e.g., within a comment). In these case, you need to use
21372 `org-open-at-point' directly."
21373 (interactive)
21374 (let ((context (if org-return-follows-link (org-element-context)
21375 (org-element-at-point))))
21376 (cond
21377 ;; In a table, call `org-table-next-row'.
21378 ((or (and (eq (org-element-type context) 'table)
21379 (>= (point) (org-element-property :contents-begin context))
21380 (< (point) (org-element-property :contents-end context)))
21381 (org-element-lineage context '(table-row table-cell) t))
21382 (org-table-justify-field-maybe)
21383 (call-interactively #'org-table-next-row))
21384 ;; On a link or a timestamp, call `org-open-at-point' if
21385 ;; `org-return-follows-link' allows it. Tolerate fuzzy
21386 ;; locations, e.g., in a comment, as `org-open-at-point'.
21387 ((and org-return-follows-link
21388 (or (org-in-regexp org-ts-regexp-both nil t)
21389 (org-in-regexp org-tsr-regexp-both nil t)
21390 (org-in-regexp org-any-link-re nil t)))
21391 (call-interactively #'org-open-at-point))
21392 ;; Insert newline in heading, but preserve tags.
21393 ((and (not (bolp))
21394 (save-excursion (beginning-of-line)
21395 (looking-at org-complex-heading-regexp)))
21396 ;; At headline. Split line. However, if point is on keyword,
21397 ;; priority cookie or tags, do not break any of them: add
21398 ;; a newline after the headline instead.
21399 (let ((tags-column (and (match-beginning 5)
21400 (save-excursion (goto-char (match-beginning 5))
21401 (current-column))))
21402 (string
21403 (when (and (match-end 4)
21404 (>= (point)
21405 (or (match-end 3) (match-end 2) (1+ (match-end 1))))
21406 (<= (point) (match-end 4)))
21407 (delete-and-extract-region (point) (match-end 4)))))
21408 (when (and tags-column string) ; Adjust tag alignment.
21409 (org-align-tags-here
21410 (if org-auto-align-tags org-tags-column tags-column)))
21411 (end-of-line)
21412 (org-show-entry)
21413 (if indent (newline-and-indent) (newline))
21414 (when string (save-excursion (insert (org-trim string))))))
21415 ;; In a list, make sure indenting keeps trailing text within.
21416 ((and indent
21417 (not (eolp))
21418 (org-element-lineage context '(item)))
21419 (let ((trailing-data
21420 (delete-and-extract-region (point) (line-end-position))))
21421 (newline-and-indent)
21422 (save-excursion (insert trailing-data))))
21423 (t (if indent (newline-and-indent) (newline))))))
21425 (defun org-return-indent ()
21426 "Goto next table row or insert a newline and indent.
21427 Calls `org-table-next-row' or `newline-and-indent', depending on
21428 context. See the individual commands for more information."
21429 (interactive)
21430 (org-return t))
21432 (defun org-ctrl-c-star ()
21433 "Compute table, or change heading status of lines.
21434 Calls `org-table-recalculate' or `org-toggle-heading',
21435 depending on context."
21436 (interactive)
21437 (cond
21438 ((org-at-table-p)
21439 (call-interactively 'org-table-recalculate))
21441 ;; Convert all lines in region to list items
21442 (call-interactively 'org-toggle-heading))))
21444 (defun org-ctrl-c-minus ()
21445 "Insert separator line in table or modify bullet status of line.
21446 Also turns a plain line or a region of lines into list items.
21447 Calls `org-table-insert-hline', `org-toggle-item', or
21448 `org-cycle-list-bullet', depending on context."
21449 (interactive)
21450 (cond
21451 ((org-at-table-p)
21452 (call-interactively 'org-table-insert-hline))
21453 ((org-region-active-p)
21454 (call-interactively 'org-toggle-item))
21455 ((org-in-item-p)
21456 (call-interactively 'org-cycle-list-bullet))
21458 (call-interactively 'org-toggle-item))))
21460 (defun org-toggle-item (arg)
21461 "Convert headings or normal lines to items, items to normal lines.
21462 If there is no active region, only the current line is considered.
21464 If the first non blank line in the region is a headline, convert
21465 all headlines to items, shifting text accordingly.
21467 If it is an item, convert all items to normal lines.
21469 If it is normal text, change region into a list of items.
21470 With a prefix argument ARG, change the region in a single item."
21471 (interactive "P")
21472 (let ((shift-text
21473 (function
21474 ;; Shift text in current section to IND, from point to END.
21475 ;; The function leaves point to END line.
21476 (lambda (ind end)
21477 (let ((min-i 1000) (end (copy-marker end)))
21478 ;; First determine the minimum indentation (MIN-I) of
21479 ;; the text.
21480 (save-excursion
21481 (catch 'exit
21482 (while (< (point) end)
21483 (let ((i (org-get-indentation)))
21484 (cond
21485 ;; Skip blank lines and inline tasks.
21486 ((looking-at "^[ \t]*$"))
21487 ((looking-at org-outline-regexp-bol))
21488 ;; We can't find less than 0 indentation.
21489 ((zerop i) (throw 'exit (setq min-i 0)))
21490 ((< i min-i) (setq min-i i))))
21491 (forward-line))))
21492 ;; Then indent each line so that a line indented to
21493 ;; MIN-I becomes indented to IND. Ignore blank lines
21494 ;; and inline tasks in the process.
21495 (let ((delta (- ind min-i)))
21496 (while (< (point) end)
21497 (unless (or (looking-at "^[ \t]*$")
21498 (looking-at org-outline-regexp-bol))
21499 (org-indent-line-to (+ (org-get-indentation) delta)))
21500 (forward-line)))))))
21501 (skip-blanks
21502 (function
21503 ;; Return beginning of first non-blank line, starting from
21504 ;; line at POS.
21505 (lambda (pos)
21506 (save-excursion
21507 (goto-char pos)
21508 (skip-chars-forward " \r\t\n")
21509 (point-at-bol)))))
21510 beg end)
21511 ;; Determine boundaries of changes.
21512 (if (org-region-active-p)
21513 (setq beg (funcall skip-blanks (region-beginning))
21514 end (copy-marker (region-end)))
21515 (setq beg (funcall skip-blanks (point-at-bol))
21516 end (copy-marker (point-at-eol))))
21517 ;; Depending on the starting line, choose an action on the text
21518 ;; between BEG and END.
21519 (org-with-limited-levels
21520 (save-excursion
21521 (goto-char beg)
21522 (cond
21523 ;; Case 1. Start at an item: de-itemize. Note that it only
21524 ;; happens when a region is active: `org-ctrl-c-minus'
21525 ;; would call `org-cycle-list-bullet' otherwise.
21526 ((org-at-item-p)
21527 (while (< (point) end)
21528 (when (org-at-item-p)
21529 (skip-chars-forward " \t")
21530 (delete-region (point) (match-end 0)))
21531 (forward-line)))
21532 ;; Case 2. Start at an heading: convert to items.
21533 ((org-at-heading-p)
21534 (let* ((bul (org-list-bullet-string "-"))
21535 (bul-len (length bul))
21536 (done (org-entry-is-done-p))
21537 (todo (org-entry-is-todo-p))
21538 ;; Indentation of the first heading. It should be
21539 ;; relative to the indentation of its parent, if any.
21540 (start-ind (save-excursion
21541 (cond
21542 ((not org-adapt-indentation) 0)
21543 ((not (outline-previous-heading)) 0)
21544 (t (length (match-string 0))))))
21545 ;; Level of first heading. Further headings will be
21546 ;; compared to it to determine hierarchy in the list.
21547 (ref-level (org-reduced-level (org-outline-level))))
21548 (when (or done todo) (org-todo ""))
21549 (while (< (point) end)
21550 (let* ((level (org-reduced-level (org-outline-level)))
21551 (delta (max 0 (- level ref-level))))
21552 ;; If current headline is less indented than the first
21553 ;; one, set it as reference, in order to preserve
21554 ;; subtrees.
21555 (when (< level ref-level) (setq ref-level level))
21556 (replace-match bul t t)
21557 (org-indent-line-to (+ start-ind (* delta bul-len)))
21558 (when (or done todo)
21559 (let* ((struct (org-list-struct))
21560 (old (copy-tree struct)))
21561 (org-list-set-checkbox (line-beginning-position)
21562 struct
21563 (if done "[X]" "[ ]"))
21564 (org-list-write-struct struct
21565 (org-list-parents-alist struct)
21566 old)))
21567 ;; Ensure all text down to END (or SECTION-END) belongs
21568 ;; to the newly created item.
21569 (let ((section-end (save-excursion
21570 (or (outline-next-heading) (point)))))
21571 (forward-line)
21572 (funcall shift-text
21573 (+ start-ind (* (1+ delta) bul-len))
21574 (min end section-end)))))))
21575 ;; Case 3. Normal line with ARG: make the first line of region
21576 ;; an item, and shift indentation of others lines to
21577 ;; set them as item's body.
21578 (arg (let* ((bul (org-list-bullet-string "-"))
21579 (bul-len (length bul))
21580 (ref-ind (org-get-indentation)))
21581 (skip-chars-forward " \t")
21582 (insert bul)
21583 (forward-line)
21584 (while (< (point) end)
21585 ;; Ensure that lines less indented than first one
21586 ;; still get included in item body.
21587 (funcall shift-text
21588 (+ ref-ind bul-len)
21589 (min end (save-excursion (or (outline-next-heading)
21590 (point)))))
21591 (forward-line))))
21592 ;; Case 4. Normal line without ARG: turn each non-item line
21593 ;; into an item.
21595 (while (< (point) end)
21596 (unless (or (org-at-heading-p) (org-at-item-p))
21597 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21598 (replace-match
21599 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21600 (forward-line))))))))
21602 (defun org-toggle-heading (&optional nstars)
21603 "Convert headings to normal text, or items or text to headings.
21604 If there is no active region, only convert the current line.
21606 With a \\[universal-argument] prefix, convert the whole list at
21607 point into heading.
21609 In a region:
21611 - If the first non blank line is a headline, remove the stars
21612 from all headlines in the region.
21614 - If it is a normal line, turn each and every normal line (i.e.,
21615 not an heading or an item) in the region into headings. If you
21616 want to convert only the first line of this region, use one
21617 universal prefix argument.
21619 - If it is a plain list item, turn all plain list items into headings.
21621 When converting a line into a heading, the number of stars is chosen
21622 such that the lines become children of the current entry. However,
21623 when a numeric prefix argument is given, its value determines the
21624 number of stars to add."
21625 (interactive "P")
21626 (let ((skip-blanks
21627 (function
21628 ;; Return beginning of first non-blank line, starting from
21629 ;; line at POS.
21630 (lambda (pos)
21631 (save-excursion
21632 (goto-char pos)
21633 (while (org-at-comment-p) (forward-line))
21634 (skip-chars-forward " \r\t\n")
21635 (point-at-bol)))))
21636 beg end toggled)
21637 ;; Determine boundaries of changes. If a universal prefix has
21638 ;; been given, put the list in a region. If region ends at a bol,
21639 ;; do not consider the last line to be in the region.
21641 (when (and current-prefix-arg (org-at-item-p))
21642 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21643 (org-mark-element))
21645 (if (org-region-active-p)
21646 (setq beg (funcall skip-blanks (region-beginning))
21647 end (copy-marker (save-excursion
21648 (goto-char (region-end))
21649 (if (bolp) (point) (point-at-eol)))))
21650 (setq beg (funcall skip-blanks (point-at-bol))
21651 end (copy-marker (point-at-eol))))
21652 ;; Ensure inline tasks don't count as headings.
21653 (org-with-limited-levels
21654 (save-excursion
21655 (goto-char beg)
21656 (cond
21657 ;; Case 1. Started at an heading: de-star headings.
21658 ((org-at-heading-p)
21659 (while (< (point) end)
21660 (when (org-at-heading-p t)
21661 (looking-at org-outline-regexp) (replace-match "")
21662 (setq toggled t))
21663 (forward-line)))
21664 ;; Case 2. Started at an item: change items into headlines.
21665 ;; One star will be added by `org-list-to-subtree'.
21666 ((org-at-item-p)
21667 (while (< (point) end)
21668 (when (org-at-item-p)
21669 ;; Pay attention to cases when region ends before list.
21670 (let* ((struct (org-list-struct))
21671 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21672 (save-restriction
21673 (narrow-to-region (point) list-end)
21674 (insert (org-list-to-subtree (org-list-parse-list t)))))
21675 (setq toggled t))
21676 (forward-line)))
21677 ;; Case 3. Started at normal text: make every line an heading,
21678 ;; skipping headlines and items.
21679 (t (let* ((stars
21680 (make-string
21681 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21682 (add-stars
21683 (cond (nstars "") ; stars from prefix only
21684 ((equal stars "") "*") ; before first heading
21685 (org-odd-levels-only "**") ; inside heading, odd
21686 (t "*"))) ; inside heading, oddeven
21687 (rpl (concat stars add-stars " "))
21688 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21689 (while (< (point) (if (equal nstars '(4)) lend end))
21690 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21691 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21692 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21693 (forward-line)))))))
21694 (unless toggled (message "Cannot toggle heading from here"))))
21696 (defun org-meta-return (&optional _arg)
21697 "Insert a new heading or wrap a region in a table.
21698 Calls `org-insert-heading' or `org-table-wrap-region', depending
21699 on context. See the individual commands for more information."
21700 (interactive)
21701 (org-check-before-invisible-edit 'insert)
21702 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21703 (call-interactively (if (org-at-table-p) #'org-table-wrap-region
21704 #'org-insert-heading))))
21706 ;;; Menu entries
21708 (defsubst org-in-subtree-not-table-p ()
21709 "Are we in a subtree and not in a table?"
21710 (and (not (org-before-first-heading-p))
21711 (not (org-at-table-p))))
21713 ;; Define the Org-mode menus
21714 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21715 '("Tbl"
21716 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21717 ["Next Field" org-cycle (org-at-table-p)]
21718 ["Previous Field" org-shifttab (org-at-table-p)]
21719 ["Next Row" org-return (org-at-table-p)]
21720 "--"
21721 ["Blank Field" org-table-blank-field (org-at-table-p)]
21722 ["Edit Field" org-table-edit-field (org-at-table-p)]
21723 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21724 "--"
21725 ("Column"
21726 ["Move Column Left" org-metaleft (org-at-table-p)]
21727 ["Move Column Right" org-metaright (org-at-table-p)]
21728 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21729 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21730 ("Row"
21731 ["Move Row Up" org-metaup (org-at-table-p)]
21732 ["Move Row Down" org-metadown (org-at-table-p)]
21733 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21734 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21735 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21736 "--"
21737 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21738 ("Rectangle"
21739 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21740 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21741 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21742 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21743 "--"
21744 ("Calculate"
21745 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21746 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21747 ["Edit Formulas" org-edit-special (org-at-table-p)]
21748 "--"
21749 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21750 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21751 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21752 "--"
21753 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21754 "--"
21755 ["Sum Column/Rectangle" org-table-sum
21756 (or (org-at-table-p) (org-region-active-p))]
21757 ["Which Column?" org-table-current-column (org-at-table-p)])
21758 ["Debug Formulas"
21759 org-table-toggle-formula-debugger
21760 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21761 ["Show Col/Row Numbers"
21762 org-table-toggle-coordinate-overlays
21763 :style toggle
21764 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21765 "--"
21766 ["Create" org-table-create (and (not (org-at-table-p))
21767 org-enable-table-editor)]
21768 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21769 ["Import from File" org-table-import (not (org-at-table-p))]
21770 ["Export to File" org-table-export (org-at-table-p)]
21771 "--"
21772 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21773 "--"
21774 ("Plot"
21775 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21776 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21778 (easy-menu-define org-org-menu org-mode-map "Org menu"
21779 '("Org"
21780 ("Show/Hide"
21781 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21782 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21783 ["Sparse Tree..." org-sparse-tree t]
21784 ["Reveal Context" org-reveal t]
21785 ["Show All" outline-show-all t]
21786 "--"
21787 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21788 "--"
21789 ["New Heading" org-insert-heading t]
21790 ("Navigate Headings"
21791 ["Up" outline-up-heading t]
21792 ["Next" outline-next-visible-heading t]
21793 ["Previous" outline-previous-visible-heading t]
21794 ["Next Same Level" outline-forward-same-level t]
21795 ["Previous Same Level" outline-backward-same-level t]
21796 "--"
21797 ["Jump" org-goto t])
21798 ("Edit Structure"
21799 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21800 "--"
21801 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21802 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21803 "--"
21804 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21805 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21806 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21807 "--"
21808 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21809 "--"
21810 ["Copy visible text" org-copy-visible t]
21811 "--"
21812 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21813 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21814 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21815 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21816 "--"
21817 ["Sort Region/Children" org-sort t]
21818 "--"
21819 ["Convert to odd levels" org-convert-to-odd-levels t]
21820 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21821 ("Editing"
21822 ["Emphasis..." org-emphasize t]
21823 ["Edit Source Example" org-edit-special t]
21824 "--"
21825 ["Footnote new/jump" org-footnote-action t]
21826 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21827 ("Archive"
21828 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21829 "--"
21830 ["Move Subtree to Archive file" org-archive-subtree (org-in-subtree-not-table-p)]
21831 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21832 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21834 "--"
21835 ("Hyperlinks"
21836 ["Store Link (Global)" org-store-link t]
21837 ["Find existing link to here" org-occur-link-in-agenda-files t]
21838 ["Insert Link" org-insert-link t]
21839 ["Follow Link" org-open-at-point t]
21840 "--"
21841 ["Next link" org-next-link t]
21842 ["Previous link" org-previous-link t]
21843 "--"
21844 ["Descriptive Links"
21845 org-toggle-link-display
21846 :style radio
21847 :selected org-descriptive-links
21849 ["Literal Links"
21850 org-toggle-link-display
21851 :style radio
21852 :selected (not org-descriptive-links)])
21853 "--"
21854 ("TODO Lists"
21855 ["TODO/DONE/-" org-todo t]
21856 ("Select keyword"
21857 ["Next keyword" org-shiftright (org-at-heading-p)]
21858 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21859 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21860 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21861 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21862 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21863 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21864 "--"
21865 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21866 :selected org-enforce-todo-dependencies :style toggle :active t]
21867 "Settings for tree at point"
21868 ["Do Children sequentially" org-toggle-ordered-property :style radio
21869 :selected (org-entry-get nil "ORDERED")
21870 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21871 ["Do Children parallel" org-toggle-ordered-property :style radio
21872 :selected (not (org-entry-get nil "ORDERED"))
21873 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21874 "--"
21875 ["Set Priority" org-priority t]
21876 ["Priority Up" org-shiftup t]
21877 ["Priority Down" org-shiftdown t]
21878 "--"
21879 ["Get news from all feeds" org-feed-update-all t]
21880 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21881 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21882 ("TAGS and Properties"
21883 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21884 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21885 "--"
21886 ["Set property" org-set-property (not (org-before-first-heading-p))]
21887 ["Column view of properties" org-columns t]
21888 ["Insert Column View DBlock" org-insert-columns-dblock t])
21889 ("Dates and Scheduling"
21890 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21891 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21892 ("Change Date"
21893 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21894 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21895 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21896 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21897 ["Compute Time Range" org-evaluate-time-range t]
21898 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21899 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21900 "--"
21901 ["Custom time format" org-toggle-time-stamp-overlays
21902 :style radio :selected org-display-custom-times]
21903 "--"
21904 ["Goto Calendar" org-goto-calendar t]
21905 ["Date from Calendar" org-date-from-calendar t]
21906 "--"
21907 ["Start/Restart Timer" org-timer-start t]
21908 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21909 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21910 ["Insert Timer String" org-timer t]
21911 ["Insert Timer Item" org-timer-item t])
21912 ("Logging work"
21913 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21914 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21915 ["Clock out" org-clock-out t]
21916 ["Clock cancel" org-clock-cancel t]
21917 "--"
21918 ["Mark as default task" org-clock-mark-default-task t]
21919 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21920 ["Goto running clock" org-clock-goto t]
21921 "--"
21922 ["Display times" org-clock-display t]
21923 ["Create clock table" org-clock-report t]
21924 "--"
21925 ["Record DONE time"
21926 (progn (setq org-log-done (not org-log-done))
21927 (message "Switching to %s will %s record a timestamp"
21928 (car org-done-keywords)
21929 (if org-log-done "automatically" "not")))
21930 :style toggle :selected org-log-done])
21931 "--"
21932 ["Agenda Command..." org-agenda t]
21933 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21934 ("File List for Agenda")
21935 ("Special views current file"
21936 ["TODO Tree" org-show-todo-tree t]
21937 ["Check Deadlines" org-check-deadlines t]
21938 ["Timeline" org-timeline t]
21939 ["Tags/Property tree" org-match-sparse-tree t])
21940 "--"
21941 ["Export/Publish..." org-export-dispatch t]
21942 ("LaTeX"
21943 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21944 :selected org-cdlatex-mode]
21945 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21946 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21947 ["Modify math symbol" org-cdlatex-math-modify
21948 (org-inside-LaTeX-fragment-p)]
21949 ["Insert citation" org-reftex-citation t]
21950 "--"
21951 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21952 "--"
21953 ("MobileOrg"
21954 ["Push Files and Views" org-mobile-push t]
21955 ["Get Captured and Flagged" org-mobile-pull t]
21956 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21957 "--"
21958 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21959 "--"
21960 ("Documentation"
21961 ["Show Version" org-version t]
21962 ["Info Documentation" org-info t])
21963 ("Customize"
21964 ["Browse Org Group" org-customize t]
21965 "--"
21966 ["Expand This Menu" org-create-customize-menu
21967 (fboundp 'customize-menu-create)])
21968 ["Send bug report" org-submit-bug-report t]
21969 "--"
21970 ("Refresh/Reload"
21971 ["Refresh setup current buffer" org-mode-restart t]
21972 ["Reload Org (after update)" org-reload t]
21973 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21976 (defun org-info (&optional node)
21977 "Read documentation for Org-mode in the info system.
21978 With optional NODE, go directly to that node."
21979 (interactive)
21980 (info (format "(org)%s" (or node ""))))
21982 ;;;###autoload
21983 (defun org-submit-bug-report ()
21984 "Submit a bug report on Org-mode via mail.
21986 Don't hesitate to report any problems or inaccurate documentation.
21988 If you don't have setup sending mail from (X)Emacs, please copy the
21989 output buffer into your mail program, as it gives us important
21990 information about your Org-mode version and configuration."
21991 (interactive)
21992 (require 'reporter)
21993 (defvar reporter-prompt-for-summary-p)
21994 (org-load-modules-maybe)
21995 (org-require-autoloaded-modules)
21996 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21997 (reporter-submit-bug-report
21998 "emacs-orgmode@gnu.org"
21999 (org-version nil 'full)
22000 (let (list)
22001 (save-window-excursion
22002 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
22003 (delete-other-windows)
22004 (erase-buffer)
22005 (insert "You are about to submit a bug report to the Org-mode mailing list.
22007 We would like to add your full Org-mode and Outline configuration to the
22008 bug report. This greatly simplifies the work of the maintainer and
22009 other experts on the mailing list.
22011 HOWEVER, some variables you have customized may contain private
22012 information. The names of customers, colleagues, or friends, might
22013 appear in the form of file names, tags, todo states, or search strings.
22014 If you answer yes to the prompt, you might want to check and remove
22015 such private information before sending the email.")
22016 (add-text-properties (point-min) (point-max) '(face org-warning))
22017 (when (yes-or-no-p "Include your Org-mode configuration ")
22018 (mapatoms
22019 (lambda (v)
22020 (and (boundp v)
22021 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
22022 (or (and (symbol-value v)
22023 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
22024 (and
22025 (get v 'custom-type) (get v 'standard-value)
22026 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
22027 (push v list)))))
22028 (kill-buffer (get-buffer "*Warn about privacy*"))
22029 list))
22030 nil nil
22031 "Remember to cover the basics, that is, what you expected to happen and
22032 what in fact did happen. You don't know how to make a good report? See
22034 http://orgmode.org/manual/Feedback.html#Feedback
22036 Your bug report will be posted to the Org-mode mailing list.
22037 ------------------------------------------------------------------------")
22038 (save-excursion
22039 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
22040 (replace-match "\\1Bug: \\3 [\\2]")))))
22043 (defun org-install-agenda-files-menu ()
22044 (let ((bl (buffer-list)))
22045 (save-excursion
22046 (while bl
22047 (set-buffer (pop bl))
22048 (if (derived-mode-p 'org-mode) (setq bl nil)))
22049 (when (derived-mode-p 'org-mode)
22050 (easy-menu-change
22051 '("Org") "File List for Agenda"
22052 (append
22053 (list
22054 ["Edit File List" (org-edit-agenda-file-list) t]
22055 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
22056 ["Remove Current File from List" org-remove-file t]
22057 ["Cycle through agenda files" org-cycle-agenda-files t]
22058 ["Occur in all agenda files" org-occur-in-agenda-files t]
22059 "--")
22060 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
22062 ;;;; Documentation
22064 (defun org-require-autoloaded-modules ()
22065 (interactive)
22066 (mapc 'require
22067 '(org-agenda org-archive org-attach org-clock org-colview org-id
22068 org-table org-timer)))
22070 ;;;###autoload
22071 (defun org-reload (&optional uncompiled)
22072 "Reload all org lisp files.
22073 With prefix arg UNCOMPILED, load the uncompiled versions."
22074 (interactive "P")
22075 (require 'loadhist)
22076 (let* ((org-dir (org-find-library-dir "org"))
22077 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
22078 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
22079 (remove-re (mapconcat 'identity
22080 (mapcar (lambda (f) (concat "^" f "$"))
22081 (list (if (featurep 'xemacs)
22082 "org-colview"
22083 "org-colview-xemacs")
22084 "org" "org-loaddefs" "org-version"))
22085 "\\|"))
22086 (feats (delete-dups
22087 (mapcar 'file-name-sans-extension
22088 (mapcar 'file-name-nondirectory
22089 (delq nil
22090 (mapcar 'feature-file
22091 features))))))
22092 (lfeat (append
22093 (sort
22094 (setq feats
22095 (delq nil (mapcar
22096 (lambda (f)
22097 (if (and (string-match feature-re f)
22098 (not (string-match remove-re f)))
22099 f nil))
22100 feats)))
22101 'string-lessp)
22102 (list "org-version" "org")))
22103 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
22104 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
22105 load-uncore load-misses)
22106 (setq load-misses
22107 (delq 't
22108 (mapcar (lambda (f)
22109 (or (org-load-noerror-mustsuffix (concat org-dir f))
22110 (and (string= org-dir contrib-dir)
22111 (org-load-noerror-mustsuffix (concat contrib-dir f)))
22112 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
22113 (add-to-list 'load-uncore f 'append)
22116 lfeat)))
22117 (if load-uncore
22118 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
22119 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
22120 (if load-misses
22121 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
22122 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
22123 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
22125 ;;;###autoload
22126 (defun org-customize ()
22127 "Call the customize function with org as argument."
22128 (interactive)
22129 (org-load-modules-maybe)
22130 (org-require-autoloaded-modules)
22131 (customize-browse 'org))
22133 (defun org-create-customize-menu ()
22134 "Create a full customization menu for Org-mode, insert it into the menu."
22135 (interactive)
22136 (org-load-modules-maybe)
22137 (org-require-autoloaded-modules)
22138 (if (fboundp 'customize-menu-create)
22139 (progn
22140 (easy-menu-change
22141 '("Org") "Customize"
22142 `(["Browse Org group" org-customize t]
22143 "--"
22144 ,(customize-menu-create 'org)
22145 ["Set" Custom-set t]
22146 ["Save" Custom-save t]
22147 ["Reset to Current" Custom-reset-current t]
22148 ["Reset to Saved" Custom-reset-saved t]
22149 ["Reset to Standard Settings" Custom-reset-standard t]))
22150 (message "\"Org\"-menu now contains full customization menu"))
22151 (error "Cannot expand menu (outdated version of cus-edit.el)")))
22153 ;;;; Miscellaneous stuff
22155 ;;; Generally useful functions
22157 (defsubst org-get-at-eol (property n)
22158 "Get text property PROPERTY at the end of line less N characters."
22159 (get-text-property (- (point-at-eol) n) property))
22161 (defun org-find-text-property-in-string (prop s)
22162 "Return the first non-nil value of property PROP in string S."
22163 (or (get-text-property 0 prop s)
22164 (get-text-property (or (next-single-property-change 0 prop s) 0)
22165 prop s)))
22167 (defun org-display-warning (message) ;; Copied from Emacs-Muse
22168 "Display the given MESSAGE as a warning."
22169 (if (fboundp 'display-warning)
22170 (display-warning 'org message
22171 (if (featurep 'xemacs) 'warning :warning))
22172 (let ((buf (get-buffer-create "*Org warnings*")))
22173 (with-current-buffer buf
22174 (goto-char (point-max))
22175 (insert "Warning (Org): " message)
22176 (unless (bolp)
22177 (newline)))
22178 (display-buffer buf)
22179 (sit-for 0))))
22181 (defun org-eval (form)
22182 "Eval FORM and return result."
22183 (condition-case error
22184 (eval form)
22185 (error (format "%%![Error: %s]" error))))
22187 (defun org-in-clocktable-p ()
22188 "Check if the cursor is in a clocktable."
22189 (let ((pos (point)) start)
22190 (save-excursion
22191 (end-of-line 1)
22192 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
22193 (setq start (match-beginning 0))
22194 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
22195 (>= (match-end 0) pos)
22196 start))))
22198 (defun org-in-verbatim-emphasis ()
22199 (save-match-data
22200 (and (org-in-regexp org-emph-re 2)
22201 (>= (point) (match-beginning 3))
22202 (<= (point) (match-end 4))
22203 (member (match-string 3) '("=" "~")))))
22205 (defun org-goto-marker-or-bmk (marker &optional bookmark)
22206 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
22207 (if (and marker (marker-buffer marker)
22208 (buffer-live-p (marker-buffer marker)))
22209 (progn
22210 (org-pop-to-buffer-same-window (marker-buffer marker))
22211 (if (or (> marker (point-max)) (< marker (point-min)))
22212 (widen))
22213 (goto-char marker)
22214 (org-show-context 'org-goto))
22215 (if bookmark
22216 (bookmark-jump bookmark)
22217 (error "Cannot find location"))))
22219 (defun org-quote-csv-field (s)
22220 "Quote field for inclusion in CSV material."
22221 (if (string-match "[\",]" s)
22222 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
22225 (defun org-force-self-insert (N)
22226 "Needed to enforce self-insert under remapping."
22227 (interactive "p")
22228 (self-insert-command N))
22230 (defun org-string-width (s)
22231 "Compute width of string, ignoring invisible characters.
22232 This ignores character with invisibility property `org-link', and also
22233 characters with property `org-cwidth', because these will become invisible
22234 upon the next fontification round."
22235 (let (b l)
22236 (when (or (eq t buffer-invisibility-spec)
22237 (assq 'org-link buffer-invisibility-spec))
22238 (while (setq b (text-property-any 0 (length s)
22239 'invisible 'org-link s))
22240 (setq s (concat (substring s 0 b)
22241 (substring s (or (next-single-property-change
22242 b 'invisible s)
22243 (length s)))))))
22244 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
22245 (setq s (concat (substring s 0 b)
22246 (substring s (or (next-single-property-change
22247 b 'org-cwidth s)
22248 (length s))))))
22249 (setq l (string-width s) b -1)
22250 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
22251 (setq l (- l (get-text-property b 'org-dwidth-n s))))
22254 (defun org-shorten-string (s maxlength)
22255 "Shorten string S so tht it is no longer than MAXLENGTH characters.
22256 If the string is shorter or has length MAXLENGTH, just return the
22257 original string. If it is longer, the functions finds a space in the
22258 string, breaks this string off at that locations and adds three dots
22259 as ellipsis. Including the ellipsis, the string will not be longer
22260 than MAXLENGTH. If finding a good breaking point in the string does
22261 not work, the string is just chopped off in the middle of a word
22262 if necessary."
22263 (if (<= (length s) maxlength)
22265 (let* ((n (max (- maxlength 4) 1))
22266 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
22267 (if (string-match re s)
22268 (concat (match-string 1 s) "...")
22269 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
22271 (defun org-get-indentation (&optional line)
22272 "Get the indentation of the current line, interpreting tabs.
22273 When LINE is given, assume it represents a line and compute its indentation."
22274 (if line
22275 (if (string-match "^ *" (org-remove-tabs line))
22276 (match-end 0))
22277 (save-excursion
22278 (beginning-of-line 1)
22279 (skip-chars-forward " \t")
22280 (current-column))))
22282 (defun org-get-string-indentation (s)
22283 "What indentation has S due to SPACE and TAB at the beginning of the string?"
22284 (let ((n -1) (i 0) (w tab-width) c)
22285 (catch 'exit
22286 (while (< (setq n (1+ n)) (length s))
22287 (setq c (aref s n))
22288 (cond ((= c ?\ ) (setq i (1+ i)))
22289 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
22290 (t (throw 'exit t)))))
22293 (defun org-remove-tabs (s &optional width)
22294 "Replace tabulators in S with spaces.
22295 Assumes that s is a single line, starting in column 0."
22296 (setq width (or width tab-width))
22297 (while (string-match "\t" s)
22298 (setq s (replace-match
22299 (make-string
22300 (- (* width (/ (+ (match-beginning 0) width) width))
22301 (match-beginning 0)) ?\ )
22302 t t s)))
22305 (defun org-fix-indentation (line ind)
22306 "Fix indentation in LINE.
22307 IND is a cons cell with target and minimum indentation.
22308 If the current indentation in LINE is smaller than the minimum,
22309 leave it alone. If it is larger than ind, set it to the target."
22310 (let* ((l (org-remove-tabs line))
22311 (i (org-get-indentation l))
22312 (i1 (car ind)) (i2 (cdr ind)))
22313 (if (>= i i2) (setq l (substring line i2)))
22314 (if (> i1 0)
22315 (concat (make-string i1 ?\ ) l)
22316 l)))
22318 (defun org-remove-indentation (code &optional n)
22319 "Remove the maximum common indentation from the lines in CODE.
22320 N may optionally be the number of spaces to remove."
22321 (with-temp-buffer
22322 (insert code)
22323 (org-do-remove-indentation n)
22324 (buffer-string)))
22326 (defun org-do-remove-indentation (&optional n)
22327 "Remove the maximum common indentation from the buffer."
22328 (untabify (point-min) (point-max))
22329 (let ((min 10000) re)
22330 (if n
22331 (setq min n)
22332 (goto-char (point-min))
22333 (while (re-search-forward "^ *[^ \n]" nil t)
22334 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
22335 (unless (or (= min 0) (= min 10000))
22336 (setq re (format "^ \\{%d\\}" min))
22337 (goto-char (point-min))
22338 (while (re-search-forward re nil t)
22339 (replace-match "")
22340 (end-of-line 1))
22341 min)))
22343 (defun org-fill-template (template alist)
22344 "Find each %key of ALIST in TEMPLATE and replace it."
22345 (let ((case-fold-search nil))
22346 (dolist (entry (sort (copy-sequence alist)
22347 (lambda (a b) (< (length (car a)) (length (car b))))))
22348 (setq template
22349 (replace-regexp-in-string
22350 (concat "%" (regexp-quote (car entry)))
22351 (or (cdr entry) "") template t t)))
22352 template))
22354 (defun org-base-buffer (buffer)
22355 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
22356 (if (not buffer)
22357 buffer
22358 (or (buffer-base-buffer buffer)
22359 buffer)))
22361 (defun org-wrap (string &optional width lines)
22362 "Wrap string to either a number of lines, or a width in characters.
22363 If WIDTH is non-nil, the string is wrapped to that width, however many lines
22364 that costs. If there is a word longer than WIDTH, the text is actually
22365 wrapped to the length of that word.
22366 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
22367 many lines, whatever width that takes.
22368 The return value is a list of lines, without newlines at the end."
22369 (let* ((words (org-split-string string "[ \t\n]+"))
22370 (maxword (apply 'max (mapcar 'org-string-width words)))
22371 w ll)
22372 (cond (width
22373 (org-do-wrap words (max maxword width)))
22374 (lines
22375 (setq w maxword)
22376 (setq ll (org-do-wrap words maxword))
22377 (if (<= (length ll) lines)
22379 (setq ll words)
22380 (while (> (length ll) lines)
22381 (setq w (1+ w))
22382 (setq ll (org-do-wrap words w)))
22383 ll))
22384 (t (error "Cannot wrap this")))))
22386 (defun org-do-wrap (words width)
22387 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
22388 (let (lines line)
22389 (while words
22390 (setq line (pop words))
22391 (while (and words (< (+ (length line) (length (car words))) width))
22392 (setq line (concat line " " (pop words))))
22393 (setq lines (push line lines)))
22394 (nreverse lines)))
22396 (defun org-split-string (string &optional separators)
22397 "Splits STRING into substrings at SEPARATORS.
22398 SEPARATORS is a regular expression.
22399 No empty strings are returned if there are matches at the beginning
22400 and end of string."
22401 ;; FIXME: why not use (split-string STRING SEPARATORS t)?
22402 (let ((start 0) notfirst list)
22403 (while (and (string-match (or separators "[ \f\t\n\r\v]+") string
22404 (if (and notfirst
22405 (= start (match-beginning 0))
22406 (< start (length string)))
22407 (1+ start) start))
22408 (< (match-beginning 0) (length string)))
22409 (setq notfirst t)
22410 (or (eq (match-beginning 0) 0)
22411 (and (eq (match-beginning 0) (match-end 0))
22412 (eq (match-beginning 0) start))
22413 (push (substring string start (match-beginning 0)) list))
22414 (setq start (match-end 0)))
22415 (or (eq start (length string))
22416 (push (substring string start) list))
22417 (nreverse list)))
22419 (defun org-quote-vert (s)
22420 "Replace \"|\" with \"\\vert\"."
22421 (while (string-match "|" s)
22422 (setq s (replace-match "\\vert" t t s)))
22425 (defun org-uuidgen-p (s)
22426 "Is S an ID created by UUIDGEN?"
22427 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22429 (defun org-in-src-block-p (&optional inside)
22430 "Whether point is in a code source block.
22431 When INSIDE is non-nil, don't consider we are within a src block
22432 when point is at #+BEGIN_SRC or #+END_SRC."
22433 (let ((case-fold-search t) ov)
22434 (or (and (eq (get-char-property (point) 'src-block) t))
22435 (and (not inside)
22436 (save-match-data
22437 (save-excursion
22438 (beginning-of-line)
22439 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22441 (defun org-context ()
22442 "Return a list of contexts of the current cursor position.
22443 If several contexts apply, all are returned.
22444 Each context entry is a list with a symbol naming the context, and
22445 two positions indicating start and end of the context. Possible
22446 contexts are:
22448 :headline anywhere in a headline
22449 :headline-stars on the leading stars in a headline
22450 :todo-keyword on a TODO keyword (including DONE) in a headline
22451 :tags on the TAGS in a headline
22452 :priority on the priority cookie in a headline
22453 :item on the first line of a plain list item
22454 :item-bullet on the bullet/number of a plain list item
22455 :checkbox on the checkbox in a plain list item
22456 :table in an org-mode table
22457 :table-special on a special filed in a table
22458 :table-table in a table.el table
22459 :clocktable in a clocktable
22460 :src-block in a source block
22461 :link on a hyperlink
22462 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22463 :target on a <<target>>
22464 :radio-target on a <<<radio-target>>>
22465 :latex-fragment on a LaTeX fragment
22466 :latex-preview on a LaTeX fragment with overlaid preview image
22468 This function expects the position to be visible because it uses font-lock
22469 faces as a help to recognize the following contexts: :table-special, :link,
22470 and :keyword."
22471 (let* ((f (get-text-property (point) 'face))
22472 (faces (if (listp f) f (list f)))
22473 (case-fold-search t)
22474 (p (point)) clist o)
22475 ;; First the large context
22476 (cond
22477 ((org-at-heading-p t)
22478 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22479 (when (progn
22480 (beginning-of-line 1)
22481 (looking-at org-todo-line-tags-regexp))
22482 (push (org-point-in-group p 1 :headline-stars) clist)
22483 (push (org-point-in-group p 2 :todo-keyword) clist)
22484 (push (org-point-in-group p 4 :tags) clist))
22485 (goto-char p)
22486 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22487 (if (looking-at "\\[#[A-Z0-9]\\]")
22488 (push (org-point-in-group p 0 :priority) clist)))
22490 ((org-at-item-p)
22491 (push (org-point-in-group p 2 :item-bullet) clist)
22492 (push (list :item (point-at-bol)
22493 (save-excursion (org-end-of-item) (point)))
22494 clist)
22495 (and (org-at-item-checkbox-p)
22496 (push (org-point-in-group p 0 :checkbox) clist)))
22498 ((org-at-table-p)
22499 (push (list :table (org-table-begin) (org-table-end)) clist)
22500 (if (memq 'org-formula faces)
22501 (push (list :table-special
22502 (previous-single-property-change p 'face)
22503 (next-single-property-change p 'face)) clist)))
22504 ((org-at-table-p 'any)
22505 (push (list :table-table) clist)))
22506 (goto-char p)
22508 (let ((case-fold-search t))
22509 ;; New the "medium" contexts: clocktables, source blocks
22510 (cond ((org-in-clocktable-p)
22511 (push (list :clocktable
22512 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22513 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22514 (match-beginning 1))
22515 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22516 (match-end 0))) clist))
22517 ((org-in-src-block-p)
22518 (push (list :src-block
22519 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22520 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22521 (match-beginning 1))
22522 (and (search-forward "#+END_SRC" nil t)
22523 (match-beginning 0))) clist))))
22524 (goto-char p)
22526 ;; Now the small context
22527 (cond
22528 ((org-at-timestamp-p)
22529 (push (org-point-in-group p 0 :timestamp) clist))
22530 ((memq 'org-link faces)
22531 (push (list :link
22532 (previous-single-property-change p 'face)
22533 (next-single-property-change p 'face)) clist))
22534 ((memq 'org-special-keyword faces)
22535 (push (list :keyword
22536 (previous-single-property-change p 'face)
22537 (next-single-property-change p 'face)) clist))
22538 ((org-at-target-p)
22539 (push (org-point-in-group p 0 :target) clist)
22540 (goto-char (1- (match-beginning 0)))
22541 (if (looking-at org-radio-target-regexp)
22542 (push (org-point-in-group p 0 :radio-target) clist))
22543 (goto-char p))
22544 ((setq o (org-some
22545 (lambda (o)
22546 (and (eq (overlay-get o 'org-overlay-type)
22547 'org-latex-overlay)
22549 (overlays-at (point))))
22550 (push (list :latex-fragment
22551 (overlay-start o) (overlay-end o)) clist)
22552 (push (list :latex-preview
22553 (overlay-start o) (overlay-end o)) clist))
22554 ((org-inside-LaTeX-fragment-p)
22555 ;; FIXME: positions wrong.
22556 (push (list :latex-fragment (point) (point)) clist)))
22558 (setq clist (nreverse (delq nil clist)))
22559 clist))
22561 (defun org-in-regexp (regexp &optional nlines visually)
22562 "Check if point is inside a match of REGEXP.
22564 Normally only the current line is checked, but you can include
22565 NLINES extra lines around point into the search. If VISUALLY is
22566 set, require that the cursor is not after the match but really
22567 on, so that the block visually is on the match.
22569 Return nil or a cons cell (BEG . END) where BEG and END are,
22570 respectively, the positions at the beginning and the end of the
22571 match."
22572 (catch :exit
22573 (let ((pos (point))
22574 (eol (line-end-position (if nlines (1+ nlines) 1))))
22575 (save-excursion
22576 (beginning-of-line (- 1 (or nlines 0)))
22577 (while (and (re-search-forward regexp eol t)
22578 (<= (match-beginning 0) pos))
22579 (let ((end (match-end 0)))
22580 (when (or (> end pos) (and (= end pos) (not visually)))
22581 (throw :exit (cons (match-beginning 0) (match-end 0))))))))))
22582 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22583 "Org mode 8.3")
22585 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22586 "Non-nil when point is between matches of START-RE and END-RE.
22588 Also return a non-nil value when point is on one of the matches.
22590 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22591 buffer positions. Default values are the positions of headlines
22592 surrounding the point.
22594 The functions returns a cons cell whose car (resp. cdr) is the
22595 position before START-RE (resp. after END-RE)."
22596 (save-match-data
22597 (let ((pos (point))
22598 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22599 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22600 beg end)
22601 (save-excursion
22602 ;; Point is on a block when on START-RE or if START-RE can be
22603 ;; found before it...
22604 (and (or (org-in-regexp start-re)
22605 (re-search-backward start-re limit-up t))
22606 (setq beg (match-beginning 0))
22607 ;; ... and END-RE after it...
22608 (goto-char (match-end 0))
22609 (re-search-forward end-re limit-down t)
22610 (> (setq end (match-end 0)) pos)
22611 ;; ... without another START-RE in-between.
22612 (goto-char (match-beginning 0))
22613 (not (re-search-backward start-re (1+ beg) t))
22614 ;; Return value.
22615 (cons beg end))))))
22617 (defun org-in-block-p (names)
22618 "Non-nil when point belongs to a block whose name belongs to NAMES.
22620 NAMES is a list of strings containing names of blocks.
22622 Return first block name matched, or nil. Beware that in case of
22623 nested blocks, the returned name may not belong to the closest
22624 block from point."
22625 (save-match-data
22626 (catch 'exit
22627 (let ((case-fold-search t)
22628 (lim-up (save-excursion (outline-previous-heading)))
22629 (lim-down (save-excursion (outline-next-heading))))
22630 (mapc (lambda (name)
22631 (let ((n (regexp-quote name)))
22632 (when (org-between-regexps-p
22633 (concat "^[ \t]*#\\+begin_" n)
22634 (concat "^[ \t]*#\\+end_" n)
22635 lim-up lim-down)
22636 (throw 'exit n))))
22637 names))
22638 nil)))
22640 (defun org-occur-in-agenda-files (regexp &optional _nlines)
22641 "Call `multi-occur' with buffers for all agenda files."
22642 (interactive "sOrg-files matching: ")
22643 (let* ((files (org-agenda-files))
22644 (tnames (mapcar #'file-truename files))
22645 (extra org-agenda-text-search-extra-files))
22646 (when (eq (car extra) 'agenda-archives)
22647 (setq extra (cdr extra))
22648 (setq files (org-add-archive-files files)))
22649 (dolist (f extra)
22650 (unless (member (file-truename f) tnames)
22651 (unless (member f files) (setq files (append files (list f))))
22652 (setq tnames (append tnames (list (file-truename f))))))
22653 (multi-occur
22654 (mapcar (lambda (x)
22655 (with-current-buffer
22656 ;; FIXME: Why not just (find-file-noselect x)?
22657 ;; Is it to avoid the "revert buffer" prompt?
22658 (or (get-file-buffer x) (find-file-noselect x))
22659 (widen)
22660 (current-buffer)))
22661 files)
22662 regexp)))
22664 (if (boundp 'occur-mode-find-occurrence-hook)
22665 ;; Emacs 23
22666 (add-hook 'occur-mode-find-occurrence-hook
22667 (lambda ()
22668 (when (derived-mode-p 'org-mode)
22669 (org-reveal))))
22670 ;; Emacs 22
22671 (defadvice occur-mode-goto-occurrence
22672 (after org-occur-reveal activate)
22673 (and (derived-mode-p 'org-mode) (org-reveal)))
22674 (defadvice occur-mode-goto-occurrence-other-window
22675 (after org-occur-reveal activate)
22676 (and (derived-mode-p 'org-mode) (org-reveal)))
22677 (defadvice occur-mode-display-occurrence
22678 (after org-occur-reveal activate)
22679 (when (derived-mode-p 'org-mode)
22680 (let ((pos (occur-mode-find-occurrence)))
22681 (with-current-buffer (marker-buffer pos)
22682 (save-excursion
22683 (goto-char pos)
22684 (org-reveal)))))))
22686 (defun org-occur-link-in-agenda-files ()
22687 "Create a link and search for it in the agendas.
22688 The link is not stored in `org-stored-links', it is just created
22689 for the search purpose."
22690 (interactive)
22691 (let ((link (condition-case nil
22692 (org-store-link nil)
22693 (error "Unable to create a link to here"))))
22694 (org-occur-in-agenda-files (regexp-quote link))))
22696 (defun org-reverse-string (string)
22697 "Return the reverse of STRING."
22698 (apply 'string (reverse (string-to-list string))))
22700 ;; defsubst org-uniquify must be defined before first use
22702 (defun org-uniquify-alist (alist)
22703 "Merge elements of ALIST with the same key.
22705 For example, in this alist:
22707 \(org-uniquify-alist \\='((a 1) (b 2) (a 3)))
22708 => \\='((a 1 3) (b 2))
22710 merge (a 1) and (a 3) into (a 1 3).
22712 The function returns the new ALIST."
22713 (let (rtn)
22714 (mapc
22715 (lambda (e)
22716 (let (n)
22717 (if (not (assoc (car e) rtn))
22718 (push e rtn)
22719 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22720 (setq rtn (assq-delete-all (car e) rtn))
22721 (push n rtn))))
22722 alist)
22723 rtn))
22725 (defun org-delete-all (elts list)
22726 "Remove all elements in ELTS from LIST."
22727 (while elts
22728 (setq list (delete (pop elts) list)))
22729 list)
22731 (defun org-count (cl-item cl-seq)
22732 "Count the number of occurrences of ITEM in SEQ.
22733 Taken from `count' in cl-seq.el with all keyword arguments removed."
22734 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22735 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22736 (while (< cl-start cl-end)
22737 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22738 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22739 (setq cl-start (1+ cl-start)))
22740 cl-count))
22742 (defun org-remove-if (predicate seq)
22743 "Remove everything from SEQ that fulfills PREDICATE."
22744 (let (res e)
22745 (while seq
22746 (setq e (pop seq))
22747 (if (not (funcall predicate e)) (push e res)))
22748 (nreverse res)))
22750 (defun org-remove-if-not (predicate seq)
22751 "Remove everything from SEQ that does not fulfill PREDICATE."
22752 (let (res e)
22753 (while seq
22754 (setq e (pop seq))
22755 (if (funcall predicate e) (push e res)))
22756 (nreverse res)))
22758 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22759 "Reduce two-argument FUNCTION across SEQ.
22760 Taken from `reduce' in cl-seq.el with all keyword arguments but
22761 \":initial-value\" removed."
22762 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22763 (cadr (memq :initial-value cl-keys)))
22764 (cl-seq (pop cl-seq))
22765 (t (funcall cl-func)))))
22766 (while cl-seq
22767 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22768 cl-accum))
22770 (defun org-every (pred seq)
22771 "Return true if PREDICATE is true of every element of SEQ.
22772 Adapted from `every' in cl.el."
22773 (catch 'org-every
22774 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22777 (defun org-some (pred seq)
22778 "Return true if PREDICATE is true of any element of SEQ.
22779 Adapted from `some' in cl.el."
22780 (catch 'org-some
22781 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22782 nil))
22784 (defun org-back-over-empty-lines ()
22785 "Move backwards over whitespace, to the beginning of the first empty line.
22786 Returns the number of empty lines passed."
22787 (let ((pos (point)))
22788 (if (cdr (assoc 'heading org-blank-before-new-entry))
22789 (skip-chars-backward " \t\n\r")
22790 (unless (eobp)
22791 (forward-line -1)))
22792 (beginning-of-line 2)
22793 (goto-char (min (point) pos))
22794 (count-lines (point) pos)))
22796 (defun org-skip-whitespace ()
22797 (skip-chars-forward " \t\n\r"))
22799 (defun org-point-in-group (point group &optional context)
22800 "Check if POINT is in match-group GROUP.
22801 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22802 match. If the match group does not exist or point is not inside it,
22803 return nil."
22804 (and (match-beginning group)
22805 (>= point (match-beginning group))
22806 (<= point (match-end group))
22807 (if context
22808 (list context (match-beginning group) (match-end group))
22809 t)))
22811 (defun org-switch-to-buffer-other-window (&rest args)
22812 "Switch to buffer in a second window on the current frame.
22813 In particular, do not allow pop-up frames.
22814 Returns the newly created buffer."
22815 (org-no-popups
22816 (apply 'switch-to-buffer-other-window args)))
22818 (defun org-combine-plists (&rest plists)
22819 "Create a single property list from all plists in PLISTS.
22820 The process starts by copying the first list, and then setting properties
22821 from the other lists. Settings in the last list are the most significant
22822 ones and overrule settings in the other lists."
22823 (let ((rtn (copy-sequence (pop plists)))
22824 p v ls)
22825 (while plists
22826 (setq ls (pop plists))
22827 (while ls
22828 (setq p (pop ls) v (pop ls))
22829 (setq rtn (plist-put rtn p v))))
22830 rtn))
22832 (defun org-replace-escapes (string table)
22833 "Replace %-escapes in STRING with values in TABLE.
22834 TABLE is an association list with keys like \"%a\" and string values.
22835 The sequences in STRING may contain normal field width and padding information,
22836 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22837 so values can contain further %-escapes if they are define later in TABLE."
22838 (let ((tbl (copy-alist table))
22839 (case-fold-search nil)
22840 (pchg 0)
22841 e re rpl)
22842 (dolist (e tbl)
22843 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22844 (when (and (cdr e) (string-match re (cdr e)))
22845 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22846 (safe "SREF"))
22847 (add-text-properties 0 3 (list 'sref sref) safe)
22848 (setcdr e (replace-match safe t t (cdr e)))))
22849 (while (string-match re string)
22850 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22851 (cdr e)))
22852 (setq string (replace-match rpl t t string))))
22853 (while (setq pchg (next-property-change pchg string))
22854 (let ((sref (get-text-property pchg 'sref string)))
22855 (when (and sref (string-match "SREF" string pchg))
22856 (setq string (replace-match sref t t string)))))
22857 string))
22859 (defun org-sublist (list start end)
22860 "Return a section of LIST, from START to END.
22861 Counting starts at 1."
22862 (let (rtn (c start))
22863 (setq list (nthcdr (1- start) list))
22864 (while (and list (<= c end))
22865 (push (pop list) rtn)
22866 (setq c (1+ c)))
22867 (nreverse rtn)))
22869 (defun org-find-base-buffer-visiting (file)
22870 "Like `find-buffer-visiting' but always return the base buffer and
22871 not an indirect buffer."
22872 (let ((buf (or (get-file-buffer file)
22873 (find-buffer-visiting file))))
22874 (if buf
22875 (or (buffer-base-buffer buf) buf)
22876 nil)))
22878 (defun org-image-file-name-regexp (&optional extensions)
22879 "Return regexp matching the file names of images.
22880 If EXTENSIONS is given, only match these."
22881 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22882 (image-file-name-regexp)
22883 (let ((image-file-name-extensions
22884 (or extensions
22885 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22886 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22887 (concat "\\."
22888 (regexp-opt (nconc (mapcar 'upcase
22889 image-file-name-extensions)
22890 image-file-name-extensions)
22892 "\\'"))))
22894 (defun org-file-image-p (file &optional extensions)
22895 "Return non-nil if FILE is an image."
22896 (save-match-data
22897 (string-match (org-image-file-name-regexp extensions) file)))
22899 (defun org-get-cursor-date (&optional with-time)
22900 "Return the date at cursor in as a time.
22901 This works in the calendar and in the agenda, anywhere else it just
22902 returns the current time.
22903 If WITH-TIME is non-nil, returns the time of the event at point (in
22904 the agenda) or the current time of the day."
22905 (let (date day defd tp hod mod)
22906 (when with-time
22907 (setq tp (get-text-property (point) 'time))
22908 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22909 (setq hod (string-to-number (match-string 1 tp))
22910 mod (string-to-number (match-string 2 tp))))
22911 (or tp (let ((now (decode-time)))
22912 (setq hod (nth 2 now)
22913 mod (nth 1 now)))))
22914 (cond
22915 ((eq major-mode 'calendar-mode)
22916 (setq date (calendar-cursor-to-date)
22917 defd (encode-time 0 (or mod 0) (or hod 0)
22918 (nth 1 date) (nth 0 date) (nth 2 date))))
22919 ((eq major-mode 'org-agenda-mode)
22920 (setq day (get-text-property (point) 'day))
22921 (if day
22922 (setq date (calendar-gregorian-from-absolute day)
22923 defd (encode-time 0 (or mod 0) (or hod 0)
22924 (nth 1 date) (nth 0 date) (nth 2 date))))))
22925 (or defd (current-time))))
22927 (defun org-mark-subtree (&optional up)
22928 "Mark the current subtree.
22929 This puts point at the start of the current subtree, and mark at
22930 the end. If a numeric prefix UP is given, move up into the
22931 hierarchy of headlines by UP levels before marking the subtree."
22932 (interactive "P")
22933 (org-with-limited-levels
22934 (cond ((org-at-heading-p) (beginning-of-line))
22935 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22936 (t (outline-previous-visible-heading 1))))
22937 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22938 (if (org-called-interactively-p 'any)
22939 (call-interactively 'org-mark-element)
22940 (org-mark-element)))
22943 ;;; Indentation
22945 (defun org--get-expected-indentation (element contentsp)
22946 "Expected indentation column for current line, according to ELEMENT.
22947 ELEMENT is an element containing point. CONTENTSP is non-nil
22948 when indentation is to be computed according to contents of
22949 ELEMENT."
22950 (let ((type (org-element-type element))
22951 (start (org-element-property :begin element))
22952 (post-affiliated (org-element-property :post-affiliated element)))
22953 (org-with-wide-buffer
22954 (cond
22955 (contentsp
22956 (case type
22957 ((diary-sexp footnote-definition) 0)
22958 ((headline inlinetask nil)
22959 (if (not org-adapt-indentation) 0
22960 (let ((level (org-current-level)))
22961 (if level (1+ level) 0))))
22962 ((item plain-list) (org-list-item-body-column post-affiliated))
22964 (goto-char start)
22965 (org-get-indentation))))
22966 ((memq type '(headline inlinetask nil))
22967 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22968 (org--get-expected-indentation element t)
22970 ((memq type '(diary-sexp footnote-definition)) 0)
22971 ;; First paragraph of a footnote definition or an item.
22972 ;; Indent like parent.
22973 ((< (line-beginning-position) start)
22974 (org--get-expected-indentation
22975 (org-element-property :parent element) t))
22976 ;; At first line: indent according to previous sibling, if any,
22977 ;; ignoring footnote definitions and inline tasks, or parent's
22978 ;; contents.
22979 ((= (line-beginning-position) start)
22980 (catch 'exit
22981 (while t
22982 (if (= (point-min) start) (throw 'exit 0)
22983 (goto-char (1- start))
22984 (let* ((previous (org-element-at-point))
22985 (parent previous))
22986 (while (and parent (<= (org-element-property :end parent) start))
22987 (setq previous parent
22988 parent (org-element-property :parent parent)))
22989 (cond
22990 ((not previous) (throw 'exit 0))
22991 ((> (org-element-property :end previous) start)
22992 (throw 'exit (org--get-expected-indentation previous t)))
22993 ((memq (org-element-type previous)
22994 '(footnote-definition inlinetask))
22995 (setq start (org-element-property :begin previous)))
22996 (t (goto-char (org-element-property :begin previous))
22997 (throw 'exit
22998 (if (bolp) (org-get-indentation)
22999 ;; At first paragraph in an item or
23000 ;; a footnote definition.
23001 (org--get-expected-indentation
23002 (org-element-property :parent previous) t))))))))))
23003 ;; Otherwise, move to the first non-blank line above.
23005 (beginning-of-line)
23006 (let ((pos (point)))
23007 (skip-chars-backward " \r\t\n")
23008 (cond
23009 ;; Two blank lines end a footnote definition or a plain
23010 ;; list. When we indent an empty line after them, the
23011 ;; containing list or footnote definition is over, so it
23012 ;; qualifies as a previous sibling. Therefore, we indent
23013 ;; like its first line.
23014 ((and (memq type '(footnote-definition plain-list))
23015 (> (count-lines (point) pos) 2))
23016 (goto-char start)
23017 (org-get-indentation))
23018 ;; Line above is the first one of a paragraph at the
23019 ;; beginning of an item or a footnote definition. Indent
23020 ;; like parent.
23021 ((< (line-beginning-position) start)
23022 (org--get-expected-indentation
23023 (org-element-property :parent element) t))
23024 ;; Line above is the beginning of an element, i.e., point
23025 ;; was originally on the blank lines between element's start
23026 ;; and contents.
23027 ((= (line-beginning-position) post-affiliated)
23028 (org--get-expected-indentation element t))
23029 ;; POS is after contents in a greater element. Indent like
23030 ;; the beginning of the element.
23032 ;; As a special case, if point is at the end of a footnote
23033 ;; definition or an item, indent like the very last element
23034 ;; within. If that last element is an item, indent like its
23035 ;; contents.
23036 ((and (not (eq type 'paragraph))
23037 (let ((cend (org-element-property :contents-end element)))
23038 (and cend (<= cend pos))))
23039 (if (memq type '(footnote-definition item plain-list))
23040 (let ((last (org-element-at-point)))
23041 (org--get-expected-indentation
23042 last (eq (org-element-type last) 'item)))
23043 (goto-char start)
23044 (org-get-indentation)))
23045 ;; In any other case, indent like the current line.
23046 (t (org-get-indentation)))))))))
23048 (defun org--align-node-property ()
23049 "Align node property at point.
23050 Alignment is done according to `org-property-format', which see."
23051 (when (save-excursion
23052 (beginning-of-line)
23053 (looking-at org-property-re))
23054 (replace-match
23055 (concat (match-string 4)
23056 (org-trim
23057 (format org-property-format (match-string 1) (match-string 3))))
23058 t t)))
23060 (defun org-indent-line ()
23061 "Indent line depending on context.
23063 Indentation is done according to the following rules:
23065 - Footnote definitions, diary sexps, headlines and inline tasks
23066 have to start at column 0.
23068 - On the very first line of an element, consider, in order, the
23069 next rules until one matches:
23071 1. If there's a sibling element before, ignoring footnote
23072 definitions and inline tasks, indent like its first line.
23074 2. If element has a parent, indent like its contents. More
23075 precisely, if parent is an item, indent after the
23076 description part, if any, or the bullet (see
23077 `org-list-description-max-indent'). Else, indent like
23078 parent's first line.
23080 3. Otherwise, indent relatively to current level, if
23081 `org-adapt-indentation' is non-nil, or to left margin.
23083 - On a blank line at the end of an element, indent according to
23084 the type of the element. More precisely
23086 1. If element is a plain list, an item, or a footnote
23087 definition, indent like the very last element within.
23089 2. If element is a paragraph, indent like its last non blank
23090 line.
23092 3. Otherwise, indent like its very first line.
23094 - In the code part of a source block, use language major mode
23095 to indent current line if `org-src-tab-acts-natively' is
23096 non-nil. If it is nil, do nothing.
23098 - Otherwise, indent like the first non-blank line above.
23100 The function doesn't indent an item as it could break the whole
23101 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
23102 \\[org-shiftmetaright].
23104 Also align node properties according to `org-property-format'."
23105 (interactive)
23106 (cond
23107 (orgstruct-is-++
23108 (let ((indent-line-function
23109 (cadadr (assq 'indent-line-function org-fb-vars))))
23110 (indent-according-to-mode)))
23111 ((org-at-heading-p) 'noindent)
23113 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
23114 (type (org-element-type element)))
23115 (cond ((and (memq type '(plain-list item))
23116 (= (line-beginning-position)
23117 (org-element-property :post-affiliated element)))
23118 'noindent)
23119 ((and (eq type 'src-block)
23120 org-src-tab-acts-natively
23121 (> (line-beginning-position)
23122 (org-element-property :post-affiliated element))
23123 (< (line-beginning-position)
23124 (org-with-wide-buffer
23125 (goto-char (org-element-property :end element))
23126 (skip-chars-backward " \r\t\n")
23127 (line-beginning-position))))
23128 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
23130 (let ((column (org--get-expected-indentation element nil)))
23131 ;; Preserve current column.
23132 (if (<= (current-column) (current-indentation))
23133 (org-indent-line-to column)
23134 (save-excursion (org-indent-line-to column))))
23135 ;; Align node property. Also preserve current column.
23136 (when (eq type 'node-property)
23137 (let ((column (current-column)))
23138 (org--align-node-property)
23139 (org-move-to-column column)))))))))
23141 (defun org-indent-region (start end)
23142 "Indent each non-blank line in the region.
23143 Called from a program, START and END specify the region to
23144 indent. The function will not indent contents of example blocks,
23145 verse blocks and export blocks as leading white spaces are
23146 assumed to be significant there."
23147 (interactive "r")
23148 (save-excursion
23149 (goto-char start)
23150 (skip-chars-forward " \r\t\n")
23151 (unless (eobp) (beginning-of-line))
23152 (let ((indent-to
23153 (lambda (ind pos)
23154 ;; Set IND as indentation for all lines between point and
23155 ;; POS or END, whichever comes first. Blank lines are
23156 ;; ignored. Leave point after POS once done.
23157 (let ((limit (copy-marker (min end pos))))
23158 (while (< (point) limit)
23159 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
23160 (forward-line))
23161 (set-marker limit nil))))
23162 (end (copy-marker end)))
23163 (while (< (point) end)
23164 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
23165 (let* ((element (org-element-at-point))
23166 (type (org-element-type element))
23167 (element-end (copy-marker (org-element-property :end element)))
23168 (ind (org--get-expected-indentation element nil)))
23169 (cond
23170 ((or (memq type '(paragraph table table-row))
23171 (not (or (org-element-property :contents-begin element)
23172 (memq type
23173 '(example-block export-block src-block)))))
23174 ;; Elements here are indented as a single block. Also
23175 ;; align node properties.
23176 (when (eq type 'node-property)
23177 (org--align-node-property)
23178 (beginning-of-line))
23179 (funcall indent-to ind element-end))
23181 ;; Elements in this category consist of three parts:
23182 ;; before the contents, the contents, and after the
23183 ;; contents. The contents are treated specially,
23184 ;; according to the element type, or not indented at
23185 ;; all. Other parts are indented as a single block.
23186 (let* ((post (copy-marker
23187 (org-element-property :post-affiliated element)))
23188 (cbeg
23189 (copy-marker
23190 (cond
23191 ((not (org-element-property :contents-begin element))
23192 ;; Fake contents for source blocks.
23193 (org-with-wide-buffer
23194 (goto-char post)
23195 (forward-line)
23196 (point)))
23197 ((memq type '(footnote-definition item plain-list))
23198 ;; Contents in these elements could start on
23199 ;; the same line as the beginning of the
23200 ;; element. Make sure we start indenting
23201 ;; from the second line.
23202 (org-with-wide-buffer
23203 (goto-char post)
23204 (end-of-line)
23205 (skip-chars-forward " \r\t\n")
23206 (if (eobp) (point) (line-beginning-position))))
23207 (t (org-element-property :contents-begin element)))))
23208 (cend (copy-marker
23209 (or (org-element-property :contents-end element)
23210 ;; Fake contents for source blocks.
23211 (org-with-wide-buffer
23212 (goto-char element-end)
23213 (skip-chars-backward " \r\t\n")
23214 (line-beginning-position)))
23215 t)))
23216 ;; Do not change items indentation individually as it
23217 ;; might break the list as a whole. On the other
23218 ;; hand, when at a plain list, indent it as a whole.
23219 (cond ((eq type 'plain-list)
23220 (let ((offset (- ind (org-get-indentation))))
23221 (unless (zerop offset)
23222 (indent-rigidly (org-element-property :begin element)
23223 (org-element-property :end element)
23224 offset))
23225 (goto-char cbeg)))
23226 ((eq type 'item) (goto-char cbeg))
23227 (t (funcall indent-to ind cbeg)))
23228 (when (< (point) end)
23229 (case type
23230 ((example-block export-block verse-block))
23231 (src-block
23232 ;; In a source block, indent source code
23233 ;; according to language major mode, but only if
23234 ;; `org-src-tab-acts-natively' is non-nil.
23235 (when (and (< (point) end) org-src-tab-acts-natively)
23236 (ignore-errors
23237 (org-babel-do-in-edit-buffer
23238 (indent-region (point-min) (point-max))))))
23239 (t (org-indent-region (point) (min cend end))))
23240 (goto-char (min cend end))
23241 (when (< (point) end) (funcall indent-to ind element-end)))
23242 (set-marker post nil)
23243 (set-marker cbeg nil)
23244 (set-marker cend nil))))
23245 (set-marker element-end nil))))
23246 (set-marker end nil))))
23248 (defun org-indent-drawer ()
23249 "Indent the drawer at point."
23250 (interactive)
23251 (unless (save-excursion
23252 (beginning-of-line)
23253 (org-looking-at-p org-drawer-regexp))
23254 (user-error "Not at a drawer"))
23255 (let ((element (org-element-at-point)))
23256 (unless (memq (org-element-type element) '(drawer property-drawer))
23257 (user-error "Not at a drawer"))
23258 (org-with-wide-buffer
23259 (org-indent-region (org-element-property :begin element)
23260 (org-element-property :end element))))
23261 (message "Drawer at point indented"))
23263 (defun org-indent-block ()
23264 "Indent the block at point."
23265 (interactive)
23266 (unless (save-excursion
23267 (beginning-of-line)
23268 (let ((case-fold-search t))
23269 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
23270 (user-error "Not at a block"))
23271 (let ((element (org-element-at-point)))
23272 (unless (memq (org-element-type element)
23273 '(comment-block center-block dynamic-block example-block
23274 export-block quote-block special-block
23275 src-block verse-block))
23276 (user-error "Not at a block"))
23277 (org-with-wide-buffer
23278 (org-indent-region (org-element-property :begin element)
23279 (org-element-property :end element))))
23280 (message "Block at point indented"))
23283 ;;; Filling
23285 ;; We use our own fill-paragraph and auto-fill functions.
23287 ;; `org-fill-paragraph' relies on adaptive filling and context
23288 ;; checking. Appropriate `fill-prefix' is computed with
23289 ;; `org-adaptive-fill-function'.
23291 ;; `org-auto-fill-function' takes care of auto-filling. It calls
23292 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
23293 ;; `org-adaptive-fill-function' value. Internally,
23294 ;; `org-comment-line-break-function' breaks the line.
23296 ;; `org-setup-filling' installs filling and auto-filling related
23297 ;; variables during `org-mode' initialization.
23299 (defvar org-element-paragraph-separate) ; org-element.el
23300 (defun org-setup-filling ()
23301 (require 'org-element)
23302 ;; Prevent auto-fill from inserting unwanted new items.
23303 (when (boundp 'fill-nobreak-predicate)
23304 (org-set-local
23305 'fill-nobreak-predicate
23306 (org-uniquify
23307 (append fill-nobreak-predicate
23308 '(org-fill-line-break-nobreak-p
23309 org-fill-paragraph-with-timestamp-nobreak-p)))))
23310 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
23311 (org-set-local 'paragraph-start paragraph-ending)
23312 (org-set-local 'paragraph-separate paragraph-ending))
23313 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
23314 (org-set-local 'auto-fill-inhibit-regexp nil)
23315 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
23316 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
23317 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
23319 (defun org-fill-line-break-nobreak-p ()
23320 "Non-nil when a new line at point would create an Org line break."
23321 (save-excursion
23322 (skip-chars-backward "[ \t]")
23323 (skip-chars-backward "\\\\")
23324 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
23326 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
23327 "Non-nil when a new line at point would split a timestamp."
23328 (and (org-at-timestamp-p t)
23329 (not (looking-at org-ts-regexp-both))))
23331 (declare-function message-in-body-p "message" ())
23332 (defvar orgtbl-line-start-regexp) ; From org-table.el
23333 (defun org-adaptive-fill-function ()
23334 "Compute a fill prefix for the current line.
23335 Return fill prefix, as a string, or nil if current line isn't
23336 meant to be filled. For convenience, if `adaptive-fill-regexp'
23337 matches in paragraphs or comments, use it."
23338 (catch 'exit
23339 (when (derived-mode-p 'message-mode)
23340 (save-excursion
23341 (beginning-of-line)
23342 (cond ((not (message-in-body-p)) (throw 'exit nil))
23343 ((org-looking-at-p org-table-line-regexp) (throw 'exit nil))
23344 ((looking-at message-cite-prefix-regexp)
23345 (throw 'exit (match-string-no-properties 0)))
23346 ((looking-at org-outline-regexp)
23347 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
23348 (org-with-wide-buffer
23349 (unless (org-at-heading-p)
23350 (let* ((p (line-beginning-position))
23351 (element (save-excursion
23352 (beginning-of-line)
23353 (org-element-at-point)))
23354 (type (org-element-type element))
23355 (post-affiliated (org-element-property :post-affiliated element)))
23356 (unless (< p post-affiliated)
23357 (case type
23358 (comment
23359 (save-excursion
23360 (beginning-of-line)
23361 (looking-at "[ \t]*")
23362 (concat (match-string 0) "# ")))
23363 (footnote-definition "")
23364 ((item plain-list)
23365 (make-string (org-list-item-body-column post-affiliated) ?\s))
23366 (paragraph
23367 ;; Fill prefix is usually the same as the current line,
23368 ;; unless the paragraph is at the beginning of an item.
23369 (let ((parent (org-element-property :parent element)))
23370 (save-excursion
23371 (beginning-of-line)
23372 (cond ((eq (org-element-type parent) 'item)
23373 (make-string (org-list-item-body-column
23374 (org-element-property :begin parent))
23375 ?\s))
23376 ((and adaptive-fill-regexp
23377 ;; Locally disable
23378 ;; `adaptive-fill-function' to let
23379 ;; `fill-context-prefix' handle
23380 ;; `adaptive-fill-regexp' variable.
23381 (let (adaptive-fill-function)
23382 (fill-context-prefix
23383 post-affiliated
23384 (org-element-property :end element)))))
23385 ((looking-at "[ \t]+") (match-string 0))
23386 (t "")))))
23387 (comment-block
23388 ;; Only fill contents if P is within block boundaries.
23389 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23390 (forward-line)
23391 (point)))
23392 (cend (save-excursion
23393 (goto-char (org-element-property :end element))
23394 (skip-chars-backward " \r\t\n")
23395 (line-beginning-position))))
23396 (when (and (>= p cbeg) (< p cend))
23397 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23398 (match-string 0)
23399 "")))))))))))
23401 (declare-function message-goto-body "message" ())
23402 (defvar message-cite-prefix-regexp) ; From message.el
23403 (defun org-fill-paragraph (&optional justify)
23404 "Fill element at point, when applicable.
23406 This function only applies to comment blocks, comments, example
23407 blocks and paragraphs. Also, as a special case, re-align table
23408 when point is at one.
23410 If JUSTIFY is non-nil (interactively, with prefix argument),
23411 justify as well. If `sentence-end-double-space' is non-nil, then
23412 period followed by one space does not end a sentence, so don't
23413 break a line there. The variable `fill-column' controls the
23414 width for filling.
23416 For convenience, when point is at a plain list, an item or
23417 a footnote definition, try to fill the first paragraph within."
23418 (interactive)
23419 (if (and (derived-mode-p 'message-mode)
23420 (or (not (message-in-body-p))
23421 (save-excursion (move-beginning-of-line 1)
23422 (looking-at message-cite-prefix-regexp))))
23423 ;; First ensure filling is correct in message-mode.
23424 (let ((fill-paragraph-function
23425 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23426 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23427 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23428 (paragraph-separate
23429 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23430 (fill-paragraph nil))
23431 (with-syntax-table org-mode-transpose-word-syntax-table
23432 ;; Move to end of line in order to get the first paragraph
23433 ;; within a plain list or a footnote definition.
23434 (let ((element (save-excursion
23435 (end-of-line)
23436 (or (ignore-errors (org-element-at-point))
23437 (user-error "An element cannot be parsed line %d"
23438 (line-number-at-pos (point)))))))
23439 ;; First check if point is in a blank line at the beginning of
23440 ;; the buffer. In that case, ignore filling.
23441 (case (org-element-type element)
23442 ;; Use major mode filling function is src blocks.
23443 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23444 ;; Align Org tables, leave table.el tables as-is.
23445 (table-row (org-table-align) t)
23446 (table
23447 (when (eq (org-element-property :type element) 'org)
23448 (save-excursion
23449 (goto-char (org-element-property :post-affiliated element))
23450 (org-table-align)))
23452 (paragraph
23453 ;; Paragraphs may contain `line-break' type objects.
23454 (let ((beg (max (point-min)
23455 (org-element-property :contents-begin element)))
23456 (end (min (point-max)
23457 (org-element-property :contents-end element))))
23458 ;; Do nothing if point is at an affiliated keyword.
23459 (if (< (line-end-position) beg) t
23460 (when (derived-mode-p 'message-mode)
23461 ;; In `message-mode', do not fill following citation
23462 ;; in current paragraph nor text before message body.
23463 (let ((body-start (save-excursion (message-goto-body))))
23464 (when body-start (setq beg (max body-start beg))))
23465 (when (save-excursion
23466 (re-search-forward
23467 (concat "^" message-cite-prefix-regexp) end t))
23468 (setq end (match-beginning 0))))
23469 ;; Fill paragraph, taking line breaks into account.
23470 (save-excursion
23471 (goto-char beg)
23472 (let ((cuts (list beg)))
23473 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23474 (when (eq 'line-break
23475 (org-element-type
23476 (save-excursion (backward-char)
23477 (org-element-context))))
23478 (push (point) cuts)))
23479 (dolist (c (delq end cuts))
23480 (fill-region-as-paragraph c end justify)
23481 (setq end c))))
23482 t)))
23483 ;; Contents of `comment-block' type elements should be
23484 ;; filled as plain text, but only if point is within block
23485 ;; markers.
23486 (comment-block
23487 (let* ((case-fold-search t)
23488 (beg (save-excursion
23489 (goto-char (org-element-property :begin element))
23490 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23491 (forward-line)
23492 (point)))
23493 (end (save-excursion
23494 (goto-char (org-element-property :end element))
23495 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23496 (line-beginning-position))))
23497 (if (or (< (point) beg) (> (point) end)) t
23498 (fill-region-as-paragraph
23499 (save-excursion (end-of-line)
23500 (re-search-backward "^[ \t]*$" beg 'move)
23501 (line-beginning-position))
23502 (save-excursion (beginning-of-line)
23503 (re-search-forward "^[ \t]*$" end 'move)
23504 (line-beginning-position))
23505 justify))))
23506 ;; Fill comments.
23507 (comment
23508 (let ((begin (org-element-property :post-affiliated element))
23509 (end (org-element-property :end element)))
23510 (when (and (>= (point) begin) (<= (point) end))
23511 (let ((begin (save-excursion
23512 (end-of-line)
23513 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23514 (progn (forward-line) (point))
23515 begin)))
23516 (end (save-excursion
23517 (end-of-line)
23518 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23519 (1- (line-beginning-position))
23520 (skip-chars-backward " \r\t\n")
23521 (line-end-position)))))
23522 ;; Do not fill comments when at a blank line.
23523 (when (> end begin)
23524 (let ((fill-prefix
23525 (save-excursion
23526 (beginning-of-line)
23527 (looking-at "[ \t]*#")
23528 (let ((comment-prefix (match-string 0)))
23529 (goto-char (match-end 0))
23530 (if (looking-at adaptive-fill-regexp)
23531 (concat comment-prefix (match-string 0))
23532 (concat comment-prefix " "))))))
23533 (save-excursion
23534 (fill-region-as-paragraph begin end justify))))))
23536 ;; Ignore every other element.
23537 (otherwise t))))))
23539 (defun org-auto-fill-function ()
23540 "Auto-fill function."
23541 ;; Check if auto-filling is meaningful.
23542 (let ((fc (current-fill-column)))
23543 (when (and fc (> (current-column) fc))
23544 (let* ((fill-prefix (org-adaptive-fill-function))
23545 ;; Enforce empty fill prefix, if required. Otherwise, it
23546 ;; will be computed again.
23547 (adaptive-fill-mode (not (equal fill-prefix ""))))
23548 (when fill-prefix (do-auto-fill))))))
23550 (defun org-comment-line-break-function (&optional soft)
23551 "Break line at point and indent, continuing comment if within one.
23552 The inserted newline is marked hard if variable
23553 `use-hard-newlines' is true, unless optional argument SOFT is
23554 non-nil."
23555 (if soft (insert-and-inherit ?\n) (newline 1))
23556 (save-excursion (forward-char -1) (delete-horizontal-space))
23557 (delete-horizontal-space)
23558 (indent-to-left-margin)
23559 (insert-before-markers-and-inherit fill-prefix))
23562 ;;; Fixed Width Areas
23564 (defun org-toggle-fixed-width ()
23565 "Toggle fixed-width markup.
23567 Add or remove fixed-width markup on current line, whenever it
23568 makes sense. Return an error otherwise.
23570 If a region is active and if it contains only fixed-width areas
23571 or blank lines, remove all fixed-width markup in it. If the
23572 region contains anything else, convert all non-fixed-width lines
23573 to fixed-width ones.
23575 Blank lines at the end of the region are ignored unless the
23576 region only contains such lines."
23577 (interactive)
23578 (if (not (org-region-active-p))
23579 ;; No region:
23581 ;; Remove fixed width marker only in a fixed-with element.
23583 ;; Add fixed width maker in paragraphs, in blank lines after
23584 ;; elements or at the beginning of a headline or an inlinetask,
23585 ;; and before any one-line elements (e.g., a clock).
23586 (progn
23587 (beginning-of-line)
23588 (let* ((element (org-element-at-point))
23589 (type (org-element-type element)))
23590 (cond
23591 ((and (eq type 'fixed-width)
23592 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23593 (replace-match
23594 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23595 ((and (memq type '(babel-call clock comment diary-sexp headline
23596 horizontal-rule keyword paragraph
23597 planning))
23598 (<= (org-element-property :post-affiliated element) (point)))
23599 (skip-chars-forward " \t")
23600 (insert ": "))
23601 ((and (org-looking-at-p "[ \t]*$")
23602 (or (eq type 'inlinetask)
23603 (save-excursion
23604 (skip-chars-forward " \r\t\n")
23605 (<= (org-element-property :end element) (point)))))
23606 (delete-region (point) (line-end-position))
23607 (org-indent-line)
23608 (insert ": "))
23609 (t (user-error "Cannot insert a fixed-width line here")))))
23610 ;; Region active.
23611 (let* ((begin (save-excursion
23612 (goto-char (region-beginning))
23613 (line-beginning-position)))
23614 (end (copy-marker
23615 (save-excursion
23616 (goto-char (region-end))
23617 (unless (eolp) (beginning-of-line))
23618 (if (save-excursion (re-search-backward "\\S-" begin t))
23619 (progn (skip-chars-backward " \r\t\n") (point))
23620 (point)))))
23621 (all-fixed-width-p
23622 (catch 'not-all-p
23623 (save-excursion
23624 (goto-char begin)
23625 (skip-chars-forward " \r\t\n")
23626 (when (eobp) (throw 'not-all-p nil))
23627 (while (< (point) end)
23628 (let ((element (org-element-at-point)))
23629 (if (eq (org-element-type element) 'fixed-width)
23630 (goto-char (org-element-property :end element))
23631 (throw 'not-all-p nil))))
23632 t))))
23633 (if all-fixed-width-p
23634 (save-excursion
23635 (goto-char begin)
23636 (while (< (point) end)
23637 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23638 (replace-match
23639 "" nil nil nil
23640 (if (= (line-end-position) (match-end 0)) 0 1)))
23641 (forward-line)))
23642 (let ((min-ind (point-max)))
23643 ;; Find minimum indentation across all lines.
23644 (save-excursion
23645 (goto-char begin)
23646 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23647 (setq min-ind 0)
23648 (catch 'zerop
23649 (while (< (point) end)
23650 (unless (org-looking-at-p "[ \t]*$")
23651 (let ((ind (org-get-indentation)))
23652 (setq min-ind (min min-ind ind))
23653 (when (zerop ind) (throw 'zerop t))))
23654 (forward-line)))))
23655 ;; Loop over all lines and add fixed-width markup everywhere
23656 ;; but in fixed-width lines.
23657 (save-excursion
23658 (goto-char begin)
23659 (while (< (point) end)
23660 (cond
23661 ((org-at-heading-p)
23662 (insert ": ")
23663 (forward-line)
23664 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23665 (insert ":")
23666 (forward-line)))
23667 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23668 (let* ((element (org-element-at-point))
23669 (element-end (org-element-property :end element)))
23670 (if (eq (org-element-type element) 'fixed-width)
23671 (progn (goto-char element-end)
23672 (skip-chars-backward " \r\t\n")
23673 (forward-line))
23674 (let ((limit (min end element-end)))
23675 (while (< (point) limit)
23676 (org-move-to-column min-ind t)
23677 (insert ": ")
23678 (forward-line))))))
23680 (org-move-to-column min-ind t)
23681 (insert ": ")
23682 (forward-line)))))))
23683 (set-marker end nil))))
23686 ;;; Comments
23688 ;; Org comments syntax is quite complex. It requires the entire line
23689 ;; to be just a comment. Also, even with the right syntax at the
23690 ;; beginning of line, some some elements (i.e. verse-block or
23691 ;; example-block) don't accept comments. Usual Emacs comment commands
23692 ;; cannot cope with those requirements. Therefore, Org replaces them.
23694 ;; Org still relies on `comment-dwim', but cannot trust
23695 ;; `comment-only-p'. So, `comment-region-function' and
23696 ;; `uncomment-region-function' both point
23697 ;; to`org-comment-or-uncomment-region'. Eventually,
23698 ;; `org-insert-comment' takes care of insertion of comments at the
23699 ;; beginning of line.
23701 ;; `org-setup-comments-handling' install comments related variables
23702 ;; during `org-mode' initialization.
23704 (defun org-setup-comments-handling ()
23705 (interactive)
23706 (org-set-local 'comment-use-syntax nil)
23707 (org-set-local 'comment-start "# ")
23708 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23709 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23710 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23711 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23713 (defun org-insert-comment ()
23714 "Insert an empty comment above current line.
23715 If the line is empty, insert comment at its beginning. When
23716 point is within a source block, comment according to the related
23717 major mode."
23718 (if (let ((element (org-element-at-point)))
23719 (and (eq (org-element-type element) 'src-block)
23720 (< (save-excursion
23721 (goto-char (org-element-property :post-affiliated element))
23722 (line-end-position))
23723 (point))
23724 (> (save-excursion
23725 (goto-char (org-element-property :end element))
23726 (skip-chars-backward " \r\t\n")
23727 (line-beginning-position))
23728 (point))))
23729 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23730 (beginning-of-line)
23731 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23732 (open-line 1))
23733 (org-indent-line)
23734 (insert "# ")))
23736 (defvar comment-empty-lines) ; From newcomment.el.
23737 (defun org-comment-or-uncomment-region (beg end &rest _)
23738 "Comment or uncomment each non-blank line in the region.
23739 Uncomment each non-blank line between BEG and END if it only
23740 contains commented lines. Otherwise, comment them. If region is
23741 strictly within a source block, use appropriate comment syntax."
23742 (if (let ((element (org-element-at-point)))
23743 (and (eq (org-element-type element) 'src-block)
23744 (< (save-excursion
23745 (goto-char (org-element-property :post-affiliated element))
23746 (line-end-position))
23747 beg)
23748 (>= (save-excursion
23749 (goto-char (org-element-property :end element))
23750 (skip-chars-backward " \r\t\n")
23751 (line-beginning-position))
23752 end)))
23753 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23754 (save-restriction
23755 ;; Restrict region
23756 (narrow-to-region (save-excursion (goto-char beg)
23757 (skip-chars-forward " \r\t\n" end)
23758 (line-beginning-position))
23759 (save-excursion (goto-char end)
23760 (skip-chars-backward " \r\t\n" beg)
23761 (line-end-position)))
23762 (let ((uncommentp
23763 ;; UNCOMMENTP is non-nil when every non blank line between
23764 ;; BEG and END is a comment.
23765 (save-excursion
23766 (goto-char (point-min))
23767 (while (and (not (eobp))
23768 (let ((element (org-element-at-point)))
23769 (and (eq (org-element-type element) 'comment)
23770 (goto-char (min (point-max)
23771 (org-element-property
23772 :end element)))))))
23773 (eobp))))
23774 (if uncommentp
23775 ;; Only blank lines and comments in region: uncomment it.
23776 (save-excursion
23777 (goto-char (point-min))
23778 (while (not (eobp))
23779 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23780 (replace-match "" nil nil nil 1))
23781 (forward-line)))
23782 ;; Comment each line in region.
23783 (let ((min-indent (point-max)))
23784 ;; First find the minimum indentation across all lines.
23785 (save-excursion
23786 (goto-char (point-min))
23787 (while (and (not (eobp)) (not (zerop min-indent)))
23788 (unless (looking-at "[ \t]*$")
23789 (setq min-indent (min min-indent (current-indentation))))
23790 (forward-line)))
23791 ;; Then loop over all lines.
23792 (save-excursion
23793 (goto-char (point-min))
23794 (while (not (eobp))
23795 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23796 ;; Don't get fooled by invisible text (e.g. link path)
23797 ;; when moving to column MIN-INDENT.
23798 (let ((buffer-invisibility-spec nil))
23799 (org-move-to-column min-indent t))
23800 (insert comment-start))
23801 (forward-line)))))))))
23803 (defun org-comment-dwim (arg)
23804 "Call `comment-dwim' within a source edit buffer if needed."
23805 (interactive "*P")
23806 (if (org-in-src-block-p)
23807 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23808 (call-interactively 'comment-dwim)))
23811 ;;; Timestamps API
23813 ;; This section contains tools to operate on timestamp objects, as
23814 ;; returned by, e.g. `org-element-context'.
23816 (defun org-timestamp--to-internal-time (timestamp &optional end)
23817 "Encode TIMESTAMP object into Emacs internal time.
23818 Use end of date range or time range when END is non-nil."
23819 (apply #'encode-time
23820 (cons 0
23821 (mapcar
23822 (lambda (prop) (or (org-element-property prop timestamp) 0))
23823 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23824 '(:minute-start :hour-start :day-start :month-start
23825 :year-start))))))
23827 (defun org-timestamp-has-time-p (timestamp)
23828 "Non-nil when TIMESTAMP has a time specified."
23829 (org-element-property :hour-start timestamp))
23831 (defun org-timestamp-format (timestamp format &optional end utc)
23832 "Format a TIMESTAMP object into a string.
23834 FORMAT is a format specifier to be passed to
23835 `format-time-string'.
23837 When optional argument END is non-nil, use end of date-range or
23838 time-range, if possible.
23840 When optional argument UTC is non-nil, time will be expressed as
23841 Universal Time."
23842 (format-time-string
23843 format (org-timestamp--to-internal-time timestamp end)
23844 (and utc t)))
23846 (defun org-timestamp-split-range (timestamp &optional end)
23847 "Extract a TIMESTAMP object from a date or time range.
23849 END, when non-nil, means extract the end of the range.
23850 Otherwise, extract its start.
23852 Return a new timestamp object."
23853 (let ((type (org-element-property :type timestamp)))
23854 (if (memq type '(active inactive diary)) timestamp
23855 (let ((split-ts (org-element-copy timestamp)))
23856 ;; Set new type.
23857 (org-element-put-property
23858 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23859 ;; Copy start properties over end properties if END is
23860 ;; non-nil. Otherwise, copy end properties over `start' ones.
23861 (let ((p-alist '((:minute-start . :minute-end)
23862 (:hour-start . :hour-end)
23863 (:day-start . :day-end)
23864 (:month-start . :month-end)
23865 (:year-start . :year-end))))
23866 (dolist (p-cell p-alist)
23867 (org-element-put-property
23868 split-ts
23869 (funcall (if end #'car #'cdr) p-cell)
23870 (org-element-property
23871 (funcall (if end #'cdr #'car) p-cell) split-ts)))
23872 ;; Eventually refresh `:raw-value'.
23873 (org-element-put-property split-ts :raw-value nil)
23874 (org-element-put-property
23875 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23877 (defun org-timestamp-translate (timestamp &optional boundary)
23878 "Translate TIMESTAMP object to custom format.
23880 Format string is defined in `org-time-stamp-custom-formats',
23881 which see.
23883 When optional argument BOUNDARY is non-nil, it is either the
23884 symbol `start' or `end'. In this case, only translate the
23885 starting or ending part of TIMESTAMP if it is a date or time
23886 range. Otherwise, translate both parts.
23888 Return timestamp as-is if `org-display-custom-times' is nil or if
23889 it has a `diary' type."
23890 (let ((type (org-element-property :type timestamp)))
23891 (if (or (not org-display-custom-times) (eq type 'diary))
23892 (org-element-interpret-data timestamp)
23893 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23894 org-time-stamp-custom-formats)))
23895 (if (and (not boundary) (memq type '(active-range inactive-range)))
23896 (concat (org-timestamp-format timestamp fmt)
23897 "--"
23898 (org-timestamp-format timestamp fmt t))
23899 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23903 ;;; Other stuff.
23905 (defvar reftex-docstruct-symbol)
23906 (defvar reftex-cite-format)
23907 (defvar org--rds)
23909 (defun org-reftex-citation ()
23910 "Use reftex-citation to insert a citation into the buffer.
23911 This looks for a line like
23913 #+BIBLIOGRAPHY: foo plain option:-d
23915 and derives from it that foo.bib is the bibliography file relevant
23916 for this document. It then installs the necessary environment for RefTeX
23917 to work in this buffer and calls `reftex-citation' to insert a citation
23918 into the buffer.
23920 Export of such citations to both LaTeX and HTML is handled by the contributed
23921 package ox-bibtex by Taru Karttunen."
23922 (interactive)
23923 (let ((reftex-docstruct-symbol 'org--rds)
23924 (reftex-cite-format "\\cite{%l}")
23925 org--rds bib)
23926 (save-excursion
23927 (save-restriction
23928 (widen)
23929 (let ((case-fold-search t)
23930 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23931 (if (not (save-excursion
23932 (or (re-search-forward re nil t)
23933 (re-search-backward re nil t))))
23934 (user-error "No bibliography defined in file")
23935 (setq bib (concat (match-string 1) ".bib")
23936 org--rds (list (list 'bib bib)))))))
23937 (call-interactively 'reftex-citation)))
23939 ;;;; Functions extending outline functionality
23941 (defun org-beginning-of-line (&optional arg)
23942 "Go to the beginning of the current line. If that is invisible, continue
23943 to a visible line beginning. This makes the function of C-a more intuitive.
23944 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23945 first attempt, and only move to after the tags when the cursor is already
23946 beyond the end of the headline."
23947 (interactive "P")
23948 (let ((pos (point))
23949 (special (if (consp org-special-ctrl-a/e)
23950 (car org-special-ctrl-a/e)
23951 org-special-ctrl-a/e))
23952 deactivate-mark refpos)
23953 (if (org-bound-and-true-p visual-line-mode)
23954 (beginning-of-visual-line 1)
23955 (beginning-of-line 1))
23956 (if (and arg (fboundp 'move-beginning-of-line))
23957 (call-interactively 'move-beginning-of-line)
23958 (if (bobp)
23960 (backward-char 1)
23961 (if (org-truely-invisible-p)
23962 (while (and (not (bobp)) (org-truely-invisible-p))
23963 (backward-char 1)
23964 (beginning-of-line 1))
23965 (forward-char 1))))
23966 (when special
23967 (cond
23968 ((and (looking-at org-complex-heading-regexp)
23969 (eq (char-after (match-end 1)) ?\s))
23970 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23971 (point-at-eol)))
23972 (goto-char
23973 (if (eq special t)
23974 (cond ((> pos refpos) refpos)
23975 ((= pos (point)) refpos)
23976 (t (point)))
23977 (cond ((> pos (point)) (point))
23978 ((not (eq last-command this-command)) (point))
23979 (t refpos)))))
23980 ((org-at-item-p)
23981 ;; Being at an item and not looking at an the item means point
23982 ;; was previously moved to beginning of a visual line, which
23983 ;; doesn't contain the item. Therefore, do nothing special,
23984 ;; just stay here.
23985 (when (looking-at org-list-full-item-re)
23986 ;; Set special position at first white space character after
23987 ;; bullet, and check-box, if any.
23988 (let ((after-bullet
23989 (let ((box (match-end 3)))
23990 (if (not box) (match-end 1)
23991 (let ((after (char-after box)))
23992 (if (and after (= after ? )) (1+ box) box))))))
23993 ;; Special case: Move point to special position when
23994 ;; currently after it or at beginning of line.
23995 (if (eq special t)
23996 (when (or (> pos after-bullet) (= (point) pos))
23997 (goto-char after-bullet))
23998 ;; Reversed case: Move point to special position when
23999 ;; point was already at beginning of line and command is
24000 ;; repeated.
24001 (when (and (= (point) pos) (eq last-command this-command))
24002 (goto-char after-bullet))))))))
24003 (org-no-warnings
24004 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
24005 (setq disable-point-adjustment
24006 (or (not (invisible-p (point)))
24007 (not (invisible-p (max (point-min) (1- (point))))))))
24009 (defun org-end-of-line (&optional arg)
24010 "Go to the end of the line.
24011 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
24012 tags on the first attempt, and only move to after the tags when
24013 the cursor is already beyond the end of the headline."
24014 (interactive "P")
24015 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
24016 org-special-ctrl-a/e))
24017 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
24018 'end-of-visual-line)
24019 ((fboundp 'move-end-of-line) 'move-end-of-line)
24020 (t 'end-of-line)))
24021 deactivate-mark)
24022 (if (or (not special) arg) (call-interactively move-fun)
24023 (let* ((element (save-excursion (beginning-of-line)
24024 (org-element-at-point)))
24025 (type (org-element-type element)))
24026 (cond
24027 ((memq type '(headline inlinetask))
24028 (let ((pos (point)))
24029 (beginning-of-line 1)
24030 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
24031 (if (eq special t)
24032 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
24033 (goto-char (match-beginning 1))
24034 (goto-char (match-end 0)))
24035 (if (or (< pos (match-end 0))
24036 (not (eq this-command last-command)))
24037 (goto-char (match-end 0))
24038 (goto-char (match-beginning 1))))
24039 (call-interactively move-fun))))
24040 ((outline-invisible-p (line-end-position))
24041 ;; If element is hidden, `move-end-of-line' would put point
24042 ;; after it. Use `end-of-line' to stay on current line.
24043 (call-interactively 'end-of-line))
24044 (t (call-interactively move-fun)))))
24045 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
24046 (setq disable-point-adjustment
24047 (or (not (invisible-p (point)))
24048 (not (invisible-p (max (point-min) (1- (point))))))))
24050 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
24051 (define-key org-mode-map "\C-e" 'org-end-of-line)
24053 (defun org-backward-sentence (&optional _arg)
24054 "Go to beginning of sentence, or beginning of table field.
24055 This will call `backward-sentence' or `org-table-beginning-of-field',
24056 depending on context."
24057 (interactive)
24058 (let* ((element (org-element-at-point))
24059 (contents-begin (org-element-property :contents-begin element))
24060 (table (org-element-lineage element '(table) t)))
24061 (if (and table
24062 (> (point) contents-begin)
24063 (<= (point) (org-element-property :contents-end table)))
24064 (call-interactively #'org-table-beginning-of-field)
24065 (save-restriction
24066 (when (and contents-begin
24067 (< (point-min) contents-begin)
24068 (> (point) contents-begin))
24069 (narrow-to-region contents-begin
24070 (org-element-property :contents-end element)))
24071 (call-interactively #'backward-sentence)))))
24073 (defun org-forward-sentence (&optional _arg)
24074 "Go to end of sentence, or end of table field.
24075 This will call `forward-sentence' or `org-table-end-of-field',
24076 depending on context."
24077 (interactive)
24078 (let* ((element (org-element-at-point))
24079 (contents-end (org-element-property :contents-end element))
24080 (table (org-element-lineage element '(table) t)))
24081 (if (and table
24082 (>= (point) (org-element-property :contents-begin table))
24083 (< (point) contents-end))
24084 (call-interactively #'org-table-end-of-field)
24085 (save-restriction
24086 (when (and contents-end
24087 (> (point-max) contents-end)
24088 ;; Skip blank lines between elements.
24089 (< (org-element-property :end element)
24090 (save-excursion (goto-char contents-end)
24091 (skip-chars-forward " \r\t\n"))))
24092 (narrow-to-region (org-element-property :contents-begin element)
24093 contents-end))
24094 (call-interactively #'forward-sentence)))))
24096 (define-key org-mode-map "\M-a" 'org-backward-sentence)
24097 (define-key org-mode-map "\M-e" 'org-forward-sentence)
24099 (defun org-kill-line (&optional _arg)
24100 "Kill line, to tags or end of line."
24101 (interactive)
24102 (cond
24103 ((or (not org-special-ctrl-k)
24104 (bolp)
24105 (not (org-at-heading-p)))
24106 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
24107 org-ctrl-k-protect-subtree)
24108 (if (or (eq org-ctrl-k-protect-subtree 'error)
24109 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
24110 (user-error "C-k aborted as it would kill a hidden subtree")))
24111 (call-interactively
24112 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
24113 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
24114 (kill-region (point) (match-beginning 1))
24115 (org-set-tags nil t))
24116 (t (kill-region (point) (point-at-eol)))))
24118 (define-key org-mode-map "\C-k" 'org-kill-line)
24120 (defun org-yank (&optional arg)
24121 "Yank. If the kill is a subtree, treat it specially.
24122 This command will look at the current kill and check if is a single
24123 subtree, or a series of subtrees[1]. If it passes the test, and if the
24124 cursor is at the beginning of a line or after the stars of a currently
24125 empty headline, then the yank is handled specially. How exactly depends
24126 on the value of the following variables.
24128 `org-yank-folded-subtrees'
24129 By default, this variable is non-nil, which results in subtree(s)
24130 being folded after insertion, but only if doing so would now
24131 swallow text after the yanked text.
24133 `org-yank-adjusted-subtrees'
24134 When non-nil (the default value is nil), the subtree will be
24135 promoted or demoted in order to fit into the local outline tree
24136 structure, which means that the level will be adjusted so that it
24137 becomes the smaller one of the two *visible* surrounding headings.
24139 Any prefix to this command will cause `yank' to be called directly with
24140 no special treatment. In particular, a simple \\[universal-argument] prefix \
24141 will just
24142 plainly yank the text as it is.
24144 \[1] The test checks if the first non-white line is a heading
24145 and if there are no other headings with fewer stars."
24146 (interactive "P")
24147 (org-yank-generic 'yank arg))
24149 (defun org-yank-generic (command arg)
24150 "Perform some yank-like command.
24152 This function implements the behavior described in the `org-yank'
24153 documentation. However, it has been generalized to work for any
24154 interactive command with similar behavior."
24156 ;; pretend to be command COMMAND
24157 (setq this-command command)
24159 (if arg
24160 (call-interactively command)
24162 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
24163 (and (org-kill-is-subtree-p)
24164 (or (bolp)
24165 (and (looking-at "[ \t]*$")
24166 (string-match
24167 "\\`\\*+\\'"
24168 (buffer-substring (point-at-bol) (point)))))))
24169 swallowp)
24170 (cond
24171 ((and subtreep org-yank-folded-subtrees)
24172 (let ((beg (point))
24173 end)
24174 (if (and subtreep org-yank-adjusted-subtrees)
24175 (org-paste-subtree nil nil 'for-yank)
24176 (call-interactively command))
24178 (setq end (point))
24179 (goto-char beg)
24180 (when (and (bolp) subtreep
24181 (not (setq swallowp
24182 (org-yank-folding-would-swallow-text beg end))))
24183 (org-with-limited-levels
24184 (or (looking-at org-outline-regexp)
24185 (re-search-forward org-outline-regexp-bol end t))
24186 (while (and (< (point) end) (looking-at org-outline-regexp))
24187 (outline-hide-subtree)
24188 (org-cycle-show-empty-lines 'folded)
24189 (condition-case nil
24190 (outline-forward-same-level 1)
24191 (error (goto-char end))))))
24192 (when swallowp
24193 (message
24194 "Inserted text not folded because that would swallow text"))
24196 (goto-char end)
24197 (skip-chars-forward " \t\n\r")
24198 (beginning-of-line 1)
24199 (push-mark beg 'nomsg)))
24200 ((and subtreep org-yank-adjusted-subtrees)
24201 (let ((beg (point-at-bol)))
24202 (org-paste-subtree nil nil 'for-yank)
24203 (push-mark beg 'nomsg)))
24205 (call-interactively command))))))
24207 (defun org-yank-folding-would-swallow-text (beg end)
24208 "Would hide-subtree at BEG swallow any text after END?"
24209 (let (level)
24210 (org-with-limited-levels
24211 (save-excursion
24212 (goto-char beg)
24213 (when (or (looking-at org-outline-regexp)
24214 (re-search-forward org-outline-regexp-bol end t))
24215 (setq level (org-outline-level)))
24216 (goto-char end)
24217 (skip-chars-forward " \t\r\n\v\f")
24218 (if (or (eobp)
24219 (and (bolp) (looking-at org-outline-regexp)
24220 (<= (org-outline-level) level)))
24221 nil ; Nothing would be swallowed
24222 t))))) ; something would swallow
24224 (define-key org-mode-map "\C-y" 'org-yank)
24226 (defun org-truely-invisible-p ()
24227 "Check if point is at a character currently not visible.
24228 This version does not only check the character property, but also
24229 `visible-mode'."
24230 ;; Early versions of noutline don't have `outline-invisible-p'.
24231 (if (org-bound-and-true-p visible-mode)
24233 (outline-invisible-p)))
24235 (defun org-invisible-p2 ()
24236 "Check if point is at a character currently not visible."
24237 (save-excursion
24238 (if (and (eolp) (not (bobp))) (backward-char 1))
24239 ;; Early versions of noutline don't have `outline-invisible-p'.
24240 (outline-invisible-p)))
24242 (defun org-back-to-heading (&optional invisible-ok)
24243 "Call `outline-back-to-heading', but provide a better error message."
24244 (condition-case nil
24245 (outline-back-to-heading invisible-ok)
24246 (error (error "Before first headline at position %d in buffer %s"
24247 (point) (current-buffer)))))
24249 (defun org-before-first-heading-p ()
24250 "Before first heading?"
24251 (save-excursion
24252 (end-of-line)
24253 (null (re-search-backward org-outline-regexp-bol nil t))))
24255 (defun org-at-heading-p (&optional ignored)
24256 (outline-on-heading-p t))
24257 ;; Compatibility alias with Org versions < 7.8.03
24258 (defalias 'org-on-heading-p 'org-at-heading-p)
24260 (defun org-in-commented-heading-p (&optional no-inheritance)
24261 "Non-nil if point is under a commented heading.
24262 This function also checks ancestors of the current headline,
24263 unless optional argument NO-INHERITANCE is non-nil."
24264 (cond
24265 ((org-before-first-heading-p) nil)
24266 ((let ((headline (nth 4 (org-heading-components))))
24267 (and headline
24268 (let ((case-fold-search nil))
24269 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
24270 headline)))))
24271 (no-inheritance nil)
24273 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
24275 (defun org-at-comment-p nil
24276 "Is cursor in a commented line?"
24277 (save-excursion
24278 (save-match-data
24279 (beginning-of-line)
24280 (looking-at "^[ \t]*# "))))
24282 (defun org-at-drawer-p nil
24283 "Is cursor at a drawer keyword?"
24284 (save-excursion
24285 (move-beginning-of-line 1)
24286 (looking-at org-drawer-regexp)))
24288 (defun org-at-block-p nil
24289 "Is cursor at a block keyword?"
24290 (save-excursion
24291 (move-beginning-of-line 1)
24292 (looking-at org-block-regexp)))
24294 (defun org-point-at-end-of-empty-headline ()
24295 "If point is at the end of an empty headline, return t, else nil.
24296 If the heading only contains a TODO keyword, it is still still considered
24297 empty."
24298 (and (looking-at "[ \t]*$")
24299 (when org-todo-line-regexp
24300 (save-excursion
24301 (beginning-of-line 1)
24302 (let ((case-fold-search nil))
24303 (looking-at org-todo-line-regexp)
24304 (string= (match-string 3) ""))))))
24306 (defun org-at-heading-or-item-p ()
24307 (or (org-at-heading-p) (org-at-item-p)))
24309 (defun org-at-target-p ()
24310 (or (org-in-regexp org-radio-target-regexp)
24311 (org-in-regexp org-target-regexp)))
24312 ;; Compatibility alias with Org versions < 7.8.03
24313 (defalias 'org-on-target-p 'org-at-target-p)
24315 (defun org-up-heading-all (arg)
24316 "Move to the heading line of which the present line is a subheading.
24317 This function considers both visible and invisible heading lines.
24318 With argument, move up ARG levels."
24319 (if (fboundp 'outline-up-heading-all)
24320 (outline-up-heading-all arg) ; emacs 21 version of outline.el
24321 (outline-up-heading arg t))) ; emacs 22 version of outline.el
24323 (defun org-up-heading-safe ()
24324 "Move to the heading line of which the present line is a subheading.
24325 This version will not throw an error. It will return the level of the
24326 headline found, or nil if no higher level is found.
24328 Also, this function will be a lot faster than `outline-up-heading',
24329 because it relies on stars being the outline starters. This can really
24330 make a significant difference in outlines with very many siblings."
24331 (when (ignore-errors (org-back-to-heading t))
24332 (let ((level-up (1- (funcall outline-level))))
24333 (and (> level-up 0)
24334 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
24335 (funcall outline-level)))))
24337 (defun org-first-sibling-p ()
24338 "Is this heading the first child of its parents?"
24339 (interactive)
24340 (let ((re org-outline-regexp-bol)
24341 level l)
24342 (unless (org-at-heading-p t)
24343 (user-error "Not at a heading"))
24344 (setq level (funcall outline-level))
24345 (save-excursion
24346 (if (not (re-search-backward re nil t))
24348 (setq l (funcall outline-level))
24349 (< l level)))))
24351 (defun org-goto-sibling (&optional previous)
24352 "Goto the next sibling, even if it is invisible.
24353 When PREVIOUS is set, go to the previous sibling instead. Returns t
24354 when a sibling was found. When none is found, return nil and don't
24355 move point."
24356 (let ((fun (if previous 're-search-backward 're-search-forward))
24357 (pos (point))
24358 (re org-outline-regexp-bol)
24359 level l)
24360 (when (ignore-errors (org-back-to-heading t))
24361 (setq level (funcall outline-level))
24362 (catch 'exit
24363 (or previous (forward-char 1))
24364 (while (funcall fun re nil t)
24365 (setq l (funcall outline-level))
24366 (when (< l level) (goto-char pos) (throw 'exit nil))
24367 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
24368 (goto-char pos)
24369 nil))))
24371 (defun org-show-siblings ()
24372 "Show all siblings of the current headline."
24373 (save-excursion
24374 (while (org-goto-sibling) (org-flag-heading nil)))
24375 (save-excursion
24376 (while (org-goto-sibling 'previous)
24377 (org-flag-heading nil))))
24379 (defun org-goto-first-child ()
24380 "Goto the first child, even if it is invisible.
24381 Return t when a child was found. Otherwise don't move point and
24382 return nil."
24383 (let (level (pos (point)) (re org-outline-regexp-bol))
24384 (when (ignore-errors (org-back-to-heading t))
24385 (setq level (outline-level))
24386 (forward-char 1)
24387 (if (and (re-search-forward re nil t) (> (outline-level) level))
24388 (progn (goto-char (match-beginning 0)) t)
24389 (goto-char pos) nil))))
24391 (defun org-show-hidden-entry ()
24392 "Show an entry where even the heading is hidden."
24393 (save-excursion
24394 (org-show-entry)))
24396 (defun org-flag-heading (flag &optional entry)
24397 "Flag the current heading. FLAG non-nil means make invisible.
24398 When ENTRY is non-nil, show the entire entry."
24399 (save-excursion
24400 (org-back-to-heading t)
24401 ;; Check if we should show the entire entry
24402 (if entry
24403 (progn
24404 (org-show-entry)
24405 (save-excursion
24406 (and (outline-next-heading)
24407 (org-flag-heading nil))))
24408 (outline-flag-region (max (point-min) (1- (point)))
24409 (save-excursion (outline-end-of-heading) (point))
24410 flag))))
24412 (defun org-get-next-sibling ()
24413 "Move to next heading of the same level, and return point.
24414 If there is no such heading, return nil.
24415 This is like outline-next-sibling, but invisible headings are ok."
24416 (let ((level (funcall outline-level)))
24417 (outline-next-heading)
24418 (while (and (not (eobp)) (> (funcall outline-level) level))
24419 (outline-next-heading))
24420 (if (or (eobp) (< (funcall outline-level) level))
24422 (point))))
24424 (defun org-get-last-sibling ()
24425 "Move to previous heading of the same level, and return point.
24426 If there is no such heading, return nil."
24427 (let ((opoint (point))
24428 (level (funcall outline-level)))
24429 (outline-previous-heading)
24430 (when (and (/= (point) opoint) (outline-on-heading-p t))
24431 (while (and (> (funcall outline-level) level)
24432 (not (bobp)))
24433 (outline-previous-heading))
24434 (if (< (funcall outline-level) level)
24436 (point)))))
24438 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24439 "Goto to the end of a subtree."
24440 ;; This contains an exact copy of the original function, but it uses
24441 ;; `org-back-to-heading', to make it work also in invisible
24442 ;; trees. And is uses an invisible-ok argument.
24443 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24444 ;; Furthermore, when used inside Org, finding the end of a large subtree
24445 ;; with many children and grandchildren etc, this can be much faster
24446 ;; than the outline version.
24447 (org-back-to-heading invisible-ok)
24448 (let ((first t)
24449 (level (funcall outline-level)))
24450 (if (and (derived-mode-p 'org-mode) (< level 1000))
24451 ;; A true heading (not a plain list item), in Org-mode
24452 ;; This means we can easily find the end by looking
24453 ;; only for the right number of stars. Using a regexp to do
24454 ;; this is so much faster than using a Lisp loop.
24455 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24456 (forward-char 1)
24457 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24458 ;; something else, do it the slow way
24459 (while (and (not (eobp))
24460 (or first (> (funcall outline-level) level)))
24461 (setq first nil)
24462 (outline-next-heading)))
24463 (unless to-heading
24464 (if (memq (preceding-char) '(?\n ?\^M))
24465 (progn
24466 ;; Go to end of line before heading
24467 (forward-char -1)
24468 (if (memq (preceding-char) '(?\n ?\^M))
24469 ;; leave blank line before heading
24470 (forward-char -1))))))
24471 (point))
24473 (defun org-end-of-meta-data (&optional full)
24474 "Skip planning line and properties drawer in current entry.
24475 When optional argument FULL is non-nil, also skip empty lines,
24476 clocking lines and regular drawers at the beginning of the
24477 entry."
24478 (org-back-to-heading t)
24479 (forward-line)
24480 (when (org-looking-at-p org-planning-line-re) (forward-line))
24481 (when (looking-at org-property-drawer-re)
24482 (goto-char (match-end 0))
24483 (forward-line))
24484 (when (and full (not (org-at-heading-p)))
24485 (catch 'exit
24486 (let ((end (save-excursion (outline-next-heading) (point)))
24487 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24488 (while (not (eobp))
24489 (cond ((org-looking-at-p org-drawer-regexp)
24490 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24491 (forward-line)
24492 (throw 'exit t)))
24493 ((org-looking-at-p re) (forward-line))
24494 (t (throw 'exit t))))))))
24496 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24497 "Move forward to the ARG'th subheading at same level as this one.
24498 Stop at the first and last subheadings of a superior heading.
24499 Normally this only looks at visible headings, but when INVISIBLE-OK is
24500 non-nil it will also look at invisible ones."
24501 (interactive "p")
24502 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24503 (if (and arg (< arg 0))
24504 (goto-char (point-min))
24505 (outline-next-heading))
24506 (org-at-heading-p)
24507 (let ((level (- (match-end 0) (match-beginning 0) 1))
24508 (f (if (and arg (< arg 0))
24509 're-search-backward
24510 're-search-forward))
24511 (count (if arg (abs arg) 1))
24512 (result (point)))
24513 (while (and (prog1 (> count 0)
24514 (forward-char (if (and arg (< arg 0)) -1 1)))
24515 (funcall f org-outline-regexp-bol nil 'move))
24516 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24517 (cond ((< l level) (setq count 0))
24518 ((and (= l level)
24519 (or invisible-ok
24520 (progn
24521 (goto-char (line-beginning-position))
24522 (not (outline-invisible-p)))))
24523 (setq count (1- count))
24524 (when (eq l level)
24525 (setq result (point)))))))
24526 (goto-char result))
24527 (beginning-of-line 1)))
24529 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24530 "Move backward to the ARG'th subheading at same level as this one.
24531 Stop at the first and last subheadings of a superior heading."
24532 (interactive "p")
24533 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24535 (defun org-next-visible-heading (arg)
24536 "Move to the next visible heading.
24538 This function wraps `outline-next-visible-heading' with
24539 `org-with-limited-levels' in order to skip over inline tasks and
24540 respect customization of `org-odd-levels-only'."
24541 (interactive "p")
24542 (org-with-limited-levels
24543 (outline-next-visible-heading arg)))
24545 (defun org-previous-visible-heading (arg)
24546 "Move to the previous visible heading.
24548 This function wraps `outline-previous-visible-heading' with
24549 `org-with-limited-levels' in order to skip over inline tasks and
24550 respect customization of `org-odd-levels-only'."
24551 (interactive "p")
24552 (org-with-limited-levels
24553 (outline-previous-visible-heading arg)))
24555 (defun org-next-block (arg &optional backward block-regexp)
24556 "Jump to the next block.
24558 With a prefix argument ARG, jump forward ARG many blocks.
24560 When BACKWARD is non-nil, jump to the previous block.
24562 When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
24563 Match data is set according to this regexp when the function
24564 returns.
24566 Return point at beginning of the opening line of found block.
24567 Throw an error if no block is found."
24568 (interactive "p")
24569 (let ((re (or block-regexp "^[ \t]*#\\+BEGIN"))
24570 (case-fold-search t)
24571 (search-fn (if backward #'re-search-backward #'re-search-forward))
24572 (count (or arg 1))
24573 (origin (point))
24574 last-element)
24575 (if backward (beginning-of-line) (end-of-line))
24576 (while (and (> count 0) (funcall search-fn re nil t))
24577 (let ((element (save-excursion
24578 (goto-char (match-beginning 0))
24579 (save-match-data (org-element-at-point)))))
24580 (when (and (memq (org-element-type element)
24581 '(center-block comment-block dynamic-block
24582 example-block export-block quote-block
24583 special-block src-block verse-block))
24584 (<= (match-beginning 0)
24585 (org-element-property :post-affiliated element)))
24586 (setq last-element element)
24587 (decf count))))
24588 (if (= count 0)
24589 (prog1 (goto-char (org-element-property :post-affiliated last-element))
24590 (save-match-data (org-show-context)))
24591 (goto-char origin)
24592 (user-error "No %s code blocks" (if backward "previous" "further")))))
24594 (defun org-previous-block (arg &optional block-regexp)
24595 "Jump to the previous block.
24596 With a prefix argument ARG, jump backward ARG many source blocks.
24597 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24598 (interactive "p")
24599 (org-next-block arg t block-regexp))
24601 (defun org-forward-paragraph ()
24602 "Move forward to beginning of next paragraph or equivalent.
24604 The function moves point to the beginning of the next visible
24605 structural element, which can be a paragraph, a table, a list
24606 item, etc. It also provides some special moves for convenience:
24608 - On an affiliated keyword, jump to the beginning of the
24609 relative element.
24610 - On an item or a footnote definition, move to the second
24611 element inside, if any.
24612 - On a table or a property drawer, jump after it.
24613 - On a verse or source block, stop after blank lines."
24614 (interactive)
24615 (when (eobp) (user-error "Cannot move further down"))
24616 (let* ((deactivate-mark nil)
24617 (element (org-element-at-point))
24618 (type (org-element-type element))
24619 (post-affiliated (org-element-property :post-affiliated element))
24620 (contents-begin (org-element-property :contents-begin element))
24621 (contents-end (org-element-property :contents-end element))
24622 (end (let ((end (org-element-property :end element)) (parent element))
24623 (while (and (setq parent (org-element-property :parent parent))
24624 (= (org-element-property :contents-end parent) end))
24625 (setq end (org-element-property :end parent)))
24626 end)))
24627 (cond ((not element)
24628 (skip-chars-forward " \r\t\n")
24629 (or (eobp) (beginning-of-line)))
24630 ;; On affiliated keywords, move to element's beginning.
24631 ((< (point) post-affiliated)
24632 (goto-char post-affiliated))
24633 ;; At a table row, move to the end of the table. Similarly,
24634 ;; at a node property, move to the end of the property
24635 ;; drawer.
24636 ((memq type '(node-property table-row))
24637 (goto-char (org-element-property
24638 :end (org-element-property :parent element))))
24639 ((memq type '(property-drawer table)) (goto-char end))
24640 ;; Consider blank lines as separators in verse and source
24641 ;; blocks to ease editing.
24642 ((memq type '(src-block verse-block))
24643 (when (eq type 'src-block)
24644 (setq contents-end
24645 (save-excursion (goto-char end)
24646 (skip-chars-backward " \r\t\n")
24647 (line-beginning-position))))
24648 (beginning-of-line)
24649 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24650 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24651 (goto-char end)
24652 (skip-chars-forward " \r\t\n")
24653 (if (= (point) contents-end) (goto-char end)
24654 (beginning-of-line))))
24655 ;; With no contents, just skip element.
24656 ((not contents-begin) (goto-char end))
24657 ;; If contents are invisible, skip the element altogether.
24658 ((outline-invisible-p (line-end-position))
24659 (case type
24660 (headline
24661 (org-with-limited-levels (outline-next-visible-heading 1)))
24662 ;; At a plain list, make sure we move to the next item
24663 ;; instead of skipping the whole list.
24664 (plain-list (forward-char)
24665 (org-forward-paragraph))
24666 (otherwise (goto-char end))))
24667 ((>= (point) contents-end) (goto-char end))
24668 ((>= (point) contents-begin)
24669 ;; This can only happen on paragraphs and plain lists.
24670 (case type
24671 (paragraph (goto-char end))
24672 ;; At a plain list, try to move to second element in
24673 ;; first item, if possible.
24674 (plain-list (end-of-line)
24675 (org-forward-paragraph))))
24676 ;; When contents start on the middle of a line (e.g. in
24677 ;; items and footnote definitions), try to reach first
24678 ;; element starting after current line.
24679 ((> (line-end-position) contents-begin)
24680 (end-of-line)
24681 (org-forward-paragraph))
24682 (t (goto-char contents-begin)))))
24684 (defun org-backward-paragraph ()
24685 "Move backward to start of previous paragraph or equivalent.
24687 The function moves point to the beginning of the current
24688 structural element, which can be a paragraph, a table, a list
24689 item, etc., or to the beginning of the previous visible one if
24690 point is already there. It also provides some special moves for
24691 convenience:
24693 - On an affiliated keyword, jump to the first one.
24694 - On a table or a property drawer, move to its beginning.
24695 - On a verse or source block, stop before blank lines."
24696 (interactive)
24697 (when (bobp) (user-error "Cannot move further up"))
24698 (let* ((deactivate-mark nil)
24699 (element (org-element-at-point))
24700 (type (org-element-type element))
24701 (contents-begin (org-element-property :contents-begin element))
24702 (contents-end (org-element-property :contents-end element))
24703 (post-affiliated (org-element-property :post-affiliated element))
24704 (begin (org-element-property :begin element)))
24705 (cond
24706 ((not element) (goto-char (point-min)))
24707 ((= (point) begin)
24708 (backward-char)
24709 (org-backward-paragraph))
24710 ((<= (point) post-affiliated) (goto-char begin))
24711 ((memq type '(node-property table-row))
24712 (goto-char (org-element-property
24713 :post-affiliated (org-element-property :parent element))))
24714 ((memq type '(property-drawer table)) (goto-char begin))
24715 ((memq type '(src-block verse-block))
24716 (when (eq type 'src-block)
24717 (setq contents-begin
24718 (save-excursion (goto-char begin) (forward-line) (point))))
24719 (if (= (point) contents-begin) (goto-char post-affiliated)
24720 ;; Inside a verse block, see blank lines as paragraph
24721 ;; separators.
24722 (let ((origin (point)))
24723 (skip-chars-backward " \r\t\n" contents-begin)
24724 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24725 (skip-chars-forward " \r\t\n" origin)
24726 (if (= (point) origin) (goto-char contents-begin)
24727 (beginning-of-line))))))
24728 ((not contents-begin) (goto-char (or post-affiliated begin)))
24729 ((eq type 'paragraph)
24730 (goto-char contents-begin)
24731 ;; When at first paragraph in an item or a footnote definition,
24732 ;; move directly to beginning of line.
24733 (let ((parent-contents
24734 (org-element-property
24735 :contents-begin (org-element-property :parent element))))
24736 (when (and parent-contents (= parent-contents contents-begin))
24737 (beginning-of-line))))
24738 ;; At the end of a greater element, move to the beginning of the
24739 ;; last element within.
24740 ((>= (point) contents-end)
24741 (goto-char (1- contents-end))
24742 (org-backward-paragraph))
24743 (t (goto-char (or post-affiliated begin))))
24744 ;; Ensure we never leave point invisible.
24745 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24747 (defun org-forward-element ()
24748 "Move forward by one element.
24749 Move to the next element at the same level, when possible."
24750 (interactive)
24751 (cond ((eobp) (user-error "Cannot move further down"))
24752 ((org-with-limited-levels (org-at-heading-p))
24753 (let ((origin (point)))
24754 (goto-char (org-end-of-subtree nil t))
24755 (unless (org-with-limited-levels (org-at-heading-p))
24756 (goto-char origin)
24757 (user-error "Cannot move further down"))))
24759 (let* ((elem (org-element-at-point))
24760 (end (org-element-property :end elem))
24761 (parent (org-element-property :parent elem)))
24762 (cond ((and parent (= (org-element-property :contents-end parent) end))
24763 (goto-char (org-element-property :end parent)))
24764 ((integer-or-marker-p end) (goto-char end))
24765 (t (message "No element at point")))))))
24767 (defun org-backward-element ()
24768 "Move backward by one element.
24769 Move to the previous element at the same level, when possible."
24770 (interactive)
24771 (cond ((bobp) (user-error "Cannot move further up"))
24772 ((org-with-limited-levels (org-at-heading-p))
24773 ;; At a headline, move to the previous one, if any, or stay
24774 ;; here.
24775 (let ((origin (point)))
24776 (org-with-limited-levels (org-backward-heading-same-level 1))
24777 ;; When current headline has no sibling above, move to its
24778 ;; parent.
24779 (when (= (point) origin)
24780 (or (org-with-limited-levels (org-up-heading-safe))
24781 (progn (goto-char origin)
24782 (user-error "Cannot move further up"))))))
24784 (let* ((elem (org-element-at-point))
24785 (beg (org-element-property :begin elem)))
24786 (cond
24787 ;; Move to beginning of current element if point isn't
24788 ;; there already.
24789 ((null beg) (message "No element at point"))
24790 ((/= (point) beg) (goto-char beg))
24791 (t (goto-char beg)
24792 (skip-chars-backward " \r\t\n")
24793 (unless (bobp)
24794 (let ((prev (org-element-at-point)))
24795 (goto-char (org-element-property :begin prev))
24796 (while (and (setq prev (org-element-property :parent prev))
24797 (<= (org-element-property :end prev) beg))
24798 (goto-char (org-element-property :begin prev)))))))))))
24800 (defun org-up-element ()
24801 "Move to upper element."
24802 (interactive)
24803 (if (org-with-limited-levels (org-at-heading-p))
24804 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24805 (let* ((elem (org-element-at-point))
24806 (parent (org-element-property :parent elem)))
24807 (if parent (goto-char (org-element-property :begin parent))
24808 (if (org-with-limited-levels (org-before-first-heading-p))
24809 (user-error "No surrounding element")
24810 (org-with-limited-levels (org-back-to-heading)))))))
24812 (defvar org-element-greater-elements)
24813 (defun org-down-element ()
24814 "Move to inner element."
24815 (interactive)
24816 (let ((element (org-element-at-point)))
24817 (cond
24818 ((memq (org-element-type element) '(plain-list table))
24819 (goto-char (org-element-property :contents-begin element))
24820 (forward-char))
24821 ((memq (org-element-type element) org-element-greater-elements)
24822 ;; If contents are hidden, first disclose them.
24823 (when (outline-invisible-p (line-end-position)) (org-cycle))
24824 (goto-char (or (org-element-property :contents-begin element)
24825 (user-error "No content for this element"))))
24826 (t (user-error "No inner element")))))
24828 (defun org-drag-element-backward ()
24829 "Move backward element at point."
24830 (interactive)
24831 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24832 (let* ((elem (org-element-at-point))
24833 (prev-elem
24834 (save-excursion
24835 (goto-char (org-element-property :begin elem))
24836 (skip-chars-backward " \r\t\n")
24837 (unless (bobp)
24838 (let* ((beg (org-element-property :begin elem))
24839 (prev (org-element-at-point))
24840 (up prev))
24841 (while (and (setq up (org-element-property :parent up))
24842 (<= (org-element-property :end up) beg))
24843 (setq prev up))
24844 prev)))))
24845 ;; Error out if no previous element or previous element is
24846 ;; a parent of the current one.
24847 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24848 (user-error "Cannot drag element backward")
24849 (let ((pos (point)))
24850 (org-element-swap-A-B prev-elem elem)
24851 (goto-char (+ (org-element-property :begin prev-elem)
24852 (- pos (org-element-property :begin elem)))))))))
24854 (defun org-drag-element-forward ()
24855 "Move forward element at point."
24856 (interactive)
24857 (let* ((pos (point))
24858 (elem (org-element-at-point)))
24859 (when (= (point-max) (org-element-property :end elem))
24860 (user-error "Cannot drag element forward"))
24861 (goto-char (org-element-property :end elem))
24862 (let ((next-elem (org-element-at-point)))
24863 (when (or (org-element-nested-p elem next-elem)
24864 (and (eq (org-element-type next-elem) 'headline)
24865 (not (eq (org-element-type elem) 'headline))))
24866 (goto-char pos)
24867 (user-error "Cannot drag element forward"))
24868 ;; Compute new position of point: it's shifted by NEXT-ELEM
24869 ;; body's length (without final blanks) and by the length of
24870 ;; blanks between ELEM and NEXT-ELEM.
24871 (let ((size-next (- (save-excursion
24872 (goto-char (org-element-property :end next-elem))
24873 (skip-chars-backward " \r\t\n")
24874 (forward-line)
24875 ;; Small correction if buffer doesn't end
24876 ;; with a newline character.
24877 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24878 (org-element-property :begin next-elem)))
24879 (size-blank (- (org-element-property :end elem)
24880 (save-excursion
24881 (goto-char (org-element-property :end elem))
24882 (skip-chars-backward " \r\t\n")
24883 (forward-line)
24884 (point)))))
24885 (org-element-swap-A-B elem next-elem)
24886 (goto-char (+ pos size-next size-blank))))))
24888 (defun org-drag-line-forward (arg)
24889 "Drag the line at point ARG lines forward."
24890 (interactive "p")
24891 (dotimes (n (abs arg))
24892 (let ((c (current-column)))
24893 (if (< 0 arg)
24894 (progn
24895 (beginning-of-line 2)
24896 (transpose-lines 1)
24897 (beginning-of-line 0))
24898 (transpose-lines 1)
24899 (beginning-of-line -1))
24900 (org-move-to-column c))))
24902 (defun org-drag-line-backward (arg)
24903 "Drag the line at point ARG lines backward."
24904 (interactive "p")
24905 (org-drag-line-forward (- arg)))
24907 (defun org-mark-element ()
24908 "Put point at beginning of this element, mark at end.
24910 Interactively, if this command is repeated or (in Transient Mark
24911 mode) if the mark is active, it marks the next element after the
24912 ones already marked."
24913 (interactive)
24914 (let (deactivate-mark)
24915 (if (and (org-called-interactively-p 'any)
24916 (or (and (eq last-command this-command) (mark t))
24917 (and transient-mark-mode mark-active)))
24918 (set-mark
24919 (save-excursion
24920 (goto-char (mark))
24921 (goto-char (org-element-property :end (org-element-at-point)))))
24922 (let ((element (org-element-at-point)))
24923 (end-of-line)
24924 (push-mark (org-element-property :end element) t t)
24925 (goto-char (org-element-property :begin element))))))
24927 (defun org-narrow-to-element ()
24928 "Narrow buffer to current element."
24929 (interactive)
24930 (let ((elem (org-element-at-point)))
24931 (cond
24932 ((eq (car elem) 'headline)
24933 (narrow-to-region
24934 (org-element-property :begin elem)
24935 (org-element-property :end elem)))
24936 ((memq (car elem) org-element-greater-elements)
24937 (narrow-to-region
24938 (org-element-property :contents-begin elem)
24939 (org-element-property :contents-end elem)))
24941 (narrow-to-region
24942 (org-element-property :begin elem)
24943 (org-element-property :end elem))))))
24945 (defun org-transpose-element ()
24946 "Transpose current and previous elements, keeping blank lines between.
24947 Point is moved after both elements."
24948 (interactive)
24949 (org-skip-whitespace)
24950 (let ((end (org-element-property :end (org-element-at-point))))
24951 (org-drag-element-backward)
24952 (goto-char end)))
24954 (defun org-unindent-buffer ()
24955 "Un-indent the visible part of the buffer.
24956 Relative indentation (between items, inside blocks, etc.) isn't
24957 modified."
24958 (interactive)
24959 (unless (eq major-mode 'org-mode)
24960 (user-error "Cannot un-indent a buffer not in Org mode"))
24961 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24962 unindent-tree ; For byte-compiler.
24963 (unindent-tree
24964 (function
24965 (lambda (contents)
24966 (mapc
24967 (lambda (element)
24968 (if (memq (org-element-type element) '(headline section))
24969 (funcall unindent-tree (org-element-contents element))
24970 (save-excursion
24971 (save-restriction
24972 (narrow-to-region
24973 (org-element-property :begin element)
24974 (org-element-property :end element))
24975 (org-do-remove-indentation)))))
24976 (reverse contents))))))
24977 (funcall unindent-tree (org-element-contents parse-tree))))
24979 (defun org-show-subtree ()
24980 "Show everything after this heading at deeper levels."
24981 (interactive)
24982 (outline-flag-region
24983 (point)
24984 (save-excursion
24985 (org-end-of-subtree t t))
24986 nil))
24988 (defun org-show-entry ()
24989 "Show the body directly following this heading.
24990 Show the heading too, if it is currently invisible."
24991 (interactive)
24992 (save-excursion
24993 (ignore-errors
24994 (org-back-to-heading t)
24995 (outline-flag-region
24996 (max (point-min) (1- (point)))
24997 (save-excursion
24998 (if (re-search-forward
24999 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
25000 (match-beginning 1)
25001 (point-max)))
25002 nil)
25003 (org-cycle-hide-drawers 'children))))
25005 (defun org-make-options-regexp (kwds &optional extra)
25006 "Make a regular expression for keyword lines.
25007 KWDS is a list of keywords, as strings. Optional argument EXTRA,
25008 when non-nil, is a regexp matching keywords names."
25009 (concat "^[ \t]*#\\+\\("
25010 (regexp-opt kwds)
25011 (and extra (concat (and kwds "\\|") extra))
25012 "\\):[ \t]*\\(.*\\)"))
25014 ;; Make isearch reveal the necessary context
25015 (defun org-isearch-end ()
25016 "Reveal context after isearch exits."
25017 (when isearch-success ; only if search was successful
25018 (if (featurep 'xemacs)
25019 ;; Under XEmacs, the hook is run in the correct place,
25020 ;; we directly show the context.
25021 (org-show-context 'isearch)
25022 ;; In Emacs the hook runs *before* restoring the overlays.
25023 ;; So we have to use a one-time post-command-hook to do this.
25024 ;; (Emacs 22 has a special variable, see function `org-mode')
25025 (unless (and (boundp 'isearch-mode-end-hook-quit)
25026 isearch-mode-end-hook-quit)
25027 ;; Only when the isearch was not quitted.
25028 (org-add-hook 'post-command-hook 'org-isearch-post-command
25029 'append 'local)))))
25031 (defun org-isearch-post-command ()
25032 "Remove self from hook, and show context."
25033 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
25034 (org-show-context 'isearch))
25037 ;;;; Integration with and fixes for other packages
25039 ;;; Imenu support
25041 (defvar org-imenu-markers nil
25042 "All markers currently used by Imenu.")
25043 (make-variable-buffer-local 'org-imenu-markers)
25045 (defun org-imenu-new-marker (&optional pos)
25046 "Return a new marker for use by Imenu, and remember the marker."
25047 (let ((m (make-marker)))
25048 (move-marker m (or pos (point)))
25049 (push m org-imenu-markers)
25052 (defun org-imenu-get-tree ()
25053 "Produce the index for Imenu."
25054 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
25055 (setq org-imenu-markers nil)
25056 (let* ((case-fold-search nil)
25057 (n org-imenu-depth)
25058 (re (concat "^" (org-get-limited-outline-regexp)))
25059 (subs (make-vector (1+ n) nil))
25060 (last-level 0)
25061 m level head0 head)
25062 (save-excursion
25063 (save-restriction
25064 (widen)
25065 (goto-char (point-max))
25066 (while (re-search-backward re nil t)
25067 (setq level (org-reduced-level (funcall outline-level)))
25068 (when (and (<= level n)
25069 (looking-at org-complex-heading-regexp)
25070 (setq head0 (org-match-string-no-properties 4)))
25071 (setq head (org-link-display-format head0)
25072 m (org-imenu-new-marker))
25073 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
25074 (if (>= level last-level)
25075 (push (cons head m) (aref subs level))
25076 (push (cons head (aref subs (1+ level))) (aref subs level))
25077 (loop for i from (1+ level) to n do (aset subs i nil)))
25078 (setq last-level level)))))
25079 (aref subs 1)))
25081 (eval-after-load "imenu"
25082 '(progn
25083 (add-hook 'imenu-after-jump-hook
25084 (lambda ()
25085 (if (derived-mode-p 'org-mode)
25086 (org-show-context 'org-goto))))))
25088 (defun org-link-display-format (s)
25089 "Replace links in string S with their description.
25090 If there is no description, use the link target."
25091 (save-match-data
25092 (replace-regexp-in-string
25093 org-bracket-link-analytic-regexp
25094 (lambda (m)
25095 (if (match-end 5) (match-string 5 m)
25096 (concat (match-string 1 m) (match-string 3 m))))
25097 s nil t)))
25099 (defun org-toggle-link-display ()
25100 "Toggle the literal or descriptive display of links."
25101 (interactive)
25102 (if org-descriptive-links
25103 (progn (org-remove-from-invisibility-spec '(org-link))
25104 (org-restart-font-lock)
25105 (setq org-descriptive-links nil))
25106 (progn (add-to-invisibility-spec '(org-link))
25107 (org-restart-font-lock)
25108 (setq org-descriptive-links t))))
25110 ;; Speedbar support
25112 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
25113 "Overlay marking the agenda restriction line in speedbar.")
25114 (overlay-put org-speedbar-restriction-lock-overlay
25115 'face 'org-agenda-restriction-lock)
25116 (overlay-put org-speedbar-restriction-lock-overlay
25117 'help-echo "Agendas are currently limited to this item.")
25118 (org-detach-overlay org-speedbar-restriction-lock-overlay)
25120 (defun org-speedbar-set-agenda-restriction ()
25121 "Restrict future agenda commands to the location at point in speedbar.
25122 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
25123 (interactive)
25124 (require 'org-agenda)
25125 (let (p m tp np dir txt)
25126 (cond
25127 ((setq p (text-property-any (point-at-bol) (point-at-eol)
25128 'org-imenu t))
25129 (setq m (get-text-property p 'org-imenu-marker))
25130 (with-current-buffer (marker-buffer m)
25131 (goto-char m)
25132 (org-agenda-set-restriction-lock 'subtree)))
25133 ((setq p (text-property-any (point-at-bol) (point-at-eol)
25134 'speedbar-function 'speedbar-find-file))
25135 (setq tp (previous-single-property-change
25136 (1+ p) 'speedbar-function)
25137 np (next-single-property-change
25138 tp 'speedbar-function)
25139 dir (speedbar-line-directory)
25140 txt (buffer-substring-no-properties (or tp (point-min))
25141 (or np (point-max))))
25142 (with-current-buffer (find-file-noselect
25143 (let ((default-directory dir))
25144 (expand-file-name txt)))
25145 (unless (derived-mode-p 'org-mode)
25146 (user-error "Cannot restrict to non-Org-mode file"))
25147 (org-agenda-set-restriction-lock 'file)))
25148 (t (user-error "Don't know how to restrict Org-mode's agenda")))
25149 (move-overlay org-speedbar-restriction-lock-overlay
25150 (point-at-bol) (point-at-eol))
25151 (setq current-prefix-arg nil)
25152 (org-agenda-maybe-redo)))
25154 (defvar speedbar-file-key-map)
25155 (declare-function speedbar-add-supported-extension "speedbar" (extension))
25156 (eval-after-load "speedbar"
25157 '(progn
25158 (speedbar-add-supported-extension ".org")
25159 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
25160 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
25161 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
25162 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
25163 (add-hook 'speedbar-visiting-tag-hook
25164 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
25166 ;;; Fixes and Hacks for problems with other packages
25168 (defun org--flyspell-object-check-p (element)
25169 "Non-nil when Flyspell can check object at point.
25170 ELEMENT is the element at point."
25171 (let ((object (save-excursion
25172 (when (org-looking-at-p "\\>") (backward-char))
25173 (org-element-context element))))
25174 (case (org-element-type object)
25175 ;; Prevent checks in links due to keybinding conflict with
25176 ;; Flyspell.
25177 ((code entity export-snippet inline-babel-call
25178 inline-src-block line-break latex-fragment link macro
25179 statistics-cookie target timestamp verbatim)
25180 nil)
25181 (footnote-reference
25182 ;; Only in inline footnotes, within the definition.
25183 (and (eq (org-element-property :type object) 'inline)
25184 (< (save-excursion
25185 (goto-char (org-element-property :begin object))
25186 (search-forward ":" nil t 2))
25187 (point))))
25188 (otherwise t))))
25190 (defun org-mode-flyspell-verify ()
25191 "Function used for `flyspell-generic-check-word-predicate'."
25192 (if (org-at-heading-p)
25193 ;; At a headline or an inlinetask, check title only. This is
25194 ;; faster than relying on `org-element-at-point'.
25195 (and (save-excursion (beginning-of-line)
25196 (and (let ((case-fold-search t))
25197 (not (looking-at "\\*+ END[ \t]*$")))
25198 (looking-at org-complex-heading-regexp)))
25199 (match-beginning 4)
25200 (>= (point) (match-beginning 4))
25201 (or (not (match-beginning 5))
25202 (< (point) (match-beginning 5))))
25203 (let* ((element (org-element-at-point))
25204 (post-affiliated (org-element-property :post-affiliated element)))
25205 (cond
25206 ;; Ignore checks in all affiliated keywords but captions.
25207 ((< (point) post-affiliated)
25208 (and (save-excursion
25209 (beginning-of-line)
25210 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
25211 (> (point) (match-end 0))
25212 (org--flyspell-object-check-p element)))
25213 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
25214 ((let ((log (org-log-into-drawer)))
25215 (and log
25216 (let ((drawer (org-element-lineage element '(drawer))))
25217 (and drawer
25218 (eq (compare-strings
25219 log nil nil
25220 (org-element-property :drawer-name drawer) nil nil t)
25221 t)))))
25222 nil)
25224 (case (org-element-type element)
25225 ((comment quote-section) t)
25226 (comment-block
25227 ;; Allow checks between block markers, not on them.
25228 (and (> (line-beginning-position) post-affiliated)
25229 (save-excursion
25230 (end-of-line)
25231 (skip-chars-forward " \r\t\n")
25232 (< (point) (org-element-property :end element)))))
25233 ;; Arbitrary list of keywords where checks are meaningful.
25234 ;; Make sure point is on the value part of the element.
25235 (keyword
25236 (and (member (org-element-property :key element)
25237 '("DESCRIPTION" "TITLE"))
25238 (save-excursion
25239 (search-backward ":" (line-beginning-position) t))))
25240 ;; Check is globally allowed in paragraphs verse blocks and
25241 ;; table rows (after affiliated keywords) but some objects
25242 ;; must not be affected.
25243 ((paragraph table-row verse-block)
25244 (let ((cbeg (org-element-property :contents-begin element))
25245 (cend (org-element-property :contents-end element)))
25246 (and cbeg (>= (point) cbeg) (< (point) cend)
25247 (org--flyspell-object-check-p element))))))))))
25248 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
25250 (defun org-remove-flyspell-overlays-in (beg end)
25251 "Remove flyspell overlays in region."
25252 (and (org-bound-and-true-p flyspell-mode)
25253 (fboundp 'flyspell-delete-region-overlays)
25254 (flyspell-delete-region-overlays beg end)))
25256 (defvar flyspell-delayed-commands)
25257 (eval-after-load "flyspell"
25258 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
25260 ;; Make `bookmark-jump' shows the jump location if it was hidden.
25261 (eval-after-load "bookmark"
25262 '(if (boundp 'bookmark-after-jump-hook)
25263 ;; We can use the hook
25264 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
25265 ;; Hook not available, use advice
25266 (defadvice bookmark-jump (after org-make-visible activate)
25267 "Make the position visible."
25268 (org-bookmark-jump-unhide))))
25270 ;; Make sure saveplace shows the location if it was hidden
25271 (eval-after-load "saveplace"
25272 '(defadvice save-place-find-file-hook (after org-make-visible activate)
25273 "Make the position visible."
25274 (org-bookmark-jump-unhide)))
25276 ;; Make sure ecb shows the location if it was hidden
25277 (eval-after-load "ecb"
25278 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
25279 "Make hierarchy visible when jumping into location from ECB tree buffer."
25280 (if (derived-mode-p 'org-mode)
25281 (org-show-context))))
25283 (defun org-bookmark-jump-unhide ()
25284 "Unhide the current position, to show the bookmark location."
25285 (and (derived-mode-p 'org-mode)
25286 (or (outline-invisible-p)
25287 (save-excursion (goto-char (max (point-min) (1- (point))))
25288 (outline-invisible-p)))
25289 (org-show-context 'bookmark-jump)))
25291 (defun org-mark-jump-unhide ()
25292 "Make the point visible with `org-show-context' after jumping to the mark."
25293 (when (and (derived-mode-p 'org-mode)
25294 (outline-invisible-p))
25295 (org-show-context 'mark-goto)))
25297 (eval-after-load "simple"
25298 '(defadvice pop-to-mark-command (after org-make-visible activate)
25299 "Make the point visible with `org-show-context'."
25300 (org-mark-jump-unhide)))
25302 (eval-after-load "simple"
25303 '(defadvice exchange-point-and-mark (after org-make-visible activate)
25304 "Make the point visible with `org-show-context'."
25305 (org-mark-jump-unhide)))
25307 (eval-after-load "simple"
25308 '(defadvice pop-global-mark (after org-make-visible activate)
25309 "Make the point visible with `org-show-context'."
25310 (org-mark-jump-unhide)))
25312 ;; Make session.el ignore our circular variable
25313 (defvar session-globals-exclude)
25314 (eval-after-load "session"
25315 '(add-to-list 'session-globals-exclude 'org-mark-ring))
25317 ;;;; Finish up
25319 (provide 'org)
25321 (run-hooks 'org-load-hook)
25323 ;;; org.el ends here