lisp/org.el: correct filemode, changed in b3fbd31f17
[org-mode.git] / lisp / org.el
blobd797eae7b040af4bbf1619319a159f16ea6c51b1
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" (&optional arg start-day span))
127 (declare-function org-agenda-redo "org-agenda" (&optional all))
128 (declare-function org-babel-do-in-edit-buffer "ob-core" (&rest body))
129 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
130 (declare-function org-beamer-mode "ox-beamer" ())
131 (declare-function org-clock-get-last-clock-out-time "org-clock" ())
132 (declare-function org-clock-out "org-clock" (&optional switch-to-state fail-quietly at-time))
133 (declare-function org-clock-remove-overlays "org-clock" (&optional beg end noremove))
134 (declare-function org-clock-sum "org-clock" (&optional tstart tend headline-filter propname))
135 (declare-function org-clock-sum-current-item "org-clock" (&optional tstart))
136 (declare-function org-clock-timestamps-down "org-clock" (&optional n))
137 (declare-function org-clock-timestamps-up "org-clock" (&optional n))
138 (declare-function org-clock-update-time-maybe "org-clock" ())
139 (declare-function org-clocktable-shift "org-clock" (dir n))
140 (declare-function org-element-at-point "org-element" ())
141 (declare-function org-element-cache-refresh "org-element" (pos))
142 (declare-function org-element-cache-reset "org-element" (&optional all))
143 (declare-function org-element-contents "org-element" (element))
144 (declare-function org-element-context "org-element" (&optional element))
145 (declare-function org-element-copy "org-element" (datum))
146 (declare-function org-element-interpret-data "org-element" (data &optional parent))
147 (declare-function org-element-lineage "org-element" (blob &optional types with-self))
148 (declare-function org-element-nested-p "org-element" (elem-a elem-b))
149 (declare-function org-element-parse-buffer "org-element" (&optional granularity visible-only))
150 (declare-function org-element-property "org-element" (property element))
151 (declare-function org-element-put-property "org-element" (element property value))
152 (declare-function org-element-swap-A-B "org-element" (elem-a elem-b))
153 (declare-function org-element-type "org-element" (element))
154 (declare-function org-element-update-syntax "org-element" ())
155 (declare-function org-id-find-id-file "org-id" (id))
156 (declare-function org-id-get-create "org-id" (&optional force))
157 (declare-function org-inlinetask-at-task-p "org-inlinetask" ())
158 (declare-function org-inlinetask-outline-regexp "org-inlinetask" ())
159 (declare-function org-inlinetask-toggle-visibility "org-inlinetask" ())
160 (declare-function org-plot/gnuplot "org-plot" (&optional params))
161 (declare-function org-pop-to-buffer-same-window "org-compat" (&optional buffer-or-name norecord label))
162 (declare-function org-table-align "org-table" ())
163 (declare-function org-table-begin "org-table" (&optional table-type))
164 (declare-function org-table-beginning-of-field "org-table" (&optional n))
165 (declare-function org-table-blank-field "org-table" ())
166 (declare-function org-table-calc-current-TBLFM "org-table" (&optional arg))
167 (declare-function org-table-edit-field "org-table" (arg))
168 (declare-function org-table-end "org-table" (&optional table-type))
169 (declare-function org-table-end-of-field "org-table" (&optional n))
170 (declare-function org-table-insert-row "org-table" (&optional arg))
171 (declare-function org-table-justify-field-maybe "org-table" (&optional new))
172 (declare-function org-table-maybe-eval-formula "org-table" ())
173 (declare-function org-table-maybe-recalculate-line "org-table" ())
174 (declare-function org-table-next-row "org-table" ())
175 (declare-function org-table-paste-rectangle "org-table" ())
176 (declare-function org-table-wrap-region "org-table" (arg))
177 (declare-function org-tags-view "org-agenda" (&optional todo-only match))
178 (declare-function orgtbl-ascii-plot "org-table" (&optional ask))
179 (declare-function orgtbl-mode "org-table" (&optional arg))
181 (defsubst org-uniquify (list)
182 "Non-destructively remove duplicate elements from LIST."
183 (let ((res (copy-sequence list))) (delete-dups res)))
185 (defsubst org-get-at-bol (property)
186 "Get text property PROPERTY at the beginning of line."
187 (get-text-property (point-at-bol) property))
189 (defsubst org-trim (s)
190 "Remove whitespace at the beginning and the end of string S."
191 (replace-regexp-in-string
192 "\\`[ \t\n\r]+" ""
193 (replace-regexp-in-string "[ \t\n\r]+\\'" "" s)))
195 ;; load languages based on value of `org-babel-load-languages'
196 (defvar org-babel-load-languages)
198 ;;;###autoload
199 (defun org-babel-do-load-languages (sym value)
200 "Load the languages defined in `org-babel-load-languages'."
201 (set-default sym value)
202 (mapc (lambda (pair)
203 (let ((active (cdr pair)) (lang (symbol-name (car pair))))
204 (if active
205 (progn
206 (require (intern (concat "ob-" lang))))
207 (progn
208 (funcall 'fmakunbound
209 (intern (concat "org-babel-execute:" lang)))
210 (funcall 'fmakunbound
211 (intern (concat "org-babel-expand-body:" lang)))))))
212 org-babel-load-languages))
214 (declare-function org-babel-tangle-file "ob-tangle" (file &optional target-file lang))
215 ;;;###autoload
216 (defun org-babel-load-file (file &optional compile)
217 "Load Emacs Lisp source code blocks in the Org-mode FILE.
218 This function exports the source code using `org-babel-tangle'
219 and then loads the resulting file using `load-file'. With prefix
220 arg (noninteractively: 2nd arg) COMPILE the tangled Emacs Lisp
221 file to byte-code before it is loaded."
222 (interactive "fFile to load: \nP")
223 (let* ((age (lambda (file)
224 (float-time
225 (time-subtract (current-time)
226 (nth 5 (or (file-attributes (file-truename file))
227 (file-attributes file)))))))
228 (base-name (file-name-sans-extension file))
229 (exported-file (concat base-name ".el")))
230 ;; tangle if the org-mode file is newer than the elisp file
231 (unless (and (file-exists-p exported-file)
232 (> (funcall age file) (funcall age exported-file)))
233 ;; Tangle-file traversal returns reversed list of tangled files
234 ;; and we want to evaluate the first target.
235 (setq exported-file
236 (car (last (org-babel-tangle-file file exported-file "emacs-lisp")))))
237 (message "%s %s"
238 (if compile
239 (progn (byte-compile-file exported-file 'load)
240 "Compiled and loaded")
241 (progn (load-file exported-file) "Loaded"))
242 exported-file)))
244 (defcustom org-babel-load-languages '((emacs-lisp . t))
245 "Languages which can be evaluated in Org-mode buffers.
246 This list can be used to load support for any of the languages
247 below, note that each language will depend on a different set of
248 system executables and/or Emacs modes. When a language is
249 \"loaded\", then code blocks in that language can be evaluated
250 with `org-babel-execute-src-block' bound by default to C-c
251 C-c (note the `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can
252 be set to remove code block evaluation from the C-c C-c
253 keybinding. By default only Emacs Lisp (which has no
254 requirements) is loaded."
255 :group 'org-babel
256 :set 'org-babel-do-load-languages
257 :version "24.1"
258 :type '(alist :tag "Babel Languages"
259 :key-type
260 (choice
261 (const :tag "Awk" awk)
262 (const :tag "C" C)
263 (const :tag "R" R)
264 (const :tag "Asymptote" asymptote)
265 (const :tag "Calc" calc)
266 (const :tag "Clojure" clojure)
267 (const :tag "CSS" css)
268 (const :tag "Ditaa" ditaa)
269 (const :tag "Dot" dot)
270 (const :tag "Emacs Lisp" emacs-lisp)
271 (const :tag "Forth" forth)
272 (const :tag "Fortran" fortran)
273 (const :tag "Gnuplot" gnuplot)
274 (const :tag "Haskell" haskell)
275 (const :tag "IO" io)
276 (const :tag "J" J)
277 (const :tag "Java" java)
278 (const :tag "Javascript" js)
279 (const :tag "LaTeX" latex)
280 (const :tag "Ledger" ledger)
281 (const :tag "Lilypond" lilypond)
282 (const :tag "Lisp" lisp)
283 (const :tag "Makefile" makefile)
284 (const :tag "Maxima" maxima)
285 (const :tag "Matlab" matlab)
286 (const :tag "Mscgen" mscgen)
287 (const :tag "Ocaml" ocaml)
288 (const :tag "Octave" octave)
289 (const :tag "Org" org)
290 (const :tag "Perl" perl)
291 (const :tag "Pico Lisp" picolisp)
292 (const :tag "PlantUML" plantuml)
293 (const :tag "Python" python)
294 (const :tag "Ruby" ruby)
295 (const :tag "Sass" sass)
296 (const :tag "Scala" scala)
297 (const :tag "Scheme" scheme)
298 (const :tag "Screen" screen)
299 (const :tag "Shell Script" shell)
300 (const :tag "Shen" shen)
301 (const :tag "Sql" sql)
302 (const :tag "Sqlite" sqlite)
303 (const :tag "ebnf2ps" ebnf2ps))
304 :value-type (boolean :tag "Activate" :value t)))
306 ;;;; Customization variables
307 (defcustom org-clone-delete-id nil
308 "Remove ID property of clones of a subtree.
309 When non-nil, clones of a subtree don't inherit the ID property.
310 Otherwise they inherit the ID property with a new unique
311 identifier."
312 :type 'boolean
313 :version "24.1"
314 :group 'org-id)
316 ;;; Version
317 (org-check-version)
319 ;;;###autoload
320 (defun org-version (&optional here full message)
321 "Show the org-mode version.
322 Interactively, or when MESSAGE is non-nil, show it in echo area.
323 With prefix argument, or when HERE is non-nil, insert it at point.
324 In non-interactive uses, a reduced version string is output unless
325 FULL is given."
326 (interactive (list current-prefix-arg t (not current-prefix-arg)))
327 (let* ((org-dir (ignore-errors (org-find-library-dir "org")))
328 (save-load-suffixes (when (boundp 'load-suffixes) load-suffixes))
329 (load-suffixes (list ".el"))
330 (org-install-dir (ignore-errors (org-find-library-dir "org-loaddefs")))
331 (org-trash (or
332 (and (fboundp 'org-release) (fboundp 'org-git-version))
333 (org-load-noerror-mustsuffix (concat org-dir "org-version"))))
334 (load-suffixes save-load-suffixes)
335 (org-version (org-release))
336 (git-version (org-git-version))
337 (version (format "Org-mode version %s (%s @ %s)"
338 org-version
339 git-version
340 (if org-install-dir
341 (if (string= org-dir org-install-dir)
342 org-install-dir
343 (concat "mixed installation! " org-install-dir " and " org-dir))
344 "org-loaddefs.el can not be found!")))
345 (version1 (if full version org-version)))
346 (when here (insert version1))
347 (when message (message "%s" version1))
348 version1))
350 (defconst org-version (org-version))
353 ;;; Syntax Constants
355 ;;;; Block
357 (defconst org-block-regexp
358 "^[ \t]*#\\+begin_?\\([^ \n]+\\)\\(\\([^\n]+\\)\\)?\n\\([^\000]+?\\)#\\+end_?\\1[ \t]*$"
359 "Regular expression for hiding blocks.")
361 (defconst org-dblock-start-re
362 "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+\\(\\S-+\\)\\([ \t]+\\(.*\\)\\)?"
363 "Matches the start line of a dynamic block, with parameters.")
365 (defconst org-dblock-end-re "^[ \t]*#\\+\\(?:END\\|end\\)\\([: \t\r\n]\\|$\\)"
366 "Matches the end of a dynamic block.")
368 ;;;; Clock and Planning
370 (defconst org-clock-string "CLOCK:"
371 "String used as prefix for timestamps clocking work hours on an item.")
373 (defvar org-closed-string "CLOSED:"
374 "String used as the prefix for timestamps logging closing a TODO entry.")
376 (defvar org-deadline-string "DEADLINE:"
377 "String to mark deadline entries.
378 A deadline is this string, followed by a time stamp. Should be a word,
379 terminated by a colon. You can insert a schedule keyword and
380 a timestamp with \\[org-deadline].")
382 (defvar org-scheduled-string "SCHEDULED:"
383 "String to mark scheduled TODO entries.
384 A schedule is this string, followed by a time stamp. Should be a word,
385 terminated by a colon. You can insert a schedule keyword and
386 a timestamp with \\[org-schedule].")
388 (defconst org-ds-keyword-length
389 (+ 2
390 (apply #'max
391 (mapcar #'length
392 (list org-deadline-string org-scheduled-string
393 org-clock-string org-closed-string))))
394 "Maximum length of the DEADLINE and SCHEDULED keywords.")
396 (defconst org-planning-line-re
397 (concat "^[ \t]*"
398 (regexp-opt
399 (list org-closed-string org-deadline-string org-scheduled-string)
401 "Matches a line with planning info.
402 Matched keyword is in group 1.")
404 (defconst org-clock-line-re
405 (concat "^[ \t]*" org-clock-string)
406 "Matches a line with clock info.")
408 (defconst org-deadline-regexp (concat "\\<" org-deadline-string)
409 "Matches the DEADLINE keyword.")
411 (defconst org-deadline-time-regexp
412 (concat "\\<" org-deadline-string " *<\\([^>]+\\)>")
413 "Matches the DEADLINE keyword together with a time stamp.")
415 (defconst org-deadline-time-hour-regexp
416 (concat "\\<" org-deadline-string
417 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
418 "Matches the DEADLINE keyword together with a time-and-hour stamp.")
420 (defconst org-deadline-line-regexp
421 (concat "\\<\\(" org-deadline-string "\\).*")
422 "Matches the DEADLINE keyword and the rest of the line.")
424 (defconst org-scheduled-regexp (concat "\\<" org-scheduled-string)
425 "Matches the SCHEDULED keyword.")
427 (defconst org-scheduled-time-regexp
428 (concat "\\<" org-scheduled-string " *<\\([^>]+\\)>")
429 "Matches the SCHEDULED keyword together with a time stamp.")
431 (defconst org-scheduled-time-hour-regexp
432 (concat "\\<" org-scheduled-string
433 " *<\\([^>]+[0-9]\\{1,2\\}:[0-9]\\{2\\}[0-9-+:hdwmy \t.]*\\)>")
434 "Matches the SCHEDULED keyword together with a time-and-hour stamp.")
436 (defconst org-closed-time-regexp
437 (concat "\\<" org-closed-string " *\\[\\([^]]+\\)\\]")
438 "Matches the CLOSED keyword together with a time stamp.")
440 (defconst org-keyword-time-regexp
441 (concat "\\<"
442 (regexp-opt
443 (list org-scheduled-string org-deadline-string org-closed-string
444 org-clock-string)
446 " *[[<]\\([^]>]+\\)[]>]")
447 "Matches any of the 4 keywords, together with the time stamp.")
449 (defconst org-keyword-time-not-clock-regexp
450 (concat
451 "\\<"
452 (regexp-opt
453 (list org-scheduled-string org-deadline-string org-closed-string) t)
454 " *[[<]\\([^]>]+\\)[]>]")
455 "Matches any of the 3 keywords, together with the time stamp.")
457 (defconst org-maybe-keyword-time-regexp
458 (concat "\\(\\<"
459 (regexp-opt
460 (list org-scheduled-string org-deadline-string org-closed-string
461 org-clock-string)
463 "\\)?"
464 " *\\([[<][0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?[]>]"
465 "\\|"
466 "<%%([^\r\n>]*>\\)")
467 "Matches a timestamp, possibly preceded by a keyword.")
469 (defconst org-all-time-keywords
470 (mapcar (lambda (w) (substring w 0 -1))
471 (list org-scheduled-string org-deadline-string
472 org-clock-string org-closed-string))
473 "List of time keywords.")
475 ;;;; Drawer
477 (defconst org-drawer-regexp "^[ \t]*:\\(\\(?:\\w\\|[-_]\\)+\\):[ \t]*$"
478 "Matches first or last line of a hidden block.
479 Group 1 contains drawer's name or \"END\".")
481 (defconst org-property-start-re "^[ \t]*:PROPERTIES:[ \t]*$"
482 "Regular expression matching the first line of a property drawer.")
484 (defconst org-property-end-re "^[ \t]*:END:[ \t]*$"
485 "Regular expression matching the last line of a property drawer.")
487 (defconst org-clock-drawer-start-re "^[ \t]*:CLOCK:[ \t]*$"
488 "Regular expression matching the first line of a clock drawer.")
490 (defconst org-clock-drawer-end-re "^[ \t]*:END:[ \t]*$"
491 "Regular expression matching the last line of a clock drawer.")
493 (defconst org-property-drawer-re
494 (concat "^[ \t]*:PROPERTIES:[ \t]*\n"
495 "\\(?:[ \t]*:\\S-+:\\(?: .*\\)?[ \t]*\n\\)*?"
496 "[ \t]*:END:[ \t]*$")
497 "Matches an entire property drawer.")
499 (defconst org-clock-drawer-re
500 (concat "\\(" org-clock-drawer-start-re "\\)[^\000]*?\\("
501 org-clock-drawer-end-re "\\)\n?")
502 "Matches an entire clock drawer.")
504 ;;;; Headline
506 (defconst org-heading-keyword-regexp-format
507 "^\\(\\*+\\)\\(?: +%s\\)\\(?: +\\(.*?\\)\\)?[ \t]*$"
508 "Printf format for a regexp matching a headline with some keyword.
509 This regexp will match the headline of any node which has the
510 exact keyword that is put into the format. The keyword isn't in
511 any group by default, but the stars and the body are.")
513 (defconst org-heading-keyword-maybe-regexp-format
514 "^\\(\\*+\\)\\(?: +%s\\)?\\(?: +\\(.*?\\)\\)?[ \t]*$"
515 "Printf format for a regexp matching a headline, possibly with some keyword.
516 This regexp can match any headline with the specified keyword, or
517 without a keyword. The keyword isn't in any group by default,
518 but the stars and the body are.")
520 (defconst org-archive-tag "ARCHIVE"
521 "The tag that marks a subtree as archived.
522 An archived subtree does not open during visibility cycling, and does
523 not contribute to the agenda listings.")
525 (defconst org-comment-string "COMMENT"
526 "Entries starting with this keyword will never be exported.
527 An entry can be toggled between COMMENT and normal with
528 \\[org-toggle-comment].")
531 ;;;; LaTeX Environments and Fragments
533 (defconst org-latex-regexps
534 '(("begin" "^[ \t]*\\(\\\\begin{\\([a-zA-Z0-9\\*]+\\)[^\000]+?\\\\end{\\2}\\)" 1 t)
535 ;; ("$" "\\([ (]\\|^\\)\\(\\(\\([$]\\)\\([^ \r\n,.$].*?\\(\n.*?\\)\\{0,5\\}[^ \r\n,.$]\\)\\4\\)\\)\\([ .,?;:'\")]\\|$\\)" 2 nil)
536 ;; \000 in the following regex is needed for org-inside-LaTeX-fragment-p
537 ("$1" "\\([^$]\\|^\\)\\(\\$[^ \r\n,;.$]\\$\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|$\\)" 2 nil)
538 ("$" "\\([^$]\\|^\\)\\(\\(\\$\\([^ \r\n,;.$][^$\n\r]*?\\(\n[^$\n\r]*?\\)\\{0,2\\}[^ \r\n,.$]\\)\\$\\)\\)\\(\\s.\\|\\s-\\|\\s(\\|\\s)\\|\\s\"\\|\000\\|$\\)" 2 nil)
539 ("\\(" "\\\\([^\000]*?\\\\)" 0 nil)
540 ("\\[" "\\\\\\[[^\000]*?\\\\\\]" 0 nil)
541 ("$$" "\\$\\$[^\000]*?\\$\\$" 0 nil))
542 "Regular expressions for matching embedded LaTeX.")
544 ;;;; Node Property
546 (defconst org-effort-property "Effort"
547 "The property that is being used to keep track of effort estimates.
548 Effort estimates given in this property need to have the format H:MM.")
550 ;;;; Table
552 (defconst org-table-any-line-regexp "^[ \t]*\\(|\\|\\+-[-+]\\)"
553 "Detect an org-type or table-type table.")
555 (defconst org-table-line-regexp "^[ \t]*|"
556 "Detect an org-type table line.")
558 (defconst org-table-dataline-regexp "^[ \t]*|[^-]"
559 "Detect an org-type table line.")
561 (defconst org-table-hline-regexp "^[ \t]*|-"
562 "Detect an org-type table hline.")
564 (defconst org-table1-hline-regexp "^[ \t]*\\+-[-+]"
565 "Detect a table-type table hline.")
567 (defconst org-table-any-border-regexp "^[ \t]*[^|+ \t]"
568 "Detect the first line outside a table when searching from within it.
569 This works for both table types.")
571 (defconst org-TBLFM-regexp "^[ \t]*#\\+TBLFM: "
572 "Detect a #+TBLFM line.")
574 ;;;; Timestamp
576 (defconst org-ts-regexp "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)>"
577 "Regular expression for fast time stamp matching.")
579 (defconst org-ts-regexp-inactive
580 "\\[\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^\r\n>]*?\\)\\]"
581 "Regular expression for fast inactive time stamp matching.")
583 (defconst org-ts-regexp-both "[[<]\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} ?[^]\r\n>]*?\\)[]>]"
584 "Regular expression for fast time stamp matching.")
586 (defconst org-ts-regexp0
587 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\)\\( +[^]+0-9>\r\n -]+\\)?\\( +\\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
588 "Regular expression matching time strings for analysis.
589 This one does not require the space after the date, so it can be used
590 on a string that terminates immediately after the date.")
592 (defconst org-ts-regexp1 "\\(\\([0-9]\\{4\\}\\)-\\([0-9]\\{2\\}\\)-\\([0-9]\\{2\\}\\) *\\([^]+0-9>\r\n -]*\\)\\( \\([0-9]\\{1,2\\}\\):\\([0-9]\\{2\\}\\)\\)?\\)"
593 "Regular expression matching time strings for analysis.")
595 (defconst org-ts-regexp2 (concat "<" org-ts-regexp1 "[^>\n]\\{0,16\\}>")
596 "Regular expression matching time stamps, with groups.")
598 (defconst org-ts-regexp3 (concat "[[<]" org-ts-regexp1 "[^]>\n]\\{0,16\\}[]>]")
599 "Regular expression matching time stamps (also [..]), with groups.")
601 (defconst org-tr-regexp (concat org-ts-regexp "--?-?" org-ts-regexp)
602 "Regular expression matching a time stamp range.")
604 (defconst org-tr-regexp-both
605 (concat org-ts-regexp-both "--?-?" org-ts-regexp-both)
606 "Regular expression matching a time stamp range.")
608 (defconst org-tsr-regexp (concat org-ts-regexp "\\(--?-?"
609 org-ts-regexp "\\)?")
610 "Regular expression matching a time stamp or time stamp range.")
612 (defconst org-tsr-regexp-both
613 (concat org-ts-regexp-both "\\(--?-?"
614 org-ts-regexp-both "\\)?")
615 "Regular expression matching a time stamp or time stamp range.
616 The time stamps may be either active or inactive.")
618 (defconst org-repeat-re
619 "<[0-9]\\{4\\}-[0-9][0-9]-[0-9][0-9] [^>\n]*?\\([.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)"
620 "Regular expression for specifying repeated events.
621 After a match, group 1 contains the repeat expression.")
623 (defconst org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a %H:%M>")
624 "Formats for `format-time-string' which are used for time stamps.")
627 ;;; The custom variables
629 (defgroup org nil
630 "Outline-based notes management and organizer."
631 :tag "Org"
632 :group 'outlines
633 :group 'calendar)
635 (defcustom org-mode-hook nil
636 "Mode hook for Org-mode, run after the mode was turned on."
637 :group 'org
638 :type 'hook)
640 (defcustom org-load-hook nil
641 "Hook that is run after org.el has been loaded."
642 :group 'org
643 :type 'hook)
645 (defcustom org-log-buffer-setup-hook nil
646 "Hook that is run after an Org log buffer is created."
647 :group 'org
648 :version "24.1"
649 :type 'hook)
651 (defvar org-modules) ; defined below
652 (defvar org-modules-loaded nil
653 "Have the modules been loaded already?")
655 (defun org-load-modules-maybe (&optional force)
656 "Load all extensions listed in `org-modules'."
657 (when (or force (not org-modules-loaded))
658 (mapc (lambda (ext)
659 (condition-case nil (require ext)
660 (error (message "Problems while trying to load feature `%s'" ext))))
661 org-modules)
662 (setq org-modules-loaded t)))
664 (defun org-set-modules (var value)
665 "Set VAR to VALUE and call `org-load-modules-maybe' with the force flag."
666 (set var value)
667 (when (featurep 'org)
668 (org-load-modules-maybe 'force)
669 (org-element-cache-reset 'all)))
671 (defcustom org-modules '(org-w3m org-bbdb org-bibtex org-docview org-gnus org-info org-irc org-mhe org-rmail)
672 "Modules that should always be loaded together with org.el.
674 If a description starts with <C>, the file is not part of Emacs
675 and loading it will require that you have downloaded and properly
676 installed the Org mode distribution.
678 You can also use this system to load external packages (i.e. neither Org
679 core modules, nor modules from the CONTRIB directory). Just add symbols
680 to the end of the list. If the package is called org-xyz.el, then you need
681 to add the symbol `xyz', and the package must have a call to:
683 (provide \\='org-xyz)
685 For export specific modules, see also `org-export-backends'."
686 :group 'org
687 :set 'org-set-modules
688 :version "24.4"
689 :package-version '(Org . "8.0")
690 :type
691 '(set :greedy t
692 (const :tag " bbdb: Links to BBDB entries" org-bbdb)
693 (const :tag " bibtex: Links to BibTeX entries" org-bibtex)
694 (const :tag " crypt: Encryption of subtrees" org-crypt)
695 (const :tag " ctags: Access to Emacs tags with links" org-ctags)
696 (const :tag " docview: Links to doc-view buffers" org-docview)
697 (const :tag " gnus: Links to GNUS folders/messages" org-gnus)
698 (const :tag " habit: Track your consistency with habits" org-habit)
699 (const :tag " id: Global IDs for identifying entries" org-id)
700 (const :tag " info: Links to Info nodes" org-info)
701 (const :tag " inlinetask: Tasks independent of outline hierarchy" org-inlinetask)
702 (const :tag " irc: Links to IRC/ERC chat sessions" org-irc)
703 (const :tag " mhe: Links to MHE folders/messages" org-mhe)
704 (const :tag " mouse: Additional mouse support" org-mouse)
705 (const :tag " protocol: Intercept calls from emacsclient" org-protocol)
706 (const :tag " rmail: Links to RMAIL folders/messages" org-rmail)
707 (const :tag " w3m: Special cut/paste from w3m to Org-mode." org-w3m)
709 (const :tag "C annotate-file: Annotate a file with org syntax" org-annotate-file)
710 (const :tag "C bookmark: Org-mode links to bookmarks" org-bookmark)
711 (const :tag "C bullets: Add overlays to headlines stars" org-bullets)
712 (const :tag "C checklist: Extra functions for checklists in repeated tasks" org-checklist)
713 (const :tag "C choose: Use TODO keywords to mark decisions states" org-choose)
714 (const :tag "C collector: Collect properties into tables" org-collector)
715 (const :tag "C depend: TODO dependencies for Org-mode\n\t\t\t(PARTIALLY OBSOLETE, see built-in dependency support))" org-depend)
716 (const :tag "C drill: Flashcards and spaced repetition for Org-mode" org-drill)
717 (const :tag "C elisp-symbol: Org-mode links to emacs-lisp symbols" org-elisp-symbol)
718 (const :tag "C eshell Support for links to working directories in eshell" org-eshell)
719 (const :tag "C eval-light: Evaluate inbuffer-code on demand" org-eval-light)
720 (const :tag "C eval: Include command output as text" org-eval)
721 (const :tag "C eww: Store link to url of eww" org-eww)
722 (const :tag "C expiry: Expiry mechanism for Org-mode entries" org-expiry)
723 (const :tag "C favtable: Lookup table of favorite references and links" org-favtable)
724 (const :tag "C git-link: Provide org links to specific file version" org-git-link)
725 (const :tag "C interactive-query: Interactive modification of tags query\n\t\t\t(PARTIALLY OBSOLETE, see secondary filtering)" org-interactive-query)
726 (const :tag "C invoice: Help manage client invoices in Org-mode" org-invoice)
727 (const :tag "C learn: SuperMemo's incremental learning algorithm" org-learn)
728 (const :tag "C mac-iCal Imports events from iCal.app to the Emacs diary" org-mac-iCal)
729 (const :tag "C mac-link: Grab links and url from various mac Applications" org-mac-link)
730 (const :tag "C mairix: Hook mairix search into Org-mode for different MUAs" org-mairix)
731 (const :tag "C man: Support for links to manpages in Org-mode" org-man)
732 (const :tag "C mew: Links to Mew folders/messages" org-mew)
733 (const :tag "C mtags: Support for muse-like tags" org-mtags)
734 (const :tag "C notmuch: Provide org links to notmuch searches or messages" org-notmuch)
735 (const :tag "C panel: Simple routines for us with bad memory" org-panel)
736 (const :tag "C registry: A registry for Org-mode links" org-registry)
737 (const :tag "C screen: Visit screen sessions through Org-mode links" org-screen)
738 (const :tag "C secretary: Team management with org-mode" org-secretary)
739 (const :tag "C sqlinsert: Convert Org-mode tables to SQL insertions" orgtbl-sqlinsert)
740 (const :tag "C toc: Table of contents for Org-mode buffer" org-toc)
741 (const :tag "C track: Keep up with Org-mode development" org-track)
742 (const :tag "C velocity Something like Notational Velocity for Org" org-velocity)
743 (const :tag "C vm: Links to VM folders/messages" org-vm)
744 (const :tag "C wikinodes: CamelCase wiki-like links" org-wikinodes)
745 (const :tag "C wl: Links to Wanderlust folders/messages" org-wl)
746 (repeat :tag "External packages" :inline t (symbol :tag "Package"))))
748 (defvar org-export-registered-backends) ; From ox.el.
749 (declare-function org-export-derived-backend-p "ox" (backend &rest backends))
750 (declare-function org-export-backend-name "ox" (backend))
751 (defcustom org-export-backends '(ascii html icalendar latex)
752 "List of export back-ends that should be always available.
754 If a description starts with <C>, the file is not part of Emacs
755 and loading it will require that you have downloaded and properly
756 installed the Org mode distribution.
758 Unlike to `org-modules', libraries in this list will not be
759 loaded along with Org, but only once the export framework is
760 needed.
762 This variable needs to be set before org.el is loaded. If you
763 need to make a change while Emacs is running, use the customize
764 interface or run the following code, where VAL stands for the new
765 value of the variable, after updating it:
767 (progn
768 (setq org-export-registered-backends
769 (org-remove-if-not
770 (lambda (backend)
771 (let ((name (org-export-backend-name backend)))
772 (or (memq name val)
773 (catch \\='parentp
774 (dolist (b val)
775 (and (org-export-derived-backend-p b name)
776 (throw \\='parentp t)))))))
777 org-export-registered-backends))
778 (let ((new-list (mapcar #\\='org-export-backend-name
779 org-export-registered-backends)))
780 (dolist (backend val)
781 (cond
782 ((not (load (format \"ox-%s\" backend) t t))
783 (message \"Problems while trying to load export back-end \\=`%s\\='\"
784 backend))
785 ((not (memq backend new-list)) (push backend new-list))))
786 (set-default \\='org-export-backends new-list)))
788 Adding a back-end to this list will also pull the back-end it
789 depends on, if any."
790 :group 'org
791 :group 'org-export
792 :version "24.4"
793 :package-version '(Org . "8.0")
794 :initialize 'custom-initialize-set
795 :set (lambda (var val)
796 (if (not (featurep 'ox)) (set-default var val)
797 ;; Any back-end not required anymore (not present in VAL and not
798 ;; a parent of any back-end in the new value) is removed from the
799 ;; list of registered back-ends.
800 (setq org-export-registered-backends
801 (org-remove-if-not
802 (lambda (backend)
803 (let ((name (org-export-backend-name backend)))
804 (or (memq name val)
805 (catch 'parentp
806 (dolist (b val)
807 (and (org-export-derived-backend-p b name)
808 (throw 'parentp t)))))))
809 org-export-registered-backends))
810 ;; Now build NEW-LIST of both new back-ends and required
811 ;; parents.
812 (let ((new-list (mapcar #'org-export-backend-name
813 org-export-registered-backends)))
814 (dolist (backend val)
815 (cond
816 ((not (load (format "ox-%s" backend) t t))
817 (message "Problems while trying to load export back-end `%s'"
818 backend))
819 ((not (memq backend new-list)) (push backend new-list))))
820 ;; Set VAR to that list with fixed dependencies.
821 (set-default var new-list))))
822 :type '(set :greedy t
823 (const :tag " ascii Export buffer to ASCII format" ascii)
824 (const :tag " beamer Export buffer to Beamer presentation" beamer)
825 (const :tag " html Export buffer to HTML format" html)
826 (const :tag " icalendar Export buffer to iCalendar format" icalendar)
827 (const :tag " latex Export buffer to LaTeX format" latex)
828 (const :tag " man Export buffer to MAN format" man)
829 (const :tag " md Export buffer to Markdown format" md)
830 (const :tag " odt Export buffer to ODT format" odt)
831 (const :tag " org Export buffer to Org format" org)
832 (const :tag " texinfo Export buffer to Texinfo format" texinfo)
833 (const :tag "C confluence Export buffer to Confluence Wiki format" confluence)
834 (const :tag "C deck Export buffer to deck.js presentations" deck)
835 (const :tag "C freemind Export buffer to Freemind mindmap format" freemind)
836 (const :tag "C groff Export buffer to Groff format" groff)
837 (const :tag "C koma-letter Export buffer to KOMA Scrlttrl2 format" koma-letter)
838 (const :tag "C RSS 2.0 Export buffer to RSS 2.0 format" rss)
839 (const :tag "C s5 Export buffer to s5 presentations" s5)
840 (const :tag "C taskjuggler Export buffer to TaskJuggler format" taskjuggler)))
842 (eval-after-load 'ox
843 '(mapc
844 (lambda (backend)
845 (condition-case nil (require (intern (format "ox-%s" backend)))
846 (error (message "Problems while trying to load export back-end `%s'"
847 backend))))
848 org-export-backends))
850 (defcustom org-support-shift-select nil
851 "Non-nil means make shift-cursor commands select text when possible.
852 \\<org-mode-map>\
854 In Emacs 23, when `shift-select-mode' is on, shifted cursor keys
855 start selecting a region, or enlarge regions started in this way.
856 In Org-mode, in special contexts, these same keys are used for
857 other purposes, important enough to compete with shift selection.
858 Org tries to balance these needs by supporting `shift-select-mode'
859 outside these special contexts, under control of this variable.
861 The default of this variable is nil, to avoid confusing behavior. Shifted
862 cursor keys will then execute Org commands in the following contexts:
863 - on a headline, changing TODO state (left/right) and priority (up/down)
864 - on a time stamp, changing the time
865 - in a plain list item, changing the bullet type
866 - in a property definition line, switching between allowed values
867 - in the BEGIN line of a clock table (changing the time block).
868 Outside these contexts, the commands will throw an error.
870 When this variable is t and the cursor is not in a special
871 context, Org-mode will support shift-selection for making and
872 enlarging regions. To make this more effective, the bullet
873 cycling will no longer happen anywhere in an item line, but only
874 if the cursor is exactly on the bullet.
876 If you set this variable to the symbol `always', then the keys
877 will not be special in headlines, property lines, and item lines,
878 to make shift selection work there as well. If this is what you
879 want, you can use the following alternative commands:
880 `\\[org-todo]' and `\\[org-priority]' \
881 to change TODO state and priority,
882 `\\[universal-argument] \\[universal-argument] \\[org-todo]' \
883 can be used to switch TODO sets,
884 `\\[org-ctrl-c-minus]' to cycle item bullet types,
885 and properties can be edited by hand or in column view.
887 However, when the cursor is on a timestamp, shift-cursor commands
888 will still edit the time stamp - this is just too good to give up.
890 XEmacs user should have this variable set to nil, because
891 `shift-select-mode' is in Emacs 23 or later only."
892 :group 'org
893 :type '(choice
894 (const :tag "Never" nil)
895 (const :tag "When outside special context" t)
896 (const :tag "Everywhere except timestamps" always)))
898 (defcustom org-loop-over-headlines-in-active-region nil
899 "Shall some commands act upon headlines in the active region?
901 When set to t, some commands will be performed in all headlines
902 within the active region.
904 When set to `start-level', some commands will be performed in all
905 headlines within the active region, provided that these headlines
906 are of the same level than the first one.
908 When set to a string, those commands will be performed on the
909 matching headlines within the active region. Such string must be
910 a tags/property/todo match as it is used in the agenda tags view.
912 The list of commands is: `org-schedule', `org-deadline',
913 `org-todo', `org-archive-subtree', `org-archive-set-tag' and
914 `org-archive-to-archive-sibling'. The archiving commands skip
915 already archived entries."
916 :type '(choice (const :tag "Don't loop" nil)
917 (const :tag "All headlines in active region" t)
918 (const :tag "In active region, headlines at the same level than the first one" start-level)
919 (string :tag "Tags/Property/Todo matcher"))
920 :version "24.1"
921 :group 'org-todo
922 :group 'org-archive)
924 (defgroup org-startup nil
925 "Options concerning startup of Org-mode."
926 :tag "Org Startup"
927 :group 'org)
929 (defcustom org-startup-folded t
930 "Non-nil means entering Org-mode will switch to OVERVIEW.
931 This can also be configured on a per-file basis by adding one of
932 the following lines anywhere in the buffer:
934 #+STARTUP: fold (or `overview', this is equivalent)
935 #+STARTUP: nofold (or `showall', this is equivalent)
936 #+STARTUP: content
937 #+STARTUP: showeverything
939 By default, this option is ignored when Org opens agenda files
940 for the first time. If you want the agenda to honor the startup
941 option, set `org-agenda-inhibit-startup' to nil."
942 :group 'org-startup
943 :type '(choice
944 (const :tag "nofold: show all" nil)
945 (const :tag "fold: overview" t)
946 (const :tag "content: all headlines" content)
947 (const :tag "show everything, even drawers" showeverything)))
949 (defcustom org-startup-truncated t
950 "Non-nil means entering Org-mode will set `truncate-lines'.
951 This is useful since some lines containing links can be very long and
952 uninteresting. Also tables look terrible when wrapped."
953 :group 'org-startup
954 :type 'boolean)
956 (defcustom org-startup-indented nil
957 "Non-nil means turn on `org-indent-mode' on startup.
958 This can also be configured on a per-file basis by adding one of
959 the following lines anywhere in the buffer:
961 #+STARTUP: indent
962 #+STARTUP: noindent"
963 :group 'org-structure
964 :type '(choice
965 (const :tag "Not" nil)
966 (const :tag "Globally (slow on startup in large files)" t)))
968 (defcustom org-use-sub-superscripts t
969 "Non-nil means interpret \"_\" and \"^\" for display.
971 If you want to control how Org exports those characters, see
972 `org-export-with-sub-superscripts'. `org-use-sub-superscripts'
973 used to be an alias for `org-export-with-sub-superscripts' in
974 Org <8.0, it is not anymore.
976 When this option is turned on, you can use TeX-like syntax for
977 sub- and superscripts within the buffer. Several characters after
978 \"_\" or \"^\" will be considered as a single item - so grouping
979 with {} is normally not needed. For example, the following things
980 will be parsed as single sub- or superscripts:
982 10^24 or 10^tau several digits will be considered 1 item.
983 10^-12 or 10^-tau a leading sign with digits or a word
984 x^2-y^3 will be read as x^2 - y^3, because items are
985 terminated by almost any nonword/nondigit char.
986 x_{i^2} or x^(2-i) braces or parenthesis do grouping.
988 Still, ambiguity is possible. So when in doubt, use {} to enclose
989 the sub/superscript. If you set this variable to the symbol `{}',
990 the braces are *required* in order to trigger interpretations as
991 sub/superscript. This can be helpful in documents that need \"_\"
992 frequently in plain text."
993 :group 'org-startup
994 :version "24.4"
995 :package-version '(Org . "8.0")
996 :type '(choice
997 (const :tag "Always interpret" t)
998 (const :tag "Only with braces" {})
999 (const :tag "Never interpret" nil)))
1001 (defcustom org-startup-with-beamer-mode nil
1002 "Non-nil means turn on `org-beamer-mode' on startup.
1003 This can also be configured on a per-file basis by adding one of
1004 the following lines anywhere in the buffer:
1006 #+STARTUP: beamer"
1007 :group 'org-startup
1008 :version "24.1"
1009 :type 'boolean)
1011 (defcustom org-startup-align-all-tables nil
1012 "Non-nil means align all tables when visiting a file.
1013 This is useful when the column width in tables is forced with <N> cookies
1014 in table fields. Such tables will look correct only after the first re-align.
1015 This can also be configured on a per-file basis by adding one of
1016 the following lines anywhere in the buffer:
1017 #+STARTUP: align
1018 #+STARTUP: noalign"
1019 :group 'org-startup
1020 :type 'boolean)
1022 (defcustom org-startup-with-inline-images nil
1023 "Non-nil means show inline images when loading a new Org file.
1024 This can also be configured on a per-file basis by adding one of
1025 the following lines anywhere in the buffer:
1026 #+STARTUP: inlineimages
1027 #+STARTUP: noinlineimages"
1028 :group 'org-startup
1029 :version "24.1"
1030 :type 'boolean)
1032 (defcustom org-startup-with-latex-preview nil
1033 "Non-nil means preview LaTeX fragments when loading a new Org file.
1035 This can also be configured on a per-file basis by adding one of
1036 the following lines anywhere in the buffer:
1037 #+STARTUP: latexpreview
1038 #+STARTUP: nolatexpreview"
1039 :group 'org-startup
1040 :version "24.4"
1041 :package-version '(Org . "8.0")
1042 :type 'boolean)
1044 (defcustom org-insert-mode-line-in-empty-file nil
1045 "Non-nil means insert the first line setting Org-mode in empty files.
1046 When the function `org-mode' is called interactively in an empty file, this
1047 normally means that the file name does not automatically trigger Org-mode.
1048 To ensure that the file will always be in Org-mode in the future, a
1049 line enforcing Org-mode will be inserted into the buffer, if this option
1050 has been set."
1051 :group 'org-startup
1052 :type 'boolean)
1054 (defcustom org-replace-disputed-keys nil
1055 "Non-nil means use alternative key bindings for some keys.
1056 Org-mode uses S-<cursor> keys for changing timestamps and priorities.
1057 These keys are also used by other packages like shift-selection-mode'
1058 \(built into Emacs 23), `CUA-mode' or `windmove.el'.
1059 If you want to use Org-mode together with one of these other modes,
1060 or more generally if you would like to move some Org-mode commands to
1061 other keys, set this variable and configure the keys with the variable
1062 `org-disputed-keys'.
1064 This option is only relevant at load-time of Org-mode, and must be set
1065 *before* org.el is loaded. Changing it requires a restart of Emacs to
1066 become effective."
1067 :group 'org-startup
1068 :type 'boolean)
1070 (defcustom org-use-extra-keys nil
1071 "Non-nil means use extra key sequence definitions for certain commands.
1072 This happens automatically if you run XEmacs or if `window-system'
1073 is nil. This variable lets you do the same manually. You must
1074 set it before loading org.
1076 Example: on Carbon Emacs 22 running graphically, with an external
1077 keyboard on a Powerbook, the default way of setting M-left might
1078 not work for either Alt or ESC. Setting this variable will make
1079 it work for ESC."
1080 :group 'org-startup
1081 :type 'boolean)
1083 (org-defvaralias 'org-CUA-compatible 'org-replace-disputed-keys)
1085 (defcustom org-disputed-keys
1086 '(([(shift up)] . [(meta p)])
1087 ([(shift down)] . [(meta n)])
1088 ([(shift left)] . [(meta -)])
1089 ([(shift right)] . [(meta +)])
1090 ([(control shift right)] . [(meta shift +)])
1091 ([(control shift left)] . [(meta shift -)]))
1092 "Keys for which Org-mode and other modes compete.
1093 This is an alist, cars are the default keys, second element specifies
1094 the alternative to use when `org-replace-disputed-keys' is t.
1096 Keys can be specified in any syntax supported by `define-key'.
1097 The value of this option takes effect only at Org-mode's startup,
1098 therefore you'll have to restart Emacs to apply it after changing."
1099 :group 'org-startup
1100 :type 'alist)
1102 (defun org-key (key)
1103 "Select key according to `org-replace-disputed-keys' and `org-disputed-keys'.
1104 Or return the original if not disputed.
1105 Also apply the translations defined in `org-xemacs-key-equivalents'."
1106 (when org-replace-disputed-keys
1107 (let* ((nkey (key-description key))
1108 (x (org-find-if (lambda (x)
1109 (equal (key-description (car x)) nkey))
1110 org-disputed-keys)))
1111 (setq key (if x (cdr x) key))))
1112 (when (featurep 'xemacs)
1113 (setq key (or (cdr (assoc key org-xemacs-key-equivalents)) key)))
1114 key)
1116 (defun org-find-if (predicate seq)
1117 (catch 'exit
1118 (while seq
1119 (if (funcall predicate (car seq))
1120 (throw 'exit (car seq))
1121 (pop seq)))))
1123 (defun org-defkey (keymap key def)
1124 "Define a key, possibly translated, as returned by `org-key'."
1125 (define-key keymap (org-key key) def))
1127 (defcustom org-ellipsis nil
1128 "The ellipsis to use in the Org-mode outline.
1129 When nil, just use the standard three dots.
1130 When a string, use that string instead.
1131 When a face, use the standard 3 dots, but with the specified face.
1132 The change affects only Org-mode (which will then use its own display table).
1133 Changing this requires executing \\[org-mode] in a buffer to become
1134 effective."
1135 :group 'org-startup
1136 :type '(choice (const :tag "Default" nil)
1137 (face :tag "Face" :value org-warning)
1138 (string :tag "String" :value "...#")))
1140 (defvar org-display-table nil
1141 "The display table for org-mode, in case `org-ellipsis' is non-nil.")
1143 (defgroup org-keywords nil
1144 "Keywords in Org-mode."
1145 :tag "Org Keywords"
1146 :group 'org)
1148 (defcustom org-closed-keep-when-no-todo nil
1149 "Remove CLOSED: time-stamp when switching back to a non-todo state?"
1150 :group 'org-todo
1151 :group 'org-keywords
1152 :version "24.4"
1153 :package-version '(Org . "8.0")
1154 :type 'boolean)
1156 (defgroup org-structure nil
1157 "Options concerning the general structure of Org-mode files."
1158 :tag "Org Structure"
1159 :group 'org)
1161 (defgroup org-reveal-location nil
1162 "Options about how to make context of a location visible."
1163 :tag "Org Reveal Location"
1164 :group 'org-structure)
1166 (defcustom org-show-context-detail '((isearch . lineage)
1167 (bookmark-jump . lineage)
1168 (default . ancestors))
1169 "Alist between context and visibility span when revealing a location.
1171 \\<org-mode-map>Some actions may move point into invisible
1172 locations. As a consequence, Org always expose a neighborhood
1173 around point. How much is shown depends on the initial action,
1174 or context. Valid contexts are
1176 agenda when exposing an entry from the agenda
1177 org-goto when using the command `org-goto' (\\[org-goto])
1178 occur-tree when using the command `org-occur' (\\[org-sparse-tree] /)
1179 tags-tree when constructing a sparse tree based on tags matches
1180 link-search when exposing search matches associated with a link
1181 mark-goto when exposing the jump goal of a mark
1182 bookmark-jump when exposing a bookmark location
1183 isearch when exiting from an incremental search
1184 default default for all contexts not set explicitly
1186 Allowed visibility spans are
1188 minimal show current headline; if point is not on headline,
1189 also show entry
1191 local show current headline, entry and next headline
1193 ancestors show current headline and its direct ancestors; if
1194 point is not on headline, also show entry
1196 lineage show current headline, its direct ancestors and all
1197 their children; if point is not on headline, also show
1198 entry and first child
1200 tree show current headline, its direct ancestors and all
1201 their children; if point is not on headline, also show
1202 entry and all children
1204 canonical show current headline, its direct ancestors along with
1205 their entries and children; if point is not located on
1206 the headline, also show current entry and all children
1208 As special cases, a nil or t value means show all contexts in
1209 `minimal' or `canonical' view, respectively.
1211 Some views can make displayed information very compact, but also
1212 make it harder to edit the location of the match. In such
1213 a case, use the command `org-reveal' (\\[org-reveal]) to show
1214 more context."
1215 :group 'org-reveal-location
1216 :version "25.1"
1217 :package-version '(Org . "8.3")
1218 :type '(choice
1219 (const :tag "Canonical" t)
1220 (const :tag "Minimal" nil)
1221 (repeat :greedy t :tag "Individual contexts"
1222 (cons
1223 (choice :tag "Context"
1224 (const agenda)
1225 (const org-goto)
1226 (const occur-tree)
1227 (const tags-tree)
1228 (const link-search)
1229 (const mark-goto)
1230 (const bookmark-jump)
1231 (const isearch)
1232 (const default))
1233 (choice :tag "Detail level"
1234 (const minimal)
1235 (const local)
1236 (const ancestors)
1237 (const lineage)
1238 (const tree)
1239 (const canonical))))))
1241 (defcustom org-indirect-buffer-display 'other-window
1242 "How should indirect tree buffers be displayed?
1243 This applies to indirect buffers created with the commands
1244 \\[org-tree-to-indirect-buffer] and \\[org-agenda-tree-to-indirect-buffer].
1245 Valid values are:
1246 current-window Display in the current window
1247 other-window Just display in another window.
1248 dedicated-frame Create one new frame, and re-use it each time.
1249 new-frame Make a new frame each time. Note that in this case
1250 previously-made indirect buffers are kept, and you need to
1251 kill these buffers yourself."
1252 :group 'org-structure
1253 :group 'org-agenda-windows
1254 :type '(choice
1255 (const :tag "In current window" current-window)
1256 (const :tag "In current frame, other window" other-window)
1257 (const :tag "Each time a new frame" new-frame)
1258 (const :tag "One dedicated frame" dedicated-frame)))
1260 (defcustom org-use-speed-commands nil
1261 "Non-nil means activate single letter commands at beginning of a headline.
1262 This may also be a function to test for appropriate locations where speed
1263 commands should be active.
1265 For example, to activate speed commands when the point is on any
1266 star at the beginning of the headline, you can do this:
1268 (setq org-use-speed-commands
1269 (lambda () (and (looking-at org-outline-regexp) (looking-back \"^\\**\"))))"
1270 :group 'org-structure
1271 :type '(choice
1272 (const :tag "Never" nil)
1273 (const :tag "At beginning of headline stars" t)
1274 (function)))
1276 (defcustom org-speed-commands-user nil
1277 "Alist of additional speed commands.
1278 This list will be checked before `org-speed-commands-default'
1279 when the variable `org-use-speed-commands' is non-nil
1280 and when the cursor is at the beginning of a headline.
1281 The car if each entry is a string with a single letter, which must
1282 be assigned to `self-insert-command' in the global map.
1283 The cdr is either a command to be called interactively, a function
1284 to be called, or a form to be evaluated.
1285 An entry that is just a list with a single string will be interpreted
1286 as a descriptive headline that will be added when listing the speed
1287 commands in the Help buffer using the `?' speed command."
1288 :group 'org-structure
1289 :type '(repeat :value ("k" . ignore)
1290 (choice :value ("k" . ignore)
1291 (list :tag "Descriptive Headline" (string :tag "Headline"))
1292 (cons :tag "Letter and Command"
1293 (string :tag "Command letter")
1294 (choice
1295 (function)
1296 (sexp))))))
1298 (defcustom org-bookmark-names-plist
1299 '(:last-capture "org-capture-last-stored"
1300 :last-refile "org-refile-last-stored"
1301 :last-capture-marker "org-capture-last-stored-marker")
1302 "Names for bookmarks automatically set by some Org commands.
1303 This can provide strings as names for a number of bookmarks Org sets
1304 automatically. The following keys are currently implemented:
1305 :last-capture
1306 :last-capture-marker
1307 :last-refile
1308 When a key does not show up in the property list, the corresponding bookmark
1309 is not set."
1310 :group 'org-structure
1311 :type 'plist)
1313 (defgroup org-cycle nil
1314 "Options concerning visibility cycling in Org-mode."
1315 :tag "Org Cycle"
1316 :group 'org-structure)
1318 (defcustom org-cycle-skip-children-state-if-no-children t
1319 "Non-nil means skip CHILDREN state in entries that don't have any."
1320 :group 'org-cycle
1321 :type 'boolean)
1323 (defcustom org-cycle-max-level nil
1324 "Maximum level which should still be subject to visibility cycling.
1325 Levels higher than this will, for cycling, be treated as text, not a headline.
1326 When `org-odd-levels-only' is set, a value of N in this variable actually
1327 means 2N-1 stars as the limiting headline.
1328 When nil, cycle all levels.
1329 Note that the limiting level of cycling is also influenced by
1330 `org-inlinetask-min-level'. When `org-cycle-max-level' is not set but
1331 `org-inlinetask-min-level' is, cycling will be limited to levels one less
1332 than its value."
1333 :group 'org-cycle
1334 :type '(choice
1335 (const :tag "No limit" nil)
1336 (integer :tag "Maximum level")))
1338 (defcustom org-hide-block-startup nil
1339 "Non-nil means entering Org-mode will fold all blocks.
1340 This can also be set in on a per-file basis with
1342 #+STARTUP: hideblocks
1343 #+STARTUP: showblocks"
1344 :group 'org-startup
1345 :group 'org-cycle
1346 :type 'boolean)
1348 (defcustom org-cycle-global-at-bob nil
1349 "Cycle globally if cursor is at beginning of buffer and not at a headline.
1350 This makes it possible to do global cycling without having to use S-TAB or
1351 \\[universal-argument] TAB. For this special case to work, the first line
1352 of the buffer must not be a headline -- it may be empty or some other text.
1353 When used in this way, `org-cycle-hook' is disabled temporarily to make
1354 sure the cursor stays at the beginning of the buffer. When this option is
1355 nil, don't do anything special at the beginning of the buffer."
1356 :group 'org-cycle
1357 :type 'boolean)
1359 (defcustom org-cycle-level-after-item/entry-creation t
1360 "Non-nil means cycle entry level or item indentation in new empty entries.
1362 When the cursor is at the end of an empty headline, i.e., with only stars
1363 and maybe a TODO keyword, TAB will then switch the entry to become a child,
1364 and then all possible ancestor states, before returning to the original state.
1365 This makes data entry extremely fast: M-RET to create a new headline,
1366 on TAB to make it a child, two or more tabs to make it a (grand-)uncle.
1368 When the cursor is at the end of an empty plain list item, one TAB will
1369 make it a subitem, two or more tabs will back up to make this an item
1370 higher up in the item hierarchy."
1371 :group 'org-cycle
1372 :type 'boolean)
1374 (defcustom org-cycle-emulate-tab t
1375 "Where should `org-cycle' emulate TAB.
1376 nil Never
1377 white Only in completely white lines
1378 whitestart Only at the beginning of lines, before the first non-white char
1379 t Everywhere except in headlines
1380 exc-hl-bol Everywhere except at the start of a headline
1381 If TAB is used in a place where it does not emulate TAB, the current subtree
1382 visibility is cycled."
1383 :group 'org-cycle
1384 :type '(choice (const :tag "Never" nil)
1385 (const :tag "Only in completely white lines" white)
1386 (const :tag "Before first char in a line" whitestart)
1387 (const :tag "Everywhere except in headlines" t)
1388 (const :tag "Everywhere except at bol in headlines" exc-hl-bol)))
1390 (defcustom org-cycle-separator-lines 2
1391 "Number of empty lines needed to keep an empty line between collapsed trees.
1392 If you leave an empty line between the end of a subtree and the following
1393 headline, this empty line is hidden when the subtree is folded.
1394 Org-mode will leave (exactly) one empty line visible if the number of
1395 empty lines is equal or larger to the number given in this variable.
1396 So the default 2 means at least 2 empty lines after the end of a subtree
1397 are needed to produce free space between a collapsed subtree and the
1398 following headline.
1400 If the number is negative, and the number of empty lines is at least -N,
1401 all empty lines are shown.
1403 Special case: when 0, never leave empty lines in collapsed view."
1404 :group 'org-cycle
1405 :type 'integer)
1406 (put 'org-cycle-separator-lines 'safe-local-variable 'integerp)
1408 (defcustom org-pre-cycle-hook nil
1409 "Hook that is run before visibility cycling is happening.
1410 The function(s) in this hook must accept a single argument which indicates
1411 the new state that will be set right after running this hook. The
1412 argument is a symbol. Before a global state change, it can have the values
1413 `overview', `content', or `all'. Before a local state change, it can have
1414 the values `folded', `children', or `subtree'."
1415 :group 'org-cycle
1416 :type 'hook)
1418 (defcustom org-cycle-hook '(org-cycle-hide-archived-subtrees
1419 org-cycle-hide-drawers
1420 org-cycle-show-empty-lines
1421 org-optimize-window-after-visibility-change)
1422 "Hook that is run after `org-cycle' has changed the buffer visibility.
1423 The function(s) in this hook must accept a single argument which indicates
1424 the new state that was set by the most recent `org-cycle' command. The
1425 argument is a symbol. After a global state change, it can have the values
1426 `overview', `contents', or `all'. After a local state change, it can have
1427 the values `folded', `children', or `subtree'."
1428 :group 'org-cycle
1429 :type 'hook
1430 :version "25.1"
1431 :package-version '(Org . "8.3"))
1433 (defgroup org-edit-structure nil
1434 "Options concerning structure editing in Org-mode."
1435 :tag "Org Edit Structure"
1436 :group 'org-structure)
1438 (defcustom org-odd-levels-only nil
1439 "Non-nil means skip even levels and only use odd levels for the outline.
1440 This has the effect that two stars are being added/taken away in
1441 promotion/demotion commands. It also influences how levels are
1442 handled by the exporters.
1443 Changing it requires restart of `font-lock-mode' to become effective
1444 for fontification also in regions already fontified.
1445 You may also set this on a per-file basis by adding one of the following
1446 lines to the buffer:
1448 #+STARTUP: odd
1449 #+STARTUP: oddeven"
1450 :group 'org-edit-structure
1451 :group 'org-appearance
1452 :type 'boolean)
1454 (defcustom org-adapt-indentation t
1455 "Non-nil means adapt indentation to outline node level.
1457 When this variable is set, Org assumes that you write outlines by
1458 indenting text in each node to align with the headline (after the
1459 stars). The following issues are influenced by this variable:
1461 - The indentation is increased by one space in a demotion
1462 command, and decreased by one in a promotion command. However,
1463 in the latter case, if shifting some line in the entry body
1464 would alter document structure (e.g., insert a new headline),
1465 indentation is not changed at all.
1467 - Property drawers and planning information is inserted indented
1468 when this variable is set. When nil, they will not be indented.
1470 - TAB indents a line relative to current level. The lines below
1471 a headline will be indented when this variable is set.
1473 Note that this is all about true indentation, by adding and
1474 removing space characters. See also `org-indent.el' which does
1475 level-dependent indentation in a virtual way, i.e. at display
1476 time in Emacs."
1477 :group 'org-edit-structure
1478 :type 'boolean)
1480 (defcustom org-special-ctrl-a/e nil
1481 "Non-nil means `C-a' and `C-e' behave specially in headlines and items.
1483 When t, `C-a' will bring back the cursor to the beginning of the
1484 headline text, i.e. after the stars and after a possible TODO
1485 keyword. In an item, this will be the position after bullet and
1486 check-box, if any. When the cursor is already at that position,
1487 another `C-a' will bring it to the beginning of the line.
1489 `C-e' will jump to the end of the headline, ignoring the presence
1490 of tags in the headline. A second `C-e' will then jump to the
1491 true end of the line, after any tags. This also means that, when
1492 this variable is non-nil, `C-e' also will never jump beyond the
1493 end of the heading of a folded section, i.e. not after the
1494 ellipses.
1496 When set to the symbol `reversed', the first `C-a' or `C-e' works
1497 normally, going to the true line boundary first. Only a directly
1498 following, identical keypress will bring the cursor to the
1499 special positions.
1501 This may also be a cons cell where the behavior for `C-a' and
1502 `C-e' is set separately."
1503 :group 'org-edit-structure
1504 :type '(choice
1505 (const :tag "off" nil)
1506 (const :tag "on: after stars/bullet and before tags first" t)
1507 (const :tag "reversed: true line boundary first" reversed)
1508 (cons :tag "Set C-a and C-e separately"
1509 (choice :tag "Special C-a"
1510 (const :tag "off" nil)
1511 (const :tag "on: after stars/bullet first" t)
1512 (const :tag "reversed: before stars/bullet first" reversed))
1513 (choice :tag "Special C-e"
1514 (const :tag "off" nil)
1515 (const :tag "on: before tags first" t)
1516 (const :tag "reversed: after tags first" reversed)))))
1517 (org-defvaralias 'org-special-ctrl-a 'org-special-ctrl-a/e)
1519 (defcustom org-special-ctrl-k nil
1520 "Non-nil means `C-k' will behave specially in headlines.
1521 When nil, `C-k' will call the default `kill-line' command.
1522 When t, the following will happen while the cursor is in the headline:
1524 - When the cursor is at the beginning of a headline, kill the entire
1525 line and possible the folded subtree below the line.
1526 - When in the middle of the headline text, kill the headline up to the tags.
1527 - When after the headline text, kill the tags."
1528 :group 'org-edit-structure
1529 :type 'boolean)
1531 (defcustom org-ctrl-k-protect-subtree nil
1532 "Non-nil means, do not delete a hidden subtree with C-k.
1533 When set to the symbol `error', simply throw an error when C-k is
1534 used to kill (part-of) a headline that has hidden text behind it.
1535 Any other non-nil value will result in a query to the user, if it is
1536 OK to kill that hidden subtree. When nil, kill without remorse."
1537 :group 'org-edit-structure
1538 :version "24.1"
1539 :type '(choice
1540 (const :tag "Do not protect hidden subtrees" nil)
1541 (const :tag "Protect hidden subtrees with a security query" t)
1542 (const :tag "Never kill a hidden subtree with C-k" error)))
1544 (defcustom org-special-ctrl-o t
1545 "Non-nil means, make `C-o' insert a row in tables."
1546 :group 'org-edit-structure
1547 :type 'boolean)
1549 (defcustom org-catch-invisible-edits nil
1550 "Check if in invisible region before inserting or deleting a character.
1551 Valid values are:
1553 nil Do not check, so just do invisible edits.
1554 error Throw an error and do nothing.
1555 show Make point visible, and do the requested edit.
1556 show-and-error Make point visible, then throw an error and abort the edit.
1557 smart Make point visible, and do insertion/deletion if it is
1558 adjacent to visible text and the change feels predictable.
1559 Never delete a previously invisible character or add in the
1560 middle or right after an invisible region. Basically, this
1561 allows insertion and backward-delete right before ellipses.
1562 FIXME: maybe in this case we should not even show?"
1563 :group 'org-edit-structure
1564 :version "24.1"
1565 :type '(choice
1566 (const :tag "Do not check" nil)
1567 (const :tag "Throw error when trying to edit" error)
1568 (const :tag "Unhide, but do not do the edit" show-and-error)
1569 (const :tag "Show invisible part and do the edit" show)
1570 (const :tag "Be smart and do the right thing" smart)))
1572 (defcustom org-yank-folded-subtrees t
1573 "Non-nil means when yanking subtrees, fold them.
1574 If the kill is a single subtree, or a sequence of subtrees, i.e. if
1575 it starts with a heading and all other headings in it are either children
1576 or siblings, then fold all the subtrees. However, do this only if no
1577 text after the yank would be swallowed into a folded tree by this action."
1578 :group 'org-edit-structure
1579 :type 'boolean)
1581 (defcustom org-yank-adjusted-subtrees nil
1582 "Non-nil means when yanking subtrees, adjust the level.
1583 With this setting, `org-paste-subtree' is used to insert the subtree, see
1584 this function for details."
1585 :group 'org-edit-structure
1586 :type 'boolean)
1588 (defcustom org-M-RET-may-split-line '((default . t))
1589 "Non-nil means M-RET will split the line at the cursor position.
1590 When nil, it will go to the end of the line before making a
1591 new line.
1592 You may also set this option in a different way for different
1593 contexts. Valid contexts are:
1595 headline when creating a new headline
1596 item when creating a new item
1597 table in a table field
1598 default the value to be used for all contexts not explicitly
1599 customized"
1600 :group 'org-structure
1601 :group 'org-table
1602 :type '(choice
1603 (const :tag "Always" t)
1604 (const :tag "Never" nil)
1605 (repeat :greedy t :tag "Individual contexts"
1606 (cons
1607 (choice :tag "Context"
1608 (const headline)
1609 (const item)
1610 (const table)
1611 (const default))
1612 (boolean)))))
1615 (defcustom org-insert-heading-respect-content nil
1616 "Non-nil means insert new headings after the current subtree.
1617 When nil, the new heading is created directly after the current line.
1618 The commands \\[org-insert-heading-respect-content] and \\[org-insert-todo-heading-respect-content] turn
1619 this variable on for the duration of the command."
1620 :group 'org-structure
1621 :type 'boolean)
1623 (defcustom org-blank-before-new-entry '((heading . auto)
1624 (plain-list-item . auto))
1625 "Should `org-insert-heading' leave a blank line before new heading/item?
1626 The value is an alist, with `heading' and `plain-list-item' as CAR,
1627 and a boolean flag as CDR. The cdr may also be the symbol `auto', in
1628 which case Org will look at the surrounding headings/items and try to
1629 make an intelligent decision whether to insert a blank line or not.
1631 For plain lists, if `org-list-empty-line-terminates-plain-lists' is set,
1632 the setting here is ignored and no empty line is inserted to avoid breaking
1633 the list structure."
1634 :group 'org-edit-structure
1635 :type '(list
1636 (cons (const heading)
1637 (choice (const :tag "Never" nil)
1638 (const :tag "Always" t)
1639 (const :tag "Auto" auto)))
1640 (cons (const plain-list-item)
1641 (choice (const :tag "Never" nil)
1642 (const :tag "Always" t)
1643 (const :tag "Auto" auto)))))
1645 (defcustom org-insert-heading-hook nil
1646 "Hook being run after inserting a new heading."
1647 :group 'org-edit-structure
1648 :type 'hook)
1650 (defcustom org-enable-fixed-width-editor t
1651 "Non-nil means lines starting with \":\" are treated as fixed-width.
1652 This currently only means they are never auto-wrapped.
1653 When nil, such lines will be treated like ordinary lines."
1654 :group 'org-edit-structure
1655 :type 'boolean)
1657 (defcustom org-goto-auto-isearch t
1658 "Non-nil means typing characters in `org-goto' starts incremental search.
1659 When nil, you can use these keybindings to navigate the buffer:
1661 q Quit the org-goto interface
1662 n Go to the next visible heading
1663 p Go to the previous visible heading
1664 f Go one heading forward on same level
1665 b Go one heading backward on same level
1666 u Go one heading up"
1667 :group 'org-edit-structure
1668 :type 'boolean)
1670 (defgroup org-sparse-trees nil
1671 "Options concerning sparse trees in Org-mode."
1672 :tag "Org Sparse Trees"
1673 :group 'org-structure)
1675 (defcustom org-highlight-sparse-tree-matches t
1676 "Non-nil means highlight all matches that define a sparse tree.
1677 The highlights will automatically disappear the next time the buffer is
1678 changed by an edit command."
1679 :group 'org-sparse-trees
1680 :type 'boolean)
1682 (defcustom org-remove-highlights-with-change t
1683 "Non-nil means any change to the buffer will remove temporary highlights.
1684 \\<org-mode-map>\
1685 Such highlights are created by `org-occur' and `org-clock-display'.
1686 When nil, `\\[org-ctrl-c-ctrl-c]' needs to be used \
1687 to get rid of the highlights.
1688 The highlights created by `org-toggle-latex-fragment' always need
1689 `\\[org-toggle-latex-fragment]' to be removed."
1690 :group 'org-sparse-trees
1691 :group 'org-time
1692 :type 'boolean)
1695 (defcustom org-occur-hook '(org-first-headline-recenter)
1696 "Hook that is run after `org-occur' has constructed a sparse tree.
1697 This can be used to recenter the window to show as much of the structure
1698 as possible."
1699 :group 'org-sparse-trees
1700 :type 'hook)
1702 (defgroup org-imenu-and-speedbar nil
1703 "Options concerning imenu and speedbar in Org-mode."
1704 :tag "Org Imenu and Speedbar"
1705 :group 'org-structure)
1707 (defcustom org-imenu-depth 2
1708 "The maximum level for Imenu access to Org-mode headlines.
1709 This also applied for speedbar access."
1710 :group 'org-imenu-and-speedbar
1711 :type 'integer)
1713 (defgroup org-table nil
1714 "Options concerning tables in Org-mode."
1715 :tag "Org Table"
1716 :group 'org)
1718 (defcustom org-enable-table-editor 'optimized
1719 "Non-nil means lines starting with \"|\" are handled by the table editor.
1720 When nil, such lines will be treated like ordinary lines.
1722 When equal to the symbol `optimized', the table editor will be optimized to
1723 do the following:
1724 - Automatic overwrite mode in front of whitespace in table fields.
1725 This makes the structure of the table stay in tact as long as the edited
1726 field does not exceed the column width.
1727 - Minimize the number of realigns. Normally, the table is aligned each time
1728 TAB or RET are pressed to move to another field. With optimization this
1729 happens only if changes to a field might have changed the column width.
1730 Optimization requires replacing the functions `self-insert-command',
1731 `delete-char', and `backward-delete-char' in Org-mode buffers, with a
1732 slight (in fact: unnoticeable) speed impact for normal typing. Org-mode is
1733 very good at guessing when a re-align will be necessary, but you can always
1734 force one with \\[org-ctrl-c-ctrl-c].
1736 If you would like to use the optimized version in Org-mode, but the
1737 un-optimized version in OrgTbl-mode, see the variable `orgtbl-optimized'.
1739 This variable can be used to turn on and off the table editor during a session,
1740 but in order to toggle optimization, a restart is required.
1742 See also the variable `org-table-auto-blank-field'."
1743 :group 'org-table
1744 :type '(choice
1745 (const :tag "off" nil)
1746 (const :tag "on" t)
1747 (const :tag "on, optimized" optimized)))
1749 (defcustom org-self-insert-cluster-for-undo (or (featurep 'xemacs)
1750 (version<= emacs-version "24.1"))
1751 "Non-nil means cluster self-insert commands for undo when possible.
1752 If this is set, then, like in the Emacs command loop, 20 consecutive
1753 characters will be undone together.
1754 This is configurable, because there is some impact on typing performance."
1755 :group 'org-table
1756 :type 'boolean)
1758 (defcustom org-table-tab-recognizes-table.el t
1759 "Non-nil means TAB will automatically notice a table.el table.
1760 When it sees such a table, it moves point into it and - if necessary -
1761 calls `table-recognize-table'."
1762 :group 'org-table-editing
1763 :type 'boolean)
1765 (defgroup org-link nil
1766 "Options concerning links in Org-mode."
1767 :tag "Org Link"
1768 :group 'org)
1770 (defvar org-link-abbrev-alist-local nil
1771 "Buffer-local version of `org-link-abbrev-alist', which see.
1772 The value of this is taken from the #+LINK lines.")
1773 (make-variable-buffer-local 'org-link-abbrev-alist-local)
1775 (defcustom org-link-abbrev-alist nil
1776 "Alist of link abbreviations.
1777 The car of each element is a string, to be replaced at the start of a link.
1778 The cdrs are replacement values, like (\"linkkey\" . REPLACE). Abbreviated
1779 links in Org-mode buffers can have an optional tag after a double colon, e.g.
1781 [[linkkey:tag][description]]
1783 The `linkkey' must be a word word, starting with a letter, followed
1784 by letters, numbers, `-' or `_'.
1786 If REPLACE is a string, the tag will simply be appended to create the link.
1787 If the string contains \"%s\", the tag will be inserted there. If the string
1788 contains \"%h\", it will cause a url-encoded version of the tag to be inserted
1789 at that point (see the function `url-hexify-string'). If the string contains
1790 the specifier \"%(my-function)\", then the custom function `my-function' will
1791 be invoked: this function takes the tag as its only argument and must return
1792 a string.
1794 REPLACE may also be a function that will be called with the tag as the
1795 only argument to create the link, which should be returned as a string.
1797 See the manual for examples."
1798 :group 'org-link
1799 :type '(repeat
1800 (cons
1801 (string :tag "Protocol")
1802 (choice
1803 (string :tag "Format")
1804 (function)))))
1806 (defcustom org-descriptive-links t
1807 "Non-nil means Org will display descriptive links.
1808 E.g. [[http://orgmode.org][Org website]] will be displayed as
1809 \"Org Website\", hiding the link itself and just displaying its
1810 description. When set to nil, Org will display the full links
1811 literally.
1813 You can interactively set the value of this variable by calling
1814 `org-toggle-link-display' or from the menu Org>Hyperlinks menu."
1815 :group 'org-link
1816 :type 'boolean)
1818 (defcustom org-link-file-path-type 'adaptive
1819 "How the path name in file links should be stored.
1820 Valid values are:
1822 relative Relative to the current directory, i.e. the directory of the file
1823 into which the link is being inserted.
1824 absolute Absolute path, if possible with ~ for home directory.
1825 noabbrev Absolute path, no abbreviation of home directory.
1826 adaptive Use relative path for files in the current directory and sub-
1827 directories of it. For other files, use an absolute path."
1828 :group 'org-link
1829 :type '(choice
1830 (const relative)
1831 (const absolute)
1832 (const noabbrev)
1833 (const adaptive)))
1835 (defvaralias 'org-activate-links 'org-highlight-links)
1836 (defcustom org-highlight-links '(bracket angle plain radio tag date footnote)
1837 "Types of links that should be highlighted in Org-mode files.
1839 This is a list of symbols, each one of them leading to the
1840 highlighting of a certain link type.
1842 You can still open links that are not highlighted.
1844 In principle, it does not hurt to turn on highlighting for all
1845 link types. There may be a small gain when turning off unused
1846 link types. The types are:
1848 bracket The recommended [[link][description]] or [[link]] links with hiding.
1849 angle Links in angular brackets that may contain whitespace like
1850 <bbdb:Carsten Dominik>.
1851 plain Plain links in normal text, no whitespace, like http://google.com.
1852 radio Text that is matched by a radio target, see manual for details.
1853 tag Tag settings in a headline (link to tag search).
1854 date Time stamps (link to calendar).
1855 footnote Footnote labels.
1857 If you set this variable during an Emacs session, use `org-mode-restart'
1858 in the Org buffer so that the change takes effect."
1859 :group 'org-link
1860 :group 'org-appearance
1861 :type '(set :greedy t
1862 (const :tag "Double bracket links" bracket)
1863 (const :tag "Angular bracket links" angle)
1864 (const :tag "Plain text links" plain)
1865 (const :tag "Radio target matches" radio)
1866 (const :tag "Tags" tag)
1867 (const :tag "Timestamps" date)
1868 (const :tag "Footnotes" footnote)))
1870 (defcustom org-make-link-description-function nil
1871 "Function to use for generating link descriptions from links.
1872 When nil, the link location will be used. This function must take
1873 two parameters: the first one is the link, the second one is the
1874 description generated by `org-insert-link'. The function should
1875 return the description to use."
1876 :group 'org-link
1877 :type '(choice (const nil) (function)))
1879 (defgroup org-link-store nil
1880 "Options concerning storing links in Org-mode."
1881 :tag "Org Store Link"
1882 :group 'org-link)
1884 (defcustom org-url-hexify-p t
1885 "When non-nil, hexify URL when creating a link."
1886 :type 'boolean
1887 :version "24.3"
1888 :group 'org-link-store)
1890 (defcustom org-email-link-description-format "Email %c: %.30s"
1891 "Format of the description part of a link to an email or usenet message.
1892 The following %-escapes will be replaced by corresponding information:
1894 %F full \"From\" field
1895 %f name, taken from \"From\" field, address if no name
1896 %T full \"To\" field
1897 %t first name in \"To\" field, address if no name
1898 %c correspondent. Usually \"from NAME\", but if you sent it yourself, it
1899 will be \"to NAME\". See also the variable `org-from-is-user-regexp'.
1900 %s subject
1901 %d date
1902 %m message-id.
1904 You may use normal field width specification between the % and the letter.
1905 This is for example useful to limit the length of the subject.
1907 Examples: \"%f on: %.30s\", \"Email from %f\", \"Email %c\""
1908 :group 'org-link-store
1909 :type 'string)
1911 (defcustom org-from-is-user-regexp
1912 (let (r1 r2)
1913 (when (and user-mail-address (not (string= user-mail-address "")))
1914 (setq r1 (concat "\\<" (regexp-quote user-mail-address) "\\>")))
1915 (when (and user-full-name (not (string= user-full-name "")))
1916 (setq r2 (concat "\\<" (regexp-quote user-full-name) "\\>")))
1917 (if (and r1 r2) (concat r1 "\\|" r2) (or r1 r2)))
1918 "Regexp matched against the \"From:\" header of an email or usenet message.
1919 It should match if the message is from the user him/herself."
1920 :group 'org-link-store
1921 :type 'regexp)
1923 (defcustom org-context-in-file-links t
1924 "Non-nil means file links from `org-store-link' contain context.
1925 A search string will be added to the file name with :: as separator and
1926 used to find the context when the link is activated by the command
1927 `org-open-at-point'. When this option is t, the entire active region
1928 will be placed in the search string of the file link. If set to a
1929 positive integer, only the first n lines of context will be stored.
1931 Using a prefix arg to the command \\[org-store-link] (`org-store-link')
1932 negates this setting for the duration of the command."
1933 :group 'org-link-store
1934 :type '(choice boolean integer))
1936 (defcustom org-keep-stored-link-after-insertion nil
1937 "Non-nil means keep link in list for entire session.
1939 The command `org-store-link' adds a link pointing to the current
1940 location to an internal list. These links accumulate during a session.
1941 The command `org-insert-link' can be used to insert links into any
1942 Org-mode file (offering completion for all stored links). When this
1943 option is nil, every link which has been inserted once using \\[org-insert-link]
1944 will be removed from the list, to make completing the unused links
1945 more efficient."
1946 :group 'org-link-store
1947 :type 'boolean)
1949 (defgroup org-link-follow nil
1950 "Options concerning following links in Org-mode."
1951 :tag "Org Follow Link"
1952 :group 'org-link)
1954 (defcustom org-link-translation-function nil
1955 "Function to translate links with different syntax to Org syntax.
1956 This can be used to translate links created for example by the Planner
1957 or emacs-wiki packages to Org syntax.
1958 The function must accept two parameters, a TYPE containing the link
1959 protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
1960 which is everything after the link protocol. It should return a cons
1961 with possibly modified values of type and path.
1962 Org contains a function for this, so if you set this variable to
1963 `org-translate-link-from-planner', you should be able follow many
1964 links created by planner."
1965 :group 'org-link-follow
1966 :type '(choice (const nil) (function)))
1968 (defcustom org-follow-link-hook nil
1969 "Hook that is run after a link has been followed."
1970 :group 'org-link-follow
1971 :type 'hook)
1973 (defcustom org-tab-follows-link nil
1974 "Non-nil means on links TAB will follow the link.
1975 Needs to be set before org.el is loaded.
1976 This really should not be used, it does not make sense, and the
1977 implementation is bad."
1978 :group 'org-link-follow
1979 :type 'boolean)
1981 (defcustom org-return-follows-link nil
1982 "Non-nil means on links RET will follow the link.
1983 In tables, the special behavior of RET has precedence."
1984 :group 'org-link-follow
1985 :type 'boolean)
1987 (defcustom org-mouse-1-follows-link
1988 (if (boundp 'mouse-1-click-follows-link) mouse-1-click-follows-link t)
1989 "Non-nil means mouse-1 on a link will follow the link.
1990 A longer mouse click will still set point. Does not work on XEmacs.
1991 Needs to be set before org.el is loaded."
1992 :group 'org-link-follow
1993 :version "24.4"
1994 :package-version '(Org . "8.3")
1995 :type '(choice
1996 (const :tag "A double click follows the link" double)
1997 (const :tag "Unconditionally follow the link with mouse-1" t)
1998 (integer :tag "mouse-1 click does not follow the link if longer than N ms" 450)))
2000 (defcustom org-mark-ring-length 4
2001 "Number of different positions to be recorded in the ring.
2002 Changing this requires a restart of Emacs to work correctly."
2003 :group 'org-link-follow
2004 :type 'integer)
2006 (defcustom org-link-search-must-match-exact-headline 'query-to-create
2007 "Non-nil means internal links in Org files must exactly match a headline.
2008 When nil, the link search tries to match a phrase with all words
2009 in the search text."
2010 :group 'org-link-follow
2011 :version "24.1"
2012 :type '(choice
2013 (const :tag "Use fuzzy text search" nil)
2014 (const :tag "Match only exact headline" t)
2015 (const :tag "Match exact headline or query to create it"
2016 query-to-create)))
2018 (defcustom org-link-frame-setup
2019 '((vm . vm-visit-folder-other-frame)
2020 (vm-imap . vm-visit-imap-folder-other-frame)
2021 (gnus . org-gnus-no-new-news)
2022 (file . find-file-other-window)
2023 (wl . wl-other-frame))
2024 "Setup the frame configuration for following links.
2025 When following a link with Emacs, it may often be useful to display
2026 this link in another window or frame. This variable can be used to
2027 set this up for the different types of links.
2028 For VM, use any of
2029 `vm-visit-folder'
2030 `vm-visit-folder-other-window'
2031 `vm-visit-folder-other-frame'
2032 For Gnus, use any of
2033 `gnus'
2034 `gnus-other-frame'
2035 `org-gnus-no-new-news'
2036 For FILE, use any of
2037 `find-file'
2038 `find-file-other-window'
2039 `find-file-other-frame'
2040 For Wanderlust use any of
2041 `wl'
2042 `wl-other-frame'
2043 For the calendar, use the variable `calendar-setup'.
2044 For BBDB, it is currently only possible to display the matches in
2045 another window."
2046 :group 'org-link-follow
2047 :type '(list
2048 (cons (const vm)
2049 (choice
2050 (const vm-visit-folder)
2051 (const vm-visit-folder-other-window)
2052 (const vm-visit-folder-other-frame)))
2053 (cons (const vm-imap)
2054 (choice
2055 (const vm-visit-imap-folder)
2056 (const vm-visit-imap-folder-other-window)
2057 (const vm-visit-imap-folder-other-frame)))
2058 (cons (const gnus)
2059 (choice
2060 (const gnus)
2061 (const gnus-other-frame)
2062 (const org-gnus-no-new-news)))
2063 (cons (const file)
2064 (choice
2065 (const find-file)
2066 (const find-file-other-window)
2067 (const find-file-other-frame)))
2068 (cons (const wl)
2069 (choice
2070 (const wl)
2071 (const wl-other-frame)))))
2073 (defcustom org-display-internal-link-with-indirect-buffer nil
2074 "Non-nil means use indirect buffer to display infile links.
2075 Activating internal links (from one location in a file to another location
2076 in the same file) normally just jumps to the location. When the link is
2077 activated with a \\[universal-argument] prefix (or with mouse-3), the link \
2078 is displayed in
2079 another window. When this option is set, the other window actually displays
2080 an indirect buffer clone of the current buffer, to avoid any visibility
2081 changes to the current buffer."
2082 :group 'org-link-follow
2083 :type 'boolean)
2085 (defcustom org-open-non-existing-files nil
2086 "Non-nil means `org-open-file' will open non-existing files.
2087 When nil, an error will be generated.
2088 This variable applies only to external applications because they
2089 might choke on non-existing files. If the link is to a file that
2090 will be opened in Emacs, the variable is ignored."
2091 :group 'org-link-follow
2092 :type 'boolean)
2094 (defcustom org-open-directory-means-index-dot-org nil
2095 "Non-nil means a link to a directory really means to index.org.
2096 When nil, following a directory link will run dired or open a finder/explorer
2097 window on that directory."
2098 :group 'org-link-follow
2099 :type 'boolean)
2101 (defcustom org-confirm-shell-link-function 'yes-or-no-p
2102 "Non-nil means ask for confirmation before executing shell links.
2103 Shell links can be dangerous: just think about a link
2105 [[shell:rm -rf ~/*][Google Search]]
2107 This link would show up in your Org-mode document as \"Google Search\",
2108 but really it would remove your entire home directory.
2109 Therefore we advise against setting this variable to nil.
2110 Just change it to `y-or-n-p' if you want to confirm with a
2111 single keystroke rather than having to type \"yes\"."
2112 :group 'org-link-follow
2113 :type '(choice
2114 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2115 (const :tag "with y-or-n (faster)" y-or-n-p)
2116 (const :tag "no confirmation (dangerous)" nil)))
2117 (put 'org-confirm-shell-link-function
2118 'safe-local-variable
2119 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2121 (defcustom org-confirm-shell-link-not-regexp ""
2122 "A regexp to skip confirmation for shell links."
2123 :group 'org-link-follow
2124 :version "24.1"
2125 :type 'regexp)
2127 (defcustom org-confirm-elisp-link-function 'yes-or-no-p
2128 "Non-nil means ask for confirmation before executing Emacs Lisp links.
2129 Elisp links can be dangerous: just think about a link
2131 [[elisp:(shell-command \"rm -rf ~/*\")][Google Search]]
2133 This link would show up in your Org-mode document as \"Google Search\",
2134 but really it would remove your entire home directory.
2135 Therefore we advise against setting this variable to nil.
2136 Just change it to `y-or-n-p' if you want to confirm with a
2137 single keystroke rather than having to type \"yes\"."
2138 :group 'org-link-follow
2139 :type '(choice
2140 (const :tag "with yes-or-no (safer)" yes-or-no-p)
2141 (const :tag "with y-or-n (faster)" y-or-n-p)
2142 (const :tag "no confirmation (dangerous)" nil)))
2143 (put 'org-confirm-shell-link-function
2144 'safe-local-variable
2145 (lambda (x) (member x '(yes-or-no-p y-or-n-p))))
2147 (defcustom org-confirm-elisp-link-not-regexp ""
2148 "A regexp to skip confirmation for Elisp links."
2149 :group 'org-link-follow
2150 :version "24.1"
2151 :type 'regexp)
2153 (defconst org-file-apps-defaults-gnu
2154 '((remote . emacs)
2155 (system . mailcap)
2156 (t . mailcap))
2157 "Default file applications on a UNIX or GNU/Linux system.
2158 See `org-file-apps'.")
2160 (defconst org-file-apps-defaults-macosx
2161 '((remote . emacs)
2162 (t . "open %s")
2163 (system . "open %s")
2164 ("ps.gz" . "gv %s")
2165 ("eps.gz" . "gv %s")
2166 ("dvi" . "xdvi %s")
2167 ("fig" . "xfig %s"))
2168 "Default file applications on a MacOS X system.
2169 The system \"open\" is known as a default, but we use X11 applications
2170 for some files for which the OS does not have a good default.
2171 See `org-file-apps'.")
2173 (defconst org-file-apps-defaults-windowsnt
2174 (list
2175 '(remote . emacs)
2176 (cons t
2177 (list (if (featurep 'xemacs)
2178 'mswindows-shell-execute
2179 'w32-shell-execute)
2180 "open" 'file))
2181 (cons 'system
2182 (list (if (featurep 'xemacs)
2183 'mswindows-shell-execute
2184 'w32-shell-execute)
2185 "open" 'file)))
2186 "Default file applications on a Windows NT system.
2187 The system \"open\" is used for most files.
2188 See `org-file-apps'.")
2190 (defcustom org-file-apps
2191 '((auto-mode . emacs)
2192 ("\\.mm\\'" . default)
2193 ("\\.x?html?\\'" . default)
2194 ("\\.pdf\\'" . default))
2195 "External applications for opening `file:path' items in a document.
2196 Org-mode uses system defaults for different file types, but
2197 you can use this variable to set the application for a given file
2198 extension. The entries in this list are cons cells where the car identifies
2199 files and the cdr the corresponding command. Possible values for the
2200 file identifier are
2201 \"string\" A string as a file identifier can be interpreted in different
2202 ways, depending on its contents:
2204 - Alphanumeric characters only:
2205 Match links with this file extension.
2206 Example: (\"pdf\" . \"evince %s\")
2207 to open PDFs with evince.
2209 - Regular expression: Match links where the
2210 filename matches the regexp. If you want to
2211 use groups here, use shy groups.
2213 Example: (\"\\.x?html\\\\='\" . \"firefox %s\")
2214 (\"\\(?:xhtml\\|html\\)\" . \"firefox %s\")
2215 to open *.html and *.xhtml with firefox.
2217 - Regular expression which contains (non-shy) groups:
2218 Match links where the whole link, including \"::\", and
2219 anything after that, matches the regexp.
2220 In a custom command string, %1, %2, etc. are replaced with
2221 the parts of the link that were matched by the groups.
2222 For backwards compatibility, if a command string is given
2223 that does not use any of the group matches, this case is
2224 handled identically to the second one (i.e. match against
2225 file name only).
2226 In a custom lisp form, you can access the group matches with
2227 (match-string n link).
2229 Example: (\"\\.pdf::\\(\\d+\\)\\\\='\" . \"evince -p %1 %s\")
2230 to open [[file:document.pdf::5]] with evince at page 5.
2232 `directory' Matches a directory
2233 `remote' Matches a remote file, accessible through tramp or efs.
2234 Remote files most likely should be visited through Emacs
2235 because external applications cannot handle such paths.
2236 `auto-mode' Matches files that are matched by any entry in `auto-mode-alist',
2237 so all files Emacs knows how to handle. Using this with
2238 command `emacs' will open most files in Emacs. Beware that this
2239 will also open html files inside Emacs, unless you add
2240 (\"html\" . default) to the list as well.
2241 t Default for files not matched by any of the other options.
2242 `system' The system command to open files, like `open' on Windows
2243 and Mac OS X, and mailcap under GNU/Linux. This is the command
2244 that will be selected if you call `C-c C-o' with a double
2245 \\[universal-argument] \\[universal-argument] prefix.
2247 Possible values for the command are:
2248 `emacs' The file will be visited by the current Emacs process.
2249 `default' Use the default application for this file type, which is the
2250 association for t in the list, most likely in the system-specific
2251 part.
2252 This can be used to overrule an unwanted setting in the
2253 system-specific variable.
2254 `system' Use the system command for opening files, like \"open\".
2255 This command is specified by the entry whose car is `system'.
2256 Most likely, the system-specific version of this variable
2257 does define this command, but you can overrule/replace it
2258 here.
2259 string A command to be executed by a shell; %s will be replaced
2260 by the path to the file.
2261 sexp A Lisp form which will be evaluated. The file path will
2262 be available in the Lisp variable `file'.
2263 For more examples, see the system specific constants
2264 `org-file-apps-defaults-macosx'
2265 `org-file-apps-defaults-windowsnt'
2266 `org-file-apps-defaults-gnu'."
2267 :group 'org-link-follow
2268 :type '(repeat
2269 (cons (choice :value ""
2270 (string :tag "Extension")
2271 (const :tag "System command to open files" system)
2272 (const :tag "Default for unrecognized files" t)
2273 (const :tag "Remote file" remote)
2274 (const :tag "Links to a directory" directory)
2275 (const :tag "Any files that have Emacs modes"
2276 auto-mode))
2277 (choice :value ""
2278 (const :tag "Visit with Emacs" emacs)
2279 (const :tag "Use default" default)
2280 (const :tag "Use the system command" system)
2281 (string :tag "Command")
2282 (sexp :tag "Lisp form")))))
2284 (defcustom org-doi-server-url "http://dx.doi.org/"
2285 "The URL of the DOI server."
2286 :type 'string
2287 :version "24.3"
2288 :group 'org-link-follow)
2290 (defgroup org-refile nil
2291 "Options concerning refiling entries in Org-mode."
2292 :tag "Org Refile"
2293 :group 'org)
2295 (defcustom org-directory "~/org"
2296 "Directory with Org files.
2297 This is just a default location to look for Org files. There is no need
2298 at all to put your files into this directory. It is used in the
2299 following situations:
2301 1. When a capture template specifies a target file that is not an
2302 absolute path. The path will then be interpreted relative to
2303 `org-directory'
2304 2. When the value of variable `org-agenda-files' is a single file, any
2305 relative paths in this file will be taken as relative to
2306 `org-directory'."
2307 :group 'org-refile
2308 :group 'org-capture
2309 :type 'directory)
2311 (defcustom org-default-notes-file (convert-standard-filename "~/.notes")
2312 "Default target for storing notes.
2313 Used as a fall back file for org-capture.el, for templates that
2314 do not specify a target file."
2315 :group 'org-refile
2316 :group 'org-capture
2317 :type 'file)
2319 (defcustom org-goto-interface 'outline
2320 "The default interface to be used for `org-goto'.
2321 Allowed values are:
2322 outline The interface shows an outline of the relevant file
2323 and the correct heading is found by moving through
2324 the outline or by searching with incremental search.
2325 outline-path-completion Headlines in the current buffer are offered via
2326 completion. This is the interface also used by
2327 the refile command."
2328 :group 'org-refile
2329 :type '(choice
2330 (const :tag "Outline" outline)
2331 (const :tag "Outline-path-completion" outline-path-completion)))
2333 (defcustom org-goto-max-level 5
2334 "Maximum target level when running `org-goto' with refile interface."
2335 :group 'org-refile
2336 :type 'integer)
2338 (defcustom org-reverse-note-order nil
2339 "Non-nil means store new notes at the beginning of a file or entry.
2340 When nil, new notes will be filed to the end of a file or entry.
2341 This can also be a list with cons cells of regular expressions that
2342 are matched against file names, and values."
2343 :group 'org-capture
2344 :group 'org-refile
2345 :type '(choice
2346 (const :tag "Reverse always" t)
2347 (const :tag "Reverse never" nil)
2348 (repeat :tag "By file name regexp"
2349 (cons regexp boolean))))
2351 (defcustom org-log-refile nil
2352 "Information to record when a task is refiled.
2354 Possible values are:
2356 nil Don't add anything
2357 time Add a time stamp to the task
2358 note Prompt for a note and add it with template `org-log-note-headings'
2360 This option can also be set with on a per-file-basis with
2362 #+STARTUP: nologrefile
2363 #+STARTUP: logrefile
2364 #+STARTUP: lognoterefile
2366 You can have local logging settings for a subtree by setting the LOGGING
2367 property to one or more of these keywords.
2369 When bulk-refiling from the agenda, the value `note' is forbidden and
2370 will temporarily be changed to `time'."
2371 :group 'org-refile
2372 :group 'org-progress
2373 :version "24.1"
2374 :type '(choice
2375 (const :tag "No logging" nil)
2376 (const :tag "Record timestamp" time)
2377 (const :tag "Record timestamp with note." note)))
2379 (defcustom org-refile-targets nil
2380 "Targets for refiling entries with \\[org-refile].
2381 This is a list of cons cells. Each cell contains:
2382 - a specification of the files to be considered, either a list of files,
2383 or a symbol whose function or variable value will be used to retrieve
2384 a file name or a list of file names. If you use `org-agenda-files' for
2385 that, all agenda files will be scanned for targets. Nil means consider
2386 headings in the current buffer.
2387 - A specification of how to find candidate refile targets. This may be
2388 any of:
2389 - a cons cell (:tag . \"TAG\") to identify refile targets by a tag.
2390 This tag has to be present in all target headlines, inheritance will
2391 not be considered.
2392 - a cons cell (:todo . \"KEYWORD\") to identify refile targets by
2393 todo keyword.
2394 - a cons cell (:regexp . \"REGEXP\") with a regular expression matching
2395 headlines that are refiling targets.
2396 - a cons cell (:level . N). Any headline of level N is considered a target.
2397 Note that, when `org-odd-levels-only' is set, level corresponds to
2398 order in hierarchy, not to the number of stars.
2399 - a cons cell (:maxlevel . N). Any headline with level <= N is a target.
2400 Note that, when `org-odd-levels-only' is set, level corresponds to
2401 order in hierarchy, not to the number of stars.
2403 Each element of this list generates a set of possible targets.
2404 The union of these sets is presented (with completion) to
2405 the user by `org-refile'.
2407 You can set the variable `org-refile-target-verify-function' to a function
2408 to verify each headline found by the simple criteria above.
2410 When this variable is nil, all top-level headlines in the current buffer
2411 are used, equivalent to the value `((nil . (:level . 1))'."
2412 :group 'org-refile
2413 :type '(repeat
2414 (cons
2415 (choice :value org-agenda-files
2416 (const :tag "All agenda files" org-agenda-files)
2417 (const :tag "Current buffer" nil)
2418 (function) (variable) (file))
2419 (choice :tag "Identify target headline by"
2420 (cons :tag "Specific tag" (const :value :tag) (string))
2421 (cons :tag "TODO keyword" (const :value :todo) (string))
2422 (cons :tag "Regular expression" (const :value :regexp) (regexp))
2423 (cons :tag "Level number" (const :value :level) (integer))
2424 (cons :tag "Max Level number" (const :value :maxlevel) (integer))))))
2426 (defcustom org-refile-target-verify-function nil
2427 "Function to verify if the headline at point should be a refile target.
2428 The function will be called without arguments, with point at the
2429 beginning of the headline. It should return t and leave point
2430 where it is if the headline is a valid target for refiling.
2432 If the target should not be selected, the function must return nil.
2433 In addition to this, it may move point to a place from where the search
2434 should be continued. For example, the function may decide that the entire
2435 subtree of the current entry should be excluded and move point to the end
2436 of the subtree."
2437 :group 'org-refile
2438 :type '(choice
2439 (const nil)
2440 (function)))
2442 (defcustom org-refile-use-cache nil
2443 "Non-nil means cache refile targets to speed up the process.
2444 \\<org-mode-map>\
2445 The cache for a particular file will be updated automatically when
2446 the buffer has been killed, or when any of the marker used for flagging
2447 refile targets no longer points at a live buffer.
2448 If you have added new entries to a buffer that might themselves be targets,
2449 you need to clear the cache manually by pressing `C-0 \\[org-refile]' or,
2450 if you find that easier, \
2451 `\\[universal-argument] \\[universal-argument] \\[universal-argument] \
2452 \\[org-refile]'."
2453 :group 'org-refile
2454 :version "24.1"
2455 :type 'boolean)
2457 (defcustom org-refile-use-outline-path nil
2458 "Non-nil means provide refile targets as paths.
2459 So a level 3 headline will be available as level1/level2/level3.
2461 When the value is `file', also include the file name (without directory)
2462 into the path. In this case, you can also stop the completion after
2463 the file name, to get entries inserted as top level in the file.
2465 When `full-file-path', include the full file path."
2466 :group 'org-refile
2467 :type '(choice
2468 (const :tag "Not" nil)
2469 (const :tag "Yes" t)
2470 (const :tag "Start with file name" file)
2471 (const :tag "Start with full file path" full-file-path)))
2473 (defcustom org-outline-path-complete-in-steps t
2474 "Non-nil means complete the outline path in hierarchical steps.
2475 When Org-mode uses the refile interface to select an outline path
2476 \(see variable `org-refile-use-outline-path'), the completion of
2477 the path can be done in a single go, or it can be done in steps down
2478 the headline hierarchy. Going in steps is probably the best if you
2479 do not use a special completion package like `ido' or `icicles'.
2480 However, when using these packages, going in one step can be very
2481 fast, while still showing the whole path to the entry."
2482 :group 'org-refile
2483 :type 'boolean)
2485 (defcustom org-refile-allow-creating-parent-nodes nil
2486 "Non-nil means allow to create new nodes as refile targets.
2487 New nodes are then created by adding \"/new node name\" to the completion
2488 of an existing node. When the value of this variable is `confirm',
2489 new node creation must be confirmed by the user (recommended).
2490 When nil, the completion must match an existing entry.
2492 Note that, if the new heading is not seen by the criteria
2493 listed in `org-refile-targets', multiple instances of the same
2494 heading would be created by trying again to file under the new
2495 heading."
2496 :group 'org-refile
2497 :type '(choice
2498 (const :tag "Never" nil)
2499 (const :tag "Always" t)
2500 (const :tag "Prompt for confirmation" confirm)))
2502 (defcustom org-refile-active-region-within-subtree nil
2503 "Non-nil means also refile active region within a subtree.
2505 By default `org-refile' doesn't allow refiling regions if they
2506 don't contain a set of subtrees, but it might be convenient to
2507 do so sometimes: in that case, the first line of the region is
2508 converted to a headline before refiling."
2509 :group 'org-refile
2510 :version "24.1"
2511 :type 'boolean)
2513 (defgroup org-todo nil
2514 "Options concerning TODO items in Org-mode."
2515 :tag "Org TODO"
2516 :group 'org)
2518 (defgroup org-progress nil
2519 "Options concerning Progress logging in Org-mode."
2520 :tag "Org Progress"
2521 :group 'org-time)
2523 (defvar org-todo-interpretation-widgets
2524 '((:tag "Sequence (cycling hits every state)" sequence)
2525 (:tag "Type (cycling directly to DONE)" type))
2526 "The available interpretation symbols for customizing `org-todo-keywords'.
2527 Interested libraries should add to this list.")
2529 (defcustom org-todo-keywords '((sequence "TODO" "DONE"))
2530 "List of TODO entry keyword sequences and their interpretation.
2531 \\<org-mode-map>This is a list of sequences.
2533 Each sequence starts with a symbol, either `sequence' or `type',
2534 indicating if the keywords should be interpreted as a sequence of
2535 action steps, or as different types of TODO items. The first
2536 keywords are states requiring action - these states will select a headline
2537 for inclusion into the global TODO list Org-mode produces. If one of
2538 the \"keywords\" is the vertical bar, \"|\", the remaining keywords
2539 signify that no further action is necessary. If \"|\" is not found,
2540 the last keyword is treated as the only DONE state of the sequence.
2542 The command \\[org-todo] cycles an entry through these states, and one
2543 additional state where no keyword is present. For details about this
2544 cycling, see the manual.
2546 TODO keywords and interpretation can also be set on a per-file basis with
2547 the special #+SEQ_TODO and #+TYP_TODO lines.
2549 Each keyword can optionally specify a character for fast state selection
2550 \(in combination with the variable `org-use-fast-todo-selection')
2551 and specifiers for state change logging, using the same syntax that
2552 is used in the \"#+TODO:\" lines. For example, \"WAIT(w)\" says that
2553 the WAIT state can be selected with the \"w\" key. \"WAIT(w!)\"
2554 indicates to record a time stamp each time this state is selected.
2556 Each keyword may also specify if a timestamp or a note should be
2557 recorded when entering or leaving the state, by adding additional
2558 characters in the parenthesis after the keyword. This looks like this:
2559 \"WAIT(w@/!)\". \"@\" means to add a note (with time), \"!\" means to
2560 record only the time of the state change. With X and Y being either
2561 \"@\" or \"!\", \"X/Y\" means use X when entering the state, and use
2562 Y when leaving the state if and only if the *target* state does not
2563 define X. You may omit any of the fast-selection key or X or /Y,
2564 so WAIT(w@), WAIT(w/@) and WAIT(@/@) are all valid.
2566 For backward compatibility, this variable may also be just a list
2567 of keywords. In this case the interpretation (sequence or type) will be
2568 taken from the (otherwise obsolete) variable `org-todo-interpretation'."
2569 :group 'org-todo
2570 :group 'org-keywords
2571 :type '(choice
2572 (repeat :tag "Old syntax, just keywords"
2573 (string :tag "Keyword"))
2574 (repeat :tag "New syntax"
2575 (cons
2576 (choice
2577 :tag "Interpretation"
2578 ;;Quick and dirty way to see
2579 ;;`org-todo-interpretations'. This takes the
2580 ;;place of item arguments
2581 :convert-widget
2582 (lambda (widget)
2583 (widget-put widget
2584 :args (mapcar
2585 (lambda (x)
2586 (widget-convert
2587 (cons 'const x)))
2588 org-todo-interpretation-widgets))
2589 widget))
2590 (repeat
2591 (string :tag "Keyword"))))))
2593 (defvar org-todo-keywords-1 nil
2594 "All TODO and DONE keywords active in a buffer.")
2595 (make-variable-buffer-local 'org-todo-keywords-1)
2596 (defvar org-todo-keywords-for-agenda nil)
2597 (defvar org-done-keywords-for-agenda nil)
2598 (defvar org-todo-keyword-alist-for-agenda nil)
2599 (defvar org-tag-alist-for-agenda nil
2600 "Alist of all tags from all agenda files.")
2601 (defvar org-tag-groups-alist-for-agenda nil
2602 "Alist of all groups tags from all current agenda files.")
2603 (defvar org-tag-groups-alist nil)
2604 (make-variable-buffer-local 'org-tag-groups-alist)
2605 (defvar org-agenda-contributing-files nil)
2606 (defvar org-not-done-keywords nil)
2607 (make-variable-buffer-local 'org-not-done-keywords)
2608 (defvar org-done-keywords nil)
2609 (make-variable-buffer-local 'org-done-keywords)
2610 (defvar org-todo-heads nil)
2611 (make-variable-buffer-local 'org-todo-heads)
2612 (defvar org-todo-sets nil)
2613 (make-variable-buffer-local 'org-todo-sets)
2614 (defvar org-todo-log-states nil)
2615 (make-variable-buffer-local 'org-todo-log-states)
2616 (defvar org-todo-kwd-alist nil)
2617 (make-variable-buffer-local 'org-todo-kwd-alist)
2618 (defvar org-todo-key-alist nil)
2619 (make-variable-buffer-local 'org-todo-key-alist)
2620 (defvar org-todo-key-trigger nil)
2621 (make-variable-buffer-local 'org-todo-key-trigger)
2623 (defcustom org-todo-interpretation 'sequence
2624 "Controls how TODO keywords are interpreted.
2625 This variable is in principle obsolete and is only used for
2626 backward compatibility, if the interpretation of todo keywords is
2627 not given already in `org-todo-keywords'. See that variable for
2628 more information."
2629 :group 'org-todo
2630 :group 'org-keywords
2631 :type '(choice (const sequence)
2632 (const type)))
2634 (defcustom org-use-fast-todo-selection t
2635 "\\<org-mode-map>\
2636 Non-nil means use the fast todo selection scheme with \\[org-todo].
2637 This variable describes if and under what circumstances the cycling
2638 mechanism for TODO keywords will be replaced by a single-key, direct
2639 selection scheme.
2641 When nil, fast selection is never used.
2643 When the symbol `prefix', it will be used when `org-todo' is called
2644 with a prefix argument, i.e. `\\[universal-argument] \\[org-todo]' \
2645 in an Org-mode buffer, and
2646 `\\[universal-argument] t' in an agenda buffer.
2648 When t, fast selection is used by default. In this case, the prefix
2649 argument forces cycling instead.
2651 In all cases, the special interface is only used if access keys have
2652 actually been assigned by the user, i.e. if keywords in the configuration
2653 are followed by a letter in parenthesis, like TODO(t)."
2654 :group 'org-todo
2655 :type '(choice
2656 (const :tag "Never" nil)
2657 (const :tag "By default" t)
2658 (const :tag "Only with C-u C-c C-t" prefix)))
2660 (defcustom org-provide-todo-statistics t
2661 "Non-nil means update todo statistics after insert and toggle.
2662 ALL-HEADLINES means update todo statistics by including headlines
2663 with no TODO keyword as well, counting them as not done.
2664 A list of TODO keywords means the same, but skip keywords that are
2665 not in this list.
2666 When set to a list of two lists, the first list contains keywords
2667 to consider as TODO keywords, the second list contains keywords
2668 to consider as DONE keywords.
2670 When this is set, todo statistics is updated in the parent of the
2671 current entry each time a todo state is changed."
2672 :group 'org-todo
2673 :type '(choice
2674 (const :tag "Yes, only for TODO entries" t)
2675 (const :tag "Yes, including all entries" all-headlines)
2676 (repeat :tag "Yes, for TODOs in this list"
2677 (string :tag "TODO keyword"))
2678 (list :tag "Yes, for TODOs and DONEs in these lists"
2679 (repeat (string :tag "TODO keyword"))
2680 (repeat (string :tag "DONE keyword")))
2681 (other :tag "No TODO statistics" nil)))
2683 (defcustom org-hierarchical-todo-statistics t
2684 "Non-nil means TODO statistics covers just direct children.
2685 When nil, all entries in the subtree are considered.
2686 This has only an effect if `org-provide-todo-statistics' is set.
2687 To set this to nil for only a single subtree, use a COOKIE_DATA
2688 property and include the word \"recursive\" into the value."
2689 :group 'org-todo
2690 :type 'boolean)
2692 (defcustom org-after-todo-state-change-hook nil
2693 "Hook which is run after the state of a TODO item was changed.
2694 The new state (a string with a TODO keyword, or nil) is available in the
2695 Lisp variable `org-state'."
2696 :group 'org-todo
2697 :type 'hook)
2699 (defvar org-blocker-hook nil
2700 "Hook for functions that are allowed to block a state change.
2702 Functions in this hook should not modify the buffer.
2703 Each function gets as its single argument a property list,
2704 see `org-trigger-hook' for more information about this list.
2706 If any of the functions in this hook returns nil, the state change
2707 is blocked.")
2709 (defvar org-trigger-hook nil
2710 "Hook for functions that are triggered by a state change.
2712 Each function gets as its single argument a property list with at
2713 least the following elements:
2715 (:type type-of-change :position pos-at-entry-start
2716 :from old-state :to new-state)
2718 Depending on the type, more properties may be present.
2720 This mechanism is currently implemented for:
2722 TODO state changes
2723 ------------------
2724 :type todo-state-change
2725 :from previous state (keyword as a string), or nil, or a symbol
2726 `todo' or `done', to indicate the general type of state.
2727 :to new state, like in :from")
2729 (defcustom org-enforce-todo-dependencies nil
2730 "Non-nil means undone TODO entries will block switching the parent to DONE.
2731 Also, if a parent has an :ORDERED: property, switching an entry to DONE will
2732 be blocked if any prior sibling is not yet done.
2733 Finally, if the parent is blocked because of ordered siblings of its own,
2734 the child will also be blocked."
2735 :set (lambda (var val)
2736 (set var val)
2737 (if val
2738 (add-hook 'org-blocker-hook
2739 'org-block-todo-from-children-or-siblings-or-parent)
2740 (remove-hook 'org-blocker-hook
2741 'org-block-todo-from-children-or-siblings-or-parent)))
2742 :group 'org-todo
2743 :type 'boolean)
2745 (defcustom org-enforce-todo-checkbox-dependencies nil
2746 "Non-nil means unchecked boxes will block switching the parent to DONE.
2747 When this is nil, checkboxes have no influence on switching TODO states.
2748 When non-nil, you first need to check off all check boxes before the TODO
2749 entry can be switched to DONE.
2750 This variable needs to be set before org.el is loaded, and you need to
2751 restart Emacs after a change to make the change effective. The only way
2752 to change is while Emacs is running is through the customize interface."
2753 :set (lambda (var val)
2754 (set var val)
2755 (if val
2756 (add-hook 'org-blocker-hook
2757 'org-block-todo-from-checkboxes)
2758 (remove-hook 'org-blocker-hook
2759 'org-block-todo-from-checkboxes)))
2760 :group 'org-todo
2761 :type 'boolean)
2763 (defcustom org-treat-insert-todo-heading-as-state-change nil
2764 "Non-nil means inserting a TODO heading is treated as state change.
2765 So when the command \\[org-insert-todo-heading] is used, state change
2766 logging will apply if appropriate. When nil, the new TODO item will
2767 be inserted directly, and no logging will take place."
2768 :group 'org-todo
2769 :type 'boolean)
2771 (defcustom org-treat-S-cursor-todo-selection-as-state-change t
2772 "Non-nil means switching TODO states with S-cursor counts as state change.
2773 This is the default behavior. However, setting this to nil allows a
2774 convenient way to select a TODO state and bypass any logging associated
2775 with that."
2776 :group 'org-todo
2777 :type 'boolean)
2779 (defcustom org-todo-state-tags-triggers nil
2780 "Tag changes that should be triggered by TODO state changes.
2781 This is a list. Each entry is
2783 (state-change (tag . flag) .......)
2785 State-change can be a string with a state, and empty string to indicate the
2786 state that has no TODO keyword, or it can be one of the symbols `todo'
2787 or `done', meaning any not-done or done state, respectively."
2788 :group 'org-todo
2789 :group 'org-tags
2790 :type '(repeat
2791 (cons (choice :tag "When changing to"
2792 (const :tag "Not-done state" todo)
2793 (const :tag "Done state" done)
2794 (string :tag "State"))
2795 (repeat
2796 (cons :tag "Tag action"
2797 (string :tag "Tag")
2798 (choice (const :tag "Add" t) (const :tag "Remove" nil)))))))
2800 (defcustom org-log-done nil
2801 "Information to record when a task moves to the DONE state.
2803 Possible values are:
2805 nil Don't add anything, just change the keyword
2806 time Add a time stamp to the task
2807 note Prompt for a note and add it with template `org-log-note-headings'
2809 This option can also be set with on a per-file-basis with
2811 #+STARTUP: nologdone
2812 #+STARTUP: logdone
2813 #+STARTUP: lognotedone
2815 You can have local logging settings for a subtree by setting the LOGGING
2816 property to one or more of these keywords."
2817 :group 'org-todo
2818 :group 'org-progress
2819 :type '(choice
2820 (const :tag "No logging" nil)
2821 (const :tag "Record CLOSED timestamp" time)
2822 (const :tag "Record CLOSED timestamp with note." note)))
2824 ;; Normalize old uses of org-log-done.
2825 (cond
2826 ((eq org-log-done t) (setq org-log-done 'time))
2827 ((and (listp org-log-done) (memq 'done org-log-done))
2828 (setq org-log-done 'note)))
2830 (defcustom org-log-reschedule nil
2831 "Information to record when the scheduling date of a tasks is modified.
2833 Possible values are:
2835 nil Don't add anything, just change the date
2836 time Add a time stamp to the task
2837 note Prompt for a note and add it with template `org-log-note-headings'
2839 This option can also be set with on a per-file-basis with
2841 #+STARTUP: nologreschedule
2842 #+STARTUP: logreschedule
2843 #+STARTUP: lognotereschedule"
2844 :group 'org-todo
2845 :group 'org-progress
2846 :type '(choice
2847 (const :tag "No logging" nil)
2848 (const :tag "Record timestamp" time)
2849 (const :tag "Record timestamp with note." note)))
2851 (defcustom org-log-redeadline nil
2852 "Information to record when the deadline date of a tasks is modified.
2854 Possible values are:
2856 nil Don't add anything, just change the date
2857 time Add a time stamp to the task
2858 note Prompt for a note and add it with template `org-log-note-headings'
2860 This option can also be set with on a per-file-basis with
2862 #+STARTUP: nologredeadline
2863 #+STARTUP: logredeadline
2864 #+STARTUP: lognoteredeadline
2866 You can have local logging settings for a subtree by setting the LOGGING
2867 property to one or more of these keywords."
2868 :group 'org-todo
2869 :group 'org-progress
2870 :type '(choice
2871 (const :tag "No logging" nil)
2872 (const :tag "Record timestamp" time)
2873 (const :tag "Record timestamp with note." note)))
2875 (defcustom org-log-note-clock-out nil
2876 "Non-nil means record a note when clocking out of an item.
2877 This can also be configured on a per-file basis by adding one of
2878 the following lines anywhere in the buffer:
2880 #+STARTUP: lognoteclock-out
2881 #+STARTUP: nolognoteclock-out"
2882 :group 'org-todo
2883 :group 'org-progress
2884 :type 'boolean)
2886 (defcustom org-log-done-with-time t
2887 "Non-nil means the CLOSED time stamp will contain date and time.
2888 When nil, only the date will be recorded."
2889 :group 'org-progress
2890 :type 'boolean)
2892 (defcustom org-log-note-headings
2893 '((done . "CLOSING NOTE %t")
2894 (state . "State %-12s from %-12S %t")
2895 (note . "Note taken on %t")
2896 (reschedule . "Rescheduled from %S on %t")
2897 (delschedule . "Not scheduled, was %S on %t")
2898 (redeadline . "New deadline from %S on %t")
2899 (deldeadline . "Removed deadline, was %S on %t")
2900 (refile . "Refiled on %t")
2901 (clock-out . ""))
2902 "Headings for notes added to entries.
2904 The value is an alist, with the car being a symbol indicating the
2905 note context, and the cdr is the heading to be used. The heading
2906 may also be the empty string. The following placeholders can be
2907 used:
2909 %t a time stamp.
2910 %T an active time stamp instead the default inactive one
2911 %d a short-format time stamp.
2912 %D an active short-format time stamp.
2913 %s the new TODO state or time stamp (inactive), in double quotes.
2914 %S the old TODO state or time stamp (inactive), in double quotes.
2915 %u the user name.
2916 %U full user name.
2918 In fact, it is not a good idea to change the `state' entry,
2919 because Agenda Log mode depends on the format of these entries."
2920 :group 'org-todo
2921 :group 'org-progress
2922 :type '(list :greedy t
2923 (cons (const :tag "Heading when closing an item" done) string)
2924 (cons (const :tag
2925 "Heading when changing todo state (todo sequence only)"
2926 state) string)
2927 (cons (const :tag "Heading when just taking a note" note) string)
2928 (cons (const :tag "Heading when rescheduling" reschedule) string)
2929 (cons (const :tag "Heading when an item is no longer scheduled" delschedule) string)
2930 (cons (const :tag "Heading when changing deadline" redeadline) string)
2931 (cons (const :tag "Heading when deleting a deadline" deldeadline) string)
2932 (cons (const :tag "Heading when refiling" refile) string)
2933 (cons (const :tag "Heading when clocking out" clock-out) string)))
2935 (unless (assq 'note org-log-note-headings)
2936 (push '(note . "%t") org-log-note-headings))
2938 (defcustom org-log-into-drawer nil
2939 "Non-nil means insert state change notes and time stamps into a drawer.
2940 When nil, state changes notes will be inserted after the headline and
2941 any scheduling and clock lines, but not inside a drawer.
2943 The value of this variable should be the name of the drawer to use.
2944 LOGBOOK is proposed as the default drawer for this purpose, you can
2945 also set this to a string to define the drawer of your choice.
2947 A value of t is also allowed, representing \"LOGBOOK\".
2949 A value of t or nil can also be set with on a per-file-basis with
2951 #+STARTUP: logdrawer
2952 #+STARTUP: nologdrawer
2954 If this variable is set, `org-log-state-notes-insert-after-drawers'
2955 will be ignored.
2957 You can set the property LOG_INTO_DRAWER to overrule this setting for
2958 a subtree.
2960 Do not check directly this variable in a Lisp program. Call
2961 function `org-log-into-drawer' instead."
2962 :group 'org-todo
2963 :group 'org-progress
2964 :type '(choice
2965 (const :tag "Not into a drawer" nil)
2966 (const :tag "LOGBOOK" t)
2967 (string :tag "Other")))
2969 (org-defvaralias 'org-log-state-notes-into-drawer 'org-log-into-drawer)
2971 (defun org-log-into-drawer ()
2972 "Name of the log drawer, as a string, or nil.
2973 This is the value of `org-log-into-drawer'. However, if the
2974 current entry has or inherits a LOG_INTO_DRAWER property, it will
2975 be used instead of the default value."
2976 (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
2977 (cond ((equal p "nil") nil)
2978 ((equal p "t") "LOGBOOK")
2979 ((stringp p) p)
2980 (p "LOGBOOK")
2981 ((stringp org-log-into-drawer) org-log-into-drawer)
2982 (org-log-into-drawer "LOGBOOK"))))
2984 (defcustom org-log-state-notes-insert-after-drawers nil
2985 "Non-nil means insert state change notes after any drawers in entry.
2986 Only the drawers that *immediately* follow the headline and the
2987 deadline/scheduled line are skipped.
2988 When nil, insert notes right after the heading and perhaps the line
2989 with deadline/scheduling if present.
2991 This variable will have no effect if `org-log-into-drawer' is
2992 set."
2993 :group 'org-todo
2994 :group 'org-progress
2995 :type 'boolean)
2997 (defcustom org-log-states-order-reversed t
2998 "Non-nil means the latest state note will be directly after heading.
2999 When nil, the state change notes will be ordered according to time.
3001 This option can also be set with on a per-file-basis with
3003 #+STARTUP: logstatesreversed
3004 #+STARTUP: nologstatesreversed"
3005 :group 'org-todo
3006 :group 'org-progress
3007 :type 'boolean)
3009 (defcustom org-todo-repeat-to-state nil
3010 "The TODO state to which a repeater should return the repeating task.
3011 By default this is the first task in a TODO sequence, or the previous state
3012 in a TODO_TYP set. But you can specify another task here.
3013 alternatively, set the :REPEAT_TO_STATE: property of the entry."
3014 :group 'org-todo
3015 :version "24.1"
3016 :type '(choice (const :tag "Head of sequence" nil)
3017 (string :tag "Specific state")))
3019 (defcustom org-log-repeat 'time
3020 "Non-nil means record moving through the DONE state when triggering repeat.
3021 An auto-repeating task is immediately switched back to TODO when
3022 marked DONE. If you are not logging state changes (by adding \"@\"
3023 or \"!\" to the TODO keyword definition), or set `org-log-done' to
3024 record a closing note, there will be no record of the task moving
3025 through DONE. This variable forces taking a note anyway.
3027 nil Don't force a record
3028 time Record a time stamp
3029 note Prompt for a note and add it with template `org-log-note-headings'
3031 This option can also be set with on a per-file-basis with
3033 #+STARTUP: nologrepeat
3034 #+STARTUP: logrepeat
3035 #+STARTUP: lognoterepeat
3037 You can have local logging settings for a subtree by setting the LOGGING
3038 property to one or more of these keywords."
3039 :group 'org-todo
3040 :group 'org-progress
3041 :type '(choice
3042 (const :tag "Don't force a record" nil)
3043 (const :tag "Force recording the DONE state" time)
3044 (const :tag "Force recording a note with the DONE state" note)))
3047 (defgroup org-priorities nil
3048 "Priorities in Org-mode."
3049 :tag "Org Priorities"
3050 :group 'org-todo)
3052 (defcustom org-enable-priority-commands t
3053 "Non-nil means priority commands are active.
3054 When nil, these commands will be disabled, so that you never accidentally
3055 set a priority."
3056 :group 'org-priorities
3057 :type 'boolean)
3059 (defcustom org-highest-priority ?A
3060 "The highest priority of TODO items. A character like ?A, ?B etc.
3061 Must have a smaller ASCII number than `org-lowest-priority'."
3062 :group 'org-priorities
3063 :type 'character)
3065 (defcustom org-lowest-priority ?C
3066 "The lowest priority of TODO items. A character like ?A, ?B etc.
3067 Must have a larger ASCII number than `org-highest-priority'."
3068 :group 'org-priorities
3069 :type 'character)
3071 (defcustom org-default-priority ?B
3072 "The default priority of TODO items.
3073 This is the priority an item gets if no explicit priority is given.
3074 When starting to cycle on an empty priority the first step in the cycle
3075 depends on `org-priority-start-cycle-with-default'. The resulting first
3076 step priority must not exceed the range from `org-highest-priority' to
3077 `org-lowest-priority' which means that `org-default-priority' has to be
3078 in this range exclusive or inclusive the range boundaries. Else the
3079 first step refuses to set the default and the second will fall back
3080 to (depending on the command used) the highest or lowest priority."
3081 :group 'org-priorities
3082 :type 'character)
3084 (defcustom org-priority-start-cycle-with-default t
3085 "Non-nil means start with default priority when starting to cycle.
3086 When this is nil, the first step in the cycle will be (depending on the
3087 command used) one higher or lower than the default priority.
3088 See also `org-default-priority'."
3089 :group 'org-priorities
3090 :type 'boolean)
3092 (defcustom org-get-priority-function nil
3093 "Function to extract the priority from a string.
3094 The string is normally the headline. If this is nil Org computes the
3095 priority from the priority cookie like [#A] in the headline. It returns
3096 an integer, increasing by 1000 for each priority level.
3097 The user can set a different function here, which should take a string
3098 as an argument and return the numeric priority."
3099 :group 'org-priorities
3100 :version "24.1"
3101 :type '(choice
3102 (const nil)
3103 (function)))
3105 (defgroup org-time nil
3106 "Options concerning time stamps and deadlines in Org-mode."
3107 :tag "Org Time"
3108 :group 'org)
3110 (defcustom org-time-stamp-rounding-minutes '(0 5)
3111 "Number of minutes to round time stamps to.
3112 \\<org-mode-map>\
3113 These are two values, the first applies when first creating a time stamp.
3114 The second applies when changing it with the commands `S-up' and `S-down'.
3115 When changing the time stamp, this means that it will change in steps
3116 of N minutes, as given by the second value.
3118 When a setting is 0 or 1, insert the time unmodified. Useful rounding
3119 numbers should be factors of 60, so for example 5, 10, 15.
3121 When this is larger than 1, you can still force an exact time stamp by using
3122 a double prefix argument to a time stamp command like \
3123 `\\[org-time-stamp]' or `\\[org-time-stamp-inactive],
3124 and by using a prefix arg to `S-up/down' to specify the exact number
3125 of minutes to shift."
3126 :group 'org-time
3127 :get (lambda (var) ; Make sure both elements are there
3128 (if (integerp (default-value var))
3129 (list (default-value var) 5)
3130 (default-value var)))
3131 :type '(list
3132 (integer :tag "when inserting times")
3133 (integer :tag "when modifying times")))
3135 ;; Normalize old customizations of this variable.
3136 (when (integerp org-time-stamp-rounding-minutes)
3137 (setq org-time-stamp-rounding-minutes
3138 (list org-time-stamp-rounding-minutes
3139 org-time-stamp-rounding-minutes)))
3141 (defcustom org-display-custom-times nil
3142 "Non-nil means overlay custom formats over all time stamps.
3143 The formats are defined through the variable `org-time-stamp-custom-formats'.
3144 To turn this on on a per-file basis, insert anywhere in the file:
3145 #+STARTUP: customtime"
3146 :group 'org-time
3147 :set 'set-default
3148 :type 'sexp)
3149 (make-variable-buffer-local 'org-display-custom-times)
3151 (defcustom org-time-stamp-custom-formats
3152 '("<%m/%d/%y %a>" . "<%m/%d/%y %a %H:%M>") ; american
3153 "Custom formats for time stamps. See `format-time-string' for the syntax.
3154 These are overlaid over the default ISO format if the variable
3155 `org-display-custom-times' is set. Time like %H:%M should be at the
3156 end of the second format. The custom formats are also honored by export
3157 commands, if custom time display is turned on at the time of export."
3158 :group 'org-time
3159 :type 'sexp)
3161 (defun org-time-stamp-format (&optional long inactive)
3162 "Get the right format for a time string."
3163 (let ((f (if long (cdr org-time-stamp-formats)
3164 (car org-time-stamp-formats))))
3165 (if inactive
3166 (concat "[" (substring f 1 -1) "]")
3167 f)))
3169 (defcustom org-time-clocksum-format
3170 '(:days "%dd " :hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)
3171 "The format string used when creating CLOCKSUM lines.
3172 This is also used when Org mode generates a time duration.
3174 The value can be a single format string containing two
3175 %-sequences, which will be filled with the number of hours and
3176 minutes in that order.
3178 Alternatively, the value can be a plist associating any of the
3179 keys :years, :months, :weeks, :days, :hours or :minutes with
3180 format strings. The time duration is formatted using only the
3181 time components that are needed and concatenating the results.
3182 If a time unit in absent, it falls back to the next smallest
3183 unit.
3185 The keys :require-years, :require-months, :require-days,
3186 :require-weeks, :require-hours, :require-minutes are also
3187 meaningful. A non-nil value for these keys indicates that the
3188 corresponding time component should always be included, even if
3189 its value is 0.
3192 For example,
3194 (:days \"%dd\" :hours \"%d\" :require-hours t :minutes \":%02d\"
3195 :require-minutes t)
3197 means durations longer than a day will be expressed in days,
3198 hours and minutes, and durations less than a day will always be
3199 expressed in hours and minutes (even for durations less than an
3200 hour).
3202 The value
3204 (:days \"%dd\" :minutes \"%dm\")
3206 means durations longer than a day will be expressed in days and
3207 minutes, and durations less than a day will be expressed entirely
3208 in minutes (even for durations longer than an hour)."
3209 :group 'org-time
3210 :group 'org-clock
3211 :version "24.4"
3212 :package-version '(Org . "8.0")
3213 :type '(choice (string :tag "Format string")
3214 (set :tag "Plist"
3215 (group :inline t (const :tag "Years" :years)
3216 (string :tag "Format string"))
3217 (group :inline t
3218 (const :tag "Always show years" :require-years)
3219 (const t))
3220 (group :inline t (const :tag "Months" :months)
3221 (string :tag "Format string"))
3222 (group :inline t
3223 (const :tag "Always show months" :require-months)
3224 (const t))
3225 (group :inline t (const :tag "Weeks" :weeks)
3226 (string :tag "Format string"))
3227 (group :inline t
3228 (const :tag "Always show weeks" :require-weeks)
3229 (const t))
3230 (group :inline t (const :tag "Days" :days)
3231 (string :tag "Format string"))
3232 (group :inline t
3233 (const :tag "Always show days" :require-days)
3234 (const t))
3235 (group :inline t (const :tag "Hours" :hours)
3236 (string :tag "Format string"))
3237 (group :inline t
3238 (const :tag "Always show hours" :require-hours)
3239 (const t))
3240 (group :inline t (const :tag "Minutes" :minutes)
3241 (string :tag "Format string"))
3242 (group :inline t
3243 (const :tag "Always show minutes" :require-minutes)
3244 (const t)))))
3246 (defcustom org-time-clocksum-use-fractional nil
3247 "When non-nil, \\[org-clock-display] uses fractional times.
3248 See `org-time-clocksum-format' for more on time clock formats."
3249 :group 'org-time
3250 :group 'org-clock
3251 :version "24.3"
3252 :type 'boolean)
3254 (defcustom org-time-clocksum-use-effort-durations nil
3255 "When non-nil, \\[org-clock-display] uses effort durations.
3256 E.g. by default, one day is considered to be a 8 hours effort,
3257 so a task that has been clocked for 16 hours will be displayed
3258 as during 2 days in the clock display or in the clocktable.
3260 See `org-effort-durations' on how to set effort durations
3261 and `org-time-clocksum-format' for more on time clock formats."
3262 :group 'org-time
3263 :group 'org-clock
3264 :version "24.4"
3265 :package-version '(Org . "8.0")
3266 :type 'boolean)
3268 (defcustom org-time-clocksum-fractional-format "%.2f"
3269 "The format string used when creating CLOCKSUM lines,
3270 or when Org mode generates a time duration, if
3271 `org-time-clocksum-use-fractional' is enabled.
3273 The value can be a single format string containing one
3274 %-sequence, which will be filled with the number of hours as
3275 a float.
3277 Alternatively, the value can be a plist associating any of the
3278 keys :years, :months, :weeks, :days, :hours or :minutes with
3279 a format string. The time duration is formatted using the
3280 largest time unit which gives a non-zero integer part. If all
3281 specified formats have zero integer part, the smallest time unit
3282 is used."
3283 :group 'org-time
3284 :type '(choice (string :tag "Format string")
3285 (set (group :inline t (const :tag "Years" :years)
3286 (string :tag "Format string"))
3287 (group :inline t (const :tag "Months" :months)
3288 (string :tag "Format string"))
3289 (group :inline t (const :tag "Weeks" :weeks)
3290 (string :tag "Format string"))
3291 (group :inline t (const :tag "Days" :days)
3292 (string :tag "Format string"))
3293 (group :inline t (const :tag "Hours" :hours)
3294 (string :tag "Format string"))
3295 (group :inline t (const :tag "Minutes" :minutes)
3296 (string :tag "Format string")))))
3298 (defcustom org-deadline-warning-days 14
3299 "Number of days before expiration during which a deadline becomes active.
3300 This variable governs the display in sparse trees and in the agenda.
3301 When 0 or negative, it means use this number (the absolute value of it)
3302 even if a deadline has a different individual lead time specified.
3304 Custom commands can set this variable in the options section."
3305 :group 'org-time
3306 :group 'org-agenda-daily/weekly
3307 :type 'integer)
3309 (defcustom org-scheduled-delay-days 0
3310 "Number of days before a scheduled item becomes active.
3311 This variable governs the display in sparse trees and in the agenda.
3312 The default value (i.e. 0) means: don't delay scheduled item.
3313 When negative, it means use this number (the absolute value of it)
3314 even if a scheduled item has a different individual delay time
3315 specified.
3317 Custom commands can set this variable in the options section."
3318 :group 'org-time
3319 :group 'org-agenda-daily/weekly
3320 :version "24.4"
3321 :package-version '(Org . "8.0")
3322 :type 'integer)
3324 (defcustom org-read-date-prefer-future t
3325 "Non-nil means assume future for incomplete date input from user.
3326 This affects the following situations:
3327 1. The user gives a month but not a year.
3328 For example, if it is April and you enter \"feb 2\", this will be read
3329 as Feb 2, *next* year. \"May 5\", however, will be this year.
3330 2. The user gives a day, but no month.
3331 For example, if today is the 15th, and you enter \"3\", Org-mode will
3332 read this as the third of *next* month. However, if you enter \"17\",
3333 it will be considered as *this* month.
3335 If you set this variable to the symbol `time', then also the following
3336 will work:
3338 3. If the user gives a time.
3339 If the time is before now, it will be interpreted as tomorrow.
3341 Currently none of this works for ISO week specifications.
3343 When this option is nil, the current day, month and year will always be
3344 used as defaults.
3346 See also `org-agenda-jump-prefer-future'."
3347 :group 'org-time
3348 :type '(choice
3349 (const :tag "Never" nil)
3350 (const :tag "Check month and day" t)
3351 (const :tag "Check month, day, and time" time)))
3353 (defcustom org-agenda-jump-prefer-future 'org-read-date-prefer-future
3354 "Should the agenda jump command prefer the future for incomplete dates?
3355 The default is to do the same as configured in `org-read-date-prefer-future'.
3356 But you can also set a deviating value here.
3357 This may t or nil, or the symbol `org-read-date-prefer-future'."
3358 :group 'org-agenda
3359 :group 'org-time
3360 :version "24.1"
3361 :type '(choice
3362 (const :tag "Use org-read-date-prefer-future"
3363 org-read-date-prefer-future)
3364 (const :tag "Never" nil)
3365 (const :tag "Always" t)))
3367 (defcustom org-read-date-force-compatible-dates t
3368 "Should date/time prompt force dates that are guaranteed to work in Emacs?
3370 Depending on the system Emacs is running on, certain dates cannot
3371 be represented with the type used internally to represent time.
3372 Dates between 1970-1-1 and 2038-1-1 can always be represented
3373 correctly. Some systems allow for earlier dates, some for later,
3374 some for both. One way to find out it to insert any date into an
3375 Org buffer, putting the cursor on the year and hitting S-up and
3376 S-down to test the range.
3378 When this variable is set to t, the date/time prompt will not let
3379 you specify dates outside the 1970-2037 range, so it is certain that
3380 these dates will work in whatever version of Emacs you are
3381 running, and also that you can move a file from one Emacs implementation
3382 to another. WHenever Org is forcing the year for you, it will display
3383 a message and beep.
3385 When this variable is nil, Org will check if the date is
3386 representable in the specific Emacs implementation you are using.
3387 If not, it will force a year, usually the current year, and beep
3388 to remind you. Currently this setting is not recommended because
3389 the likelihood that you will open your Org files in an Emacs that
3390 has limited date range is not negligible.
3392 A workaround for this problem is to use diary sexp dates for time
3393 stamps outside of this range."
3394 :group 'org-time
3395 :version "24.1"
3396 :type 'boolean)
3398 (defcustom org-read-date-display-live t
3399 "Non-nil means display current interpretation of date prompt live.
3400 This display will be in an overlay, in the minibuffer."
3401 :group 'org-time
3402 :type 'boolean)
3404 (defcustom org-read-date-popup-calendar t
3405 "Non-nil means pop up a calendar when prompting for a date.
3406 In the calendar, the date can be selected with mouse-1. However, the
3407 minibuffer will also be active, and you can simply enter the date as well.
3408 When nil, only the minibuffer will be available."
3409 :group 'org-time
3410 :type 'boolean)
3411 (org-defvaralias 'org-popup-calendar-for-date-prompt
3412 'org-read-date-popup-calendar)
3414 (make-obsolete-variable
3415 'org-read-date-minibuffer-setup-hook
3416 "Set `org-read-date-minibuffer-local-map' instead." "24.4")
3417 (defcustom org-read-date-minibuffer-setup-hook nil
3418 "Hook to be used to set up keys for the date/time interface.
3419 Add key definitions to `minibuffer-local-map', which will be a
3420 temporary copy.
3422 WARNING: This option is obsolete, you should use
3423 `org-read-date-minibuffer-local-map' to set up keys."
3424 :group 'org-time
3425 :type 'hook)
3427 (defcustom org-extend-today-until 0
3428 "The hour when your day really ends. Must be an integer.
3429 This has influence for the following applications:
3430 - When switching the agenda to \"today\". It it is still earlier than
3431 the time given here, the day recognized as TODAY is actually yesterday.
3432 - When a date is read from the user and it is still before the time given
3433 here, the current date and time will be assumed to be yesterday, 23:59.
3434 Also, timestamps inserted in capture templates follow this rule.
3436 IMPORTANT: This is a feature whose implementation is and likely will
3437 remain incomplete. Really, it is only here because past midnight seems to
3438 be the favorite working time of John Wiegley :-)"
3439 :group 'org-time
3440 :type 'integer)
3442 (defcustom org-use-effective-time nil
3443 "If non-nil, consider `org-extend-today-until' when creating timestamps.
3444 For example, if `org-extend-today-until' is 8, and it's 4am, then the
3445 \"effective time\" of any timestamps between midnight and 8am will be
3446 23:59 of the previous day."
3447 :group 'org-time
3448 :version "24.1"
3449 :type 'boolean)
3451 (defcustom org-use-last-clock-out-time-as-effective-time nil
3452 "When non-nil, use the last clock out time for `org-todo'.
3453 Note that this option has precedence over the combined use of
3454 `org-use-effective-time' and `org-extend-today-until'."
3455 :group 'org-time
3456 :version "24.4"
3457 :package-version '(Org . "8.0")
3458 :type 'boolean)
3460 (defcustom org-edit-timestamp-down-means-later nil
3461 "Non-nil means S-down will increase the time in a time stamp.
3462 When nil, S-up will increase."
3463 :group 'org-time
3464 :type 'boolean)
3466 (defcustom org-calendar-follow-timestamp-change t
3467 "Non-nil means make the calendar window follow timestamp changes.
3468 When a timestamp is modified and the calendar window is visible, it will be
3469 moved to the new date."
3470 :group 'org-time
3471 :type 'boolean)
3473 (defgroup org-tags nil
3474 "Options concerning tags in Org-mode."
3475 :tag "Org Tags"
3476 :group 'org)
3478 (defcustom org-tag-alist nil
3479 "List of tags allowed in Org-mode files.
3480 When this list is nil, Org-mode will base TAG input on what is already in the
3481 buffer.
3482 The value of this variable is an alist, the car of each entry must be a
3483 keyword as a string, the cdr may be a character that is used to select
3484 that tag through the fast-tag-selection interface.
3485 See the manual for details."
3486 :group 'org-tags
3487 :type '(repeat
3488 (choice
3489 (cons (string :tag "Tag name")
3490 (character :tag "Access char"))
3491 (list :tag "Start radio group"
3492 (const :startgroup)
3493 (option (string :tag "Group description")))
3494 (list :tag "Start tag group, non distinct"
3495 (const :startgrouptag)
3496 (option (string :tag "Group description")))
3497 (list :tag "Group tags delimiter"
3498 (const :grouptags))
3499 (list :tag "End radio group"
3500 (const :endgroup)
3501 (option (string :tag "Group description")))
3502 (list :tag "End tag group, non distinct"
3503 (const :endgrouptag)
3504 (option (string :tag "Group description")))
3505 (const :tag "New line" (:newline)))))
3507 (defcustom org-tag-persistent-alist nil
3508 "List of tags that will always appear in all Org-mode files.
3509 This is in addition to any in buffer settings or customizations
3510 of `org-tag-alist'.
3511 When this list is nil, Org-mode will base TAG input on `org-tag-alist'.
3512 The value of this variable is an alist, the car of each entry must be a
3513 keyword as a string, the cdr may be a character that is used to select
3514 that tag through the fast-tag-selection interface.
3515 See the manual for details.
3516 To disable these tags on a per-file basis, insert anywhere in the file:
3517 #+STARTUP: noptag"
3518 :group 'org-tags
3519 :type '(repeat
3520 (choice
3521 (cons (string :tag "Tag name")
3522 (character :tag "Access char"))
3523 (const :tag "Start radio group" (:startgroup))
3524 (const :tag "Group tags delimiter" (:grouptags))
3525 (const :tag "End radio group" (:endgroup))
3526 (const :tag "New line" (:newline)))))
3528 (defcustom org-complete-tags-always-offer-all-agenda-tags nil
3529 "If non-nil, always offer completion for all tags of all agenda files.
3530 Instead of customizing this variable directly, you might want to
3531 set it locally for capture buffers, because there no list of
3532 tags in that file can be created dynamically (there are none).
3534 (add-hook \\='org-capture-mode-hook
3535 (lambda ()
3536 (set (make-local-variable
3537 \\='org-complete-tags-always-offer-all-agenda-tags)
3538 t)))"
3539 :group 'org-tags
3540 :version "24.1"
3541 :type 'boolean)
3543 (defvar org-file-tags nil
3544 "List of tags that can be inherited by all entries in the file.
3545 The tags will be inherited if the variable `org-use-tag-inheritance'
3546 says they should be.
3547 This variable is populated from #+FILETAGS lines.")
3549 (defcustom org-use-fast-tag-selection 'auto
3550 "Non-nil means use fast tag selection scheme.
3551 This is a special interface to select and deselect tags with single keys.
3552 When nil, fast selection is never used.
3553 When the symbol `auto', fast selection is used if and only if selection
3554 characters for tags have been configured, either through the variable
3555 `org-tag-alist' or through a #+TAGS line in the buffer.
3556 When t, fast selection is always used and selection keys are assigned
3557 automatically if necessary."
3558 :group 'org-tags
3559 :type '(choice
3560 (const :tag "Always" t)
3561 (const :tag "Never" nil)
3562 (const :tag "When selection characters are configured" auto)))
3564 (defcustom org-fast-tag-selection-single-key nil
3565 "Non-nil means fast tag selection exits after first change.
3566 When nil, you have to press RET to exit it.
3567 During fast tag selection, you can toggle this flag with `C-c'.
3568 This variable can also have the value `expert'. In this case, the window
3569 displaying the tags menu is not even shown, until you press C-c again."
3570 :group 'org-tags
3571 :type '(choice
3572 (const :tag "No" nil)
3573 (const :tag "Yes" t)
3574 (const :tag "Expert" expert)))
3576 (defvar org-fast-tag-selection-include-todo nil
3577 "Non-nil means fast tags selection interface will also offer TODO states.
3578 This is an undocumented feature, you should not rely on it.")
3580 (defcustom org-tags-column (if (featurep 'xemacs) -76 -77)
3581 "The column to which tags should be indented in a headline.
3582 If this number is positive, it specifies the column. If it is negative,
3583 it means that the tags should be flushright to that column. For example,
3584 -80 works well for a normal 80 character screen.
3585 When 0, place tags directly after headline text, with only one space in
3586 between."
3587 :group 'org-tags
3588 :type 'integer)
3590 (defcustom org-auto-align-tags t
3591 "Non-nil keeps tags aligned when modifying headlines.
3592 Some operations (i.e. demoting) change the length of a headline and
3593 therefore shift the tags around. With this option turned on, after
3594 each such operation the tags are again aligned to `org-tags-column'."
3595 :group 'org-tags
3596 :type 'boolean)
3598 (defcustom org-use-tag-inheritance t
3599 "Non-nil means tags in levels apply also for sublevels.
3600 When nil, only the tags directly given in a specific line apply there.
3601 This may also be a list of tags that should be inherited, or a regexp that
3602 matches tags that should be inherited. Additional control is possible
3603 with the variable `org-tags-exclude-from-inheritance' which gives an
3604 explicit list of tags to be excluded from inheritance, even if the value of
3605 `org-use-tag-inheritance' would select it for inheritance.
3607 If this option is t, a match early-on in a tree can lead to a large
3608 number of matches in the subtree when constructing the agenda or creating
3609 a sparse tree. If you only want to see the first match in a tree during
3610 a search, check out the variable `org-tags-match-list-sublevels'."
3611 :group 'org-tags
3612 :type '(choice
3613 (const :tag "Not" nil)
3614 (const :tag "Always" t)
3615 (repeat :tag "Specific tags" (string :tag "Tag"))
3616 (regexp :tag "Tags matched by regexp")))
3618 (defcustom org-tags-exclude-from-inheritance nil
3619 "List of tags that should never be inherited.
3620 This is a way to exclude a few tags from inheritance. For way to do
3621 the opposite, to actively allow inheritance for selected tags,
3622 see the variable `org-use-tag-inheritance'."
3623 :group 'org-tags
3624 :type '(repeat (string :tag "Tag")))
3626 (defun org-tag-inherit-p (tag)
3627 "Check if TAG is one that should be inherited."
3628 (cond
3629 ((member tag org-tags-exclude-from-inheritance) nil)
3630 ((eq org-use-tag-inheritance t) t)
3631 ((not org-use-tag-inheritance) nil)
3632 ((stringp org-use-tag-inheritance)
3633 (string-match org-use-tag-inheritance tag))
3634 ((listp org-use-tag-inheritance)
3635 (member tag org-use-tag-inheritance))
3636 (t (error "Invalid setting of `org-use-tag-inheritance'"))))
3638 (defcustom org-tags-match-list-sublevels t
3639 "Non-nil means list also sublevels of headlines matching a search.
3640 This variable applies to tags/property searches, and also to stuck
3641 projects because this search is based on a tags match as well.
3643 When set to the symbol `indented', sublevels are indented with
3644 leading dots.
3646 Because of tag inheritance (see variable `org-use-tag-inheritance'),
3647 the sublevels of a headline matching a tag search often also match
3648 the same search. Listing all of them can create very long lists.
3649 Setting this variable to nil causes subtrees of a match to be skipped.
3651 This variable is semi-obsolete and probably should always be true. It
3652 is better to limit inheritance to certain tags using the variables
3653 `org-use-tag-inheritance' and `org-tags-exclude-from-inheritance'."
3654 :group 'org-tags
3655 :type '(choice
3656 (const :tag "No, don't list them" nil)
3657 (const :tag "Yes, do list them" t)
3658 (const :tag "List them, indented with leading dots" indented)))
3660 (defcustom org-tags-sort-function nil
3661 "When set, tags are sorted using this function as a comparator."
3662 :group 'org-tags
3663 :type '(choice
3664 (const :tag "No sorting" nil)
3665 (const :tag "Alphabetical" string<)
3666 (const :tag "Reverse alphabetical" string>)
3667 (function :tag "Custom function" nil)))
3669 (defvar org-tags-history nil
3670 "History of minibuffer reads for tags.")
3671 (defvar org-last-tags-completion-table nil
3672 "The last used completion table for tags.")
3673 (defvar org-after-tags-change-hook nil
3674 "Hook that is run after the tags in a line have changed.")
3676 (defgroup org-properties nil
3677 "Options concerning properties in Org-mode."
3678 :tag "Org Properties"
3679 :group 'org)
3681 (defcustom org-property-format "%-10s %s"
3682 "How property key/value pairs should be formatted by `indent-line'.
3683 When `indent-line' hits a property definition, it will format the line
3684 according to this format, mainly to make sure that the values are
3685 lined-up with respect to each other."
3686 :group 'org-properties
3687 :type 'string)
3689 (defcustom org-properties-postprocess-alist nil
3690 "Alist of properties and functions to adjust inserted values.
3691 Elements of this alist must be of the form
3693 ([string] [function])
3695 where [string] must be a property name and [function] must be a
3696 lambda expression: this lambda expression must take one argument,
3697 the value to adjust, and return the new value as a string.
3699 For example, this element will allow the property \"Remaining\"
3700 to be updated wrt the relation between the \"Effort\" property
3701 and the clock summary:
3703 ((\"Remaining\" (lambda(value)
3704 (let ((clocksum (org-clock-sum-current-item))
3705 (effort (org-duration-string-to-minutes
3706 (org-entry-get (point) \"Effort\"))))
3707 (org-minutes-to-clocksum-string (- effort clocksum))))))"
3708 :group 'org-properties
3709 :version "24.1"
3710 :type '(alist :key-type (string :tag "Property")
3711 :value-type (function :tag "Function")))
3713 (defcustom org-use-property-inheritance nil
3714 "Non-nil means properties apply also for sublevels.
3716 This setting is chiefly used during property searches. Turning it on can
3717 cause significant overhead when doing a search, which is why it is not
3718 on by default.
3720 When nil, only the properties directly given in the current entry count.
3721 When t, every property is inherited. The value may also be a list of
3722 properties that should have inheritance, or a regular expression matching
3723 properties that should be inherited.
3725 However, note that some special properties use inheritance under special
3726 circumstances (not in searches). Examples are CATEGORY, ARCHIVE, COLUMNS,
3727 and the properties ending in \"_ALL\" when they are used as descriptor
3728 for valid values of a property.
3730 Note for programmers:
3731 When querying an entry with `org-entry-get', you can control if inheritance
3732 should be used. By default, `org-entry-get' looks only at the local
3733 properties. You can request inheritance by setting the inherit argument
3734 to t (to force inheritance) or to `selective' (to respect the setting
3735 in this variable)."
3736 :group 'org-properties
3737 :type '(choice
3738 (const :tag "Not" nil)
3739 (const :tag "Always" t)
3740 (repeat :tag "Specific properties" (string :tag "Property"))
3741 (regexp :tag "Properties matched by regexp")))
3743 (defun org-property-inherit-p (property)
3744 "Check if PROPERTY is one that should be inherited."
3745 (cond
3746 ((eq org-use-property-inheritance t) t)
3747 ((not org-use-property-inheritance) nil)
3748 ((stringp org-use-property-inheritance)
3749 (string-match org-use-property-inheritance property))
3750 ((listp org-use-property-inheritance)
3751 (member property org-use-property-inheritance))
3752 (t (error "Invalid setting of `org-use-property-inheritance'"))))
3754 (defcustom org-columns-default-format "%25ITEM %TODO %3PRIORITY %TAGS"
3755 "The default column format, if no other format has been defined.
3756 This variable can be set on the per-file basis by inserting a line
3758 #+COLUMNS: %25ITEM ....."
3759 :group 'org-properties
3760 :type 'string)
3762 (defcustom org-columns-ellipses ".."
3763 "The ellipses to be used when a field in column view is truncated.
3764 When this is the empty string, as many characters as possible are shown,
3765 but then there will be no visual indication that the field has been truncated.
3766 When this is a string of length N, the last N characters of a truncated
3767 field are replaced by this string. If the column is narrower than the
3768 ellipses string, only part of the ellipses string will be shown."
3769 :group 'org-properties
3770 :type 'string)
3772 (defcustom org-columns-modify-value-for-display-function nil
3773 "Function that modifies values for display in column view.
3774 For example, it can be used to cut out a certain part from a time stamp.
3775 The function must take 2 arguments:
3777 column-title The title of the column (*not* the property name)
3778 value The value that should be modified.
3780 The function should return the value that should be displayed,
3781 or nil if the normal value should be used."
3782 :group 'org-properties
3783 :type '(choice (const nil) (function)))
3785 (defconst org-global-properties-fixed
3786 '(("VISIBILITY_ALL" . "folded children content all")
3787 ("CLOCK_MODELINE_TOTAL_ALL" . "current today repeat all auto"))
3788 "List of property/value pairs that can be inherited by any entry.
3790 These are fixed values, for the preset properties. The user variable
3791 that can be used to add to this list is `org-global-properties'.
3793 The entries in this list are cons cells where the car is a property
3794 name and cdr is a string with the value. If the value represents
3795 multiple items like an \"_ALL\" property, separate the items by
3796 spaces.")
3798 (defcustom org-global-properties nil
3799 "List of property/value pairs that can be inherited by any entry.
3801 This list will be combined with the constant `org-global-properties-fixed'.
3803 The entries in this list are cons cells where the car is a property
3804 name and cdr is a string with the value.
3806 You can set buffer-local values for the same purpose in the variable
3807 `org-file-properties' this by adding lines like
3809 #+PROPERTY: NAME VALUE"
3810 :group 'org-properties
3811 :type '(repeat
3812 (cons (string :tag "Property")
3813 (string :tag "Value"))))
3815 (defvar org-file-properties nil
3816 "List of property/value pairs that can be inherited by any entry.
3817 Valid for the current buffer.
3818 This variable is populated from #+PROPERTY lines.")
3819 (make-variable-buffer-local 'org-file-properties)
3821 (defgroup org-agenda nil
3822 "Options concerning agenda views in Org-mode."
3823 :tag "Org Agenda"
3824 :group 'org)
3826 (defvar org-category nil
3827 "Variable used by org files to set a category for agenda display.
3828 Such files should use a file variable to set it, for example
3830 # -*- mode: org; org-category: \"ELisp\"
3832 or contain a special line
3834 #+CATEGORY: ELisp
3836 If the file does not specify a category, then file's base name
3837 is used instead.")
3838 (make-variable-buffer-local 'org-category)
3839 (put 'org-category 'safe-local-variable (lambda (x) (or (symbolp x) (stringp x))))
3841 (defcustom org-agenda-files nil
3842 "The files to be used for agenda display.
3843 Entries may be added to this list with \\[org-agenda-file-to-front] and removed with
3844 \\[org-remove-file]. You can also use customize to edit the list.
3846 If an entry is a directory, all files in that directory that are matched by
3847 `org-agenda-file-regexp' will be part of the file list.
3849 If the value of the variable is not a list but a single file name, then
3850 the list of agenda files is actually stored and maintained in that file, one
3851 agenda file per line. In this file paths can be given relative to
3852 `org-directory'. Tilde expansion and environment variable substitution
3853 are also made."
3854 :group 'org-agenda
3855 :type '(choice
3856 (repeat :tag "List of files and directories" file)
3857 (file :tag "Store list in a file\n" :value "~/.agenda_files")))
3859 (defcustom org-agenda-file-regexp "\\`[^.].*\\.org\\'"
3860 "Regular expression to match files for `org-agenda-files'.
3861 If any element in the list in that variable contains a directory instead
3862 of a normal file, all files in that directory that are matched by this
3863 regular expression will be included."
3864 :group 'org-agenda
3865 :type 'regexp)
3867 (defcustom org-agenda-text-search-extra-files nil
3868 "List of extra files to be searched by text search commands.
3869 These files will be searched in addition to the agenda files by the
3870 commands `org-search-view' (`\\[org-agenda] s') \
3871 and `org-occur-in-agenda-files'.
3872 Note that these files will only be searched for text search commands,
3873 not for the other agenda views like todo lists, tag searches or the weekly
3874 agenda. This variable is intended to list notes and possibly archive files
3875 that should also be searched by these two commands.
3876 In fact, if the first element in the list is the symbol `agenda-archives',
3877 then all archive files of all agenda files will be added to the search
3878 scope."
3879 :group 'org-agenda
3880 :type '(set :greedy t
3881 (const :tag "Agenda Archives" agenda-archives)
3882 (repeat :inline t (file))))
3884 (org-defvaralias 'org-agenda-multi-occur-extra-files
3885 'org-agenda-text-search-extra-files)
3887 (defcustom org-agenda-skip-unavailable-files nil
3888 "Non-nil means to just skip non-reachable files in `org-agenda-files'.
3889 A nil value means to remove them, after a query, from the list."
3890 :group 'org-agenda
3891 :type 'boolean)
3893 (defcustom org-calendar-to-agenda-key [?c]
3894 "The key to be installed in `calendar-mode-map' for switching to the agenda.
3895 The command `org-calendar-goto-agenda' will be bound to this key. The
3896 default is the character `c' because then `c' can be used to switch back and
3897 forth between agenda and calendar."
3898 :group 'org-agenda
3899 :type 'sexp)
3901 (defcustom org-calendar-insert-diary-entry-key [?i]
3902 "The key to be installed in `calendar-mode-map' for adding diary entries.
3903 This option is irrelevant until `org-agenda-diary-file' has been configured
3904 to point to an Org-mode file. When that is the case, the command
3905 `org-agenda-diary-entry' will be bound to the key given here, by default
3906 `i'. In the calendar, `i' normally adds entries to `diary-file'. So
3907 if you want to continue doing this, you need to change this to a different
3908 key."
3909 :group 'org-agenda
3910 :type 'sexp)
3912 (defcustom org-agenda-diary-file 'diary-file
3913 "File to which to add new entries with the `i' key in agenda and calendar.
3914 When this is the symbol `diary-file', the functionality in the Emacs
3915 calendar will be used to add entries to the `diary-file'. But when this
3916 points to a file, `org-agenda-diary-entry' will be used instead."
3917 :group 'org-agenda
3918 :type '(choice
3919 (const :tag "The standard Emacs diary file" diary-file)
3920 (file :tag "Special Org file diary entries")))
3922 (eval-after-load "calendar"
3923 '(progn
3924 (org-defkey calendar-mode-map org-calendar-to-agenda-key
3925 'org-calendar-goto-agenda)
3926 (add-hook 'calendar-mode-hook
3927 (lambda ()
3928 (unless (eq org-agenda-diary-file 'diary-file)
3929 (define-key calendar-mode-map
3930 org-calendar-insert-diary-entry-key
3931 'org-agenda-diary-entry))))))
3933 (defgroup org-latex nil
3934 "Options for embedding LaTeX code into Org-mode."
3935 :tag "Org LaTeX"
3936 :group 'org)
3938 (defcustom org-format-latex-options
3939 '(:foreground default :background default :scale 1.0
3940 :html-foreground "Black" :html-background "Transparent"
3941 :html-scale 1.0 :matchers ("begin" "$1" "$" "$$" "\\(" "\\["))
3942 "Options for creating images from LaTeX fragments.
3943 This is a property list with the following properties:
3944 :foreground the foreground color for images embedded in Emacs, e.g. \"Black\".
3945 `default' means use the foreground of the default face.
3946 `auto' means use the foreground from the text face.
3947 :background the background color, or \"Transparent\".
3948 `default' means use the background of the default face.
3949 `auto' means use the background from the text face.
3950 :scale a scaling factor for the size of the images, to get more pixels
3951 :html-foreground, :html-background, :html-scale
3952 the same numbers for HTML export.
3953 :matchers a list indicating which matchers should be used to
3954 find LaTeX fragments. Valid members of this list are:
3955 \"begin\" find environments
3956 \"$1\" find single characters surrounded by $.$
3957 \"$\" find math expressions surrounded by $...$
3958 \"$$\" find math expressions surrounded by $$....$$
3959 \"\\(\" find math expressions surrounded by \\(...\\)
3960 \"\\=\\[\" find math expressions surrounded by \\=\\[...\\]"
3961 :group 'org-latex
3962 :type 'plist)
3964 (defcustom org-format-latex-signal-error t
3965 "Non-nil means signal an error when image creation of LaTeX snippets fails.
3966 When nil, just push out a message."
3967 :group 'org-latex
3968 :version "24.1"
3969 :type 'boolean)
3971 (defcustom org-latex-to-mathml-jar-file nil
3972 "Value of\"%j\" in `org-latex-to-mathml-convert-command'.
3973 Use this to specify additional executable file say a jar file.
3975 When using MathToWeb as the converter, specify the full-path to
3976 your mathtoweb.jar file."
3977 :group 'org-latex
3978 :version "24.1"
3979 :type '(choice
3980 (const :tag "None" nil)
3981 (file :tag "JAR file" :must-match t)))
3983 (defcustom org-latex-to-mathml-convert-command nil
3984 "Command to convert LaTeX fragments to MathML.
3985 Replace format-specifiers in the command as noted below and use
3986 `shell-command' to convert LaTeX to MathML.
3987 %j: Executable file in fully expanded form as specified by
3988 `org-latex-to-mathml-jar-file'.
3989 %I: Input LaTeX file in fully expanded form.
3990 %i: The latex fragment to be converted.
3991 %o: Output MathML file.
3993 This command is used by `org-create-math-formula'.
3995 When using MathToWeb as the converter, set this option to
3996 \"java -jar %j -unicode -force -df %o %I\".
3998 When using LaTeXML set this option to
3999 \"latexmlmath \"%i\" --presentationmathml=%o\"."
4000 :group 'org-latex
4001 :version "24.1"
4002 :type '(choice
4003 (const :tag "None" nil)
4004 (string :tag "\nShell command")))
4006 (defcustom org-latex-create-formula-image-program 'dvipng
4007 "Program to convert LaTeX fragments with.
4009 dvipng Process the LaTeX fragments to dvi file, then convert
4010 dvi files to png files using dvipng.
4011 This will also include processing of non-math environments.
4012 imagemagick Convert the LaTeX fragments to pdf files and use imagemagick
4013 to convert pdf files to png files"
4014 :group 'org-latex
4015 :version "24.1"
4016 :type '(choice
4017 (const :tag "dvipng" dvipng)
4018 (const :tag "imagemagick" imagemagick)))
4020 (defcustom org-latex-preview-ltxpng-directory "ltxpng/"
4021 "Path to store latex preview images.
4022 A relative path here creates many directories relative to the
4023 processed org files paths. An absolute path puts all preview
4024 images at the same place."
4025 :group 'org-latex
4026 :version "24.3"
4027 :type 'string)
4029 (defun org-format-latex-mathml-available-p ()
4030 "Return t if `org-latex-to-mathml-convert-command' is usable."
4031 (save-match-data
4032 (when (and (boundp 'org-latex-to-mathml-convert-command)
4033 org-latex-to-mathml-convert-command)
4034 (let ((executable (car (split-string
4035 org-latex-to-mathml-convert-command))))
4036 (when (executable-find executable)
4037 (if (string-match
4038 "%j" org-latex-to-mathml-convert-command)
4039 (file-readable-p org-latex-to-mathml-jar-file)
4040 t))))))
4042 (defcustom org-format-latex-header "\\documentclass{article}
4043 \\usepackage[usenames]{color}
4044 \[PACKAGES]
4045 \[DEFAULT-PACKAGES]
4046 \\pagestyle{empty} % do not remove
4047 % The settings below are copied from fullpage.sty
4048 \\setlength{\\textwidth}{\\paperwidth}
4049 \\addtolength{\\textwidth}{-3cm}
4050 \\setlength{\\oddsidemargin}{1.5cm}
4051 \\addtolength{\\oddsidemargin}{-2.54cm}
4052 \\setlength{\\evensidemargin}{\\oddsidemargin}
4053 \\setlength{\\textheight}{\\paperheight}
4054 \\addtolength{\\textheight}{-\\headheight}
4055 \\addtolength{\\textheight}{-\\headsep}
4056 \\addtolength{\\textheight}{-\\footskip}
4057 \\addtolength{\\textheight}{-3cm}
4058 \\setlength{\\topmargin}{1.5cm}
4059 \\addtolength{\\topmargin}{-2.54cm}"
4060 "The document header used for processing LaTeX fragments.
4061 It is imperative that this header make sure that no page number
4062 appears on the page. The package defined in the variables
4063 `org-latex-default-packages-alist' and `org-latex-packages-alist'
4064 will either replace the placeholder \"[PACKAGES]\" in this
4065 header, or they will be appended."
4066 :group 'org-latex
4067 :type 'string)
4069 (defun org-set-packages-alist (var val)
4070 "Set the packages alist and make sure it has 3 elements per entry."
4071 (set var (mapcar (lambda (x)
4072 (if (and (consp x) (= (length x) 2))
4073 (list (car x) (nth 1 x) t)
4075 val)))
4077 (defun org-get-packages-alist (var)
4078 "Get the packages alist and make sure it has 3 elements per entry."
4079 (mapcar (lambda (x)
4080 (if (and (consp x) (= (length x) 2))
4081 (list (car x) (nth 1 x) t)
4083 (default-value var)))
4085 (defcustom org-latex-default-packages-alist
4086 '(("AUTO" "inputenc" t)
4087 ("T1" "fontenc" t)
4088 ("" "fixltx2e" nil)
4089 ("" "graphicx" t)
4090 ("" "grffile" t)
4091 ("" "longtable" nil)
4092 ("" "wrapfig" nil)
4093 ("" "rotating" nil)
4094 ("normalem" "ulem" t)
4095 ("" "amsmath" t)
4096 ("" "textcomp" t)
4097 ("" "amssymb" t)
4098 ("" "capt-of" nil)
4099 ("" "hyperref" nil))
4100 "Alist of default packages to be inserted in the header.
4102 Change this only if one of the packages here causes an
4103 incompatibility with another package you are using.
4105 The packages in this list are needed by one part or another of
4106 Org mode to function properly:
4108 - inputenc, fontenc: for basic font and character selection
4109 - fixltx2e: Important patches of LaTeX itself
4110 - graphicx: for including images
4111 - grffile: allow periods and spaces in graphics file names
4112 - longtable: For multipage tables
4113 - wrapfig: for figure placement
4114 - rotating: for sideways figures and tables
4115 - ulem: for underline and strike-through
4116 - amsmath: for subscript and superscript and math environments
4117 - textcomp, amssymb: for various symbols used
4118 for interpreting the entities in `org-entities'. You can skip
4119 some of these packages if you don't use any of their symbols.
4120 - capt-of: for captions outside of floats
4121 - hyperref: for cross references
4123 Therefore you should not modify this variable unless you know
4124 what you are doing. The one reason to change it anyway is that
4125 you might be loading some other package that conflicts with one
4126 of the default packages. Each element is either a cell or
4127 a string.
4129 A cell is of the format
4131 (\"options\" \"package\" SNIPPET-FLAG)
4133 If SNIPPET-FLAG is non-nil, the package also needs to be included
4134 when compiling LaTeX snippets into images for inclusion into
4135 non-LaTeX output.
4137 A string will be inserted as-is in the header of the document."
4138 :group 'org-latex
4139 :group 'org-export-latex
4140 :set 'org-set-packages-alist
4141 :get 'org-get-packages-alist
4142 :version "25.1"
4143 :package-version '(Org . "8.3")
4144 :type '(repeat
4145 (choice
4146 (list :tag "options/package pair"
4147 (string :tag "options")
4148 (string :tag "package")
4149 (boolean :tag "Snippet"))
4150 (string :tag "A line of LaTeX"))))
4152 (defcustom org-latex-packages-alist nil
4153 "Alist of packages to be inserted in every LaTeX header.
4155 These will be inserted after `org-latex-default-packages-alist'.
4156 Each element is either a cell or a string.
4158 A cell is of the format:
4160 (\"options\" \"package\" SNIPPET-FLAG)
4162 SNIPPET-FLAG, when non-nil, indicates that this package is also
4163 needed when turning LaTeX snippets into images for inclusion into
4164 non-LaTeX output.
4166 A string will be inserted as-is in the header of the document.
4168 Make sure that you only list packages here which:
4170 - you want in every file;
4171 - do not conflict with the setup in `org-format-latex-header';
4172 - do not conflict with the default packages in
4173 `org-latex-default-packages-alist'."
4174 :group 'org-latex
4175 :group 'org-export-latex
4176 :set 'org-set-packages-alist
4177 :get 'org-get-packages-alist
4178 :type '(repeat
4179 (choice
4180 (list :tag "options/package pair"
4181 (string :tag "options")
4182 (string :tag "package")
4183 (boolean :tag "Snippet"))
4184 (string :tag "A line of LaTeX"))))
4186 (defgroup org-appearance nil
4187 "Settings for Org-mode appearance."
4188 :tag "Org Appearance"
4189 :group 'org)
4191 (defcustom org-level-color-stars-only nil
4192 "Non-nil means fontify only the stars in each headline.
4193 When nil, the entire headline is fontified.
4194 Changing it requires restart of `font-lock-mode' to become effective
4195 also in regions already fontified."
4196 :group 'org-appearance
4197 :type 'boolean)
4199 (defcustom org-hide-leading-stars nil
4200 "Non-nil means hide the first N-1 stars in a headline.
4201 This works by using the face `org-hide' for these stars. This
4202 face is white for a light background, and black for a dark
4203 background. You may have to customize the face `org-hide' to
4204 make this work.
4205 Changing it requires restart of `font-lock-mode' to become effective
4206 also in regions already fontified.
4207 You may also set this on a per-file basis by adding one of the following
4208 lines to the buffer:
4210 #+STARTUP: hidestars
4211 #+STARTUP: showstars"
4212 :group 'org-appearance
4213 :type 'boolean)
4215 (defcustom org-hidden-keywords nil
4216 "List of symbols corresponding to keywords to be hidden the org buffer.
4217 For example, a value \\='(title) for this list will make the document's title
4218 appear in the buffer without the initial #+TITLE: keyword."
4219 :group 'org-appearance
4220 :version "24.1"
4221 :type '(set (const :tag "#+AUTHOR" author)
4222 (const :tag "#+DATE" date)
4223 (const :tag "#+EMAIL" email)
4224 (const :tag "#+TITLE" title)))
4226 (defcustom org-custom-properties nil
4227 "List of properties (as strings) with a special meaning.
4228 The default use of these custom properties is to let the user
4229 hide them with `org-toggle-custom-properties-visibility'."
4230 :group 'org-properties
4231 :group 'org-appearance
4232 :version "24.3"
4233 :type '(repeat (string :tag "Property Name")))
4235 (defcustom org-fontify-done-headline nil
4236 "Non-nil means change the face of a headline if it is marked DONE.
4237 Normally, only the TODO/DONE keyword indicates the state of a headline.
4238 When this is non-nil, the headline after the keyword is set to the
4239 `org-headline-done' as an additional indication."
4240 :group 'org-appearance
4241 :type 'boolean)
4243 (defcustom org-fontify-emphasized-text t
4244 "Non-nil means fontify *bold*, /italic/ and _underlined_ text.
4245 Changing this variable requires a restart of Emacs to take effect."
4246 :group 'org-appearance
4247 :type 'boolean)
4249 (defcustom org-fontify-whole-heading-line nil
4250 "Non-nil means fontify the whole line for headings.
4251 This is useful when setting a background color for the
4252 org-level-* faces."
4253 :group 'org-appearance
4254 :type 'boolean)
4256 (defcustom org-highlight-latex-and-related nil
4257 "Non-nil means highlight LaTeX related syntax in the buffer.
4258 When non nil, the value should be a list containing any of the
4259 following symbols:
4260 `latex' Highlight LaTeX snippets and environments.
4261 `script' Highlight subscript and superscript.
4262 `entities' Highlight entities."
4263 :group 'org-appearance
4264 :version "24.4"
4265 :package-version '(Org . "8.0")
4266 :type '(choice
4267 (const :tag "No highlighting" nil)
4268 (set :greedy t :tag "Highlight"
4269 (const :tag "LaTeX snippets and environments" latex)
4270 (const :tag "Subscript and superscript" script)
4271 (const :tag "Entities" entities))))
4273 (defcustom org-hide-emphasis-markers nil
4274 "Non-nil mean font-lock should hide the emphasis marker characters."
4275 :group 'org-appearance
4276 :type 'boolean)
4278 (defcustom org-hide-macro-markers nil
4279 "Non-nil mean font-lock should hide the brackets marking macro calls."
4280 :group 'org-appearance
4281 :type 'boolean)
4283 (defcustom org-pretty-entities nil
4284 "Non-nil means show entities as UTF8 characters.
4285 When nil, the \\name form remains in the buffer."
4286 :group 'org-appearance
4287 :version "24.1"
4288 :type 'boolean)
4290 (defcustom org-pretty-entities-include-sub-superscripts t
4291 "Non-nil means, pretty entity display includes formatting sub/superscripts."
4292 :group 'org-appearance
4293 :version "24.1"
4294 :type 'boolean)
4296 (defvar org-emph-re nil
4297 "Regular expression for matching emphasis.
4298 After a match, the match groups contain these elements:
4299 0 The match of the full regular expression, including the characters
4300 before and after the proper match
4301 1 The character before the proper match, or empty at beginning of line
4302 2 The proper match, including the leading and trailing markers
4303 3 The leading marker like * or /, indicating the type of highlighting
4304 4 The text between the emphasis markers, not including the markers
4305 5 The character after the match, empty at the end of a line")
4306 (defvar org-verbatim-re nil
4307 "Regular expression for matching verbatim text.")
4308 (defvar org-emphasis-regexp-components) ; defined just below
4309 (defvar org-emphasis-alist) ; defined just below
4310 (defun org-set-emph-re (var val)
4311 "Set variable and compute the emphasis regular expression."
4312 (set var val)
4313 (when (and (boundp 'org-emphasis-alist)
4314 (boundp 'org-emphasis-regexp-components)
4315 org-emphasis-alist org-emphasis-regexp-components)
4316 (let* ((e org-emphasis-regexp-components)
4317 (pre (car e))
4318 (post (nth 1 e))
4319 (border (nth 2 e))
4320 (body (nth 3 e))
4321 (nl (nth 4 e))
4322 (body1 (concat body "*?"))
4323 (markers (mapconcat 'car org-emphasis-alist ""))
4324 (vmarkers (mapconcat
4325 (lambda (x) (if (eq (nth 2 x) 'verbatim) (car x) ""))
4326 org-emphasis-alist "")))
4327 ;; make sure special characters appear at the right position in the class
4328 (if (string-match "\\^" markers)
4329 (setq markers (concat (replace-match "" t t markers) "^")))
4330 (if (string-match "-" markers)
4331 (setq markers (concat (replace-match "" t t markers) "-")))
4332 (if (string-match "\\^" vmarkers)
4333 (setq vmarkers (concat (replace-match "" t t vmarkers) "^")))
4334 (if (string-match "-" vmarkers)
4335 (setq vmarkers (concat (replace-match "" t t vmarkers) "-")))
4336 (if (> nl 0)
4337 (setq body1 (concat body1 "\\(?:\n" body "*?\\)\\{0,"
4338 (int-to-string nl) "\\}")))
4339 ;; Make the regexp
4340 (setq org-emph-re
4341 (concat "\\([" pre "]\\|^\\)"
4342 "\\("
4343 "\\([" markers "]\\)"
4344 "\\("
4345 "[^" border "]\\|"
4346 "[^" border "]"
4347 body1
4348 "[^" border "]"
4349 "\\)"
4350 "\\3\\)"
4351 "\\([" post "]\\|$\\)"))
4352 (setq org-verbatim-re
4353 (concat "\\([" pre "]\\|^\\)"
4354 "\\("
4355 "\\([" vmarkers "]\\)"
4356 "\\("
4357 "[^" border "]\\|"
4358 "[^" border "]"
4359 body1
4360 "[^" border "]"
4361 "\\)"
4362 "\\3\\)"
4363 "\\([" post "]\\|$\\)")))))
4365 ;; This used to be a defcustom (Org <8.0) but allowing the users to
4366 ;; set this option proved cumbersome. See this message/thread:
4367 ;; http://article.gmane.org/gmane.emacs.orgmode/68681
4368 (defvar org-emphasis-regexp-components
4369 '(" \t('\"{" "- \t.,:!?;'\")}\\[" " \t\r\n,\"'" "." 1)
4370 "Components used to build the regular expression for emphasis.
4371 This is a list with five entries. Terminology: In an emphasis string
4372 like \" *strong word* \", we call the initial space PREMATCH, the final
4373 space POSTMATCH, the stars MARKERS, \"s\" and \"d\" are BORDER characters
4374 and \"trong wor\" is the body. The different components in this variable
4375 specify what is allowed/forbidden in each part:
4377 pre Chars allowed as prematch. Beginning of line will be allowed too.
4378 post Chars allowed as postmatch. End of line will be allowed too.
4379 border The chars *forbidden* as border characters.
4380 body-regexp A regexp like \".\" to match a body character. Don't use
4381 non-shy groups here, and don't allow newline here.
4382 newline The maximum number of newlines allowed in an emphasis exp.
4384 You need to reload Org or to restart Emacs after customizing this.")
4386 (defcustom org-emphasis-alist
4387 `(("*" bold)
4388 ("/" italic)
4389 ("_" underline)
4390 ("=" org-verbatim verbatim)
4391 ("~" org-code verbatim)
4392 ("+" ,(if (featurep 'xemacs) 'org-table '(:strike-through t))))
4393 "Alist of characters and faces to emphasize text.
4394 Text starting and ending with a special character will be emphasized,
4395 for example *bold*, _underlined_ and /italic/. This variable sets the
4396 marker characters and the face to be used by font-lock for highlighting
4397 in Org-mode Emacs buffers.
4399 You need to reload Org or to restart Emacs after customizing this."
4400 :group 'org-appearance
4401 :set 'org-set-emph-re
4402 :version "24.4"
4403 :package-version '(Org . "8.0")
4404 :type '(repeat
4405 (list
4406 (string :tag "Marker character")
4407 (choice
4408 (face :tag "Font-lock-face")
4409 (plist :tag "Face property list"))
4410 (option (const verbatim)))))
4412 (defvar org-protecting-blocks
4413 '("src" "example" "latex" "ascii" "html" "ditaa" "dot" "r" "R")
4414 "Blocks that contain text that is quoted, i.e. not processed as Org syntax.
4415 This is needed for font-lock setup.")
4417 ;;; Miscellaneous options
4419 (defgroup org-completion nil
4420 "Completion in Org-mode."
4421 :tag "Org Completion"
4422 :group 'org)
4424 (defcustom org-completion-use-ido nil
4425 "Non-nil means use ido completion wherever possible.
4426 Note that `ido-mode' must be active for this variable to be relevant.
4427 If you decide to turn this variable on, you might well want to turn off
4428 `org-outline-path-complete-in-steps'.
4429 See also `org-completion-use-iswitchb'."
4430 :group 'org-completion
4431 :type 'boolean)
4433 (defcustom org-completion-use-iswitchb nil
4434 "Non-nil means use iswitchb completion wherever possible.
4435 Note that `iswitchb-mode' must be active for this variable to be relevant.
4436 If you decide to turn this variable on, you might well want to turn off
4437 `org-outline-path-complete-in-steps'.
4438 Note that this variable has only an effect if `org-completion-use-ido' is nil."
4439 :group 'org-completion
4440 :type 'boolean)
4442 (defcustom org-completion-fallback-command 'hippie-expand
4443 "The expansion command called by \\[pcomplete] in normal context.
4444 Normal means, no org-mode-specific context."
4445 :group 'org-completion
4446 :type 'function)
4448 ;;; Functions and variables from their packages
4449 ;; Declared here to avoid compiler warnings
4451 ;; XEmacs only
4452 (defvar outline-mode-menu-heading)
4453 (defvar outline-mode-menu-show)
4454 (defvar outline-mode-menu-hide)
4455 (defvar zmacs-regions) ; XEmacs regions
4457 ;; Emacs only
4458 (defvar mark-active)
4460 ;; Various packages
4461 (declare-function calendar-iso-to-absolute "cal-iso" (date))
4462 (declare-function calendar-forward-day "cal-move" (arg))
4463 (declare-function calendar-goto-date "cal-move" (date))
4464 (declare-function calendar-goto-today "cal-move" ())
4465 (declare-function calendar-iso-from-absolute "cal-iso" (date))
4466 (defvar calc-embedded-close-formula)
4467 (defvar calc-embedded-open-formula)
4468 (declare-function cdlatex-tab "ext:cdlatex" ())
4469 (declare-function cdlatex-compute-tables "ext:cdlatex" ())
4470 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
4471 (defvar font-lock-unfontify-region-function)
4472 (declare-function iswitchb-read-buffer "iswitchb"
4473 (prompt &optional default require-match start matches-set))
4474 (defvar iswitchb-temp-buflist)
4475 (declare-function org-gnus-follow-link "org-gnus" (&optional group article))
4476 (defvar org-agenda-tags-todo-honor-ignore-options)
4477 (declare-function org-agenda-skip "org-agenda" ())
4478 (declare-function
4479 org-agenda-format-item "org-agenda"
4480 (extra txt &optional level category tags dotime noprefix remove-re habitp))
4481 (declare-function org-agenda-new-marker "org-agenda" (&optional pos))
4482 (declare-function org-agenda-change-all-lines "org-agenda"
4483 (newhead hdmarker &optional fixface just-this))
4484 (declare-function org-agenda-set-restriction-lock "org-agenda" (&optional type))
4485 (declare-function org-agenda-maybe-redo "org-agenda" ())
4486 (declare-function org-agenda-save-markers-for-cut-and-paste "org-agenda"
4487 (beg end))
4488 (declare-function org-agenda-copy-local-variable "org-agenda" (var))
4489 (declare-function org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
4490 "org-agenda" (&optional end))
4491 (declare-function org-inlinetask-remove-END-maybe "org-inlinetask" ())
4492 (declare-function org-inlinetask-in-task-p "org-inlinetask" ())
4493 (declare-function org-inlinetask-goto-beginning "org-inlinetask" ())
4494 (declare-function org-inlinetask-goto-end "org-inlinetask" ())
4495 (declare-function org-indent-mode "org-indent" (&optional arg))
4496 (declare-function parse-time-string "parse-time" (string))
4497 (declare-function org-attach-reveal "org-attach" (&optional if-exists))
4498 (declare-function orgtbl-send-table "org-table" (&optional maybe))
4499 (defvar remember-data-file)
4500 (defvar texmathp-why)
4501 (declare-function speedbar-line-directory "speedbar" (&optional depth))
4502 (declare-function table--at-cell-p "table" (position &optional object at-column))
4503 (declare-function calc-eval "calc" (str &optional separator &rest args))
4505 ;;;###autoload
4506 (defun turn-on-orgtbl ()
4507 "Unconditionally turn on `orgtbl-mode'."
4508 (require 'org-table)
4509 (orgtbl-mode 1))
4511 (defun org-at-table-p (&optional table-type)
4512 "Non-nil if the cursor is inside an Org table.
4513 If TABLE-TYPE is non-nil, also check for table.el-type tables.
4514 If `org-enable-table-editor' is nil, return nil unconditionally."
4515 (and
4516 org-enable-table-editor
4517 (save-excursion
4518 (beginning-of-line)
4519 (org-looking-at-p (if table-type "[ \t]*[|+]" "[ \t]*|")))
4520 (or (not (derived-mode-p 'org-mode))
4521 (let ((e (org-element-lineage (org-element-at-point) '(table) t)))
4522 (and e (or table-type (eq (org-element-property :type e) 'org)))))))
4523 (defsubst org-table-p () (org-at-table-p))
4525 (defun org-at-table.el-p ()
4526 "Non-nil when point is at a table.el table."
4527 (and (save-excursion (beginning-of-line) (looking-at "[ \t]*[|+]"))
4528 (let ((element (org-element-at-point)))
4529 (and (eq (org-element-type element) 'table)
4530 (eq (org-element-property :type element) 'table.el)))))
4532 (defun org-table-recognize-table.el ()
4533 "If there is a table.el table nearby, recognize it and move into it."
4534 (when (and org-table-tab-recognizes-table.el (org-at-table.el-p))
4535 (beginning-of-line)
4536 (unless (or (looking-at org-table-dataline-regexp)
4537 (not (looking-at org-table1-hline-regexp)))
4538 (forward-line)
4539 (when (looking-at org-table-any-border-regexp)
4540 (forward-line -2)))
4541 (if (re-search-forward "|" (org-table-end t) t)
4542 (progn
4543 (require 'table)
4544 (if (table--at-cell-p (point)) t
4545 (message "recognizing table.el table...")
4546 (table-recognize-table)
4547 (message "recognizing table.el table...done")))
4548 (error "This should not happen"))))
4550 (defun org-at-table-hline-p ()
4551 "Non-nil when point is inside a hline in a table.
4552 Assume point is already in a table. If `org-enable-table-editor'
4553 is nil, return nil unconditionally."
4554 (and org-enable-table-editor
4555 (save-excursion
4556 (beginning-of-line)
4557 (looking-at org-table-hline-regexp))))
4559 (defun org-table-map-tables (function &optional quietly)
4560 "Apply FUNCTION to the start of all tables in the buffer."
4561 (save-excursion
4562 (save-restriction
4563 (widen)
4564 (goto-char (point-min))
4565 (while (re-search-forward org-table-any-line-regexp nil t)
4566 (unless quietly
4567 (message "Mapping tables: %d%%"
4568 (floor (* 100.0 (point)) (buffer-size))))
4569 (beginning-of-line 1)
4570 (when (and (looking-at org-table-line-regexp)
4571 ;; Exclude tables in src/example/verbatim/clocktable blocks
4572 (not (org-in-block-p '("src" "example" "verbatim" "clocktable"))))
4573 (save-excursion (funcall function))
4574 (or (looking-at org-table-line-regexp)
4575 (forward-char 1)))
4576 (re-search-forward org-table-any-border-regexp nil 1))))
4577 (unless quietly (message "Mapping tables: done")))
4579 (declare-function org-clock-save-markers-for-cut-and-paste "org-clock" (beg end))
4580 (declare-function org-clock-update-mode-line "org-clock" ())
4581 (declare-function org-resolve-clocks "org-clock"
4582 (&optional also-non-dangling-p prompt last-valid))
4584 (defun org-at-TBLFM-p (&optional pos)
4585 "Non-nil when point (or POS) is in #+TBLFM line."
4586 (save-excursion
4587 (goto-char (or pos (point)))
4588 (beginning-of-line)
4589 (and (let ((case-fold-search t)) (looking-at org-TBLFM-regexp))
4590 (eq (org-element-type (org-element-at-point)) 'table))))
4592 (defvar org-clock-start-time)
4593 (defvar org-clock-marker (make-marker)
4594 "Marker recording the last clock-in.")
4595 (defvar org-clock-hd-marker (make-marker)
4596 "Marker recording the last clock-in, but the headline position.")
4597 (defvar org-clock-heading ""
4598 "The heading of the current clock entry.")
4599 (defun org-clock-is-active ()
4600 "Return the buffer where the clock is currently running.
4601 Return nil if no clock is running."
4602 (marker-buffer org-clock-marker))
4604 (defun org-check-running-clock ()
4605 "Check if the current buffer contains the running clock.
4606 If yes, offer to stop it and to save the buffer with the changes."
4607 (when (and (equal (marker-buffer org-clock-marker) (current-buffer))
4608 (y-or-n-p (format "Clock-out in buffer %s before killing it? "
4609 (buffer-name))))
4610 (org-clock-out)
4611 (when (y-or-n-p "Save changed buffer?")
4612 (save-buffer))))
4614 (defun org-clocktable-try-shift (dir n)
4615 "Check if this line starts a clock table, if yes, shift the time block."
4616 (when (org-match-line "^[ \t]*#\\+BEGIN:[ \t]+clocktable\\>")
4617 (org-clocktable-shift dir n)))
4619 ;;;###autoload
4620 (defun org-clock-persistence-insinuate ()
4621 "Set up hooks for clock persistence."
4622 (require 'org-clock)
4623 (add-hook 'org-mode-hook 'org-clock-load)
4624 (add-hook 'kill-emacs-hook 'org-clock-save))
4626 (defgroup org-archive nil
4627 "Options concerning archiving in Org-mode."
4628 :tag "Org Archive"
4629 :group 'org-structure)
4631 (defcustom org-archive-location "%s_archive::"
4632 "The location where subtrees should be archived.
4634 The value of this variable is a string, consisting of two parts,
4635 separated by a double-colon. The first part is a filename and
4636 the second part is a headline.
4638 When the filename is omitted, archiving happens in the same file.
4639 %s in the filename will be replaced by the current file
4640 name (without the directory part). Archiving to a different file
4641 is useful to keep archived entries from contributing to the
4642 Org-mode Agenda.
4644 The archived entries will be filed as subtrees of the specified
4645 headline. When the headline is omitted, the subtrees are simply
4646 filed away at the end of the file, as top-level entries. Also in
4647 the heading you can use %s to represent the file name, this can be
4648 useful when using the same archive for a number of different files.
4650 Here are a few examples:
4651 \"%s_archive::\"
4652 If the current file is Projects.org, archive in file
4653 Projects.org_archive, as top-level trees. This is the default.
4655 \"::* Archived Tasks\"
4656 Archive in the current file, under the top-level headline
4657 \"* Archived Tasks\".
4659 \"~/org/archive.org::\"
4660 Archive in file ~/org/archive.org (absolute path), as top-level trees.
4662 \"~/org/archive.org::* From %s\"
4663 Archive in file ~/org/archive.org (absolute path), under headlines
4664 \"From FILENAME\" where file name is the current file name.
4666 \"~/org/datetree.org::datetree/* Finished Tasks\"
4667 The \"datetree/\" string is special, signifying to archive
4668 items to the datetree. Items are placed in either the CLOSED
4669 date of the item, or the current date if there is no CLOSED date.
4670 The heading will be a subentry to the current date. There doesn't
4671 need to be a heading, but there always needs to be a slash after
4672 datetree. For example, to store archived items directly in the
4673 datetree, use \"~/org/datetree.org::datetree/\".
4675 \"basement::** Finished Tasks\"
4676 Archive in file ./basement (relative path), as level 3 trees
4677 below the level 2 heading \"** Finished Tasks\".
4679 You may set this option on a per-file basis by adding to the buffer a
4680 line like
4682 #+ARCHIVE: basement::** Finished Tasks
4684 You may also define it locally for a subtree by setting an ARCHIVE property
4685 in the entry. If such a property is found in an entry, or anywhere up
4686 the hierarchy, it will be used."
4687 :group 'org-archive
4688 :type 'string)
4690 (defcustom org-agenda-skip-archived-trees t
4691 "Non-nil means the agenda will skip any items located in archived trees.
4692 An archived tree is a tree marked with the tag ARCHIVE. The use of this
4693 variable is no longer recommended, you should leave it at the value t.
4694 Instead, use the key `v' to cycle the archives-mode in the agenda."
4695 :group 'org-archive
4696 :group 'org-agenda-skip
4697 :type 'boolean)
4699 (defcustom org-columns-skip-archived-trees t
4700 "Non-nil means ignore archived trees when creating column view."
4701 :group 'org-archive
4702 :group 'org-properties
4703 :type 'boolean)
4705 (defcustom org-cycle-open-archived-trees nil
4706 "Non-nil means `org-cycle' will open archived trees.
4707 An archived tree is a tree marked with the tag ARCHIVE.
4708 When nil, archived trees will stay folded. You can still open them with
4709 normal outline commands like `show-all', but not with the cycling commands."
4710 :group 'org-archive
4711 :group 'org-cycle
4712 :type 'boolean)
4714 (defcustom org-sparse-tree-open-archived-trees nil
4715 "Non-nil means sparse tree construction shows matches in archived trees.
4716 When nil, matches in these trees are highlighted, but the trees are kept in
4717 collapsed state."
4718 :group 'org-archive
4719 :group 'org-sparse-trees
4720 :type 'boolean)
4722 (defcustom org-sparse-tree-default-date-type nil
4723 "The default date type when building a sparse tree.
4724 When this is nil, a date is a scheduled or a deadline timestamp.
4725 Otherwise, these types are allowed:
4727 all: all timestamps
4728 active: only active timestamps (<...>)
4729 inactive: only inactive timestamps ([...])
4730 scheduled: only scheduled timestamps
4731 deadline: only deadline timestamps"
4732 :type '(choice (const :tag "Scheduled or deadline" nil)
4733 (const :tag "All timestamps" all)
4734 (const :tag "Only active timestamps" active)
4735 (const :tag "Only inactive timestamps" inactive)
4736 (const :tag "Only scheduled timestamps" scheduled)
4737 (const :tag "Only deadline timestamps" deadline)
4738 (const :tag "Only closed timestamps" closed))
4739 :version "25.1"
4740 :package-version '(Org . "8.3")
4741 :group 'org-sparse-trees)
4743 (defun org-cycle-hide-archived-subtrees (state)
4744 "Re-hide all archived subtrees after a visibility state change."
4745 (when (and (not org-cycle-open-archived-trees)
4746 (not (memq state '(overview folded))))
4747 (save-excursion
4748 (let* ((globalp (memq state '(contents all)))
4749 (beg (if globalp (point-min) (point)))
4750 (end (if globalp (point-max) (org-end-of-subtree t))))
4751 (org-hide-archived-subtrees beg end)
4752 (goto-char beg)
4753 (if (looking-at (concat ".*:" org-archive-tag ":"))
4754 (message "%s" (substitute-command-keys
4755 "Subtree is archived and stays closed. Use \\[org-force-cycle-archived] to cycle it anyway.")))))))
4757 (defun org-force-cycle-archived ()
4758 "Cycle subtree even if it is archived."
4759 (interactive)
4760 (setq this-command 'org-cycle)
4761 (let ((org-cycle-open-archived-trees t))
4762 (call-interactively 'org-cycle)))
4764 (defun org-hide-archived-subtrees (beg end)
4765 "Re-hide all archived subtrees after a visibility state change."
4766 (org-with-wide-buffer
4767 (let ((case-fold-search nil)
4768 (re (concat org-outline-regexp-bol ".*:" org-archive-tag ":")))
4769 (goto-char beg)
4770 ;; Include headline point is currently on.
4771 (beginning-of-line)
4772 (while (and (< (point) end) (re-search-forward re end t))
4773 (when (member org-archive-tag (org-get-tags))
4774 (org-flag-subtree t)
4775 (org-end-of-subtree t))))))
4777 (declare-function outline-end-of-heading "outline" ())
4778 (declare-function outline-flag-region "outline" (from to flag))
4779 (defun org-flag-subtree (flag)
4780 (save-excursion
4781 (org-back-to-heading t)
4782 (outline-end-of-heading)
4783 (outline-flag-region (point)
4784 (progn (org-end-of-subtree t) (point))
4785 flag)))
4787 (defalias 'org-advertized-archive-subtree 'org-archive-subtree)
4789 ;; Declare Column View Code
4791 (declare-function org-columns-number-to-string "org-colview" (n fmt &optional printf))
4792 (declare-function org-columns-get-format-and-top-level "org-colview" ())
4793 (declare-function org-columns-compute "org-colview" (property))
4795 ;; Declare ID code
4797 (declare-function org-id-store-link "org-id")
4798 (declare-function org-id-locations-load "org-id")
4799 (declare-function org-id-locations-save "org-id")
4800 (defvar org-id-track-globally)
4802 ;;; Variables for pre-computed regular expressions, all buffer local
4804 (defvar org-todo-regexp nil
4805 "Matches any of the TODO state keywords.")
4806 (make-variable-buffer-local 'org-todo-regexp)
4807 (defvar org-not-done-regexp nil
4808 "Matches any of the TODO state keywords except the last one.")
4809 (make-variable-buffer-local 'org-not-done-regexp)
4810 (defvar org-not-done-heading-regexp nil
4811 "Matches a TODO headline that is not done.")
4812 (make-variable-buffer-local 'org-not-done-heading-regexp)
4813 (defvar org-todo-line-regexp nil
4814 "Matches a headline and puts TODO state into group 2 if present.")
4815 (make-variable-buffer-local 'org-todo-line-regexp)
4816 (defvar org-complex-heading-regexp nil
4817 "Matches a headline and puts everything into groups:
4818 group 1: the stars
4819 group 2: The todo keyword, maybe
4820 group 3: Priority cookie
4821 group 4: True headline
4822 group 5: Tags")
4823 (make-variable-buffer-local 'org-complex-heading-regexp)
4824 (defvar org-complex-heading-regexp-format nil
4825 "Printf format to make regexp to match an exact headline.
4826 This regexp will match the headline of any node which has the
4827 exact headline text that is put into the format, but may have any
4828 TODO state, priority and tags.")
4829 (make-variable-buffer-local 'org-complex-heading-regexp-format)
4830 (defvar org-todo-line-tags-regexp nil
4831 "Matches a headline and puts TODO state into group 2 if present.
4832 Also put tags into group 4 if tags are present.")
4833 (make-variable-buffer-local 'org-todo-line-tags-regexp)
4835 (defconst org-plain-time-of-day-regexp
4836 (concat
4837 "\\(\\<[012]?[0-9]"
4838 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4839 "\\(--?"
4840 "\\(\\<[012]?[0-9]"
4841 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4842 "\\)?")
4843 "Regular expression to match a plain time or time range.
4844 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4845 groups carry important information:
4846 0 the full match
4847 1 the first time, range or not
4848 8 the second time, if it is a range.")
4850 (defconst org-plain-time-extension-regexp
4851 (concat
4852 "\\(\\<[012]?[0-9]"
4853 "\\(\\(:\\([0-5][0-9]\\([AaPp][Mm]\\)?\\)\\)\\|\\([AaPp][Mm]\\)\\)\\>\\)"
4854 "\\+\\([0-9]+\\)\\(:\\([0-5][0-9]\\)\\)?")
4855 "Regular expression to match a time range like 13:30+2:10 = 13:30-15:40.
4856 Examples: 11:45 or 8am-13:15 or 2:45-2:45pm. After a match, the following
4857 groups carry important information:
4858 0 the full match
4859 7 hours of duration
4860 9 minutes of duration")
4862 (defconst org-stamp-time-of-day-regexp
4863 (concat
4864 "<\\([0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\} +\\sw+ +\\)"
4865 "\\([012][0-9]:[0-5][0-9]\\(-\\([012][0-9]:[0-5][0-9]\\)\\)?[^\n\r>]*?\\)>"
4866 "\\(--?"
4867 "<\\1\\([012][0-9]:[0-5][0-9]\\)>\\)?")
4868 "Regular expression to match a timestamp time or time range.
4869 After a match, the following groups carry important information:
4870 0 the full match
4871 1 date plus weekday, for back referencing to make sure both times are on the same day
4872 2 the first time, range or not
4873 4 the second time, if it is a range.")
4875 (defconst org-startup-options
4876 '(("fold" org-startup-folded t)
4877 ("overview" org-startup-folded t)
4878 ("nofold" org-startup-folded nil)
4879 ("showall" org-startup-folded nil)
4880 ("showeverything" org-startup-folded showeverything)
4881 ("content" org-startup-folded content)
4882 ("indent" org-startup-indented t)
4883 ("noindent" org-startup-indented nil)
4884 ("hidestars" org-hide-leading-stars t)
4885 ("showstars" org-hide-leading-stars nil)
4886 ("odd" org-odd-levels-only t)
4887 ("oddeven" org-odd-levels-only nil)
4888 ("align" org-startup-align-all-tables t)
4889 ("noalign" org-startup-align-all-tables nil)
4890 ("inlineimages" org-startup-with-inline-images t)
4891 ("noinlineimages" org-startup-with-inline-images nil)
4892 ("latexpreview" org-startup-with-latex-preview t)
4893 ("nolatexpreview" org-startup-with-latex-preview nil)
4894 ("customtime" org-display-custom-times t)
4895 ("logdone" org-log-done time)
4896 ("lognotedone" org-log-done note)
4897 ("nologdone" org-log-done nil)
4898 ("lognoteclock-out" org-log-note-clock-out t)
4899 ("nolognoteclock-out" org-log-note-clock-out nil)
4900 ("logrepeat" org-log-repeat state)
4901 ("lognoterepeat" org-log-repeat note)
4902 ("logdrawer" org-log-into-drawer t)
4903 ("nologdrawer" org-log-into-drawer nil)
4904 ("logstatesreversed" org-log-states-order-reversed t)
4905 ("nologstatesreversed" org-log-states-order-reversed nil)
4906 ("nologrepeat" org-log-repeat nil)
4907 ("logreschedule" org-log-reschedule time)
4908 ("lognotereschedule" org-log-reschedule note)
4909 ("nologreschedule" org-log-reschedule nil)
4910 ("logredeadline" org-log-redeadline time)
4911 ("lognoteredeadline" org-log-redeadline note)
4912 ("nologredeadline" org-log-redeadline nil)
4913 ("logrefile" org-log-refile time)
4914 ("lognoterefile" org-log-refile note)
4915 ("nologrefile" org-log-refile nil)
4916 ("fninline" org-footnote-define-inline t)
4917 ("nofninline" org-footnote-define-inline nil)
4918 ("fnlocal" org-footnote-section nil)
4919 ("fnauto" org-footnote-auto-label t)
4920 ("fnprompt" org-footnote-auto-label nil)
4921 ("fnconfirm" org-footnote-auto-label confirm)
4922 ("fnplain" org-footnote-auto-label plain)
4923 ("fnadjust" org-footnote-auto-adjust t)
4924 ("nofnadjust" org-footnote-auto-adjust nil)
4925 ("constcgs" constants-unit-system cgs)
4926 ("constSI" constants-unit-system SI)
4927 ("noptag" org-tag-persistent-alist nil)
4928 ("hideblocks" org-hide-block-startup t)
4929 ("nohideblocks" org-hide-block-startup nil)
4930 ("beamer" org-startup-with-beamer-mode t)
4931 ("entitiespretty" org-pretty-entities t)
4932 ("entitiesplain" org-pretty-entities nil))
4933 "Variable associated with STARTUP options for org-mode.
4934 Each element is a list of three items: the startup options (as written
4935 in the #+STARTUP line), the corresponding variable, and the value to set
4936 this variable to if the option is found. An optional forth element PUSH
4937 means to push this value onto the list in the variable.")
4939 (defcustom org-group-tags t
4940 "When non-nil (the default), use group tags.
4941 This can be turned on/off through `org-toggle-tags-groups'."
4942 :group 'org-tags
4943 :group 'org-startup
4944 :type 'boolean)
4946 (defvar org-inhibit-startup nil) ; Dynamically-scoped param.
4948 (defun org-toggle-tags-groups ()
4949 "Toggle support for group tags.
4950 Support for group tags is controlled by the option
4951 `org-group-tags', which is non-nil by default."
4952 (interactive)
4953 (setq org-group-tags (not org-group-tags))
4954 (cond ((and (derived-mode-p 'org-agenda-mode)
4955 org-group-tags)
4956 (org-agenda-redo))
4957 ((derived-mode-p 'org-mode)
4958 (let ((org-inhibit-startup t)) (org-mode))))
4959 (message "Groups tags support has been turned %s"
4960 (if org-group-tags "on" "off")))
4962 (defun org-set-regexps-and-options (&optional tags-only)
4963 "Precompute regular expressions used in the current buffer.
4964 When optional argument TAGS-ONLY is non-nil, only compute tags
4965 related expressions."
4966 (when (derived-mode-p 'org-mode)
4967 (let ((alist (org--setup-collect-keywords
4968 (org-make-options-regexp
4969 (append '("FILETAGS" "TAGS" "SETUPFILE")
4970 (and (not tags-only)
4971 '("ARCHIVE" "CATEGORY" "COLUMNS" "CONSTANTS"
4972 "LINK" "OPTIONS" "PRIORITIES" "PROPERTY"
4973 "SEQ_TODO" "STARTUP" "TODO" "TYP_TODO")))))))
4974 (org--setup-process-tags
4975 (cdr (assq 'tags alist)) (cdr (assq 'filetags alist)))
4976 (unless tags-only
4977 ;; File properties.
4978 (org-set-local 'org-file-properties (cdr (assq 'property alist)))
4979 ;; Archive location.
4980 (let ((archive (cdr (assq 'archive alist))))
4981 (when archive (org-set-local 'org-archive-location archive)))
4982 ;; Category.
4983 (let ((cat (org-string-nw-p (cdr (assq 'category alist)))))
4984 (when cat
4985 (org-set-local 'org-category (intern cat))
4986 (org-set-local 'org-file-properties
4987 (org--update-property-plist
4988 "CATEGORY" cat org-file-properties))))
4989 ;; Columns.
4990 (let ((column (cdr (assq 'columns alist))))
4991 (when column (org-set-local 'org-columns-default-format column)))
4992 ;; Constants.
4993 (setq org-table-formula-constants-local (cdr (assq 'constants alist)))
4994 ;; Link abbreviations.
4995 (let ((links (cdr (assq 'link alist))))
4996 (when links (setq org-link-abbrev-alist-local (nreverse links))))
4997 ;; Priorities.
4998 (let ((priorities (cdr (assq 'priorities alist))))
4999 (when priorities
5000 (org-set-local 'org-highest-priority (nth 0 priorities))
5001 (org-set-local 'org-lowest-priority (nth 1 priorities))
5002 (org-set-local 'org-default-priority (nth 2 priorities))))
5003 ;; Scripts.
5004 (let ((scripts (assq 'scripts alist)))
5005 (when scripts
5006 (org-set-local 'org-use-sub-superscripts (cdr scripts))))
5007 ;; Startup options.
5008 (let ((startup (cdr (assq 'startup alist))))
5009 (dolist (option startup)
5010 (let ((entry (assoc-string option org-startup-options t)))
5011 (when entry
5012 (let ((var (nth 1 entry))
5013 (val (nth 2 entry)))
5014 (if (not (nth 3 entry)) (org-set-local var val)
5015 (unless (listp (symbol-value var))
5016 (org-set-local var nil))
5017 (add-to-list var val)))))))
5018 ;; TODO keywords.
5019 (org-set-local 'org-todo-kwd-alist nil)
5020 (org-set-local 'org-todo-key-alist nil)
5021 (org-set-local 'org-todo-key-trigger nil)
5022 (org-set-local 'org-todo-keywords-1 nil)
5023 (org-set-local 'org-done-keywords nil)
5024 (org-set-local 'org-todo-heads nil)
5025 (org-set-local 'org-todo-sets nil)
5026 (org-set-local 'org-todo-log-states nil)
5027 (let ((todo-sequences
5028 (or (nreverse (cdr (assq 'todo alist)))
5029 (let ((d (default-value 'org-todo-keywords)))
5030 (if (not (stringp (car d))) d
5031 ;; XXX: Backward compatibility code.
5032 (list (cons org-todo-interpretation d)))))))
5033 (dolist (sequence todo-sequences)
5034 (let* ((sequence (or (run-hook-with-args-until-success
5035 'org-todo-setup-filter-hook sequence)
5036 sequence))
5037 (sequence-type (car sequence))
5038 (keywords (cdr sequence))
5039 (sep (member "|" keywords))
5040 names alist)
5041 (dolist (k (remove "|" keywords))
5042 (unless (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?.*?)\\)?$"
5044 (error "Invalid TODO keyword %s" k))
5045 (let ((name (match-string 1 k))
5046 (key (match-string 2 k))
5047 (log (org-extract-log-state-settings k)))
5048 (push name names)
5049 (push (cons name (and key (string-to-char key))) alist)
5050 (when log (push log org-todo-log-states))))
5051 (let* ((names (nreverse names))
5052 (done (if sep (org-remove-keyword-keys (cdr sep))
5053 (last names)))
5054 (head (car names))
5055 (tail (list sequence-type head (car done) (org-last done))))
5056 (add-to-list 'org-todo-heads head 'append)
5057 (push names org-todo-sets)
5058 (setq org-done-keywords (append org-done-keywords done nil))
5059 (setq org-todo-keywords-1 (append org-todo-keywords-1 names nil))
5060 (setq org-todo-key-alist
5061 (append org-todo-key-alist
5062 (and alist
5063 (append '((:startgroup))
5064 (nreverse alist)
5065 '((:endgroup))))))
5066 (dolist (k names) (push (cons k tail) org-todo-kwd-alist))))))
5067 (setq org-todo-sets (nreverse org-todo-sets)
5068 org-todo-kwd-alist (nreverse org-todo-kwd-alist)
5069 org-todo-key-trigger (delq nil (mapcar #'cdr org-todo-key-alist))
5070 org-todo-key-alist (org-assign-fast-keys org-todo-key-alist))
5071 ;; Compute the regular expressions and other local variables.
5072 ;; Using `org-outline-regexp-bol' would complicate them much,
5073 ;; because of the fixed white space at the end of that string.
5074 (if (not org-done-keywords)
5075 (setq org-done-keywords
5076 (and org-todo-keywords-1 (last org-todo-keywords-1))))
5077 (setq org-not-done-keywords
5078 (org-delete-all org-done-keywords
5079 (copy-sequence org-todo-keywords-1))
5080 org-todo-regexp (regexp-opt org-todo-keywords-1 t)
5081 org-not-done-regexp (regexp-opt org-not-done-keywords t)
5082 org-not-done-heading-regexp
5083 (format org-heading-keyword-regexp-format org-not-done-regexp)
5084 org-todo-line-regexp
5085 (format org-heading-keyword-maybe-regexp-format org-todo-regexp)
5086 org-complex-heading-regexp
5087 (concat "^\\(\\*+\\)"
5088 "\\(?: +" org-todo-regexp "\\)?"
5089 "\\(?: +\\(\\[#.\\]\\)\\)?"
5090 "\\(?: +\\(.*?\\)\\)??"
5091 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)?")
5092 "[ \t]*$")
5093 org-complex-heading-regexp-format
5094 (concat "^\\(\\*+\\)"
5095 "\\(?: +" org-todo-regexp "\\)?"
5096 "\\(?: +\\(\\[#.\\]\\)\\)?"
5097 "\\(?: +"
5098 ;; Stats cookies can be stuck to body.
5099 "\\(?:\\[[0-9%%/]+\\] *\\)*"
5100 "\\(%s\\)"
5101 "\\(?: *\\[[0-9%%/]+\\]\\)*"
5102 "\\)"
5103 (org-re "\\(?:[ \t]+\\(:[[:alnum:]_@#%%:]+:\\)\\)?")
5104 "[ \t]*$")
5105 org-todo-line-tags-regexp
5106 (concat "^\\(\\*+\\)"
5107 "\\(?: +" org-todo-regexp "\\)?"
5108 "\\(?: +\\(.*?\\)\\)??"
5109 (org-re "\\(?:[ \t]+\\(:[[:alnum:]:_@#%]+:\\)\\)?")
5110 "[ \t]*$"))
5111 (org-compute-latex-and-related-regexp)))))
5113 (defun org--setup-collect-keywords (regexp &optional files alist)
5114 "Return setup keywords values as an alist.
5116 REGEXP matches a subset of setup keywords. FILES is a list of
5117 file names already visited. It is used to avoid circular setup
5118 files. ALIST, when non-nil, is the alist computed so far.
5120 Return value contains the following keys: `archive', `category',
5121 `columns', `constants', `filetags', `link', `priorities',
5122 `property', `scripts', `startup', `tags' and `todo'."
5123 (org-with-wide-buffer
5124 (goto-char (point-min))
5125 (let ((case-fold-search t))
5126 (while (re-search-forward regexp nil t)
5127 (let ((element (org-element-at-point)))
5128 (when (eq (org-element-type element) 'keyword)
5129 (let ((key (org-element-property :key element))
5130 (value (org-element-property :value element)))
5131 (cond
5132 ((equal key "ARCHIVE")
5133 (when (org-string-nw-p value)
5134 (push (cons 'archive value) alist)))
5135 ((equal key "CATEGORY") (push (cons 'category value) alist))
5136 ((equal key "COLUMNS") (push (cons 'columns value) alist))
5137 ((equal key "CONSTANTS")
5138 (let* ((constants (assq 'constants alist))
5139 (store (cdr constants)))
5140 (dolist (pair (org-split-string value))
5141 (when (string-match "^\\([a-zA-Z0][_a-zA-Z0-9]*\\)=\\(.*\\)"
5142 pair)
5143 (let* ((name (match-string 1 pair))
5144 (value (match-string 2 pair))
5145 (old (assoc name store)))
5146 (if old (setcdr old value)
5147 (push (cons name value) store)))))
5148 (if constants (setcdr constants store)
5149 (push (cons 'constants store) alist))))
5150 ((equal key "FILETAGS")
5151 (when (org-string-nw-p value)
5152 (let ((old (assq 'filetags alist))
5153 (new (apply #'nconc
5154 (mapcar (lambda (x) (org-split-string x ":"))
5155 (org-split-string value)))))
5156 (if old (setcdr old (append new (cdr old)))
5157 (push (cons 'filetags new) alist)))))
5158 ((equal key "LINK")
5159 (when (string-match "\\`\\(\\S-+\\)[ \t]+\\(.+\\)" value)
5160 (let ((links (assq 'link alist))
5161 (pair (cons (org-match-string-no-properties 1 value)
5162 (org-match-string-no-properties 2 value))))
5163 (if links (push pair (cdr links))
5164 (push (list 'link pair) alist)))))
5165 ((equal key "OPTIONS")
5166 (when (and (org-string-nw-p value)
5167 (string-match "\\^:\\(t\\|nil\\|{}\\)" value))
5168 (push (cons 'scripts (read (match-string 1 value))) alist)))
5169 ((equal key "PRIORITIES")
5170 (push (cons 'priorities
5171 (let ((prio (org-split-string value)))
5172 (if (< (length prio) 3) '(?A ?C ?B)
5173 (mapcar #'string-to-char prio))))
5174 alist))
5175 ((equal key "PROPERTY")
5176 (when (string-match "\\(\\S-+\\)[ \t]+\\(.*\\)" value)
5177 (let* ((property (assq 'property alist))
5178 (value (org--update-property-plist
5179 (org-match-string-no-properties 1 value)
5180 (org-match-string-no-properties 2 value)
5181 (cdr property))))
5182 (if property (setcdr property value)
5183 (push (cons 'property value) alist)))))
5184 ((equal key "STARTUP")
5185 (let ((startup (assq 'startup alist)))
5186 (if startup
5187 (setcdr startup
5188 (append (cdr startup) (org-split-string value)))
5189 (push (cons 'startup (org-split-string value)) alist))))
5190 ((equal key "TAGS")
5191 (let ((tag-cell (assq 'tags alist)))
5192 (if tag-cell
5193 (setcdr tag-cell
5194 (append (cdr tag-cell)
5195 '("\\n")
5196 (org-split-string value)))
5197 (push (cons 'tags (org-split-string value)) alist))))
5198 ((member key '("TODO" "SEQ_TODO" "TYP_TODO"))
5199 (let ((todo (assq 'todo alist))
5200 (value (cons (if (equal key "TYP_TODO") 'type 'sequence)
5201 (org-split-string value))))
5202 (if todo (push value (cdr todo))
5203 (push (list 'todo value) alist))))
5204 ((equal key "SETUPFILE")
5205 (unless buffer-read-only ; Do not check in Gnus messages.
5206 (let ((f (and (org-string-nw-p value)
5207 (expand-file-name
5208 (org-remove-double-quotes value)))))
5209 (when (and f (file-readable-p f) (not (member f files)))
5210 (with-temp-buffer
5211 (setq default-directory (file-name-directory f))
5212 (insert-file-contents f)
5213 (setq alist
5214 ;; Fake Org mode to benefit from cache
5215 ;; without recurring needlessly.
5216 (let ((major-mode 'org-mode))
5217 (org--setup-collect-keywords
5218 regexp (cons f files) alist)))))))))))))))
5219 alist)
5221 (defun org--setup-process-tags (tags filetags)
5222 "Precompute variables used for tags.
5223 TAGS is a list of tags and tag group symbols, as strings.
5224 FILETAGS is a list of tags, as strings."
5225 ;; Process the file tags.
5226 (org-set-local 'org-file-tags
5227 (mapcar #'org-add-prop-inherited filetags))
5228 ;; Provide default tags if no local tags are found.
5229 (when (and (not tags) org-tag-alist)
5230 (setq tags
5231 (mapcar (lambda (tag)
5232 (case (car tag)
5233 (:startgroup "{")
5234 (:endgroup "}")
5235 (:startgrouptag "[")
5236 (:endgrouptag "]")
5237 (:grouptags ":")
5238 (:newline "\\n")
5239 (otherwise (concat (car tag)
5240 (and (characterp (cdr tag))
5241 (format "(%c)" (cdr tag)))))))
5242 org-tag-alist)))
5243 ;; Process the tags.
5244 (org-set-local 'org-tag-groups-alist nil)
5245 (org-set-local 'org-tag-alist nil)
5246 (let (group-flag)
5247 (while tags
5248 (let ((e (car tags)))
5249 (setq tags (cdr tags))
5250 (cond
5251 ((equal e "{")
5252 (push '(:startgroup) org-tag-alist)
5253 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5254 ((equal e "}")
5255 (push '(:endgroup) org-tag-alist)
5256 (setq group-flag nil))
5257 ((equal e "[")
5258 (push '(:startgrouptag) org-tag-alist)
5259 (when (equal (nth 1 tags) ":") (setq group-flag t)))
5260 ((equal e "]")
5261 (push '(:endgrouptag) org-tag-alist)
5262 (setq group-flag nil))
5263 ((equal e ":")
5264 (push '(:grouptags) org-tag-alist)
5265 (setq group-flag 'append))
5266 ((equal e "\\n") (push '(:newline) org-tag-alist))
5267 ((string-match
5268 (org-re (concat "\\`\\([[:alnum:]_@#%]+"
5269 "\\|{.+?}\\)" ; regular expression
5270 "\\(?:(\\(.\\))\\)?\\'")) e)
5271 (let ((tag (match-string 1 e))
5272 (key (and (match-beginning 2)
5273 (string-to-char (match-string 2 e)))))
5274 (cond ((eq group-flag 'append)
5275 (setcar org-tag-groups-alist
5276 (append (car org-tag-groups-alist) (list tag))))
5277 (group-flag (push (list tag) org-tag-groups-alist)))
5278 ;; Push all tags in groups, no matter if they already exist.
5279 (unless (and (not group-flag) (assoc tag org-tag-alist))
5280 (push (cons tag key) org-tag-alist))))))))
5281 (setq org-tag-alist (nreverse org-tag-alist)))
5283 (defun org-file-contents (file &optional noerror)
5284 "Return the contents of FILE, as a string."
5285 (if (and file (file-readable-p file))
5286 (with-temp-buffer
5287 (insert-file-contents file)
5288 (buffer-string))
5289 (funcall (if noerror 'message 'error)
5290 "Cannot read file \"%s\"%s"
5291 file
5292 (let ((from (buffer-file-name (buffer-base-buffer))))
5293 (if from (concat " (referenced in file \"" from "\")") "")))))
5295 (defun org-extract-log-state-settings (x)
5296 "Extract the log state setting from a TODO keyword string.
5297 This will extract info from a string like \"WAIT(w@/!)\"."
5298 (let (kw key log1 log2)
5299 (when (string-match "^\\(.*?\\)\\(?:(\\([^!@/]\\)?\\([!@]\\)?\\(?:/\\([!@]\\)\\)?)\\)?$" x)
5300 (setq kw (match-string 1 x)
5301 key (and (match-end 2) (match-string 2 x))
5302 log1 (and (match-end 3) (match-string 3 x))
5303 log2 (and (match-end 4) (match-string 4 x)))
5304 (and (or log1 log2)
5305 (list kw
5306 (and log1 (if (equal log1 "!") 'time 'note))
5307 (and log2 (if (equal log2 "!") 'time 'note)))))))
5309 (defun org-remove-keyword-keys (list)
5310 "Remove a pair of parenthesis at the end of each string in LIST."
5311 (mapcar (lambda (x)
5312 (if (string-match "(.*)$" x)
5313 (substring x 0 (match-beginning 0))
5315 list))
5317 (defun org-assign-fast-keys (alist)
5318 "Assign fast keys to a keyword-key alist.
5319 Respect keys that are already there."
5320 (let (new e (alt ?0))
5321 (while (setq e (pop alist))
5322 (if (or (memq (car e) '(:newline :grouptags :endgroup :startgroup))
5323 (cdr e)) ;; Key already assigned.
5324 (push e new)
5325 (let ((clist (string-to-list (downcase (car e))))
5326 (used (append new alist)))
5327 (when (= (car clist) ?@)
5328 (pop clist))
5329 (while (and clist (rassoc (car clist) used))
5330 (pop clist))
5331 (unless clist
5332 (while (rassoc alt used)
5333 (incf alt)))
5334 (push (cons (car e) (or (car clist) alt)) new))))
5335 (nreverse new)))
5337 ;;; Some variables used in various places
5339 (defvar org-window-configuration nil
5340 "Used in various places to store a window configuration.")
5341 (defvar org-selected-window nil
5342 "Used in various places to store a window configuration.")
5343 (defvar org-finish-function nil
5344 "Function to be called when `C-c C-c' is used.
5345 This is for getting out of special buffers like capture.")
5348 ;; FIXME: Occasionally check by commenting these, to make sure
5349 ;; no other functions uses these, forgetting to let-bind them.
5350 (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
5351 (defvar org-last-state)
5352 (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
5354 ;; Defined somewhere in this file, but used before definition.
5355 (defvar org-entities) ;; defined in org-entities.el
5356 (defvar org-struct-menu)
5357 (defvar org-org-menu)
5358 (defvar org-tbl-menu)
5360 ;;;; Define the Org-mode
5362 ;; We use a before-change function to check if a table might need
5363 ;; an update.
5364 (defvar org-table-may-need-update t
5365 "Indicates that a table might need an update.
5366 This variable is set by `org-before-change-function'.
5367 `org-table-align' sets it back to nil.")
5368 (defun org-before-change-function (beg end)
5369 "Every change indicates that a table might need an update."
5370 (setq org-table-may-need-update t))
5371 (defvar org-mode-map)
5372 (defvar org-inhibit-startup-visibility-stuff nil) ; Dynamically-scoped param.
5373 (defvar org-agenda-keep-modes nil) ; Dynamically-scoped param.
5374 (defvar org-inhibit-logging nil) ; Dynamically-scoped param.
5375 (defvar org-inhibit-blocking nil) ; Dynamically-scoped param.
5376 (defvar org-table-buffer-is-an nil)
5378 (defvar bidi-paragraph-direction)
5379 (defvar buffer-face-mode-face)
5381 (require 'outline)
5382 (if (and (not (keymapp outline-mode-map)) (featurep 'allout))
5383 (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"))
5384 (require 'noutline "noutline" 'noerror) ;; stock XEmacs does not have it
5386 ;; Other stuff we need.
5387 (require 'time-date)
5388 (unless (fboundp 'time-subtract) (defalias 'time-subtract 'subtract-time))
5389 (require 'easymenu)
5390 (autoload 'easy-menu-add "easymenu")
5391 (require 'overlay)
5393 ;; (require 'org-macs) moved higher up in the file before it is first used
5394 (require 'org-entities)
5395 ;; (require 'org-compat) moved higher up in the file before it is first used
5396 (require 'org-faces)
5397 (require 'org-list)
5398 (require 'org-pcomplete)
5399 (require 'org-src)
5400 (require 'org-footnote)
5401 (require 'org-macro)
5403 ;; babel
5404 (require 'ob)
5406 ;;;###autoload
5407 (define-derived-mode org-mode outline-mode "Org"
5408 "Outline-based notes management and organizer, alias
5409 \"Carsten's outline-mode for keeping track of everything.\"
5411 Org-mode develops organizational tasks around a NOTES file which
5412 contains information about projects as plain text. Org-mode is
5413 implemented on top of outline-mode, which is ideal to keep the content
5414 of large files well structured. It supports ToDo items, deadlines and
5415 time stamps, which magically appear in the diary listing of the Emacs
5416 calendar. Tables are easily created with a built-in table editor.
5417 Plain text URL-like links connect to websites, emails (VM), Usenet
5418 messages (Gnus), BBDB entries, and any files related to the project.
5419 For printing and sharing of notes, an Org-mode file (or a part of it)
5420 can be exported as a structured ASCII or HTML file.
5422 The following commands are available:
5424 \\{org-mode-map}"
5426 ;; Get rid of Outline menus, they are not needed
5427 ;; Need to do this here because define-derived-mode sets up
5428 ;; the keymap so late. Still, it is a waste to call this each time
5429 ;; we switch another buffer into org-mode.
5430 (if (featurep 'xemacs)
5431 (when (boundp 'outline-mode-menu-heading)
5432 ;; Assume this is Greg's port, it uses easymenu
5433 (easy-menu-remove outline-mode-menu-heading)
5434 (easy-menu-remove outline-mode-menu-show)
5435 (easy-menu-remove outline-mode-menu-hide))
5436 (define-key org-mode-map [menu-bar headings] 'undefined)
5437 (define-key org-mode-map [menu-bar hide] 'undefined)
5438 (define-key org-mode-map [menu-bar show] 'undefined))
5440 (org-load-modules-maybe)
5441 (when (featurep 'xemacs)
5442 (easy-menu-add org-org-menu)
5443 (easy-menu-add org-tbl-menu))
5444 (org-install-agenda-files-menu)
5445 (if org-descriptive-links (add-to-invisibility-spec '(org-link)))
5446 (add-to-invisibility-spec '(org-cwidth))
5447 (add-to-invisibility-spec '(org-hide-block . t))
5448 (when (featurep 'xemacs)
5449 (org-set-local 'line-move-ignore-invisible t))
5450 (org-set-local 'outline-regexp org-outline-regexp)
5451 (org-set-local 'outline-level 'org-outline-level)
5452 (setq bidi-paragraph-direction 'left-to-right)
5453 (when (and org-ellipsis
5454 (fboundp 'set-display-table-slot) (boundp 'buffer-display-table)
5455 (fboundp 'make-glyph-code))
5456 (unless org-display-table
5457 (setq org-display-table (make-display-table)))
5458 (set-display-table-slot
5459 org-display-table 4
5460 (vconcat (mapcar
5461 (lambda (c) (make-glyph-code c (and (not (stringp org-ellipsis))
5462 org-ellipsis)))
5463 (if (stringp org-ellipsis) org-ellipsis "..."))))
5464 (setq buffer-display-table org-display-table))
5465 (org-set-regexps-and-options)
5466 (org-set-font-lock-defaults)
5467 (when (and org-tag-faces (not org-tags-special-faces-re))
5468 ;; tag faces set outside customize.... force initialization.
5469 (org-set-tag-faces 'org-tag-faces org-tag-faces))
5470 ;; Calc embedded
5471 (org-set-local 'calc-embedded-open-mode "# ")
5472 ;; Modify a few syntax entries
5473 (modify-syntax-entry ?@ "w")
5474 (modify-syntax-entry ?\" "\"")
5475 (modify-syntax-entry ?\\ "_")
5476 (modify-syntax-entry ?~ "_")
5477 (if org-startup-truncated (setq truncate-lines t))
5478 (when org-startup-indented (require 'org-indent) (org-indent-mode 1))
5479 (org-set-local 'font-lock-unfontify-region-function
5480 'org-unfontify-region)
5481 ;; Activate before-change-function
5482 (org-set-local 'org-table-may-need-update t)
5483 (org-add-hook 'before-change-functions 'org-before-change-function nil
5484 'local)
5485 ;; Check for running clock before killing a buffer
5486 (org-add-hook 'kill-buffer-hook 'org-check-running-clock nil 'local)
5487 ;; Initialize macros templates.
5488 (org-macro-initialize-templates)
5489 ;; Initialize radio targets.
5490 (org-update-radio-target-regexp)
5491 ;; Indentation.
5492 (org-set-local 'indent-line-function 'org-indent-line)
5493 (org-set-local 'indent-region-function 'org-indent-region)
5494 ;; Filling and auto-filling.
5495 (org-setup-filling)
5496 ;; Comments.
5497 (org-setup-comments-handling)
5498 ;; Initialize cache.
5499 (org-element-cache-reset)
5500 ;; Beginning/end of defun
5501 (org-set-local 'beginning-of-defun-function 'org-backward-element)
5502 (org-set-local 'end-of-defun-function
5503 (lambda ()
5504 (if (not (org-at-heading-p))
5505 (org-forward-element)
5506 (org-forward-element)
5507 (forward-char -1))))
5508 ;; Next error for sparse trees
5509 (org-set-local 'next-error-function 'org-occur-next-match)
5510 ;; Make sure dependence stuff works reliably, even for users who set it
5511 ;; too late :-(
5512 (if org-enforce-todo-dependencies
5513 (add-hook 'org-blocker-hook
5514 'org-block-todo-from-children-or-siblings-or-parent)
5515 (remove-hook 'org-blocker-hook
5516 'org-block-todo-from-children-or-siblings-or-parent))
5517 (if org-enforce-todo-checkbox-dependencies
5518 (add-hook 'org-blocker-hook
5519 'org-block-todo-from-checkboxes)
5520 (remove-hook 'org-blocker-hook
5521 'org-block-todo-from-checkboxes))
5523 ;; Align options lines
5524 (org-set-local
5525 'align-mode-rules-list
5526 '((org-in-buffer-settings
5527 (regexp . "^[ \t]*#\\+[A-Z_]+:\\(\\s-*\\)\\S-+")
5528 (modes . '(org-mode)))))
5530 ;; Imenu
5531 (org-set-local 'imenu-create-index-function
5532 'org-imenu-get-tree)
5534 ;; Make isearch reveal context
5535 (if (or (featurep 'xemacs)
5536 (not (boundp 'outline-isearch-open-invisible-function)))
5537 ;; Emacs 21 and XEmacs make use of the hook
5538 (org-add-hook 'isearch-mode-end-hook 'org-isearch-end 'append 'local)
5539 ;; Emacs 22 deals with this through a special variable
5540 (org-set-local 'outline-isearch-open-invisible-function
5541 (lambda (&rest ignore) (org-show-context 'isearch))))
5543 ;; Setup the pcomplete hooks
5544 (set (make-local-variable 'pcomplete-command-completion-function)
5545 'org-pcomplete-initial)
5546 (set (make-local-variable 'pcomplete-command-name-function)
5547 'org-command-at-point)
5548 (set (make-local-variable 'pcomplete-default-completion-function)
5549 'ignore)
5550 (set (make-local-variable 'pcomplete-parse-arguments-function)
5551 'org-parse-arguments)
5552 (set (make-local-variable 'pcomplete-termination-string) "")
5553 (when (>= emacs-major-version 23)
5554 (set (make-local-variable 'buffer-face-mode-face) 'org-default))
5556 ;; If empty file that did not turn on org-mode automatically, make it to.
5557 (if (and org-insert-mode-line-in-empty-file
5558 (org-called-interactively-p 'any)
5559 (= (point-min) (point-max)))
5560 (insert "# -*- mode: org -*-\n\n"))
5561 (unless org-inhibit-startup
5562 (org-unmodified
5563 (and org-startup-with-beamer-mode (org-beamer-mode))
5564 (when org-startup-align-all-tables
5565 (org-table-map-tables 'org-table-align 'quietly))
5566 (when org-startup-with-inline-images
5567 (org-display-inline-images))
5568 (when org-startup-with-latex-preview
5569 (org-toggle-latex-fragment))
5570 (unless org-inhibit-startup-visibility-stuff
5571 (org-set-startup-visibility))
5572 (org-refresh-effort-properties)))
5573 ;; Try to set org-hide correctly
5574 (let ((foreground (org-find-invisible-foreground)))
5575 (if foreground
5576 (set-face-foreground 'org-hide foreground))))
5578 ;; Update `customize-package-emacs-version-alist'
5579 (add-to-list 'customize-package-emacs-version-alist
5580 '(Org ("6.21b" . "23.1") ("6.33x" . "23.2")
5581 ("7.8.11" . "24.1") ("7.9.4" . "24.3")
5582 ("8.2.6" . "24.4") ("8.3" . "25.1")))
5584 (defvar org-mode-transpose-word-syntax-table
5585 (let ((st (make-syntax-table text-mode-syntax-table)))
5586 (mapc (lambda(c) (modify-syntax-entry
5587 (string-to-char (car c)) "w p" st))
5588 org-emphasis-alist)
5589 st))
5591 (when (fboundp 'abbrev-table-put)
5592 (abbrev-table-put org-mode-abbrev-table
5593 :parents (list text-mode-abbrev-table)))
5595 (defun org-find-invisible-foreground ()
5596 (let ((candidates (remove
5597 "unspecified-bg"
5598 (nconc
5599 (list (face-background 'default)
5600 (face-background 'org-default))
5601 (mapcar
5602 (lambda (alist)
5603 (when (boundp alist)
5604 (cdr (assoc 'background-color (symbol-value alist)))))
5605 '(default-frame-alist initial-frame-alist window-system-default-frame-alist))
5606 (list (face-foreground 'org-hide))))))
5607 (car (remove nil candidates))))
5609 (defun org-current-time (&optional rounding-minutes past)
5610 "Current time, possibly rounded to ROUNDING-MINUTES.
5611 When ROUNDING-MINUTES is not an integer, fall back on the car of
5612 `org-time-stamp-rounding-minutes'. When PAST is non-nil, ensure
5613 the rounding returns a past time."
5614 (let ((r (or (and (integerp rounding-minutes) rounding-minutes)
5615 (car org-time-stamp-rounding-minutes)))
5616 (time (decode-time)) res)
5617 (if (< r 1)
5618 (current-time)
5619 (setq res
5620 (apply 'encode-time
5621 (append (list 0 (* r (floor (+ .5 (/ (float (nth 1 time)) r)))))
5622 (nthcdr 2 time))))
5623 (if (and past (< (org-float-time (time-subtract (current-time) res)) 0))
5624 (seconds-to-time (- (org-float-time res) (* r 60)))
5625 res))))
5627 (defun org-today ()
5628 "Return today date, considering `org-extend-today-until'."
5629 (time-to-days
5630 (time-subtract (current-time)
5631 (list 0 (* 3600 org-extend-today-until) 0))))
5633 ;;;; Font-Lock stuff, including the activators
5635 (defvar org-mouse-map (make-sparse-keymap))
5636 (org-defkey org-mouse-map [mouse-2] 'org-open-at-mouse)
5637 (org-defkey org-mouse-map [mouse-3] 'org-find-file-at-mouse)
5638 (when org-mouse-1-follows-link
5639 (org-defkey org-mouse-map [follow-link] 'mouse-face))
5640 (when org-tab-follows-link
5641 (org-defkey org-mouse-map [(tab)] 'org-open-at-point)
5642 (org-defkey org-mouse-map "\C-i" 'org-open-at-point))
5644 (require 'font-lock)
5646 (defconst org-non-link-chars "]\t\n\r<>")
5647 (defvar org-link-types '("http" "https" "ftp" "mailto" "file" "file+emacs"
5648 "file+sys" "news" "shell" "elisp" "doi" "message"
5649 "help"))
5650 (defvar org-link-types-re nil
5651 "Matches a link that has a url-like prefix like \"http:\"")
5652 (defvar org-link-re-with-space nil
5653 "Matches a link with spaces, optional angular brackets around it.")
5654 (defvar org-link-re-with-space2 nil
5655 "Matches a link with spaces, optional angular brackets around it.")
5656 (defvar org-link-re-with-space3 nil
5657 "Matches a link with spaces, only for internal part in bracket links.")
5658 (defvar org-angle-link-re nil
5659 "Matches link with angular brackets, spaces are allowed.")
5660 (defvar org-plain-link-re nil
5661 "Matches plain link, without spaces.")
5662 (defvar org-bracket-link-regexp nil
5663 "Matches a link in double brackets.")
5664 (defvar org-bracket-link-analytic-regexp nil
5665 "Regular expression used to analyze links.
5666 Here is what the match groups contain after a match:
5667 1: http:
5668 2: http
5669 3: path
5670 4: [desc]
5671 5: desc")
5672 (defvar org-bracket-link-analytic-regexp++ nil
5673 "Like `org-bracket-link-analytic-regexp', but include coderef internal type.")
5674 (defvar org-any-link-re nil
5675 "Regular expression matching any link.")
5677 (defconst org-match-sexp-depth 3
5678 "Number of stacked braces for sub/superscript matching.")
5680 (defun org-create-multibrace-regexp (left right n)
5681 "Create a regular expression which will match a balanced sexp.
5682 Opening delimiter is LEFT, and closing delimiter is RIGHT, both given
5683 as single character strings.
5684 The regexp returned will match the entire expression including the
5685 delimiters. It will also define a single group which contains the
5686 match except for the outermost delimiters. The maximum depth of
5687 stacked delimiters is N. Escaping delimiters is not possible."
5688 (let* ((nothing (concat "[^" left right "]*?"))
5689 (or "\\|")
5690 (re nothing)
5691 (next (concat "\\(?:" nothing left nothing right "\\)+" nothing)))
5692 (while (> n 1)
5693 (setq n (1- n)
5694 re (concat re or next)
5695 next (concat "\\(?:" nothing left next right "\\)+" nothing)))
5696 (concat left "\\(" re "\\)" right)))
5698 (defconst org-match-substring-regexp
5699 (concat
5700 "\\(\\S-\\)\\([_^]\\)\\("
5701 "\\(?:" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)"
5702 "\\|"
5703 "\\(?:" (org-create-multibrace-regexp "(" ")" org-match-sexp-depth) "\\)"
5704 "\\|"
5705 "\\(?:\\*\\|[+-]?[[:alnum:].,\\]*[[:alnum:]]\\)\\)")
5706 "The regular expression matching a sub- or superscript.")
5708 (defconst org-match-substring-with-braces-regexp
5709 (concat
5710 "\\(\\S-\\)\\([_^]\\)"
5711 "\\(" (org-create-multibrace-regexp "{" "}" org-match-sexp-depth) "\\)")
5712 "The regular expression matching a sub- or superscript, forcing braces.")
5714 (defun org-make-link-regexps ()
5715 "Update the link regular expressions.
5716 This should be called after the variable `org-link-types' has changed."
5717 (let ((types-re (regexp-opt org-link-types t)))
5718 (setq org-link-types-re
5719 (concat "\\`" types-re ":")
5720 org-link-re-with-space
5721 (concat "<?" types-re ":"
5722 "\\([^" org-non-link-chars " ]"
5723 "[^" org-non-link-chars "]*"
5724 "[^" org-non-link-chars " ]\\)>?")
5725 org-link-re-with-space2
5726 (concat "<?" types-re ":"
5727 "\\([^" org-non-link-chars " ]"
5728 "[^\t\n\r]*"
5729 "[^" org-non-link-chars " ]\\)>?")
5730 org-link-re-with-space3
5731 (concat "<?" types-re ":"
5732 "\\([^" org-non-link-chars " ]"
5733 "[^\t\n\r]*\\)")
5734 org-angle-link-re
5735 (format "<%s:\\([^>\n]*\\(?:\n[ \t]*[^> \t\n][^>\n]*\\)*\\)>"
5736 types-re)
5737 org-plain-link-re
5738 (concat
5739 "\\<" types-re ":"
5740 (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] \t\n]\\|/\\)\\)\\)"))
5741 ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
5742 org-bracket-link-regexp
5743 "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
5744 org-bracket-link-analytic-regexp
5745 (concat
5746 "\\[\\["
5747 "\\(" types-re ":\\)?"
5748 "\\([^]]+\\)"
5749 "\\]"
5750 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5751 "\\]")
5752 org-bracket-link-analytic-regexp++
5753 (concat
5754 "\\[\\["
5755 "\\(" (regexp-opt (cons "coderef" org-link-types) t) ":\\)?"
5756 "\\([^]]+\\)"
5757 "\\]"
5758 "\\(\\[" "\\([^]]+\\)" "\\]\\)?"
5759 "\\]")
5760 org-any-link-re
5761 (concat "\\(" org-bracket-link-regexp "\\)\\|\\("
5762 org-angle-link-re "\\)\\|\\("
5763 org-plain-link-re "\\)"))))
5765 (org-make-link-regexps)
5767 (defvar org-emph-face nil)
5769 (defun org-do-emphasis-faces (limit)
5770 "Run through the buffer and emphasize strings."
5771 (let (rtn a)
5772 (while (and (not rtn) (re-search-forward org-emph-re limit t))
5773 (let* ((border (char-after (match-beginning 3)))
5774 (bre (regexp-quote (char-to-string border))))
5775 (if (and (not (= border (char-after (match-beginning 4))))
5776 (not (save-match-data
5777 (string-match (concat bre ".*" bre)
5778 (replace-regexp-in-string
5779 "\n" " "
5780 (substring (match-string 2) 1 -1))))))
5781 (progn
5782 (setq rtn t)
5783 (setq a (assoc (match-string 3) org-emphasis-alist))
5784 (font-lock-prepend-text-property (match-beginning 2) (match-end 2)
5785 'face
5786 (nth 1 a))
5787 (and (nth 2 a)
5788 (org-remove-flyspell-overlays-in
5789 (match-beginning 0) (match-end 0)))
5790 (add-text-properties (match-beginning 2) (match-end 2)
5791 '(font-lock-multiline t org-emphasis t))
5792 (when org-hide-emphasis-markers
5793 (add-text-properties (match-end 4) (match-beginning 5)
5794 '(invisible org-link))
5795 (add-text-properties (match-beginning 3) (match-end 3)
5796 '(invisible org-link))))))
5797 (goto-char (1+ (match-beginning 0))))
5798 rtn))
5800 (defun org-emphasize (&optional char)
5801 "Insert or change an emphasis, i.e. a font like bold or italic.
5802 If there is an active region, change that region to a new emphasis.
5803 If there is no region, just insert the marker characters and position
5804 the cursor between them.
5805 CHAR should be the marker character. If it is a space, it means to
5806 remove the emphasis of the selected region.
5807 If CHAR is not given (for example in an interactive call) it will be
5808 prompted for."
5809 (interactive)
5810 (let ((erc org-emphasis-regexp-components)
5811 (prompt "")
5812 (string "") beg end move c s)
5813 (if (org-region-active-p)
5814 (setq beg (region-beginning) end (region-end)
5815 string (buffer-substring beg end))
5816 (setq move t))
5818 (unless char
5819 (message "Emphasis marker or tag: [%s]"
5820 (mapconcat (lambda(e) (car e)) org-emphasis-alist ""))
5821 (setq char (read-char-exclusive)))
5822 (if (equal char ?\ )
5823 (setq s "" move nil)
5824 (unless (assoc (char-to-string char) org-emphasis-alist)
5825 (user-error "No such emphasis marker: \"%c\"" char))
5826 (setq s (char-to-string char)))
5827 (while (and (> (length string) 1)
5828 (equal (substring string 0 1) (substring string -1))
5829 (assoc (substring string 0 1) org-emphasis-alist))
5830 (setq string (substring string 1 -1)))
5831 (setq string (concat s string s))
5832 (if beg (delete-region beg end))
5833 (unless (or (bolp)
5834 (string-match (concat "[" (nth 0 erc) "\n]")
5835 (char-to-string (char-before (point)))))
5836 (insert " "))
5837 (unless (or (eobp)
5838 (string-match (concat "[" (nth 1 erc) "\n]")
5839 (char-to-string (char-after (point)))))
5840 (insert " ") (backward-char 1))
5841 (insert string)
5842 (and move (backward-char 1))))
5844 (defconst org-nonsticky-props
5845 '(mouse-face highlight keymap invisible intangible help-echo org-linked-text htmlize-link))
5847 (defsubst org-rear-nonsticky-at (pos)
5848 (add-text-properties (1- pos) pos (list 'rear-nonsticky org-nonsticky-props)))
5850 (defun org-activate-plain-links (limit)
5851 "Add link properties for plain links."
5852 (let (f hl)
5853 (when (and (re-search-forward (concat org-plain-link-re) limit t)
5854 (not (member 'org-tag
5855 (get-text-property (cond
5856 ((= 1 (match-beginning 0)) 1)
5857 (t (1- (match-beginning 0))))
5858 'face)))
5859 (not (org-in-src-block-p)))
5860 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5861 (setq f (get-text-property (match-beginning 0) 'face))
5862 (setq hl (org-match-string-no-properties 0))
5863 (if (or (eq f 'org-tag)
5864 (and (listp f) (memq 'org-tag f)))
5866 (add-text-properties (match-beginning 0) (match-end 0)
5867 (list 'mouse-face 'highlight
5868 'face 'org-link
5869 'htmlize-link `(:uri ,hl)
5870 'keymap org-mouse-map))
5871 (org-rear-nonsticky-at (match-end 0)))
5872 t)))
5874 (defun org-activate-code (limit)
5875 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5876 (progn
5877 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5878 (remove-text-properties (match-beginning 0) (match-end 0)
5879 '(display t invisible t intangible t))
5880 t)))
5882 (defcustom org-src-fontify-natively t
5883 "When non-nil, fontify code in code blocks."
5884 :type 'boolean
5885 :version "24.4"
5886 :package-version '(Org . "8.3")
5887 :group 'org-appearance
5888 :group 'org-babel)
5890 (defcustom org-allow-promoting-top-level-subtree nil
5891 "When non-nil, allow promoting a top level subtree.
5892 The leading star of the top level headline will be replaced
5893 by a #."
5894 :type 'boolean
5895 :version "24.1"
5896 :group 'org-appearance)
5898 (defun org-fontify-meta-lines-and-blocks (limit)
5899 (condition-case nil
5900 (org-fontify-meta-lines-and-blocks-1 limit)
5901 (error (message "org-mode fontification error"))))
5903 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5904 "Fontify #+ lines and blocks."
5905 (let ((case-fold-search t))
5906 (if (re-search-forward
5907 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5908 limit t)
5909 (let ((beg (match-beginning 0))
5910 (block-start (match-end 0))
5911 (block-end nil)
5912 (lang (match-string 7))
5913 (beg1 (line-beginning-position 2))
5914 (dc1 (downcase (match-string 2)))
5915 (dc3 (downcase (match-string 3)))
5916 end end1 quoting block-type ovl)
5917 (cond
5918 ((and (match-end 4) (equal dc3 "+begin"))
5919 ;; Truly a block
5920 (setq block-type (downcase (match-string 5))
5921 quoting (member block-type org-protecting-blocks))
5922 (when (re-search-forward
5923 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5924 nil t) ;; on purpose, we look further than LIMIT
5925 (setq end (min (point-max) (match-end 0))
5926 end1 (min (point-max) (1- (match-beginning 0))))
5927 (setq block-end (match-beginning 0))
5928 (when quoting
5929 (org-remove-flyspell-overlays-in beg1 end1)
5930 (remove-text-properties beg end
5931 '(display t invisible t intangible t)))
5932 (add-text-properties
5933 beg end '(font-lock-fontified t font-lock-multiline t))
5934 (add-text-properties beg beg1 '(face org-meta-line))
5935 (org-remove-flyspell-overlays-in beg beg1)
5936 (add-text-properties ; For end_src
5937 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5938 (org-remove-flyspell-overlays-in end1 end)
5939 (cond
5940 ((and lang (not (string= lang "")) org-src-fontify-natively)
5941 (org-src-font-lock-fontify-block lang block-start block-end)
5942 (add-text-properties beg1 block-end '(src-block t)))
5943 (quoting
5944 (add-text-properties beg1 (min (point-max) (1+ end1))
5945 '(face org-block))) ; end of source block
5946 ((not org-fontify-quote-and-verse-blocks))
5947 ((string= block-type "quote")
5948 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5949 ((string= block-type "verse")
5950 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5951 (add-text-properties beg beg1 '(face org-block-begin-line))
5952 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5953 '(face org-block-end-line))
5955 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5956 (org-remove-flyspell-overlays-in
5957 (match-beginning 0)
5958 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5959 (add-text-properties
5960 beg (match-end 3)
5961 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5962 '(font-lock-fontified t invisible t)
5963 '(font-lock-fontified t face org-document-info-keyword)))
5964 (add-text-properties
5965 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5966 (if (string-equal dc1 "+title:")
5967 '(font-lock-fontified t face org-document-title)
5968 '(font-lock-fontified t face org-document-info))))
5969 ((equal dc1 "+caption:")
5970 (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
5971 (remove-text-properties (match-beginning 0) (match-end 0)
5972 '(display t invisible t intangible t))
5973 (add-text-properties (match-beginning 1) (match-end 3)
5974 '(font-lock-fontified t face org-meta-line))
5975 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5976 '(font-lock-fontified t face org-block))
5978 ((member dc3 '(" " ""))
5979 (org-remove-flyspell-overlays-in beg (match-end 0))
5980 (add-text-properties
5981 beg (match-end 0)
5982 '(font-lock-fontified t face font-lock-comment-face)))
5983 (t ;; just any other in-buffer setting, but not indented
5984 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5985 (remove-text-properties (match-beginning 0) (match-end 0)
5986 '(display t invisible t intangible t))
5987 (add-text-properties beg (match-end 0)
5988 '(font-lock-fontified t face org-meta-line))
5989 t))))))
5991 (defun org-fontify-drawers (limit)
5992 "Fontify drawers."
5993 (when (re-search-forward org-drawer-regexp limit t)
5994 (add-text-properties
5995 (match-beginning 0) (match-end 0)
5996 '(font-lock-fontified t face org-special-keyword))
5997 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6000 (defun org-fontify-macros (limit)
6001 "Fontify macros."
6002 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
6003 (add-text-properties
6004 (match-beginning 0) (match-end 0)
6005 '(font-lock-fontified t face org-macro))
6006 (when org-hide-macro-markers
6007 (add-text-properties (match-end 2) (match-beginning 2)
6008 '(invisible t))
6009 (add-text-properties (match-beginning 1) (match-end 1)
6010 '(invisible t)))
6011 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6014 (defun org-activate-angle-links (limit)
6015 "Add text properties for angle links."
6016 (if (and (re-search-forward org-angle-link-re limit t)
6017 (not (org-in-src-block-p)))
6018 (progn
6019 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6020 (add-text-properties (match-beginning 0) (match-end 0)
6021 (list 'mouse-face 'highlight
6022 'keymap org-mouse-map
6023 'font-lock-multiline t))
6024 (org-rear-nonsticky-at (match-end 0))
6025 t)))
6027 (defun org-activate-footnote-links (limit)
6028 "Add text properties for footnotes."
6029 (let ((fn (org-footnote-next-reference-or-definition limit)))
6030 (when fn
6031 (let* ((beg (nth 1 fn))
6032 (end (nth 2 fn))
6033 (label (car fn))
6034 (referencep (/= (line-beginning-position) beg)))
6035 (when (and referencep (nth 3 fn))
6036 (save-excursion
6037 (goto-char beg)
6038 (search-forward (or label "fn:"))
6039 (org-remove-flyspell-overlays-in beg (match-end 0))))
6040 (add-text-properties beg end
6041 (list 'mouse-face 'highlight
6042 'keymap org-mouse-map
6043 'help-echo
6044 (if referencep "Footnote reference"
6045 "Footnote definition")
6046 'font-lock-fontified t
6047 'font-lock-multiline t
6048 'face 'org-footnote))))))
6050 (defun org-activate-bracket-links (limit)
6051 "Add text properties for bracketed links."
6052 (if (and (re-search-forward org-bracket-link-regexp limit t)
6053 (not (org-in-src-block-p)))
6054 (let* ((hl (org-match-string-no-properties 1))
6055 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6056 (ip (org-maybe-intangible
6057 (list 'invisible 'org-link
6058 'keymap org-mouse-map 'mouse-face 'highlight
6059 'font-lock-multiline t 'help-echo help
6060 'htmlize-link `(:uri ,hl))))
6061 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6062 'font-lock-multiline t 'help-echo help
6063 'htmlize-link `(:uri ,hl))))
6064 ;; We need to remove the invisible property here. Table narrowing
6065 ;; may have made some of this invisible.
6066 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6067 (remove-text-properties (match-beginning 0) (match-end 0)
6068 '(invisible nil))
6069 (if (match-end 3)
6070 (progn
6071 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6072 (org-rear-nonsticky-at (match-beginning 3))
6073 (add-text-properties (match-beginning 3) (match-end 3) vp)
6074 (org-rear-nonsticky-at (match-end 3))
6075 (add-text-properties (match-end 3) (match-end 0) ip)
6076 (org-rear-nonsticky-at (match-end 0)))
6077 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6078 (org-rear-nonsticky-at (match-beginning 1))
6079 (add-text-properties (match-beginning 1) (match-end 1) vp)
6080 (org-rear-nonsticky-at (match-end 1))
6081 (add-text-properties (match-end 1) (match-end 0) ip)
6082 (org-rear-nonsticky-at (match-end 0)))
6083 t)))
6085 (defun org-activate-dates (limit)
6086 "Add text properties for dates."
6087 (if (and (re-search-forward org-tsr-regexp-both limit t)
6088 (not (equal (char-before (match-beginning 0)) 91)))
6089 (progn
6090 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6091 (add-text-properties (match-beginning 0) (match-end 0)
6092 (list 'mouse-face 'highlight
6093 'keymap org-mouse-map))
6094 (org-rear-nonsticky-at (match-end 0))
6095 (when org-display-custom-times
6096 (if (match-end 3)
6097 (org-display-custom-time (match-beginning 3) (match-end 3)))
6098 (org-display-custom-time (match-beginning 1) (match-end 1)))
6099 t)))
6101 (defvar org-target-link-regexp nil
6102 "Regular expression matching radio targets in plain text.")
6103 (make-variable-buffer-local 'org-target-link-regexp)
6105 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6106 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6107 border border border))
6108 "Regular expression matching a link target.")
6110 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6111 "Regular expression matching a radio target.")
6113 (defconst org-any-target-regexp
6114 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6115 "Regular expression matching any target.")
6117 (defun org-activate-target-links (limit)
6118 "Add text properties for target matches."
6119 (when org-target-link-regexp
6120 (let ((case-fold-search t))
6121 (if (re-search-forward org-target-link-regexp limit t)
6122 (progn
6123 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6124 (add-text-properties (match-beginning 1) (match-end 1)
6125 (list 'mouse-face 'highlight
6126 'keymap org-mouse-map
6127 'help-echo "Radio target link"
6128 'org-linked-text t))
6129 (org-rear-nonsticky-at (match-end 1))
6130 t)))))
6132 (defun org-update-radio-target-regexp ()
6133 "Find all radio targets in this file and update the regular expression.
6134 Also refresh fontification if needed."
6135 (interactive)
6136 (let ((old-regexp org-target-link-regexp)
6137 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6138 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6139 (targets
6140 (org-with-wide-buffer
6141 (goto-char (point-min))
6142 (let (rtn)
6143 (while (re-search-forward org-radio-target-regexp nil t)
6144 ;; Make sure point is really within the object.
6145 (backward-char)
6146 (let ((obj (org-element-context)))
6147 (when (eq (org-element-type obj) 'radio-target)
6148 (add-to-list 'rtn (org-element-property :value obj)))))
6149 rtn))))
6150 (setq org-target-link-regexp
6151 (and targets
6152 (concat before-re
6153 (mapconcat
6154 (lambda (x)
6155 (replace-regexp-in-string
6156 " +" "\\s-+" (regexp-quote x) t t))
6157 targets
6158 "\\|")
6159 after-re)))
6160 (unless (equal old-regexp org-target-link-regexp)
6161 ;; Clean-up cache.
6162 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6163 ((not org-target-link-regexp) old-regexp)
6165 (concat before-re
6166 (mapconcat
6167 (lambda (re)
6168 (substring re (length before-re)
6169 (- (length after-re))))
6170 (list old-regexp org-target-link-regexp)
6171 "\\|")
6172 after-re)))))
6173 (org-with-wide-buffer
6174 (goto-char (point-min))
6175 (while (re-search-forward regexp nil t)
6176 (org-element-cache-refresh (match-beginning 1)))))
6177 ;; Re fontify buffer.
6178 (when (memq 'radio org-highlight-links)
6179 (org-restart-font-lock)))))
6181 (defun org-hide-wide-columns (limit)
6182 (let (s e)
6183 (setq s (text-property-any (point) (or limit (point-max))
6184 'org-cwidth t))
6185 (when s
6186 (setq e (next-single-property-change s 'org-cwidth))
6187 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6188 (goto-char e)
6189 t)))
6191 (defvar org-latex-and-related-regexp nil
6192 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6194 (defun org-compute-latex-and-related-regexp ()
6195 "Compute regular expression for LaTeX, entities and sub/superscript.
6196 Result depends on variable `org-highlight-latex-and-related'."
6197 (org-set-local
6198 'org-latex-and-related-regexp
6199 (let* ((re-sub
6200 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6201 ((eq org-use-sub-superscripts '{})
6202 (list org-match-substring-with-braces-regexp))
6203 (org-use-sub-superscripts (list org-match-substring-regexp))))
6204 (re-latex
6205 (when (memq 'latex org-highlight-latex-and-related)
6206 (let ((matchers (plist-get org-format-latex-options :matchers)))
6207 (delq nil
6208 (mapcar (lambda (x)
6209 (and (member (car x) matchers) (nth 1 x)))
6210 org-latex-regexps)))))
6211 (re-entities
6212 (when (memq 'entities org-highlight-latex-and-related)
6213 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6214 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6216 (defun org-do-latex-and-related (limit)
6217 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6218 LIMIT bounds the search for syntax to highlight. Stop at first
6219 highlighted object, if any. Return t if some highlighting was
6220 done, nil otherwise."
6221 (when (org-string-nw-p org-latex-and-related-regexp)
6222 (catch 'found
6223 (while (re-search-forward org-latex-and-related-regexp limit t)
6224 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6225 'face))
6226 '(org-code org-verbatim underline))
6227 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6228 '(?_ ?^))
6230 0)))
6231 (font-lock-prepend-text-property
6232 (+ offset (match-beginning 0)) (match-end 0)
6233 'face 'org-latex-and-related)
6234 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6235 '(font-lock-multiline t)))
6236 (throw 'found t)))
6237 nil)))
6239 (defun org-restart-font-lock ()
6240 "Restart `font-lock-mode', to force refontification."
6241 (when (and (boundp 'font-lock-mode) font-lock-mode)
6242 (font-lock-mode -1)
6243 (font-lock-mode 1)))
6245 (defun org-activate-tags (limit)
6246 (when (re-search-forward
6247 (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") limit t)
6248 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6249 (add-text-properties (match-beginning 1) (match-end 1)
6250 (list 'mouse-face 'highlight
6251 'keymap org-mouse-map))
6252 (org-rear-nonsticky-at (match-end 1))
6255 (defun org-outline-level ()
6256 "Compute the outline level of the heading at point.
6258 If this is called at a normal headline, the level is the number
6259 of stars. Use `org-reduced-level' to remove the effect of
6260 `org-odd-levels'. Unlike to `org-current-level', this function
6261 takes into consideration inlinetasks."
6262 (org-with-wide-buffer
6263 (end-of-line)
6264 (if (re-search-backward org-outline-regexp-bol nil t)
6265 (1- (- (match-end 0) (match-beginning 0)))
6266 0)))
6268 (defvar org-font-lock-keywords nil)
6270 (defsubst org-re-property (property &optional literal allow-null value)
6271 "Return a regexp matching a PROPERTY line.
6273 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6274 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6275 non-nil, match properties even without a value.
6277 Match group 3 is set to the value when it exists. If there is no
6278 value and ALLOW-NULL is non-nil, it is set to the empty string.
6280 With optional argument VALUE, match only property lines with
6281 that value; in this case, ALLOW-NULL is ignored. VALUE is quoted
6282 unless LITERAL is non-nil."
6283 (concat
6284 "^\\(?4:[ \t]*\\)"
6285 (format "\\(?1::\\(?2:%s\\):\\)"
6286 (if literal property (regexp-quote property)))
6287 (cond (value
6288 (format "[ \t]+\\(?3:%s\\)\\(?5:[ \t]*\\)$"
6289 (if literal value (regexp-quote value))))
6290 (allow-null
6291 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$")
6293 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$"))))
6295 (defconst org-property-re
6296 (org-re-property "\\S-+" 'literal t)
6297 "Regular expression matching a property line.
6298 There are four matching groups:
6299 1: :PROPKEY: including the leading and trailing colon,
6300 2: PROPKEY without the leading and trailing colon,
6301 3: PROPVAL without leading or trailing spaces,
6302 4: the indentation of the current line,
6303 5: trailing whitespace.")
6305 (defvar org-font-lock-hook nil
6306 "Functions to be called for special font lock stuff.")
6308 (defvar org-font-lock-set-keywords-hook nil
6309 "Functions that can manipulate `org-font-lock-extra-keywords'.
6310 This is called after `org-font-lock-extra-keywords' is defined, but before
6311 it is installed to be used by font lock. This can be useful if something
6312 needs to be inserted at a specific position in the font-lock sequence.")
6314 (defun org-font-lock-hook (limit)
6315 "Run `org-font-lock-hook' within LIMIT."
6316 (run-hook-with-args 'org-font-lock-hook limit))
6318 (defun org-set-font-lock-defaults ()
6319 "Set font lock defaults for the current buffer."
6320 (let* ((em org-fontify-emphasized-text)
6321 (lk org-highlight-links)
6322 (org-font-lock-extra-keywords
6323 (list
6324 ;; Call the hook
6325 '(org-font-lock-hook)
6326 ;; Headlines
6327 `(,(if org-fontify-whole-heading-line
6328 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6329 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6330 (1 (org-get-level-face 1))
6331 (2 (org-get-level-face 2))
6332 (3 (org-get-level-face 3)))
6333 ;; Table lines
6334 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6335 (1 'org-table t))
6336 ;; Table internals
6337 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6338 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6339 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6340 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6341 ;; Drawers
6342 '(org-fontify-drawers)
6343 ;; Properties
6344 (list org-property-re
6345 '(1 'org-special-keyword t)
6346 '(3 'org-property-value t))
6347 ;; Links
6348 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6349 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6350 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6351 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6352 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6353 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6354 (if (memq 'footnote lk) '(org-activate-footnote-links))
6355 ;; Targets.
6356 (list org-any-target-regexp '(0 'org-target t))
6357 ;; Diary sexps.
6358 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6359 ;; Macro
6360 '(org-fontify-macros)
6361 '(org-hide-wide-columns (0 nil append))
6362 ;; TODO keyword
6363 (list (format org-heading-keyword-regexp-format
6364 org-todo-regexp)
6365 '(2 (org-get-todo-face 2) t))
6366 ;; DONE
6367 (if org-fontify-done-headline
6368 (list (format org-heading-keyword-regexp-format
6369 (concat
6370 "\\(?:"
6371 (mapconcat 'regexp-quote org-done-keywords "\\|")
6372 "\\)"))
6373 '(2 'org-headline-done t))
6374 nil)
6375 ;; Priorities
6376 '(org-font-lock-add-priority-faces)
6377 ;; Tags
6378 '(org-font-lock-add-tag-faces)
6379 ;; Tags groups
6380 (if (and org-group-tags org-tag-groups-alist)
6381 (list (concat org-outline-regexp-bol ".+\\(:"
6382 (regexp-opt (mapcar 'car org-tag-groups-alist))
6383 ":\\).*$")
6384 '(1 'org-tag-group prepend)))
6385 ;; Special keywords
6386 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6387 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6388 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6389 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6390 ;; Emphasis
6391 (if em
6392 (if (featurep 'xemacs)
6393 '(org-do-emphasis-faces (0 nil append))
6394 '(org-do-emphasis-faces)))
6395 ;; Checkboxes
6396 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6397 1 'org-checkbox prepend)
6398 (if (cdr (assq 'checkbox org-list-automatic-rules))
6399 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6400 (0 (org-get-checkbox-statistics-face) t)))
6401 ;; Description list items
6402 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6403 1 'org-list-dt prepend)
6404 ;; ARCHIVEd headings
6405 (list (concat
6406 org-outline-regexp-bol
6407 "\\(.*:" org-archive-tag ":.*\\)")
6408 '(1 'org-archived prepend))
6409 ;; Specials
6410 '(org-do-latex-and-related)
6411 '(org-fontify-entities)
6412 '(org-raise-scripts)
6413 ;; Code
6414 '(org-activate-code (1 'org-code t))
6415 ;; COMMENT
6416 (list (format
6417 "^\\*+\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6418 org-todo-regexp
6419 org-comment-string)
6420 '(9 'org-special-keyword t))
6421 ;; Blocks and meta lines
6422 '(org-fontify-meta-lines-and-blocks))))
6423 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6424 (run-hooks 'org-font-lock-set-keywords-hook)
6425 ;; Now set the full font-lock-keywords
6426 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6427 (org-set-local 'font-lock-defaults
6428 '(org-font-lock-keywords t nil nil backward-paragraph))
6429 (kill-local-variable 'font-lock-keywords) nil))
6431 (defun org-toggle-pretty-entities ()
6432 "Toggle the composition display of entities as UTF8 characters."
6433 (interactive)
6434 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6435 (org-restart-font-lock)
6436 (if org-pretty-entities
6437 (message "Entities are now displayed as UTF8 characters")
6438 (save-restriction
6439 (widen)
6440 (org-decompose-region (point-min) (point-max))
6441 (message "Entities are now displayed as plain text"))))
6443 (defvar org-custom-properties-overlays nil
6444 "List of overlays used for custom properties.")
6445 (make-variable-buffer-local 'org-custom-properties-overlays)
6447 (defun org-toggle-custom-properties-visibility ()
6448 "Display or hide properties in `org-custom-properties'."
6449 (interactive)
6450 (if org-custom-properties-overlays
6451 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6452 (setq org-custom-properties-overlays nil))
6453 (when org-custom-properties
6454 (org-with-wide-buffer
6455 (goto-char (point-min))
6456 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6457 (while (re-search-forward regexp nil t)
6458 (let ((end (cdr (save-match-data (org-get-property-block)))))
6459 (when (and end (< (point) end))
6460 ;; Hide first custom property in current drawer.
6461 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6462 (overlay-put o 'invisible t)
6463 (overlay-put o 'org-custom-property t)
6464 (push o org-custom-properties-overlays))
6465 ;; Hide additional custom properties in the same drawer.
6466 (while (re-search-forward regexp end t)
6467 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6468 (overlay-put o 'invisible t)
6469 (overlay-put o 'org-custom-property t)
6470 (push o org-custom-properties-overlays)))))
6471 ;; Each entry is limited to a single property drawer.
6472 (outline-next-heading)))))))
6474 (defun org-fontify-entities (limit)
6475 "Find an entity to fontify."
6476 (let (ee)
6477 (when org-pretty-entities
6478 (catch 'match
6479 ;; "\_ "-family is left out on purpose. Only the first one,
6480 ;; i.e., "\_ ", could be fontified anyway, and it would be
6481 ;; confusing when adding a second white space character.
6482 (while (re-search-forward
6483 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6484 limit t)
6485 (if (and (not (org-at-comment-p))
6486 (setq ee (org-entity-get (match-string 1)))
6487 (= (length (nth 6 ee)) 1))
6488 (let*
6489 ((end (if (equal (match-string 2) "{}")
6490 (match-end 2)
6491 (match-end 1))))
6492 (add-text-properties
6493 (match-beginning 0) end
6494 (list 'font-lock-fontified t))
6495 (compose-region (match-beginning 0) end
6496 (nth 6 ee) nil)
6497 (backward-char 1)
6498 (throw 'match t))))
6499 nil))))
6501 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6502 "Fontify string S like in Org-mode."
6503 (with-temp-buffer
6504 (insert s)
6505 (let ((org-odd-levels-only odd-levels))
6506 (org-mode)
6507 (font-lock-ensure)
6508 (buffer-string))))
6510 (defvar org-m nil)
6511 (defvar org-l nil)
6512 (defvar org-f nil)
6513 (defun org-get-level-face (n)
6514 "Get the right face for match N in font-lock matching of headlines."
6515 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6516 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6517 (if org-cycle-level-faces
6518 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6519 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6520 (cond
6521 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6522 ((eq n 2) org-f)
6523 (t (if org-level-color-stars-only nil org-f))))
6525 (defun org-face-from-face-or-color (context inherit face-or-color)
6526 "Create a face list that inherits INHERIT, but sets the foreground color.
6527 When FACE-OR-COLOR is not a string, just return it."
6528 (if (stringp face-or-color)
6529 (list :inherit inherit
6530 (cdr (assoc context org-faces-easy-properties))
6531 face-or-color)
6532 face-or-color))
6534 (defun org-get-todo-face (kwd)
6535 "Get the right face for a TODO keyword KWD.
6536 If KWD is a number, get the corresponding match group."
6537 (if (numberp kwd) (setq kwd (match-string kwd)))
6538 (or (org-face-from-face-or-color
6539 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6540 (and (member kwd org-done-keywords) 'org-done)
6541 'org-todo))
6543 (defun org-get-priority-face (priority)
6544 "Get the right face for PRIORITY.
6545 PRIORITY is a character."
6546 (or (org-face-from-face-or-color
6547 'priority 'org-priority (cdr (assq priority org-priority-faces)))
6548 'org-priority))
6550 (defun org-get-tag-face (tag)
6551 "Get the right face for TAG.
6552 If TAG is a number, get the corresponding match group."
6553 (let ((tag (if (wholenump tag) (match-string tag) tag)))
6554 (or (org-face-from-face-or-color
6555 'tag 'org-tag (cdr (assoc tag org-tag-faces)))
6556 'org-tag)))
6558 (defun org-font-lock-add-priority-faces (limit)
6559 "Add the special priority faces."
6560 (while (re-search-forward "^\\*+ .*?\\(\\[#\\(.\\)\\]\\)" limit t)
6561 (add-text-properties
6562 (match-beginning 1) (match-end 1)
6563 (list 'face (org-get-priority-face (string-to-char (match-string 2)))
6564 'font-lock-fontified t))))
6566 (defun org-font-lock-add-tag-faces (limit)
6567 "Add the special tag faces."
6568 (when (and org-tag-faces org-tags-special-faces-re)
6569 (while (re-search-forward org-tags-special-faces-re limit t)
6570 (add-text-properties (match-beginning 1) (match-end 1)
6571 (list 'face (org-get-tag-face 1)
6572 'font-lock-fontified t))
6573 (backward-char 1))))
6575 (defun org-unfontify-region (beg end &optional maybe_loudly)
6576 "Remove fontification and activation overlays from links."
6577 (font-lock-default-unfontify-region beg end)
6578 (let* ((buffer-undo-list t)
6579 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6580 (inhibit-modification-hooks t)
6581 deactivate-mark buffer-file-name buffer-file-truename)
6582 (org-decompose-region beg end)
6583 (remove-text-properties beg end
6584 '(mouse-face t keymap t org-linked-text t
6585 invisible t intangible t
6586 org-emphasis t))
6587 (org-remove-font-lock-display-properties beg end)))
6589 (defconst org-script-display '(((raise -0.3) (height 0.7))
6590 ((raise 0.3) (height 0.7))
6591 ((raise -0.5))
6592 ((raise 0.5)))
6593 "Display properties for showing superscripts and subscripts.")
6595 (defun org-remove-font-lock-display-properties (beg end)
6596 "Remove specific display properties that have been added by font lock.
6597 The will remove the raise properties that are used to show superscripts
6598 and subscripts."
6599 (let (next prop)
6600 (while (< beg end)
6601 (setq next (next-single-property-change beg 'display nil end)
6602 prop (get-text-property beg 'display))
6603 (if (member prop org-script-display)
6604 (put-text-property beg next 'display nil))
6605 (setq beg next))))
6607 (defun org-raise-scripts (limit)
6608 "Add raise properties to sub/superscripts."
6609 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6610 (if (re-search-forward
6611 (if (eq org-use-sub-superscripts t)
6612 org-match-substring-regexp
6613 org-match-substring-with-braces-regexp)
6614 limit t)
6615 (let* ((pos (point)) table-p comment-p
6616 (mpos (match-beginning 3))
6617 (emph-p (get-text-property mpos 'org-emphasis))
6618 (link-p (get-text-property mpos 'mouse-face))
6619 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6620 (goto-char (point-at-bol))
6621 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6622 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6623 (goto-char pos)
6624 ;; Handle a_b^c
6625 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6626 (if (or comment-p emph-p link-p keyw-p)
6628 (put-text-property (match-beginning 3) (match-end 0)
6629 'display
6630 (if (equal (char-after (match-beginning 2)) ?^)
6631 (nth (if table-p 3 1) org-script-display)
6632 (nth (if table-p 2 0) org-script-display)))
6633 (add-text-properties (match-beginning 2) (match-end 2)
6634 (list 'invisible t
6635 'org-dwidth t 'org-dwidth-n 1))
6636 (if (and (eq (char-after (match-beginning 3)) ?{)
6637 (eq (char-before (match-end 3)) ?}))
6638 (progn
6639 (add-text-properties
6640 (match-beginning 3) (1+ (match-beginning 3))
6641 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6642 (add-text-properties
6643 (1- (match-end 3)) (match-end 3)
6644 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6645 t)))))
6647 ;;;; Visibility cycling, including org-goto and indirect buffer
6649 ;;; Cycling
6651 (defvar org-cycle-global-status nil)
6652 (make-variable-buffer-local 'org-cycle-global-status)
6653 (put 'org-cycle-global-status 'org-state t)
6654 (defvar org-cycle-subtree-status nil)
6655 (make-variable-buffer-local 'org-cycle-subtree-status)
6656 (put 'org-cycle-subtree-status 'org-state t)
6658 (defvar org-inlinetask-min-level)
6660 (defun org-unlogged-message (&rest args)
6661 "Display a message, but avoid logging it in the *Messages* buffer."
6662 (let ((message-log-max nil))
6663 (apply 'message args)))
6665 ;;;###autoload
6666 (defun org-cycle (&optional arg)
6667 "TAB-action and visibility cycling for Org-mode.
6669 This is the command invoked in Org-mode by the TAB key. Its main purpose
6670 is outline visibility cycling, but it also invokes other actions
6671 in special contexts.
6673 - When this function is called with a prefix argument, rotate the entire
6674 buffer through 3 states (global cycling)
6675 1. OVERVIEW: Show only top-level headlines.
6676 2. CONTENTS: Show all headlines of all levels, but no body text.
6677 3. SHOW ALL: Show everything.
6678 With a double \\[universal-argument] prefix argument, \
6679 switch to the startup visibility,
6680 determined by the variable `org-startup-folded', and by any VISIBILITY
6681 properties in the buffer.
6682 With a triple \\[universal-argument] prefix argument, \
6683 show the entire buffer, including any drawers.
6685 - When inside a table, re-align the table and move to the next field.
6687 - When point is at the beginning of a headline, rotate the subtree started
6688 by this line through 3 different states (local cycling)
6689 1. FOLDED: Only the main headline is shown.
6690 2. CHILDREN: The main headline and the direct children are shown.
6691 From this state, you can move to one of the children
6692 and zoom in further.
6693 3. SUBTREE: Show the entire subtree, including body text.
6694 If there is no subtree, switch directly from CHILDREN to FOLDED.
6696 - When point is at the beginning of an empty headline and the variable
6697 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6698 of the headline by demoting and promoting it to likely levels. This
6699 speeds up creation document structure by pressing TAB once or several
6700 times right after creating a new headline.
6702 - When there is a numeric prefix, go up to a heading with level ARG, do
6703 a `show-subtree' and return to the previous cursor position. If ARG
6704 is negative, go up that many levels.
6706 - When point is not at the beginning of a headline, execute the global
6707 binding for TAB, which is re-indenting the line. See the option
6708 `org-cycle-emulate-tab' for details.
6710 - Special case: if point is at the beginning of the buffer and there is
6711 no headline in line 1, this function will act as if called with prefix arg
6712 (\\[universal-argument] TAB, same as S-TAB) also when called without prefix arg.
6713 But only if also the variable `org-cycle-global-at-bob' is t."
6714 (interactive "P")
6715 (org-load-modules-maybe)
6716 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6717 (and org-cycle-level-after-item/entry-creation
6718 (or (org-cycle-level)
6719 (org-cycle-item-indentation))))
6720 (let* ((limit-level
6721 (or org-cycle-max-level
6722 (and (boundp 'org-inlinetask-min-level)
6723 org-inlinetask-min-level
6724 (1- org-inlinetask-min-level))))
6725 (nstars (and limit-level
6726 (if org-odd-levels-only
6727 (and limit-level (1- (* limit-level 2)))
6728 limit-level)))
6729 (org-outline-regexp
6730 (if (not (derived-mode-p 'org-mode))
6731 outline-regexp
6732 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6733 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6734 (not (looking-at org-outline-regexp))))
6735 (org-cycle-hook
6736 (if bob-special
6737 (delq 'org-optimize-window-after-visibility-change
6738 (copy-sequence org-cycle-hook))
6739 org-cycle-hook))
6740 (pos (point)))
6742 (if (or bob-special (equal arg '(4)))
6743 ;; special case: use global cycling
6744 (setq arg t))
6746 (cond
6748 ((equal arg '(16))
6749 (setq last-command 'dummy)
6750 (org-set-startup-visibility)
6751 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6753 ((equal arg '(64))
6754 (outline-show-all)
6755 (org-unlogged-message "Entire buffer visible, including drawers"))
6757 ;; Try cdlatex TAB completion
6758 ((org-try-cdlatex-tab))
6760 ;; Table: enter it or move to the next field.
6761 ((org-at-table-p 'any)
6762 (if (org-at-table.el-p)
6763 (message "%s" (substitute-command-keys "\\<org-mode-map>\
6764 Use \\[org-edit-special] to edit table.el tables"))
6765 (if arg (org-table-edit-field t)
6766 (org-table-justify-field-maybe)
6767 (call-interactively 'org-table-next-field))))
6769 ((run-hook-with-args-until-success
6770 'org-tab-after-check-for-table-hook))
6772 ;; Global cycling: delegate to `org-cycle-internal-global'.
6773 ((eq arg t) (org-cycle-internal-global))
6775 ;; Drawers: delegate to `org-flag-drawer'.
6776 ((save-excursion
6777 (beginning-of-line 1)
6778 (looking-at org-drawer-regexp))
6779 (org-flag-drawer ; toggle block visibility
6780 (not (get-char-property (match-end 0) 'invisible))))
6782 ;; Show-subtree, ARG levels up from here.
6783 ((integerp arg)
6784 (save-excursion
6785 (org-back-to-heading)
6786 (outline-up-heading (if (< arg 0) (- arg)
6787 (- (funcall outline-level) arg)))
6788 (org-show-subtree)))
6790 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6791 ((and (featurep 'org-inlinetask)
6792 (org-inlinetask-at-task-p)
6793 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6794 (org-inlinetask-toggle-visibility))
6796 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6797 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6798 (save-excursion (move-beginning-of-line 1)
6799 (looking-at org-outline-regexp)))
6800 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6801 (org-cycle-internal-local))
6803 ;; From there: TAB emulation and template completion.
6804 (buffer-read-only (org-back-to-heading))
6806 ((run-hook-with-args-until-success
6807 'org-tab-after-check-for-cycling-hook))
6809 ((org-try-structure-completion))
6811 ((run-hook-with-args-until-success
6812 'org-tab-before-tab-emulation-hook))
6814 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6815 (or (not (bolp))
6816 (not (looking-at org-outline-regexp))))
6817 (call-interactively (global-key-binding "\t")))
6819 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6820 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6821 (or (and (eq org-cycle-emulate-tab 'white)
6822 (= (match-end 0) (point-at-eol)))
6823 (and (eq org-cycle-emulate-tab 'whitestart)
6824 (>= (match-end 0) pos))))
6826 (eq org-cycle-emulate-tab t))
6827 (call-interactively (global-key-binding "\t")))
6829 (t (save-excursion
6830 (org-back-to-heading)
6831 (org-cycle)))))))
6833 (defun org-cycle-internal-global ()
6834 "Do the global cycling action."
6835 ;; Hack to avoid display of messages for .org attachments in Gnus
6836 (let ((ga (string-match "\\*fontification" (buffer-name))))
6837 (cond
6838 ((and (eq last-command this-command)
6839 (eq org-cycle-global-status 'overview))
6840 ;; We just created the overview - now do table of contents
6841 ;; This can be slow in very large buffers, so indicate action
6842 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6843 (unless ga (org-unlogged-message "CONTENTS..."))
6844 (org-content)
6845 (unless ga (org-unlogged-message "CONTENTS...done"))
6846 (setq org-cycle-global-status 'contents)
6847 (run-hook-with-args 'org-cycle-hook 'contents))
6849 ((and (eq last-command this-command)
6850 (eq org-cycle-global-status 'contents))
6851 ;; We just showed the table of contents - now show everything
6852 (run-hook-with-args 'org-pre-cycle-hook 'all)
6853 (outline-show-all)
6854 (unless ga (org-unlogged-message "SHOW ALL"))
6855 (setq org-cycle-global-status 'all)
6856 (run-hook-with-args 'org-cycle-hook 'all))
6859 ;; Default action: go to overview
6860 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6861 (org-overview)
6862 (unless ga (org-unlogged-message "OVERVIEW"))
6863 (setq org-cycle-global-status 'overview)
6864 (run-hook-with-args 'org-cycle-hook 'overview)))))
6866 (defvar org-called-with-limited-levels nil
6867 "Non-nil when `org-with-limited-levels' is currently active.")
6869 (defun org-cycle-internal-local ()
6870 "Do the local cycling action."
6871 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6872 ;; First, determine end of headline (EOH), end of subtree or item
6873 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6874 (save-excursion
6875 (if (org-at-item-p)
6876 (progn
6877 (beginning-of-line)
6878 (setq struct (org-list-struct))
6879 (setq eoh (point-at-eol))
6880 (setq eos (org-list-get-item-end-before-blank (point) struct))
6881 (setq has-children (org-list-has-child-p (point) struct)))
6882 (org-back-to-heading)
6883 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6884 (setq eos (save-excursion (org-end-of-subtree t t)
6885 (when (bolp) (backward-char)) (point)))
6886 (setq has-children
6887 (or (save-excursion
6888 (let ((level (funcall outline-level)))
6889 (outline-next-heading)
6890 (and (org-at-heading-p t)
6891 (> (funcall outline-level) level))))
6892 (save-excursion
6893 (org-list-search-forward (org-item-beginning-re) eos t)))))
6894 ;; Determine end invisible part of buffer (EOL)
6895 (beginning-of-line 2)
6896 ;; XEmacs doesn't have `next-single-char-property-change'
6897 (if (featurep 'xemacs)
6898 (while (and (not (eobp)) ;; this is like `next-line'
6899 (get-char-property (1- (point)) 'invisible))
6900 (beginning-of-line 2))
6901 (while (and (not (eobp)) ;; this is like `next-line'
6902 (get-char-property (1- (point)) 'invisible))
6903 (goto-char (next-single-char-property-change (point) 'invisible))
6904 (and (eolp) (beginning-of-line 2))))
6905 (setq eol (point)))
6906 ;; Find out what to do next and set `this-command'
6907 (cond
6908 ((= eos eoh)
6909 ;; Nothing is hidden behind this heading
6910 (unless (org-before-first-heading-p)
6911 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6912 (org-unlogged-message "EMPTY ENTRY")
6913 (setq org-cycle-subtree-status nil)
6914 (save-excursion
6915 (goto-char eos)
6916 (outline-next-heading)
6917 (if (outline-invisible-p) (org-flag-heading nil))))
6918 ((and (or (>= eol eos)
6919 (not (string-match "\\S-" (buffer-substring eol eos))))
6920 (or has-children
6921 (not (setq children-skipped
6922 org-cycle-skip-children-state-if-no-children))))
6923 ;; Entire subtree is hidden in one line: children view
6924 (unless (org-before-first-heading-p)
6925 (run-hook-with-args 'org-pre-cycle-hook 'children))
6926 (if (org-at-item-p)
6927 (org-list-set-item-visibility (point-at-bol) struct 'children)
6928 (org-show-entry)
6929 (org-with-limited-levels (outline-show-children))
6930 ;; FIXME: This slows down the func way too much.
6931 ;; How keep drawers hidden in subtree anyway?
6932 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6933 ;; (org-cycle-hide-drawers 'subtree))
6935 ;; Fold every list in subtree to top-level items.
6936 (when (eq org-cycle-include-plain-lists 'integrate)
6937 (save-excursion
6938 (org-back-to-heading)
6939 (while (org-list-search-forward (org-item-beginning-re) eos t)
6940 (beginning-of-line 1)
6941 (let* ((struct (org-list-struct))
6942 (prevs (org-list-prevs-alist struct))
6943 (end (org-list-get-bottom-point struct)))
6944 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6945 (org-list-get-all-items (point) struct prevs))
6946 (goto-char (if (< end eos) end eos)))))))
6947 (org-unlogged-message "CHILDREN")
6948 (save-excursion
6949 (goto-char eos)
6950 (outline-next-heading)
6951 (if (outline-invisible-p) (org-flag-heading nil)))
6952 (setq org-cycle-subtree-status 'children)
6953 (unless (org-before-first-heading-p)
6954 (run-hook-with-args 'org-cycle-hook 'children)))
6955 ((or children-skipped
6956 (and (eq last-command this-command)
6957 (eq org-cycle-subtree-status 'children)))
6958 ;; We just showed the children, or no children are there,
6959 ;; now show everything.
6960 (unless (org-before-first-heading-p)
6961 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6962 (outline-flag-region eoh eos nil)
6963 (org-unlogged-message
6964 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6965 (setq org-cycle-subtree-status 'subtree)
6966 (unless (org-before-first-heading-p)
6967 (run-hook-with-args 'org-cycle-hook 'subtree)))
6969 ;; Default action: hide the subtree.
6970 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6971 (outline-flag-region eoh eos t)
6972 (org-unlogged-message "FOLDED")
6973 (setq org-cycle-subtree-status 'folded)
6974 (unless (org-before-first-heading-p)
6975 (run-hook-with-args 'org-cycle-hook 'folded))))))
6977 ;;;###autoload
6978 (defun org-global-cycle (&optional arg)
6979 "Cycle the global visibility. For details see `org-cycle'.
6980 With \\[universal-argument] prefix arg, switch to startup visibility.
6981 With a numeric prefix, show all headlines up to that level."
6982 (interactive "P")
6983 (let ((org-cycle-include-plain-lists
6984 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6985 (cond
6986 ((integerp arg)
6987 (outline-show-all)
6988 (outline-hide-sublevels arg)
6989 (setq org-cycle-global-status 'contents))
6990 ((equal arg '(4))
6991 (org-set-startup-visibility)
6992 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6994 (org-cycle '(4))))))
6996 (defun org-set-startup-visibility ()
6997 "Set the visibility required by startup options and properties."
6998 (cond
6999 ((eq org-startup-folded t)
7000 (org-overview))
7001 ((eq org-startup-folded 'content)
7002 (org-content))
7003 ((or (eq org-startup-folded 'showeverything)
7004 (eq org-startup-folded nil))
7005 (outline-show-all)))
7006 (unless (eq org-startup-folded 'showeverything)
7007 (if org-hide-block-startup (org-hide-block-all))
7008 (org-set-visibility-according-to-property 'no-cleanup)
7009 (org-cycle-hide-archived-subtrees 'all)
7010 (org-cycle-hide-drawers 'all)
7011 (org-cycle-show-empty-lines t)))
7013 (defun org-set-visibility-according-to-property (&optional no-cleanup)
7014 "Switch subtree visibilities according to :VISIBILITY: property."
7015 (interactive)
7016 (let (org-show-entry-below)
7017 (org-with-wide-buffer
7018 (goto-char (point-min))
7019 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
7020 (if (not (org-at-property-p)) (outline-next-heading)
7021 (let ((state (match-string 3)))
7022 (save-excursion
7023 (org-back-to-heading t)
7024 (outline-hide-subtree)
7025 (org-reveal)
7026 (cond
7027 ((equal state "folded")
7028 (outline-hide-subtree))
7029 ((equal state "children")
7030 (org-show-hidden-entry)
7031 (outline-show-children))
7032 ((equal state "content")
7033 (save-excursion
7034 (save-restriction
7035 (org-narrow-to-subtree)
7036 (org-content))))
7037 ((member state '("all" "showall"))
7038 (outline-show-subtree)))))))
7039 (unless no-cleanup
7040 (org-cycle-hide-archived-subtrees 'all)
7041 (org-cycle-hide-drawers 'all)
7042 (org-cycle-show-empty-lines 'all)))))
7044 ;; This function uses outline-regexp instead of the more fundamental
7045 ;; org-outline-regexp so that org-cycle-global works outside of Org
7046 ;; buffers, where outline-regexp is needed.
7047 (defun org-overview ()
7048 "Switch to overview mode, showing only top-level headlines.
7049 This shows all headlines with a level equal or greater than the level
7050 of the first headline in the buffer. This is important, because if the
7051 first headline is not level one, then (hide-sublevels 1) gives confusing
7052 results."
7053 (interactive)
7054 (save-excursion
7055 (let ((level
7056 (save-excursion
7057 (goto-char (point-min))
7058 (if (re-search-forward (concat "^" outline-regexp) nil t)
7059 (progn
7060 (goto-char (match-beginning 0))
7061 (funcall outline-level))))))
7062 (and level (outline-hide-sublevels level)))))
7064 (defun org-content (&optional arg)
7065 "Show all headlines in the buffer, like a table of contents.
7066 With numerical argument N, show content up to level N."
7067 (interactive "P")
7068 (org-overview)
7069 (save-excursion
7070 ;; Visit all headings and show their offspring
7071 (and (integerp arg) (org-overview))
7072 (goto-char (point-max))
7073 (catch 'exit
7074 (while (and (progn (condition-case nil
7075 (outline-previous-visible-heading 1)
7076 (error (goto-char (point-min))))
7078 (looking-at org-outline-regexp))
7079 (if (integerp arg)
7080 (outline-show-children (1- arg))
7081 (outline-show-branches))
7082 (if (bobp) (throw 'exit nil))))))
7084 (defun org-optimize-window-after-visibility-change (state)
7085 "Adjust the window after a change in outline visibility.
7086 This function is the default value of the hook `org-cycle-hook'."
7087 (when (get-buffer-window (current-buffer))
7088 (cond
7089 ((eq state 'content) nil)
7090 ((eq state 'all) nil)
7091 ((eq state 'folded) nil)
7092 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7093 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7095 (defun org-remove-empty-overlays-at (pos)
7096 "Remove outline overlays that do not contain non-white stuff."
7097 (mapc
7098 (lambda (o)
7099 (and (eq 'outline (overlay-get o 'invisible))
7100 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7101 (overlay-end o))))
7102 (delete-overlay o)))
7103 (overlays-at pos)))
7105 (defun org-clean-visibility-after-subtree-move ()
7106 "Fix visibility issues after moving a subtree."
7107 ;; First, find a reasonable region to look at:
7108 ;; Start two siblings above, end three below
7109 (let* ((beg (save-excursion
7110 (and (org-get-last-sibling)
7111 (org-get-last-sibling))
7112 (point)))
7113 (end (save-excursion
7114 (and (org-get-next-sibling)
7115 (org-get-next-sibling)
7116 (org-get-next-sibling))
7117 (if (org-at-heading-p)
7118 (point-at-eol)
7119 (point))))
7120 (level (looking-at "\\*+"))
7121 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7122 (save-excursion
7123 (save-restriction
7124 (narrow-to-region beg end)
7125 (when re
7126 ;; Properly fold already folded siblings
7127 (goto-char (point-min))
7128 (while (re-search-forward re nil t)
7129 (if (and (not (outline-invisible-p))
7130 (save-excursion
7131 (goto-char (point-at-eol)) (outline-invisible-p)))
7132 (outline-hide-entry))))
7133 (org-cycle-show-empty-lines 'overview)
7134 (org-cycle-hide-drawers 'overview)))))
7136 (defun org-cycle-show-empty-lines (state)
7137 "Show empty lines above all visible headlines.
7138 The region to be covered depends on STATE when called through
7139 `org-cycle-hook'. Lisp program can use t for STATE to get the
7140 entire buffer covered. Note that an empty line is only shown if there
7141 are at least `org-cycle-separator-lines' empty lines before the headline."
7142 (when (/= org-cycle-separator-lines 0)
7143 (save-excursion
7144 (let* ((n (abs org-cycle-separator-lines))
7145 (re (cond
7146 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7147 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7148 (t (let ((ns (number-to-string (- n 2))))
7149 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7150 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7151 beg end)
7152 (cond
7153 ((memq state '(overview contents t))
7154 (setq beg (point-min) end (point-max)))
7155 ((memq state '(children folded))
7156 (setq beg (point)
7157 end (progn (org-end-of-subtree t t)
7158 (line-beginning-position 2)))))
7159 (when beg
7160 (goto-char beg)
7161 (while (re-search-forward re end t)
7162 (unless (get-char-property (match-end 1) 'invisible)
7163 (let ((e (match-end 1))
7164 (b (if (>= org-cycle-separator-lines 0)
7165 (match-beginning 1)
7166 (save-excursion
7167 (goto-char (match-beginning 0))
7168 (skip-chars-backward " \t\n")
7169 (line-end-position)))))
7170 (outline-flag-region b e nil))))))))
7171 ;; Never hide empty lines at the end of the file.
7172 (save-excursion
7173 (goto-char (point-max))
7174 (outline-previous-heading)
7175 (outline-end-of-heading)
7176 (if (and (looking-at "[ \t\n]+")
7177 (= (match-end 0) (point-max)))
7178 (outline-flag-region (point) (match-end 0) nil))))
7180 (defun org-show-empty-lines-in-parent ()
7181 "Move to the parent and re-show empty lines before visible headlines."
7182 (save-excursion
7183 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7184 (org-cycle-show-empty-lines context))))
7186 (defun org-files-list ()
7187 "Return `org-agenda-files' list, plus all open org-mode files.
7188 This is useful for operations that need to scan all of a user's
7189 open and agenda-wise Org files."
7190 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7191 (dolist (buf (buffer-list))
7192 (with-current-buffer buf
7193 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7194 (let ((file (expand-file-name (buffer-file-name))))
7195 (unless (member file files)
7196 (push file files))))))
7197 files))
7199 (defsubst org-entry-beginning-position ()
7200 "Return the beginning position of the current entry."
7201 (save-excursion (org-back-to-heading t) (point)))
7203 (defsubst org-entry-end-position ()
7204 "Return the end position of the current entry."
7205 (save-excursion (outline-next-heading) (point)))
7207 (defun org-cycle-hide-drawers (state &optional exceptions)
7208 "Re-hide all drawers after a visibility state change.
7209 When non-nil, optional argument EXCEPTIONS is a list of strings
7210 specifying which drawers should not be hidden."
7211 (when (and (derived-mode-p 'org-mode)
7212 (not (memq state '(overview folded contents))))
7213 (save-excursion
7214 (let* ((globalp (memq state '(contents all)))
7215 (beg (if globalp (point-min) (point)))
7216 (end (if globalp (point-max)
7217 (if (eq state 'children)
7218 (save-excursion (outline-next-heading) (point))
7219 (org-end-of-subtree t)))))
7220 (goto-char beg)
7221 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7222 (unless (member-ignore-case (match-string 1) exceptions)
7223 (let ((drawer (org-element-at-point)))
7224 (when (memq (org-element-type drawer) '(drawer property-drawer))
7225 (org-flag-drawer t drawer)
7226 ;; Make sure to skip drawer entirely or we might flag
7227 ;; it another time when matching its ending line with
7228 ;; `org-drawer-regexp'.
7229 (goto-char (org-element-property :end drawer))))))))))
7231 (defun org-flag-drawer (flag &optional element)
7232 "When FLAG is non-nil, hide the drawer we are at.
7233 Otherwise make it visible. When optional argument ELEMENT is
7234 a parsed drawer, as returned by `org-element-at-point', hide or
7235 show that drawer instead."
7236 (when (save-excursion
7237 (beginning-of-line)
7238 (org-looking-at-p org-drawer-regexp))
7239 (let ((drawer (or element (org-element-at-point))))
7240 (when (memq (org-element-type drawer) '(drawer property-drawer))
7241 (let ((post (org-element-property :post-affiliated drawer)))
7242 (save-excursion
7243 (outline-flag-region
7244 (progn (goto-char post) (line-end-position))
7245 (progn (goto-char (org-element-property :end drawer))
7246 (skip-chars-backward " \r\t\n")
7247 (line-end-position))
7248 flag))
7249 ;; When the drawer is hidden away, make sure point lies in
7250 ;; a visible part of the buffer.
7251 (when (and flag (> (line-beginning-position) post))
7252 (goto-char post)))))))
7254 (defun org-subtree-end-visible-p ()
7255 "Is the end of the current subtree visible?"
7256 (pos-visible-in-window-p
7257 (save-excursion (org-end-of-subtree t) (point))))
7259 (defun org-first-headline-recenter ()
7260 "Move cursor to the first headline and recenter the headline."
7261 (goto-char (point-min))
7262 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7263 (set-window-start (selected-window) (point-at-bol))))
7265 ;;; Saving and restoring visibility
7267 (defun org-outline-overlay-data (&optional use-markers)
7268 "Return a list of the locations of all outline overlays.
7269 These are overlays with the `invisible' property value `outline'.
7270 The return value is a list of cons cells, with start and stop
7271 positions for each overlay.
7272 If USE-MARKERS is set, return the positions as markers."
7273 (let (beg end)
7274 (save-excursion
7275 (save-restriction
7276 (widen)
7277 (delq nil
7278 (mapcar (lambda (o)
7279 (when (eq (overlay-get o 'invisible) 'outline)
7280 (setq beg (overlay-start o)
7281 end (overlay-end o))
7282 (and beg end (> end beg)
7283 (if use-markers
7284 (cons (copy-marker beg)
7285 (copy-marker end t))
7286 (cons beg end)))))
7287 (overlays-in (point-min) (point-max))))))))
7289 (defun org-set-outline-overlay-data (data)
7290 "Create visibility overlays for all positions in DATA.
7291 DATA should have been made by `org-outline-overlay-data'."
7292 (let (o)
7293 (save-excursion
7294 (save-restriction
7295 (widen)
7296 (outline-show-all)
7297 (mapc (lambda (c)
7298 (outline-flag-region (car c) (cdr c) t))
7299 data)))))
7301 ;;; Folding of blocks
7303 (defvar org-hide-block-overlays nil
7304 "Overlays hiding blocks.")
7305 (make-variable-buffer-local 'org-hide-block-overlays)
7307 (defun org-block-map (function &optional start end)
7308 "Call FUNCTION at the head of all source blocks in the current buffer.
7309 Optional arguments START and END can be used to limit the range."
7310 (let ((start (or start (point-min)))
7311 (end (or end (point-max))))
7312 (save-excursion
7313 (goto-char start)
7314 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7315 (save-excursion
7316 (save-match-data
7317 (goto-char (match-beginning 0))
7318 (funcall function)))))))
7320 (defun org-hide-block-toggle-all ()
7321 "Toggle the visibility of all blocks in the current buffer."
7322 (org-block-map 'org-hide-block-toggle))
7324 (defun org-hide-block-all ()
7325 "Fold all blocks in the current buffer."
7326 (interactive)
7327 (org-show-block-all)
7328 (org-block-map 'org-hide-block-toggle-maybe))
7330 (defun org-show-block-all ()
7331 "Unfold all blocks in the current buffer."
7332 (interactive)
7333 (mapc 'delete-overlay org-hide-block-overlays)
7334 (setq org-hide-block-overlays nil))
7336 (defun org-hide-block-toggle-maybe ()
7337 "Toggle visibility of block at point.
7338 Unlike to `org-hide-block-toggle', this function does not throw
7339 an error. Return a non-nil value when toggling is successful."
7340 (interactive)
7341 (ignore-errors (org-hide-block-toggle)))
7343 (defun org-hide-block-toggle (&optional force)
7344 "Toggle the visibility of the current block.
7345 When optional argument FORCE is `off', make block visible. If it
7346 is non-nil, hide it unconditionally. Throw an error when not at
7347 a block. Return a non-nil value when toggling is successful."
7348 (interactive)
7349 (let ((element (org-element-at-point)))
7350 (unless (memq (org-element-type element)
7351 '(center-block comment-block dynamic-block example-block
7352 export-block quote-block special-block
7353 src-block verse-block))
7354 (user-error "Not at a block"))
7355 (let* ((start (save-excursion
7356 (goto-char (org-element-property :post-affiliated element))
7357 (line-end-position)))
7358 (end (save-excursion
7359 (goto-char (org-element-property :end element))
7360 (skip-chars-backward " \r\t\n")
7361 (line-end-position)))
7362 (overlays (overlays-at start)))
7363 (cond
7364 ;; Do nothing when not before or at the block opening line or
7365 ;; at the block closing line.
7366 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7367 ((and (not (eq force 'off))
7368 (not (memq t (mapcar
7369 (lambda (o)
7370 (eq (overlay-get o 'invisible) 'org-hide-block))
7371 overlays))))
7372 (let ((ov (make-overlay start end)))
7373 (overlay-put ov 'invisible 'org-hide-block)
7374 ;; Make the block accessible to `isearch'.
7375 (overlay-put
7376 ov 'isearch-open-invisible
7377 (lambda (ov)
7378 (when (memq ov org-hide-block-overlays)
7379 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7380 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7381 (delete-overlay ov))))
7382 (push ov org-hide-block-overlays)
7383 ;; When the block is hidden away, make sure point is left in
7384 ;; a visible part of the buffer.
7385 (when (> (line-beginning-position) start)
7386 (goto-char start)
7387 (beginning-of-line))
7388 ;; Signal successful toggling.
7390 ((or (not force) (eq force 'off))
7391 (dolist (ov overlays t)
7392 (when (memq ov org-hide-block-overlays)
7393 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7394 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7395 (delete-overlay ov))))))))
7397 ;; org-tab-after-check-for-cycling-hook
7398 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7399 ;; Remove overlays when changing major mode
7400 (add-hook 'org-mode-hook
7401 (lambda () (org-add-hook 'change-major-mode-hook
7402 'org-show-block-all 'append 'local)))
7404 ;;; Org-goto
7406 (defvar org-goto-window-configuration nil)
7407 (defvar org-goto-marker nil)
7408 (defvar org-goto-map)
7409 (defun org-goto-map ()
7410 "Set the keymap `org-goto'."
7411 (setq org-goto-map
7412 (let ((map (make-sparse-keymap)))
7413 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7414 mouse-drag-region universal-argument org-occur)))
7415 (dolist (cmd cmds)
7416 (substitute-key-definition cmd cmd map global-map)))
7417 (suppress-keymap map)
7418 (org-defkey map "\C-m" 'org-goto-ret)
7419 (org-defkey map [(return)] 'org-goto-ret)
7420 (org-defkey map [(left)] 'org-goto-left)
7421 (org-defkey map [(right)] 'org-goto-right)
7422 (org-defkey map [(control ?g)] 'org-goto-quit)
7423 (org-defkey map "\C-i" 'org-cycle)
7424 (org-defkey map [(tab)] 'org-cycle)
7425 (org-defkey map [(down)] 'outline-next-visible-heading)
7426 (org-defkey map [(up)] 'outline-previous-visible-heading)
7427 (if org-goto-auto-isearch
7428 (if (fboundp 'define-key-after)
7429 (define-key-after map [t] 'org-goto-local-auto-isearch)
7430 nil)
7431 (org-defkey map "q" 'org-goto-quit)
7432 (org-defkey map "n" 'outline-next-visible-heading)
7433 (org-defkey map "p" 'outline-previous-visible-heading)
7434 (org-defkey map "f" 'outline-forward-same-level)
7435 (org-defkey map "b" 'outline-backward-same-level)
7436 (org-defkey map "u" 'outline-up-heading))
7437 (org-defkey map "/" 'org-occur)
7438 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7439 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7440 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7441 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7442 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7443 map)))
7445 (defconst org-goto-help
7446 "Browse buffer copy, to find location or copy text.%s
7447 RET=jump to location C-g=quit and return to previous location
7448 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7450 (defvar org-goto-start-pos) ; dynamically scoped parameter
7452 (defun org-goto (&optional alternative-interface)
7453 "Look up a different location in the current file, keeping current visibility.
7455 When you want look-up or go to a different location in a
7456 document, the fastest way is often to fold the entire buffer and
7457 then dive into the tree. This method has the disadvantage, that
7458 the previous location will be folded, which may not be what you
7459 want.
7461 This command works around this by showing a copy of the current
7462 buffer in an indirect buffer, in overview mode. You can dive
7463 into the tree in that copy, use org-occur and incremental search
7464 to find a location. When pressing RET or `Q', the command
7465 returns to the original buffer in which the visibility is still
7466 unchanged. After RET it will also jump to the location selected
7467 in the indirect buffer and expose the headline hierarchy above.
7469 With a prefix argument, use the alternative interface: e.g., if
7470 `org-goto-interface' is `outline' use `outline-path-completion'."
7471 (interactive "P")
7472 (org-goto-map)
7473 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7474 (org-refile-use-outline-path t)
7475 (org-refile-target-verify-function nil)
7476 (interface
7477 (if (not alternative-interface)
7478 org-goto-interface
7479 (if (eq org-goto-interface 'outline)
7480 'outline-path-completion
7481 'outline)))
7482 (org-goto-start-pos (point))
7483 (selected-point
7484 (if (eq interface 'outline)
7485 (car (org-get-location (current-buffer) org-goto-help))
7486 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7487 (org-refile-check-position pa)
7488 (nth 3 pa)))))
7489 (if selected-point
7490 (progn
7491 (org-mark-ring-push org-goto-start-pos)
7492 (goto-char selected-point)
7493 (if (or (outline-invisible-p) (org-invisible-p2))
7494 (org-show-context 'org-goto)))
7495 (message "Quit"))))
7497 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7498 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7499 (defvar org-goto-local-auto-isearch-map) ; defined below
7501 (defun org-get-location (buf help)
7502 "Let the user select a location in the Org-mode buffer BUF.
7503 This function uses a recursive edit. It returns the selected position
7504 or nil."
7505 (org-no-popups
7506 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7507 (isearch-hide-immediately nil)
7508 (isearch-search-fun-function
7509 (lambda () 'org-goto-local-search-headings))
7510 (org-goto-selected-point org-goto-exit-command))
7511 (save-excursion
7512 (save-window-excursion
7513 (delete-other-windows)
7514 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7515 (org-pop-to-buffer-same-window
7516 (condition-case nil
7517 (make-indirect-buffer (current-buffer) "*org-goto*")
7518 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7519 (with-output-to-temp-buffer "*Org Help*"
7520 (princ (format help (if org-goto-auto-isearch
7521 " Just type for auto-isearch."
7522 " n/p/f/b/u to navigate, q to quit."))))
7523 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7524 (setq buffer-read-only nil)
7525 (let ((org-startup-truncated t)
7526 (org-startup-folded nil)
7527 (org-startup-align-all-tables nil))
7528 (org-mode)
7529 (org-overview))
7530 (setq buffer-read-only t)
7531 (if (and (boundp 'org-goto-start-pos)
7532 (integer-or-marker-p org-goto-start-pos))
7533 (progn (goto-char org-goto-start-pos)
7534 (when (outline-invisible-p)
7535 (org-show-set-visibility 'lineage)))
7536 (goto-char (point-min)))
7537 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7538 (message "Select location and press RET")
7539 (use-local-map org-goto-map)
7540 (recursive-edit)))
7541 (kill-buffer "*org-goto*")
7542 (cons org-goto-selected-point org-goto-exit-command))))
7544 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7545 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7546 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7547 (if (fboundp 'isearch-other-control-char)
7548 (progn
7549 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7550 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7551 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7552 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7553 (define-key org-goto-local-auto-isearch-map [return] nil))
7555 (defun org-goto-local-search-headings (string bound noerror)
7556 "Search and make sure that any matches are in headlines."
7557 (catch 'return
7558 (while (if isearch-forward
7559 (search-forward string bound noerror)
7560 (search-backward string bound noerror))
7561 (when (save-match-data
7562 (and (save-excursion
7563 (beginning-of-line)
7564 (looking-at org-complex-heading-regexp))
7565 (or (not (match-beginning 5))
7566 (< (point) (match-beginning 5)))))
7567 (throw 'return (point))))))
7569 (defun org-goto-local-auto-isearch ()
7570 "Start isearch."
7571 (interactive)
7572 (goto-char (point-min))
7573 (let ((keys (this-command-keys)))
7574 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7575 (isearch-mode t)
7576 (isearch-process-search-char (string-to-char keys)))))
7578 (defun org-goto-ret (&optional arg)
7579 "Finish `org-goto' by going to the new location."
7580 (interactive "P")
7581 (setq org-goto-selected-point (point)
7582 org-goto-exit-command 'return)
7583 (throw 'exit nil))
7585 (defun org-goto-left ()
7586 "Finish `org-goto' by going to the new location."
7587 (interactive)
7588 (if (org-at-heading-p)
7589 (progn
7590 (beginning-of-line 1)
7591 (setq org-goto-selected-point (point)
7592 org-goto-exit-command 'left)
7593 (throw 'exit nil))
7594 (user-error "Not on a heading")))
7596 (defun org-goto-right ()
7597 "Finish `org-goto' by going to the new location."
7598 (interactive)
7599 (if (org-at-heading-p)
7600 (progn
7601 (setq org-goto-selected-point (point)
7602 org-goto-exit-command 'right)
7603 (throw 'exit nil))
7604 (user-error "Not on a heading")))
7606 (defun org-goto-quit ()
7607 "Finish `org-goto' without cursor motion."
7608 (interactive)
7609 (setq org-goto-selected-point nil)
7610 (setq org-goto-exit-command 'quit)
7611 (throw 'exit nil))
7613 ;;; Indirect buffer display of subtrees
7615 (defvar org-indirect-dedicated-frame nil
7616 "This is the frame being used for indirect tree display.")
7617 (defvar org-last-indirect-buffer nil)
7619 (defun org-tree-to-indirect-buffer (&optional arg)
7620 "Create indirect buffer and narrow it to current subtree.
7621 With a numerical prefix ARG, go up to this level and then take that tree.
7622 If ARG is negative, go up that many levels.
7624 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7625 indirect buffer previously made with this command, to avoid proliferation of
7626 indirect buffers. However, when you call the command with a \
7627 \\[universal-argument] prefix, or
7628 when `org-indirect-buffer-display' is `new-frame', the last buffer
7629 is kept so that you can work with several indirect buffers at the same time.
7630 If `org-indirect-buffer-display' is `dedicated-frame', the \
7631 \\[universal-argument] prefix also
7632 requests that a new frame be made for the new buffer, so that the dedicated
7633 frame is not changed."
7634 (interactive "P")
7635 (let ((cbuf (current-buffer))
7636 (cwin (selected-window))
7637 (pos (point))
7638 beg end level heading ibuf)
7639 (save-excursion
7640 (org-back-to-heading t)
7641 (when (numberp arg)
7642 (setq level (org-outline-level))
7643 (if (< arg 0) (setq arg (+ level arg)))
7644 (while (> (setq level (org-outline-level)) arg)
7645 (org-up-heading-safe)))
7646 (setq beg (point)
7647 heading (org-get-heading))
7648 (org-end-of-subtree t t)
7649 (if (org-at-heading-p) (backward-char 1))
7650 (setq end (point)))
7651 (if (and (buffer-live-p org-last-indirect-buffer)
7652 (not (eq org-indirect-buffer-display 'new-frame))
7653 (not arg))
7654 (kill-buffer org-last-indirect-buffer))
7655 (setq ibuf (org-get-indirect-buffer cbuf heading)
7656 org-last-indirect-buffer ibuf)
7657 (cond
7658 ((or (eq org-indirect-buffer-display 'new-frame)
7659 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7660 (select-frame (make-frame))
7661 (delete-other-windows)
7662 (org-pop-to-buffer-same-window ibuf)
7663 (org-set-frame-title heading))
7664 ((eq org-indirect-buffer-display 'dedicated-frame)
7665 (raise-frame
7666 (select-frame (or (and org-indirect-dedicated-frame
7667 (frame-live-p org-indirect-dedicated-frame)
7668 org-indirect-dedicated-frame)
7669 (setq org-indirect-dedicated-frame (make-frame)))))
7670 (delete-other-windows)
7671 (org-pop-to-buffer-same-window ibuf)
7672 (org-set-frame-title (concat "Indirect: " heading)))
7673 ((eq org-indirect-buffer-display 'current-window)
7674 (org-pop-to-buffer-same-window ibuf))
7675 ((eq org-indirect-buffer-display 'other-window)
7676 (pop-to-buffer ibuf))
7677 (t (error "Invalid value")))
7678 (if (featurep 'xemacs)
7679 (save-excursion (org-mode) (turn-on-font-lock)))
7680 (narrow-to-region beg end)
7681 (outline-show-all)
7682 (goto-char pos)
7683 (run-hook-with-args 'org-cycle-hook 'all)
7684 (and (window-live-p cwin) (select-window cwin))))
7686 (defun org-get-indirect-buffer (&optional buffer heading)
7687 (setq buffer (or buffer (current-buffer)))
7688 (let ((n 1) (base (buffer-name buffer)) bname)
7689 (while (buffer-live-p
7690 (get-buffer
7691 (setq bname
7692 (concat base "-"
7693 (if heading (concat heading "-" (number-to-string n))
7694 (number-to-string n))))))
7695 (setq n (1+ n)))
7696 (condition-case nil
7697 (make-indirect-buffer buffer bname 'clone)
7698 (error (make-indirect-buffer buffer bname)))))
7700 (defun org-set-frame-title (title)
7701 "Set the title of the current frame to the string TITLE."
7702 ;; FIXME: how to name a single frame in XEmacs???
7703 (unless (featurep 'xemacs)
7704 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7706 ;;;; Structure editing
7708 ;;; Inserting headlines
7710 (defun org-previous-line-empty-p (&optional next)
7711 "Is the previous line a blank line?
7712 When NEXT is non-nil, check the next line instead."
7713 (save-excursion
7714 (and (not (bobp))
7715 (or (beginning-of-line (if next 2 0)) t)
7716 (save-match-data
7717 (looking-at "[ \t]*$")))))
7719 (defun org-insert-heading (&optional arg invisible-ok top-level)
7720 "Insert a new heading or an item with the same depth at point.
7722 If point is at the beginning of a heading or a list item, insert
7723 a new heading or a new item above the current one. If point is
7724 at the beginning of a normal line, turn the line into a heading.
7726 If point is in the middle of a headline or a list item, split the
7727 headline or the item and create a new headline/item with the text
7728 in the current line after point \(see `org-M-RET-may-split-line'
7729 on how to modify this behavior).
7731 With one universal prefix argument, set the user option
7732 `org-insert-heading-respect-content' to t for the duration of
7733 the command. This modifies the behavior described above in this
7734 ways: on list items and at the beginning of normal lines, force
7735 the insertion of a heading after the current subtree.
7737 With two universal prefix arguments, insert the heading at the
7738 end of the grandparent subtree. For example, if point is within
7739 a 2nd-level heading, then it will insert a 2nd-level heading at
7740 the end of the 1st-level parent heading.
7742 If point is at the beginning of a headline, insert a sibling
7743 before the current headline. If point is not at the beginning,
7744 split the line and create a new headline with the text in the
7745 current line after point \(see `org-M-RET-may-split-line' on how
7746 to modify this behavior).
7748 If point is at the beginning of a normal line, turn this line
7749 into a heading.
7751 When INVISIBLE-OK is set, stop at invisible headlines when going
7752 back. This is important for non-interactive uses of the
7753 command.
7755 When optional argument TOP-LEVEL is non-nil, insert a level 1
7756 heading, unconditionally."
7757 (interactive "P")
7758 (if (org-called-interactively-p 'any) (org-reveal))
7759 (let ((itemp (and (not top-level) (org-in-item-p)))
7760 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7761 (respect-content (or org-insert-heading-respect-content
7762 (equal arg '(4))))
7763 (initial-content ""))
7765 (cond
7767 ((or (= (buffer-size) 0)
7768 (and (not (save-excursion
7769 (and (ignore-errors (org-back-to-heading invisible-ok))
7770 (org-at-heading-p))))
7771 (or arg (not itemp))))
7772 ;; At beginning of buffer or so high up that only a heading
7773 ;; makes sense.
7774 (cond ((and (bolp) (not respect-content)) (insert "* "))
7775 ((not respect-content)
7776 (unless may-split (end-of-line))
7777 (insert "\n* "))
7778 ((re-search-forward org-outline-regexp-bol nil t)
7779 (beginning-of-line)
7780 (insert "* \n")
7781 (backward-char))
7782 (t (goto-char (point-max))
7783 (insert "\n* ")))
7784 (run-hooks 'org-insert-heading-hook))
7786 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7789 ;; Maybe move at the end of the subtree
7790 (when (equal arg '(16))
7791 (org-up-heading-safe)
7792 (org-end-of-subtree t))
7793 ;; Insert a heading
7794 (save-restriction
7795 (widen)
7796 (let* ((level nil)
7797 (on-heading (org-at-heading-p))
7798 (empty-line-p (if on-heading
7799 (org-previous-line-empty-p)
7800 ;; We will decide later
7801 nil))
7802 ;; Get a level string to fall back on.
7803 (fix-level
7804 (if (org-before-first-heading-p) "*"
7805 (save-excursion
7806 (org-back-to-heading t)
7807 (if (org-previous-line-empty-p) (setq empty-line-p t))
7808 (looking-at org-outline-regexp)
7809 (make-string (1- (length (match-string 0))) ?*))))
7810 (stars
7811 (save-excursion
7812 (condition-case nil
7813 (if top-level "* "
7814 (org-back-to-heading invisible-ok)
7815 (when (and (not on-heading)
7816 (featurep 'org-inlinetask)
7817 (integerp org-inlinetask-min-level)
7818 (>= (length (match-string 0))
7819 org-inlinetask-min-level))
7820 ;; Find a heading level before the inline
7821 ;; task.
7822 (while (and (setq level (org-up-heading-safe))
7823 (>= level org-inlinetask-min-level)))
7824 (if (org-at-heading-p)
7825 (org-back-to-heading invisible-ok)
7826 (error "This should not happen")))
7827 (unless (and (save-excursion
7828 (save-match-data
7829 (org-backward-heading-same-level
7830 1 invisible-ok))
7831 (= (point) (match-beginning 0)))
7832 (not (org-previous-line-empty-p t)))
7833 (setq empty-line-p (or empty-line-p
7834 (org-previous-line-empty-p))))
7835 (match-string 0))
7836 (error (or fix-level "* ")))))
7837 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7838 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7839 pos hide-previous previous-pos)
7841 ;; If we insert after content, move there and clean up
7842 ;; whitespace.
7843 (when (and respect-content
7844 (not (org-looking-at-p org-outline-regexp-bol)))
7845 (if (not (org-before-first-heading-p))
7846 (org-end-of-subtree nil t)
7847 (re-search-forward org-outline-regexp-bol)
7848 (beginning-of-line 0))
7849 (skip-chars-backward " \r\t\n")
7850 (and (not (org-looking-back "^\\*+" (line-beginning-position)))
7851 (looking-at "[ \t]+") (replace-match ""))
7852 (unless (eobp) (forward-char 1))
7853 (when (looking-at "^\\*")
7854 (unless (bobp) (backward-char 1))
7855 (insert "\n")))
7857 ;; If we are splitting, grab the text that should be moved
7858 ;; to the new headline.
7859 (when may-split
7860 (if (org-on-heading-p)
7861 ;; This is a heading: split intelligently (keeping
7862 ;; tags).
7863 (let ((pos (point)))
7864 (beginning-of-line)
7865 (unless (looking-at org-complex-heading-regexp)
7866 (error "This should not happen"))
7867 (when (and (match-beginning 4)
7868 (> pos (match-beginning 4))
7869 (< pos (match-end 4)))
7870 (setq initial-content (buffer-substring pos (match-end 4)))
7871 (goto-char pos)
7872 (delete-region (point) (match-end 4))
7873 (if (looking-at "[ \t]*$")
7874 (replace-match "")
7875 (insert (make-string (length initial-content) ?\s)))
7876 (setq initial-content (org-trim initial-content)))
7877 (goto-char pos))
7878 ;; A normal line.
7879 (setq initial-content
7880 (org-trim
7881 (delete-and-extract-region (point) (line-end-position))))))
7883 ;; If we are at the beginning of the line, insert before it.
7884 ;; Otherwise, after it.
7885 (cond
7886 ((and (bolp) (looking-at "[ \t]*$")))
7887 ((bolp) (save-excursion (insert "\n")))
7888 (t (end-of-line)
7889 (insert "\n")))
7891 ;; Insert the new heading
7892 (insert stars)
7893 (just-one-space)
7894 (insert initial-content)
7895 (unless (and blank (org-previous-line-empty-p))
7896 (org-N-empty-lines-before-current (if blank 1 0)))
7897 ;; Adjust visibility, which may be messed up if we removed
7898 ;; blank lines while previous entry was hidden.
7899 (let ((bol (line-beginning-position)))
7900 (dolist (o (overlays-at (1- bol)))
7901 (when (and (eq (overlay-get o 'invisible) 'outline)
7902 (eq (overlay-end o) bol))
7903 (move-overlay o (overlay-start o) (1- bol)))))
7904 (run-hooks 'org-insert-heading-hook)))))))
7906 (defun org-N-empty-lines-before-current (N)
7907 "Make the number of empty lines before current exactly N.
7908 So this will delete or add empty lines."
7909 (save-excursion
7910 (beginning-of-line)
7911 (let ((p (point)))
7912 (skip-chars-backward " \r\t\n")
7913 (unless (bolp) (forward-line))
7914 (delete-region (point) p))
7915 (when (> N 0) (insert (make-string N ?\n)))))
7917 (defun org-get-heading (&optional no-tags no-todo)
7918 "Return the heading of the current entry, without the stars.
7919 When NO-TAGS is non-nil, don't include tags.
7920 When NO-TODO is non-nil, don't include TODO keywords."
7921 (save-excursion
7922 (org-back-to-heading t)
7923 (cond
7924 ((and no-tags no-todo)
7925 (looking-at org-complex-heading-regexp)
7926 (match-string 4))
7927 (no-tags
7928 (looking-at (concat org-outline-regexp
7929 "\\(.*?\\)"
7930 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7931 (match-string 1))
7932 (no-todo
7933 (looking-at org-todo-line-regexp)
7934 (match-string 3))
7935 (t (looking-at org-heading-regexp)
7936 (match-string 2)))))
7938 (defvar orgstruct-mode) ; defined below
7940 (defun org-heading-components ()
7941 "Return the components of the current heading.
7942 This is a list with the following elements:
7943 - the level as an integer
7944 - the reduced level, different if `org-odd-levels-only' is set.
7945 - the TODO keyword, or nil
7946 - the priority character, like ?A, or nil if no priority is given
7947 - the headline text itself, or the tags string if no headline text
7948 - the tags string, or nil."
7949 (save-excursion
7950 (org-back-to-heading t)
7951 (if (let (case-fold-search)
7952 (looking-at
7953 (if orgstruct-mode
7954 org-heading-regexp
7955 org-complex-heading-regexp)))
7956 (if orgstruct-mode
7957 (list (length (match-string 1))
7958 (org-reduced-level (length (match-string 1)))
7961 (match-string 2)
7962 nil)
7963 (list (length (match-string 1))
7964 (org-reduced-level (length (match-string 1)))
7965 (org-match-string-no-properties 2)
7966 (and (match-end 3) (aref (match-string 3) 2))
7967 (org-match-string-no-properties 4)
7968 (org-match-string-no-properties 5))))))
7970 (defun org-get-entry ()
7971 "Get the entry text, after heading, entire subtree."
7972 (save-excursion
7973 (org-back-to-heading t)
7974 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7976 (defun org-insert-heading-after-current ()
7977 "Insert a new heading with same level as current, after current subtree."
7978 (interactive)
7979 (org-back-to-heading)
7980 (org-insert-heading)
7981 (org-move-subtree-down)
7982 (end-of-line 1))
7984 (defun org-insert-heading-respect-content (&optional invisible-ok)
7985 "Insert heading with `org-insert-heading-respect-content' set to t."
7986 (interactive)
7987 (org-insert-heading '(4) invisible-ok))
7989 (defun org-insert-todo-heading-respect-content (&optional force-state)
7990 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7991 (interactive)
7992 (org-insert-todo-heading force-state '(4)))
7994 (defun org-insert-todo-heading (arg &optional force-heading)
7995 "Insert a new heading with the same level and TODO state as current heading.
7996 If the heading has no TODO state, or if the state is DONE, use the first
7997 state (TODO by default). Also with one prefix arg, force first state. With
7998 two prefix args, force inserting at the end of the parent subtree."
7999 (interactive "P")
8000 (when (or force-heading (not (org-insert-item 'checkbox)))
8001 (org-insert-heading (or (and (equal arg '(16)) '(16))
8002 force-heading))
8003 (save-excursion
8004 (org-back-to-heading)
8005 (outline-previous-heading)
8006 (looking-at org-todo-line-regexp))
8007 (let*
8008 ((new-mark-x
8009 (if (or (equal arg '(4))
8010 (not (match-beginning 2))
8011 (member (match-string 2) org-done-keywords))
8012 (car org-todo-keywords-1)
8013 (match-string 2)))
8014 (new-mark
8016 (run-hook-with-args-until-success
8017 'org-todo-get-default-hook new-mark-x nil)
8018 new-mark-x)))
8019 (beginning-of-line 1)
8020 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
8021 (if org-treat-insert-todo-heading-as-state-change
8022 (org-todo new-mark)
8023 (insert new-mark " "))))
8024 (when org-provide-todo-statistics
8025 (org-update-parent-todo-statistics))))
8027 (defun org-insert-subheading (arg)
8028 "Insert a new subheading and demote it.
8029 Works for outline headings and for plain lists alike."
8030 (interactive "P")
8031 (org-insert-heading arg)
8032 (cond
8033 ((org-at-heading-p) (org-do-demote))
8034 ((org-at-item-p) (org-indent-item))))
8036 (defun org-insert-todo-subheading (arg)
8037 "Insert a new subheading with TODO keyword or checkbox and demote it.
8038 Works for outline headings and for plain lists alike."
8039 (interactive "P")
8040 (org-insert-todo-heading arg)
8041 (cond
8042 ((org-at-heading-p) (org-do-demote))
8043 ((org-at-item-p) (org-indent-item))))
8045 ;;; Promotion and Demotion
8047 (defvar org-after-demote-entry-hook nil
8048 "Hook run after an entry has been demoted.
8049 The cursor will be at the beginning of the entry.
8050 When a subtree is being demoted, the hook will be called for each node.")
8052 (defvar org-after-promote-entry-hook nil
8053 "Hook run after an entry has been promoted.
8054 The cursor will be at the beginning of the entry.
8055 When a subtree is being promoted, the hook will be called for each node.")
8057 (defun org-promote-subtree ()
8058 "Promote the entire subtree.
8059 See also `org-promote'."
8060 (interactive)
8061 (save-excursion
8062 (org-with-limited-levels (org-map-tree 'org-promote)))
8063 (org-fix-position-after-promote))
8065 (defun org-demote-subtree ()
8066 "Demote the entire subtree.
8067 See `org-demote' and `org-promote'."
8068 (interactive)
8069 (save-excursion
8070 (org-with-limited-levels (org-map-tree 'org-demote)))
8071 (org-fix-position-after-promote))
8073 (defun org-do-promote ()
8074 "Promote the current heading higher up the tree.
8075 If the region is active in `transient-mark-mode', promote all
8076 headings in the region."
8077 (interactive)
8078 (save-excursion
8079 (if (org-region-active-p)
8080 (org-map-region 'org-promote (region-beginning) (region-end))
8081 (org-promote)))
8082 (org-fix-position-after-promote))
8084 (defun org-do-demote ()
8085 "Demote the current heading lower down the tree.
8086 If the region is active in `transient-mark-mode', demote all
8087 headings in the region."
8088 (interactive)
8089 (save-excursion
8090 (if (org-region-active-p)
8091 (org-map-region 'org-demote (region-beginning) (region-end))
8092 (org-demote)))
8093 (org-fix-position-after-promote))
8095 (defun org-fix-position-after-promote ()
8096 "Fix cursor position and indentation after demoting/promoting."
8097 (let ((pos (point)))
8098 (when (save-excursion
8099 (beginning-of-line 1)
8100 (looking-at org-todo-line-regexp)
8101 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8102 (cond ((eobp) (insert " "))
8103 ((eolp) (insert " "))
8104 ((equal (char-after) ?\ ) (forward-char 1))))))
8106 (defun org-current-level ()
8107 "Return the level of the current entry, or nil if before the first headline.
8108 The level is the number of stars at the beginning of the
8109 headline. Use `org-reduced-level' to remove the effect of
8110 `org-odd-levels'. Unlike to `org-outline-level', this function
8111 ignores inlinetasks."
8112 (let ((level (org-with-limited-levels (org-outline-level))))
8113 (and (> level 0) level)))
8115 (defun org-get-previous-line-level ()
8116 "Return the outline depth of the last headline before the current line.
8117 Returns 0 for the first headline in the buffer, and nil if before the
8118 first headline."
8119 (and (org-current-level)
8120 (or (and (/= (line-beginning-position) (point-min))
8121 (save-excursion (beginning-of-line 0) (org-current-level)))
8122 0)))
8124 (defun org-reduced-level (l)
8125 "Compute the effective level of a heading.
8126 This takes into account the setting of `org-odd-levels-only'."
8127 (cond
8128 ((zerop l) 0)
8129 (org-odd-levels-only (1+ (floor (/ l 2))))
8130 (t l)))
8132 (defun org-level-increment ()
8133 "Return the number of stars that will be added or removed at a
8134 time to headlines when structure editing, based on the value of
8135 `org-odd-levels-only'."
8136 (if org-odd-levels-only 2 1))
8138 (defun org-get-valid-level (level &optional change)
8139 "Rectify a level change under the influence of `org-odd-levels-only'
8140 LEVEL is a current level, CHANGE is by how much the level should be
8141 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8142 even level numbers will become the next higher odd number."
8143 (if org-odd-levels-only
8144 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8145 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8146 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8147 (max 1 (+ level (or change 0)))))
8149 (if (boundp 'define-obsolete-function-alias)
8150 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8151 (define-obsolete-function-alias 'org-get-legal-level
8152 'org-get-valid-level)
8153 (define-obsolete-function-alias 'org-get-legal-level
8154 'org-get-valid-level "23.1")))
8156 (defun org-promote ()
8157 "Promote the current heading higher up the tree."
8158 (org-with-wide-buffer
8159 (org-back-to-heading t)
8160 (let* ((after-change-functions (remq 'flyspell-after-change-function
8161 after-change-functions))
8162 (level (save-match-data (funcall outline-level)))
8163 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8164 (diff (abs (- level (length up-head) -1))))
8165 (cond
8166 ((and (= level 1) org-allow-promoting-top-level-subtree)
8167 (replace-match "# " nil t))
8168 ((= level 1)
8169 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8170 (t (replace-match up-head nil t)))
8171 (unless (= level 1)
8172 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8173 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8174 (run-hooks 'org-after-promote-entry-hook))))
8176 (defun org-demote ()
8177 "Demote the current heading lower down the tree."
8178 (org-with-wide-buffer
8179 (org-back-to-heading t)
8180 (let* ((after-change-functions (remq 'flyspell-after-change-function
8181 after-change-functions))
8182 (level (save-match-data (funcall outline-level)))
8183 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8184 (diff (abs (- level (length down-head) -1))))
8185 (replace-match down-head nil t)
8186 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8187 (when org-adapt-indentation (org-fixup-indentation diff))
8188 (run-hooks 'org-after-demote-entry-hook))))
8190 (defun org-cycle-level ()
8191 "Cycle the level of an empty headline through possible states.
8192 This goes first to child, then to parent, level, then up the hierarchy.
8193 After top level, it switches back to sibling level."
8194 (interactive)
8195 (let ((org-adapt-indentation nil))
8196 (when (org-point-at-end-of-empty-headline)
8197 (setq this-command 'org-cycle-level) ; Only needed for caching
8198 (let ((cur-level (org-current-level))
8199 (prev-level (org-get-previous-line-level)))
8200 (cond
8201 ;; If first headline in file, promote to top-level.
8202 ((= prev-level 0)
8203 (loop repeat (/ (- cur-level 1) (org-level-increment))
8204 do (org-do-promote)))
8205 ;; If same level as prev, demote one.
8206 ((= prev-level cur-level)
8207 (org-do-demote))
8208 ;; If parent is top-level, promote to top level if not already.
8209 ((= prev-level 1)
8210 (loop repeat (/ (- cur-level 1) (org-level-increment))
8211 do (org-do-promote)))
8212 ;; If top-level, return to prev-level.
8213 ((= cur-level 1)
8214 (loop repeat (/ (- prev-level 1) (org-level-increment))
8215 do (org-do-demote)))
8216 ;; If less than prev-level, promote one.
8217 ((< cur-level prev-level)
8218 (org-do-promote))
8219 ;; If deeper than prev-level, promote until higher than
8220 ;; prev-level.
8221 ((> cur-level prev-level)
8222 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8223 do (org-do-promote))))
8224 t))))
8226 (defun org-map-tree (fun)
8227 "Call FUN for every heading underneath the current one."
8228 (org-back-to-heading)
8229 (let ((level (funcall outline-level)))
8230 (save-excursion
8231 (funcall fun)
8232 (while (and (progn
8233 (outline-next-heading)
8234 (> (funcall outline-level) level))
8235 (not (eobp)))
8236 (funcall fun)))))
8238 (defun org-map-region (fun beg end)
8239 "Call FUN for every heading between BEG and END."
8240 (let ((org-ignore-region t))
8241 (save-excursion
8242 (setq end (copy-marker end))
8243 (goto-char beg)
8244 (if (and (re-search-forward org-outline-regexp-bol nil t)
8245 (< (point) end))
8246 (funcall fun))
8247 (while (and (progn
8248 (outline-next-heading)
8249 (< (point) end))
8250 (not (eobp)))
8251 (funcall fun)))))
8253 (defun org-fixup-indentation (diff)
8254 "Change the indentation in the current entry by DIFF.
8256 DIFF is an integer. Indentation is done according to the
8257 following rules:
8259 - Planning information and property drawers are always indented
8260 according to the new level of the headline;
8262 - Footnote definitions and their contents are ignored;
8264 - Inlinetasks' boundaries are not shifted;
8266 - Empty lines are ignored;
8268 - Other lines' indentation are shifted by DIFF columns, unless
8269 it would introduce a structural change in the document, in
8270 which case no shifting is done at all.
8272 Assume point is at a heading or an inlinetask beginning."
8273 (org-with-wide-buffer
8274 (narrow-to-region (line-beginning-position)
8275 (save-excursion
8276 (if (org-with-limited-levels (org-at-heading-p))
8277 (org-with-limited-levels (outline-next-heading))
8278 (org-inlinetask-goto-end))
8279 (point)))
8280 (forward-line)
8281 ;; Indent properly planning info and property drawer.
8282 (when (org-looking-at-p org-planning-line-re)
8283 (org-indent-line)
8284 (forward-line))
8285 (when (looking-at org-property-drawer-re)
8286 (goto-char (match-end 0))
8287 (forward-line)
8288 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8289 (catch 'no-shift
8290 (when (zerop diff) (throw 'no-shift nil))
8291 ;; If DIFF is negative, first check if a shift is possible at all
8292 ;; (e.g., it doesn't break structure). This can only happen if
8293 ;; some contents are not properly indented.
8294 (let ((case-fold-search t))
8295 (when (< diff 0)
8296 (let ((diff (- diff))
8297 (forbidden-re (concat org-outline-regexp
8298 "\\|"
8299 (substring org-footnote-definition-re 1))))
8300 (save-excursion
8301 (while (not (eobp))
8302 (cond
8303 ((org-looking-at-p "[ \t]*$") (forward-line))
8304 ((and (org-looking-at-p org-footnote-definition-re)
8305 (let ((e (org-element-at-point)))
8306 (and (eq (org-element-type e) 'footnote-definition)
8307 (goto-char (org-element-property :end e))))))
8308 ((org-looking-at-p org-outline-regexp) (forward-line))
8309 ;; Give up if shifting would move before column 0 or
8310 ;; if it would introduce a headline or a footnote
8311 ;; definition.
8313 (skip-chars-forward " \t")
8314 (let ((ind (current-column)))
8315 (when (or (< ind diff)
8316 (and (= ind diff) (org-looking-at-p forbidden-re)))
8317 (throw 'no-shift nil)))
8318 ;; Ignore contents of example blocks and source
8319 ;; blocks if their indentation is meant to be
8320 ;; preserved. Jump to block's closing line.
8321 (beginning-of-line)
8322 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8323 (let ((e (org-element-at-point)))
8324 (and (memq (org-element-type e)
8325 '(example-block src-block))
8326 (or org-src-preserve-indentation
8327 (org-element-property :preserve-indent e))
8328 (goto-char (org-element-property :end e))
8329 (progn (skip-chars-backward " \r\t\n")
8330 (beginning-of-line)
8331 t))))
8332 (forward-line))))))))
8333 ;; Shift lines but footnote definitions, inlinetasks boundaries
8334 ;; by DIFF. Also skip contents of source or example blocks
8335 ;; when indentation is meant to be preserved.
8336 (while (not (eobp))
8337 (cond
8338 ((and (org-looking-at-p org-footnote-definition-re)
8339 (let ((e (org-element-at-point)))
8340 (and (eq (org-element-type e) 'footnote-definition)
8341 (goto-char (org-element-property :end e))))))
8342 ((org-looking-at-p org-outline-regexp) (forward-line))
8343 ((org-looking-at-p "[ \t]*$") (forward-line))
8345 (org-indent-line-to (+ (org-get-indentation) diff))
8346 (beginning-of-line)
8347 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8348 (let ((e (org-element-at-point)))
8349 (and (memq (org-element-type e)
8350 '(example-block src-block))
8351 (or org-src-preserve-indentation
8352 (org-element-property :preserve-indent e))
8353 (goto-char (org-element-property :end e))
8354 (progn (skip-chars-backward " \r\t\n")
8355 (beginning-of-line)
8356 t))))
8357 (forward-line)))))))))
8359 (defun org-convert-to-odd-levels ()
8360 "Convert an org-mode file with all levels allowed to one with odd levels.
8361 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8362 level 5 etc."
8363 (interactive)
8364 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8365 (let ((outline-level 'org-outline-level)
8366 (org-odd-levels-only nil) n)
8367 (save-excursion
8368 (goto-char (point-min))
8369 (while (re-search-forward "^\\*\\*+ " nil t)
8370 (setq n (- (length (match-string 0)) 2))
8371 (while (>= (setq n (1- n)) 0)
8372 (org-demote))
8373 (end-of-line 1))))))
8375 (defun org-convert-to-oddeven-levels ()
8376 "Convert an org-mode file with only odd levels to one with odd/even levels.
8377 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8378 file contains a section with an even level, conversion would
8379 destroy the structure of the file. An error is signaled in this
8380 case."
8381 (interactive)
8382 (goto-char (point-min))
8383 ;; First check if there are no even levels
8384 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8385 (org-show-set-visibility 'canonical)
8386 (error "Not all levels are odd in this file. Conversion not possible"))
8387 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8388 (let ((outline-regexp org-outline-regexp)
8389 (outline-level 'org-outline-level)
8390 (org-odd-levels-only nil) n)
8391 (save-excursion
8392 (goto-char (point-min))
8393 (while (re-search-forward "^\\*\\*+ " nil t)
8394 (setq n (/ (1- (length (match-string 0))) 2))
8395 (while (>= (setq n (1- n)) 0)
8396 (org-promote))
8397 (end-of-line 1))))))
8399 (defun org-tr-level (n)
8400 "Make N odd if required."
8401 (if org-odd-levels-only (1+ (/ n 2)) n))
8403 ;;; Vertical tree motion, cutting and pasting of subtrees
8405 (defun org-move-subtree-up (&optional arg)
8406 "Move the current subtree up past ARG headlines of the same level."
8407 (interactive "p")
8408 (org-move-subtree-down (- (prefix-numeric-value arg))))
8410 (defun org-move-subtree-down (&optional arg)
8411 "Move the current subtree down past ARG headlines of the same level."
8412 (interactive "p")
8413 (setq arg (prefix-numeric-value arg))
8414 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8415 'org-get-last-sibling))
8416 (ins-point (make-marker))
8417 (cnt (abs arg))
8418 (col (current-column))
8419 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8420 ;; Select the tree
8421 (org-back-to-heading)
8422 (setq beg0 (point))
8423 (save-excursion
8424 (setq ne-beg (org-back-over-empty-lines))
8425 (setq beg (point)))
8426 (save-match-data
8427 (save-excursion (outline-end-of-heading)
8428 (setq folded (outline-invisible-p)))
8429 (progn (org-end-of-subtree nil t)
8430 (unless (eobp) (backward-char))))
8431 (outline-next-heading)
8432 (setq ne-end (org-back-over-empty-lines))
8433 (setq end (point))
8434 (goto-char beg0)
8435 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8436 ;; include less whitespace
8437 (save-excursion
8438 (goto-char beg)
8439 (forward-line (- ne-beg ne-end))
8440 (setq beg (point))))
8441 ;; Find insertion point, with error handling
8442 (while (> cnt 0)
8443 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8444 (progn (goto-char beg0)
8445 (user-error "Cannot move past superior level or buffer limit")))
8446 (setq cnt (1- cnt)))
8447 (if (> arg 0)
8448 ;; Moving forward - still need to move over subtree
8449 (progn (org-end-of-subtree t t)
8450 (save-excursion
8451 (org-back-over-empty-lines)
8452 (or (bolp) (newline)))))
8453 (setq ne-ins (org-back-over-empty-lines))
8454 (move-marker ins-point (point))
8455 (setq txt (buffer-substring beg end))
8456 (org-save-markers-in-region beg end)
8457 (delete-region beg end)
8458 (org-remove-empty-overlays-at beg)
8459 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8460 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8461 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8462 (let ((bbb (point)))
8463 (insert-before-markers txt)
8464 (org-reinstall-markers-in-region bbb)
8465 (move-marker ins-point bbb))
8466 (or (bolp) (insert "\n"))
8467 (setq ins-end (point))
8468 (goto-char ins-point)
8469 (org-skip-whitespace)
8470 (when (and (< arg 0)
8471 (org-first-sibling-p)
8472 (> ne-ins ne-beg))
8473 ;; Move whitespace back to beginning
8474 (save-excursion
8475 (goto-char ins-end)
8476 (let ((kill-whole-line t))
8477 (kill-line (- ne-ins ne-beg)) (point)))
8478 (insert (make-string (- ne-ins ne-beg) ?\n)))
8479 (move-marker ins-point nil)
8480 (if folded
8481 (outline-hide-subtree)
8482 (org-show-entry)
8483 (outline-show-children)
8484 (org-cycle-hide-drawers 'children))
8485 (org-clean-visibility-after-subtree-move)
8486 ;; move back to the initial column we were at
8487 (move-to-column col)))
8489 (defvar org-subtree-clip ""
8490 "Clipboard for cut and paste of subtrees.
8491 This is actually only a copy of the kill, because we use the normal kill
8492 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8494 (defvar org-subtree-clip-folded nil
8495 "Was the last copied subtree folded?
8496 This is used to fold the tree back after pasting.")
8498 (defun org-cut-subtree (&optional n)
8499 "Cut the current subtree into the clipboard.
8500 With prefix arg N, cut this many sequential subtrees.
8501 This is a short-hand for marking the subtree and then cutting it."
8502 (interactive "p")
8503 (org-copy-subtree n 'cut))
8505 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8506 "Copy the current subtree it in the clipboard.
8507 With prefix arg N, copy this many sequential subtrees.
8508 This is a short-hand for marking the subtree and then copying it.
8509 If CUT is non-nil, actually cut the subtree.
8510 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8511 of some markers in the region, even if CUT is non-nil. This is
8512 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8513 (interactive "p")
8514 (let (beg end folded (beg0 (point)))
8515 (if (org-called-interactively-p 'any)
8516 (org-back-to-heading nil) ; take what looks like a subtree
8517 (org-back-to-heading t)) ; take what is really there
8518 (setq beg (point))
8519 (skip-chars-forward " \t\r\n")
8520 (save-match-data
8521 (if nosubtrees
8522 (outline-next-heading)
8523 (save-excursion (outline-end-of-heading)
8524 (setq folded (outline-invisible-p)))
8525 (ignore-errors (org-forward-heading-same-level (1- n) t))
8526 (org-end-of-subtree t t)))
8527 ;; Include the end of an inlinetask
8528 (when (and (featurep 'org-inlinetask)
8529 (looking-at-p (concat (org-inlinetask-outline-regexp)
8530 "END[ \t]*$")))
8531 (end-of-line))
8532 (setq end (point))
8533 (goto-char beg0)
8534 (when (> end beg)
8535 (setq org-subtree-clip-folded folded)
8536 (when (or cut force-store-markers)
8537 (org-save-markers-in-region beg end))
8538 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8539 (setq org-subtree-clip (current-kill 0))
8540 (message "%s: Subtree(s) with %d characters"
8541 (if cut "Cut" "Copied")
8542 (length org-subtree-clip)))))
8544 (defun org-paste-subtree (&optional level tree for-yank remove)
8545 "Paste the clipboard as a subtree, with modification of headline level.
8546 The entire subtree is promoted or demoted in order to match a new headline
8547 level.
8549 If the cursor is at the beginning of a headline, the same level as
8550 that headline is used to paste the tree.
8552 If not, the new level is derived from the *visible* headings
8553 before and after the insertion point, and taken to be the inferior headline
8554 level of the two. So if the previous visible heading is level 3 and the
8555 next is level 4 (or vice versa), level 4 will be used for insertion.
8556 This makes sure that the subtree remains an independent subtree and does
8557 not swallow low level entries.
8559 You can also force a different level, either by using a numeric prefix
8560 argument, or by inserting the heading marker by hand. For example, if the
8561 cursor is after \"*****\", then the tree will be shifted to level 5.
8563 If optional TREE is given, use this text instead of the kill ring.
8565 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8566 move back over whitespace before inserting, and move point to the end of
8567 the inserted text when done.
8569 When REMOVE is non-nil, remove the subtree from the clipboard."
8570 (interactive "P")
8571 (setq tree (or tree (and kill-ring (current-kill 0))))
8572 (unless (org-kill-is-subtree-p tree)
8573 (user-error "%s"
8574 (substitute-command-keys
8575 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8576 (org-with-limited-levels
8577 (let* ((visp (not (outline-invisible-p)))
8578 (txt tree)
8579 (^re_ "\\(\\*+\\)[ \t]*")
8580 (old-level (if (string-match org-outline-regexp-bol txt)
8581 (- (match-end 0) (match-beginning 0) 1)
8582 -1))
8583 (force-level (cond (level (prefix-numeric-value level))
8584 ((and (looking-at "[ \t]*$")
8585 (string-match
8586 "^\\*+$" (buffer-substring
8587 (point-at-bol) (point))))
8588 (- (match-end 0) (match-beginning 0)))
8589 ((and (bolp)
8590 (looking-at org-outline-regexp))
8591 (- (match-end 0) (point) 1))))
8592 (previous-level (save-excursion
8593 (condition-case nil
8594 (progn
8595 (outline-previous-visible-heading 1)
8596 (if (looking-at ^re_)
8597 (- (match-end 0) (match-beginning 0) 1)
8599 (error 1))))
8600 (next-level (save-excursion
8601 (condition-case nil
8602 (progn
8603 (or (looking-at org-outline-regexp)
8604 (outline-next-visible-heading 1))
8605 (if (looking-at ^re_)
8606 (- (match-end 0) (match-beginning 0) 1)
8608 (error 1))))
8609 (new-level (or force-level (max previous-level next-level)))
8610 (shift (if (or (= old-level -1)
8611 (= new-level -1)
8612 (= old-level new-level))
8614 (- new-level old-level)))
8615 (delta (if (> shift 0) -1 1))
8616 (func (if (> shift 0) 'org-demote 'org-promote))
8617 (org-odd-levels-only nil)
8618 beg end newend)
8619 ;; Remove the forced level indicator
8620 (if force-level
8621 (delete-region (point-at-bol) (point)))
8622 ;; Paste
8623 (beginning-of-line (if (bolp) 1 2))
8624 (setq beg (point))
8625 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8626 (insert-before-markers txt)
8627 (unless (string-match "\n\\'" txt) (insert "\n"))
8628 (setq newend (point))
8629 (org-reinstall-markers-in-region beg)
8630 (setq end (point))
8631 (goto-char beg)
8632 (skip-chars-forward " \t\n\r")
8633 (setq beg (point))
8634 (if (and (outline-invisible-p) visp)
8635 (save-excursion (outline-show-heading)))
8636 ;; Shift if necessary
8637 (unless (= shift 0)
8638 (save-restriction
8639 (narrow-to-region beg end)
8640 (while (not (= shift 0))
8641 (org-map-region func (point-min) (point-max))
8642 (setq shift (+ delta shift)))
8643 (goto-char (point-min))
8644 (setq newend (point-max))))
8645 (when (or (org-called-interactively-p 'interactive) for-yank)
8646 (message "Clipboard pasted as level %d subtree" new-level))
8647 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8648 kill-ring
8649 (eq org-subtree-clip (current-kill 0))
8650 org-subtree-clip-folded)
8651 ;; The tree was folded before it was killed/copied
8652 (outline-hide-subtree))
8653 (and for-yank (goto-char newend))
8654 (and remove (setq kill-ring (cdr kill-ring))))))
8656 (defun org-kill-is-subtree-p (&optional txt)
8657 "Check if the current kill is an outline subtree, or a set of trees.
8658 Returns nil if kill does not start with a headline, or if the first
8659 headline level is not the largest headline level in the tree.
8660 So this will actually accept several entries of equal levels as well,
8661 which is OK for `org-paste-subtree'.
8662 If optional TXT is given, check this string instead of the current kill."
8663 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8664 (re (org-get-limited-outline-regexp))
8665 (^re (concat "^" re))
8666 (start-level (and kill
8667 (string-match
8668 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8669 kill)
8670 (- (match-end 2) (match-beginning 2) 1)))
8671 (start (1+ (or (match-beginning 2) -1))))
8672 (if (not start-level)
8673 (progn
8674 nil) ;; does not even start with a heading
8675 (catch 'exit
8676 (while (setq start (string-match ^re kill (1+ start)))
8677 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8678 (throw 'exit nil)))
8679 t))))
8681 (defvar org-markers-to-move nil
8682 "Markers that should be moved with a cut-and-paste operation.
8683 Those markers are stored together with their positions relative to
8684 the start of the region.")
8686 (defun org-save-markers-in-region (beg end)
8687 "Check markers in region.
8688 If these markers are between BEG and END, record their position relative
8689 to BEG, so that after moving the block of text, we can put the markers back
8690 into place.
8691 This function gets called just before an entry or tree gets cut from the
8692 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8693 called immediately, to move the markers with the entries."
8694 (setq org-markers-to-move nil)
8695 (when (featurep 'org-clock)
8696 (org-clock-save-markers-for-cut-and-paste beg end))
8697 (when (featurep 'org-agenda)
8698 (org-agenda-save-markers-for-cut-and-paste beg end)))
8700 (defun org-check-and-save-marker (marker beg end)
8701 "Check if MARKER is between BEG and END.
8702 If yes, remember the marker and the distance to BEG."
8703 (when (and (marker-buffer marker)
8704 (equal (marker-buffer marker) (current-buffer)))
8705 (if (and (>= marker beg) (< marker end))
8706 (push (cons marker (- marker beg)) org-markers-to-move))))
8708 (defun org-reinstall-markers-in-region (beg)
8709 "Move all remembered markers to their position relative to BEG."
8710 (mapc (lambda (x)
8711 (move-marker (car x) (+ beg (cdr x))))
8712 org-markers-to-move)
8713 (setq org-markers-to-move nil))
8715 (defun org-narrow-to-subtree ()
8716 "Narrow buffer to the current subtree."
8717 (interactive)
8718 (save-excursion
8719 (save-match-data
8720 (org-with-limited-levels
8721 (narrow-to-region
8722 (progn (org-back-to-heading t) (point))
8723 (progn (org-end-of-subtree t t)
8724 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8725 (point)))))))
8727 (defun org-narrow-to-block ()
8728 "Narrow buffer to the current block."
8729 (interactive)
8730 (let* ((case-fold-search t)
8731 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8732 "^[ \t]*#\\+end_.*")))
8733 (if blockp
8734 (narrow-to-region (car blockp) (cdr blockp))
8735 (user-error "Not in a block"))))
8737 (defun org-clone-subtree-with-time-shift (n &optional shift)
8738 "Clone the task (subtree) at point N times.
8739 The clones will be inserted as siblings.
8741 In interactive use, the user will be prompted for the number of
8742 clones to be produced. If the entry has a timestamp, the user
8743 will also be prompted for a time shift, which may be a repeater
8744 as used in time stamps, for example `+3d'. To disable this,
8745 you can call the function with a universal prefix argument.
8747 When a valid repeater is given and the entry contains any time
8748 stamps, the clones will become a sequence in time, with time
8749 stamps in the subtree shifted for each clone produced. If SHIFT
8750 is nil or the empty string, time stamps will be left alone. The
8751 ID property of the original subtree is removed.
8753 If the original subtree did contain time stamps with a repeater,
8754 the following will happen:
8755 - the repeater will be removed in each clone
8756 - an additional clone will be produced, with the current, unshifted
8757 date(s) in the entry.
8758 - the original entry will be placed *after* all the clones, with
8759 repeater intact.
8760 - the start days in the repeater in the original entry will be shifted
8761 to past the last clone.
8762 In this way you can spell out a number of instances of a repeating task,
8763 and still retain the repeater to cover future instances of the task.
8765 As described above, N+1 clones are produced when the original
8766 subtree has a repeater. Setting N to 0, then, can be used to
8767 remove the repeater from a subtree and create a shifted clone
8768 with the original repeater."
8769 (interactive "nNumber of clones to produce: ")
8770 (let ((shift
8771 (or shift
8772 (if (and (not (equal current-prefix-arg '(4)))
8773 (save-excursion
8774 (re-search-forward org-ts-regexp-both
8775 (save-excursion
8776 (org-end-of-subtree t)
8777 (point)) t)))
8778 (read-from-minibuffer
8779 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8780 ""))) ;; No time shift
8781 (n-no-remove -1)
8782 (drawer-re org-drawer-regexp)
8783 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8784 beg end template task idprop
8785 shift-n shift-what doshift nmin nmax)
8786 (unless (wholenump n)
8787 (user-error "Invalid number of replications %s" n))
8788 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8789 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8790 shift)))
8791 (user-error "Invalid shift specification %s" shift))
8792 (when doshift
8793 (setq shift-n (string-to-number (match-string 1 shift))
8794 shift-what (cdr (assoc (match-string 2 shift)
8795 '(("d" . day) ("w" . week)
8796 ("m" . month) ("y" . year))))))
8797 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8798 (setq nmin 1 nmax n)
8799 (org-back-to-heading t)
8800 (setq beg (point))
8801 (setq idprop (org-entry-get nil "ID"))
8802 (org-end-of-subtree t t)
8803 (or (bolp) (insert "\n"))
8804 (setq end (point))
8805 (setq template (buffer-substring beg end))
8806 (when (and doshift
8807 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8808 (delete-region beg end)
8809 (setq end beg)
8810 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8811 (goto-char end)
8812 (loop for n from nmin to nmax do
8813 ;; prepare clone
8814 (with-temp-buffer
8815 (insert template)
8816 (org-mode)
8817 (goto-char (point-min))
8818 (org-show-subtree)
8819 (and idprop (if org-clone-delete-id
8820 (org-entry-delete nil "ID")
8821 (org-id-get-create t)))
8822 (unless (= n 0)
8823 (while (re-search-forward org-clock-re nil t)
8824 (kill-whole-line))
8825 (goto-char (point-min))
8826 (while (re-search-forward drawer-re nil t)
8827 (org-remove-empty-drawer-at (point))))
8828 (goto-char (point-min))
8829 (when doshift
8830 (while (re-search-forward org-ts-regexp-both nil t)
8831 (org-timestamp-change (* n shift-n) shift-what))
8832 (unless (= n n-no-remove)
8833 (goto-char (point-min))
8834 (while (re-search-forward org-ts-regexp nil t)
8835 (save-excursion
8836 (goto-char (match-beginning 0))
8837 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8838 (delete-region (match-beginning 1) (match-end 1)))))))
8839 (setq task (buffer-string)))
8840 (insert task))
8841 (goto-char beg)))
8843 ;;; Outline Sorting
8845 (defun org-sort (with-case)
8846 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8847 Optional argument WITH-CASE means sort case-sensitively."
8848 (interactive "P")
8849 (cond
8850 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8851 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8853 (org-call-with-arg 'org-sort-entries with-case))))
8855 (defun org-sort-remove-invisible (s)
8856 "Remove invisible links from string S."
8857 (remove-text-properties 0 (length s) org-rm-props s)
8858 (while (string-match org-bracket-link-regexp s)
8859 (setq s (replace-match (if (match-end 2)
8860 (match-string 3 s)
8861 (match-string 1 s))
8862 t t s)))
8863 (let ((st (format " %s " s)))
8864 (while (string-match org-emph-re st)
8865 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8866 (setq s (substring st 1 -1)))
8869 (defvar org-priority-regexp) ; defined later in the file
8871 (defvar org-after-sorting-entries-or-items-hook nil
8872 "Hook that is run after a bunch of entries or items have been sorted.
8873 When children are sorted, the cursor is in the parent line when this
8874 hook gets called. When a region or a plain list is sorted, the cursor
8875 will be in the first entry of the sorted region/list.")
8877 (defun org-sort-entries
8878 (&optional with-case sorting-type getkey-func compare-func property)
8879 "Sort entries on a certain level of an outline tree.
8880 If there is an active region, the entries in the region are sorted.
8881 Else, if the cursor is before the first entry, sort the top-level items.
8882 Else, the children of the entry at point are sorted.
8884 Sorting can be alphabetically, numerically, by date/time as given by
8885 a time stamp, by a property, by priority order, or by a custom function.
8887 The command prompts for the sorting type unless it has been given to the
8888 function through the SORTING-TYPE argument, which needs to be a character,
8889 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8890 the precise meaning of each character:
8892 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8893 c By creation time, which is assumed to be the first inactive time stamp
8894 at the beginning of a line.
8895 d By deadline date/time.
8896 k By clocking time.
8897 n Numerically, by converting the beginning of the entry/item to a number.
8898 o By order of TODO keywords.
8899 p By priority according to the cookie.
8900 r By the value of a property.
8901 s By scheduled date/time.
8902 t By date/time, either the first active time stamp in the entry, or, if
8903 none exist, by the first inactive one.
8905 Capital letters will reverse the sort order.
8907 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8908 called with point at the beginning of the record. It must return either
8909 a string or a number that should serve as the sorting key for that record.
8911 Comparing entries ignores case by default. However, with an optional argument
8912 WITH-CASE, the sorting considers case as well.
8914 Sorting is done against the visible part of the headlines, it ignores hidden
8915 links.
8917 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8918 (interactive "P")
8919 (let ((case-func (if with-case 'identity 'downcase))
8920 (cmstr
8921 ;; The clock marker is lost when using `sort-subr', let's
8922 ;; store the clocking string.
8923 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8924 (save-excursion
8925 (goto-char org-clock-marker)
8926 (buffer-substring-no-properties (line-beginning-position)
8927 (point)))))
8928 start beg end stars re re2
8929 txt what tmp)
8930 ;; Find beginning and end of region to sort
8931 (cond
8932 ((org-region-active-p)
8933 ;; we will sort the region
8934 (setq end (region-end)
8935 what "region")
8936 (goto-char (region-beginning))
8937 (if (not (org-at-heading-p)) (outline-next-heading))
8938 (setq start (point)))
8939 ((or (org-at-heading-p)
8940 (ignore-errors (progn (org-back-to-heading) t)))
8941 ;; we will sort the children of the current headline
8942 (org-back-to-heading)
8943 (setq start (point)
8944 end (progn (org-end-of-subtree t t)
8945 (or (bolp) (insert "\n"))
8946 (when (>= (org-back-over-empty-lines) 1)
8947 (forward-line 1))
8948 (point))
8949 what "children")
8950 (goto-char start)
8951 (outline-show-subtree)
8952 (outline-next-heading))
8954 ;; we will sort the top-level entries in this file
8955 (goto-char (point-min))
8956 (or (org-at-heading-p) (outline-next-heading))
8957 (setq start (point))
8958 (goto-char (point-max))
8959 (beginning-of-line 1)
8960 (when (looking-at ".*?\\S-")
8961 ;; File ends in a non-white line
8962 (end-of-line 1)
8963 (insert "\n"))
8964 (setq end (point-max))
8965 (setq what "top-level")
8966 (goto-char start)
8967 (outline-show-all)))
8969 (setq beg (point))
8970 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8972 (looking-at "\\(\\*+\\)")
8973 (setq stars (match-string 1)
8974 re (concat "^" (regexp-quote stars) " +")
8975 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8976 txt (buffer-substring beg end))
8977 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8978 (if (and (not (equal stars "*")) (string-match re2 txt))
8979 (user-error "Region to sort contains a level above the first entry"))
8981 (unless sorting-type
8982 (message
8983 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8984 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8985 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8986 what)
8987 (setq sorting-type (read-char-exclusive))
8989 (unless getkey-func
8990 (and (= (downcase sorting-type) ?f)
8991 (setq getkey-func
8992 (org-icompleting-read "Sort using function: "
8993 obarray 'fboundp t nil nil))
8994 (setq getkey-func (intern getkey-func))))
8996 (and (= (downcase sorting-type) ?r)
8997 (not property)
8998 (setq property
8999 (org-icompleting-read "Property: "
9000 (mapcar 'list (org-buffer-property-keys t))
9001 nil t))))
9003 (when (member sorting-type '(?k ?K)) (org-clock-sum))
9004 (message "Sorting entries...")
9006 (save-restriction
9007 (narrow-to-region start end)
9008 (let ((dcst (downcase sorting-type))
9009 (case-fold-search nil)
9010 (now (current-time)))
9011 (sort-subr
9012 (/= dcst sorting-type)
9013 ;; This function moves to the beginning character of the "record" to
9014 ;; be sorted.
9015 (lambda nil
9016 (if (re-search-forward re nil t)
9017 (goto-char (match-beginning 0))
9018 (goto-char (point-max))))
9019 ;; This function moves to the last character of the "record" being
9020 ;; sorted.
9021 (lambda nil
9022 (save-match-data
9023 (condition-case nil
9024 (outline-forward-same-level 1)
9025 (error
9026 (goto-char (point-max))))))
9027 ;; This function returns the value that gets sorted against.
9028 (lambda nil
9029 (cond
9030 ((= dcst ?n)
9031 (if (looking-at org-complex-heading-regexp)
9032 (string-to-number (org-sort-remove-invisible (match-string 4)))
9033 nil))
9034 ((= dcst ?a)
9035 (if (looking-at org-complex-heading-regexp)
9036 (funcall case-func (org-sort-remove-invisible (match-string 4)))
9037 nil))
9038 ((= dcst ?k)
9039 (or (get-text-property (point) :org-clock-minutes) 0))
9040 ((= dcst ?t)
9041 (let ((end (save-excursion (outline-next-heading) (point))))
9042 (if (or (re-search-forward org-ts-regexp end t)
9043 (re-search-forward org-ts-regexp-both end t))
9044 (org-time-string-to-seconds (match-string 0))
9045 (org-float-time now))))
9046 ((= dcst ?c)
9047 (let ((end (save-excursion (outline-next-heading) (point))))
9048 (if (re-search-forward
9049 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9050 end t)
9051 (org-time-string-to-seconds (match-string 0))
9052 (org-float-time now))))
9053 ((= dcst ?s)
9054 (let ((end (save-excursion (outline-next-heading) (point))))
9055 (if (re-search-forward org-scheduled-time-regexp end t)
9056 (org-time-string-to-seconds (match-string 1))
9057 (org-float-time now))))
9058 ((= dcst ?d)
9059 (let ((end (save-excursion (outline-next-heading) (point))))
9060 (if (re-search-forward org-deadline-time-regexp end t)
9061 (org-time-string-to-seconds (match-string 1))
9062 (org-float-time now))))
9063 ((= dcst ?p)
9064 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9065 (string-to-char (match-string 2))
9066 org-default-priority))
9067 ((= dcst ?r)
9068 (or (org-entry-get nil property) ""))
9069 ((= dcst ?o)
9070 (if (looking-at org-complex-heading-regexp)
9071 (let* ((m (match-string 2))
9072 (s (if (member m org-done-keywords) '- '+)))
9073 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9074 ((= dcst ?f)
9075 (if getkey-func
9076 (progn
9077 (setq tmp (funcall getkey-func))
9078 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9079 tmp)
9080 (error "Invalid key function `%s'" getkey-func)))
9081 (t (error "Invalid sorting type `%c'" sorting-type))))
9083 (cond
9084 ((= dcst ?a) 'string<)
9085 ((= dcst ?f) compare-func)
9086 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9087 (run-hooks 'org-after-sorting-entries-or-items-hook)
9088 ;; Reset the clock marker if needed
9089 (when cmstr
9090 (save-excursion
9091 (goto-char start)
9092 (search-forward cmstr nil t)
9093 (move-marker org-clock-marker (point))))
9094 (message "Sorting entries...done")))
9096 ;;; The orgstruct minor mode
9098 ;; Define a minor mode which can be used in other modes in order to
9099 ;; integrate the org-mode structure editing commands.
9101 ;; This is really a hack, because the org-mode structure commands use
9102 ;; keys which normally belong to the major mode. Here is how it
9103 ;; works: The minor mode defines all the keys necessary to operate the
9104 ;; structure commands, but wraps the commands into a function which
9105 ;; tests if the cursor is currently at a headline or a plain list
9106 ;; item. If that is the case, the structure command is used,
9107 ;; temporarily setting many Org-mode variables like regular
9108 ;; expressions for filling etc. However, when any of those keys is
9109 ;; used at a different location, function uses `key-binding' to look
9110 ;; up if the key has an associated command in another currently active
9111 ;; keymap (minor modes, major mode, global), and executes that
9112 ;; command. There might be problems if any of the keys is otherwise
9113 ;; used as a prefix key.
9115 (defcustom orgstruct-heading-prefix-regexp ""
9116 "Regexp that matches the custom prefix of Org headlines in
9117 orgstruct(++)-mode."
9118 :group 'org
9119 :version "24.4"
9120 :package-version '(Org . "8.3")
9121 :type 'regexp)
9122 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9124 (defcustom orgstruct-setup-hook nil
9125 "Hook run after orgstruct-mode-map is filled."
9126 :group 'org
9127 :version "24.4"
9128 :package-version '(Org . "8.0")
9129 :type 'hook)
9131 (defvar orgstruct-initialized nil)
9133 (defvar org-local-vars nil
9134 "List of local variables, for use by `orgstruct-mode'.")
9136 ;;;###autoload
9137 (define-minor-mode orgstruct-mode
9138 "Toggle the minor mode `orgstruct-mode'.
9139 This mode is for using Org-mode structure commands in other
9140 modes. The following keys behave as if Org-mode were active, if
9141 the cursor is on a headline, or on a plain list item (both as
9142 defined by Org-mode)."
9143 nil " OrgStruct" (make-sparse-keymap)
9144 (funcall (if orgstruct-mode
9145 'add-to-invisibility-spec
9146 'remove-from-invisibility-spec)
9147 '(outline . t))
9148 (when orgstruct-mode
9149 (org-load-modules-maybe)
9150 (unless orgstruct-initialized
9151 (orgstruct-setup)
9152 (setq orgstruct-initialized t))))
9154 ;;;###autoload
9155 (defun turn-on-orgstruct ()
9156 "Unconditionally turn on `orgstruct-mode'."
9157 (orgstruct-mode 1))
9159 (defvar org-fb-vars nil)
9160 (make-variable-buffer-local 'org-fb-vars)
9161 (defun orgstruct++-mode (&optional arg)
9162 "Toggle `orgstruct-mode', the enhanced version of it.
9163 In addition to setting orgstruct-mode, this also exports all
9164 indentation and autofilling variables from org-mode into the
9165 buffer. It will also recognize item context in multiline items."
9166 (interactive "P")
9167 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9168 (if (< arg 1)
9169 (progn (orgstruct-mode -1)
9170 (mapc (lambda(v)
9171 (org-set-local (car v)
9172 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9173 org-fb-vars))
9174 (orgstruct-mode 1)
9175 (setq org-fb-vars nil)
9176 (unless org-local-vars
9177 (setq org-local-vars (org-get-local-variables)))
9178 (let (var val)
9179 (mapc
9180 (lambda (x)
9181 (when (string-match
9182 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9183 (symbol-name (car x)))
9184 (setq var (car x) val (nth 1 x))
9185 (push (list var `(quote ,(eval var))) org-fb-vars)
9186 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9187 org-local-vars)
9188 (org-set-local 'orgstruct-is-++ t))))
9190 (defvar orgstruct-is-++ nil
9191 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9192 (make-variable-buffer-local 'orgstruct-is-++)
9194 ;;;###autoload
9195 (defun turn-on-orgstruct++ ()
9196 "Unconditionally turn on `orgstruct++-mode'."
9197 (orgstruct++-mode 1))
9199 (defun orgstruct-error ()
9200 "Error when there is no default binding for a structure key."
9201 (interactive)
9202 (funcall (if (fboundp 'user-error)
9203 'user-error
9204 'error)
9205 "This key has no function outside structure elements"))
9207 (defun orgstruct-setup ()
9208 "Setup orgstruct keymap."
9209 (dolist (cell '((org-demote . t)
9210 (org-metaleft . t)
9211 (org-metaright . t)
9212 (org-promote . t)
9213 (org-shiftmetaleft . t)
9214 (org-shiftmetaright . t)
9215 org-backward-element
9216 org-backward-heading-same-level
9217 org-ctrl-c-ret
9218 org-ctrl-c-minus
9219 org-ctrl-c-star
9220 org-cycle
9221 org-forward-heading-same-level
9222 org-insert-heading
9223 org-insert-heading-respect-content
9224 org-kill-note-or-show-branches
9225 org-mark-subtree
9226 org-meta-return
9227 org-metadown
9228 org-metaup
9229 org-narrow-to-subtree
9230 org-promote-subtree
9231 org-reveal
9232 org-shiftdown
9233 org-shiftleft
9234 org-shiftmetadown
9235 org-shiftmetaup
9236 org-shiftright
9237 org-shifttab
9238 org-shifttab
9239 org-shiftup
9240 org-show-subtree
9241 org-sort
9242 org-up-element
9243 outline-demote
9244 outline-next-visible-heading
9245 outline-previous-visible-heading
9246 outline-promote
9247 outline-up-heading
9248 outline-show-children))
9249 (let ((f (or (car-safe cell) cell))
9250 (disable-when-heading-prefix (cdr-safe cell)))
9251 (when (fboundp f)
9252 (let ((new-bindings))
9253 (dolist (binding (nconc (where-is-internal f org-mode-map)
9254 (where-is-internal f outline-mode-map)))
9255 (push binding new-bindings)
9256 ;; TODO use local-function-key-map
9257 (dolist (rep '(("<tab>" . "TAB")
9258 ("<return>" . "RET")
9259 ("<escape>" . "ESC")
9260 ("<delete>" . "DEL")))
9261 (setq binding (read-kbd-macro
9262 (let ((case-fold-search))
9263 (replace-regexp-in-string
9264 (regexp-quote (cdr rep))
9265 (car rep)
9266 (key-description binding)))))
9267 (pushnew binding new-bindings :test 'equal)))
9268 (dolist (binding new-bindings)
9269 (let ((key (lookup-key orgstruct-mode-map binding)))
9270 (when (or (not key) (numberp key))
9271 (ignore-errors
9272 (org-defkey orgstruct-mode-map
9273 binding
9274 (orgstruct-make-binding
9275 f binding disable-when-heading-prefix))))))))))
9276 (run-hooks 'orgstruct-setup-hook))
9278 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9279 "Create a function for binding in the structure minor mode.
9280 FUN is the command to call inside a table. KEY is the key that
9281 should be checked in for a command to execute outside of tables.
9282 Non-nil `disable-when-heading-prefix' means to disable the command
9283 if `orgstruct-heading-prefix-regexp' is not empty."
9284 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9285 (let ((nname name)
9286 (i 0))
9287 (while (fboundp (intern nname))
9288 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9289 (setq name (intern nname)))
9290 (eval
9291 (let ((bindings '((org-heading-regexp
9292 (concat "^"
9293 orgstruct-heading-prefix-regexp
9294 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9295 (org-outline-regexp
9296 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9297 (org-outline-regexp-bol
9298 (concat "^" org-outline-regexp))
9299 (outline-regexp org-outline-regexp)
9300 (outline-heading-end-regexp "\n")
9301 (outline-level 'org-outline-level)
9302 (outline-heading-alist))))
9303 `(defun ,name (arg)
9304 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9305 "Outside of structure, run the binding of `"
9306 (key-description key) "'."
9307 (when disable-when-heading-prefix
9308 (concat
9309 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9310 "back to the default binding due to limitations of Org's implementation of\n"
9311 "`" (symbol-name fun) "'.")))
9312 (interactive "p")
9313 (let* ((disable
9314 ,(and disable-when-heading-prefix
9315 '(not (string= orgstruct-heading-prefix-regexp ""))))
9316 (fallback
9317 (or disable
9318 (not
9319 (let* ,bindings
9320 (org-context-p 'headline 'item
9321 ,(when (memq fun
9322 '(org-insert-heading
9323 org-insert-heading-respect-content
9324 org-meta-return))
9325 '(when orgstruct-is-++
9326 'item-body))))))))
9327 (if fallback
9328 (let* ((orgstruct-mode)
9329 (binding
9330 (let ((key ,key))
9331 (catch 'exit
9332 (dolist
9333 (rep
9334 '(nil
9335 ("<\\([^>]*\\)tab>" . "\\1TAB")
9336 ("<\\([^>]*\\)return>" . "\\1RET")
9337 ("<\\([^>]*\\)escape>" . "\\1ESC")
9338 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9339 nil)
9340 (when rep
9341 (setq key (read-kbd-macro
9342 (let ((case-fold-search))
9343 (replace-regexp-in-string
9344 (car rep)
9345 (cdr rep)
9346 (key-description key))))))
9347 (when (key-binding key)
9348 (throw 'exit (key-binding key))))))))
9349 (if (keymapp binding)
9350 (org-set-transient-map binding)
9351 (let ((func (or binding
9352 (unless disable
9353 'orgstruct-error))))
9354 (when func
9355 (call-interactively func)))))
9356 (org-run-like-in-org-mode
9357 (lambda ()
9358 (interactive)
9359 (let* ,bindings
9360 (call-interactively ',fun)))))))))
9361 name))
9363 (defun org-contextualize-keys (alist contexts)
9364 "Return valid elements in ALIST depending on CONTEXTS.
9366 `org-agenda-custom-commands' or `org-capture-templates' are the
9367 values used for ALIST, and `org-agenda-custom-commands-contexts'
9368 or `org-capture-templates-contexts' are the associated contexts
9369 definitions."
9370 (let ((contexts
9371 ;; normalize contexts
9372 (mapcar
9373 (lambda(c) (cond ((listp (cadr c))
9374 (list (car c) (car c) (cadr c)))
9375 ((string= "" (cadr c))
9376 (list (car c) (car c) (caddr c)))
9377 (t c)))
9378 contexts))
9379 (a alist) r s)
9380 ;; loop over all commands or templates
9381 (dolist (c a)
9382 (let (vrules repl)
9383 (cond
9384 ((not (assoc (car c) contexts))
9385 (push c r))
9386 ((and (assoc (car c) contexts)
9387 (setq vrules (org-contextualize-validate-key
9388 (car c) contexts)))
9389 (mapc (lambda (vr)
9390 (when (not (equal (car vr) (cadr vr)))
9391 (setq repl vr)))
9392 vrules)
9393 (if (not repl) (push c r)
9394 (push (cadr repl) s)
9395 (push
9396 (cons (car c)
9397 (cdr (or (assoc (cadr repl) alist)
9398 (error "Undefined key `%s' as contextual replacement for `%s'"
9399 (cadr repl) (car c)))))
9400 r))))))
9401 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9402 (delq
9404 (delete-dups
9405 (mapcar (lambda (x)
9406 (let ((tpl (car x)))
9407 (when (not (delq
9409 (mapcar (lambda (y)
9410 (equal y tpl))
9411 s)))
9412 x)))
9413 (reverse r))))))
9415 (defun org-contextualize-validate-key (key contexts)
9416 "Check CONTEXTS for agenda or capture KEY."
9417 (let (rr res)
9418 (dolist (r contexts)
9419 (mapc
9420 (lambda (rr)
9421 (when
9422 (and (equal key (car r))
9423 (if (functionp rr) (funcall rr)
9424 (or (and (eq (car rr) 'in-file)
9425 (buffer-file-name)
9426 (string-match (cdr rr) (buffer-file-name)))
9427 (and (eq (car rr) 'in-mode)
9428 (string-match (cdr rr) (symbol-name major-mode)))
9429 (and (eq (car rr) 'in-buffer)
9430 (string-match (cdr rr) (buffer-name)))
9431 (when (and (eq (car rr) 'not-in-file)
9432 (buffer-file-name))
9433 (not (string-match (cdr rr) (buffer-file-name))))
9434 (when (eq (car rr) 'not-in-mode)
9435 (not (string-match (cdr rr) (symbol-name major-mode))))
9436 (when (eq (car rr) 'not-in-buffer)
9437 (not (string-match (cdr rr) (buffer-name)))))))
9438 (push r res)))
9439 (car (last r))))
9440 (delete-dups (delq nil res))))
9442 (defun org-context-p (&rest contexts)
9443 "Check if local context is any of CONTEXTS.
9444 Possible values in the list of contexts are `table', `headline', and `item'."
9445 (let ((pos (point)))
9446 (goto-char (point-at-bol))
9447 (prog1 (or (and (memq 'table contexts)
9448 (looking-at "[ \t]*|"))
9449 (and (memq 'headline contexts)
9450 (looking-at org-outline-regexp))
9451 (and (memq 'item contexts)
9452 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9453 (and (memq 'item-body contexts)
9454 (org-in-item-p)))
9455 (goto-char pos))))
9457 (defun org-get-local-variables ()
9458 "Return a list of all local variables in an Org mode buffer."
9459 (let (varlist)
9460 (with-current-buffer (get-buffer-create "*Org tmp*")
9461 (erase-buffer)
9462 (org-mode)
9463 (setq varlist (buffer-local-variables)))
9464 (kill-buffer "*Org tmp*")
9465 (delq nil
9466 (mapcar
9467 (lambda (x)
9468 (setq x
9469 (if (symbolp x)
9470 (list x)
9471 (list (car x) (cdr x))))
9472 (if (and (not (get (car x) 'org-state))
9473 (string-match
9474 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9475 (symbol-name (car x))))
9476 x nil))
9477 varlist))))
9479 (defun org-clone-local-variables (from-buffer &optional regexp)
9480 "Clone local variables from FROM-BUFFER.
9481 Optional argument REGEXP selects variables to clone."
9482 (mapc
9483 (lambda (pair)
9484 (and (symbolp (car pair))
9485 (or (null regexp)
9486 (string-match regexp (symbol-name (car pair))))
9487 (set (make-local-variable (car pair))
9488 (cdr pair))))
9489 (buffer-local-variables from-buffer)))
9491 ;;;###autoload
9492 (defun org-run-like-in-org-mode (cmd)
9493 "Run a command, pretending that the current buffer is in Org-mode.
9494 This will temporarily bind local variables that are typically bound in
9495 Org-mode to the values they have in Org-mode, and then interactively
9496 call CMD."
9497 (org-load-modules-maybe)
9498 (unless org-local-vars
9499 (setq org-local-vars (org-get-local-variables)))
9500 (let (binds)
9501 (dolist (var org-local-vars)
9502 (when (or (not (boundp (car var)))
9503 (eq (symbol-value (car var))
9504 (default-value (car var))))
9505 (push (list (car var) `(quote ,(cadr var))) binds)))
9506 (eval `(let ,binds
9507 (call-interactively (quote ,cmd))))))
9509 (defun org-get-category (&optional pos force-refresh)
9510 "Get the category applying to position POS."
9511 (save-match-data
9512 (if force-refresh (org-refresh-category-properties))
9513 (let ((pos (or pos (point))))
9514 (or (get-text-property pos 'org-category)
9515 (progn (org-refresh-category-properties)
9516 (get-text-property pos 'org-category))))))
9518 ;;; Refresh properties
9520 (defun org-refresh-properties (dprop tprop)
9521 "Refresh buffer text properties.
9522 DPROP is the drawer property and TPROP is either the
9523 corresponding text property to set, or an alist with each element
9524 being a text property (as a symbol) and a function to apply to
9525 the value of the drawer property."
9526 (let ((case-fold-search t)
9527 (inhibit-read-only t))
9528 (org-with-silent-modifications
9529 (save-excursion
9530 (save-restriction
9531 (widen)
9532 (goto-char (point-min))
9533 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9534 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9536 (defun org-refresh-property (tprop p)
9537 "Refresh the buffer text property TPROP from the drawer property P.
9538 The refresh happens only for the current tree (not subtree)."
9539 (unless (org-before-first-heading-p)
9540 (save-excursion
9541 (org-back-to-heading t)
9542 (if (symbolp tprop)
9543 ;; TPROP is a text property symbol
9544 (put-text-property
9545 (point) (or (outline-next-heading) (point-max)) tprop p)
9546 ;; TPROP is an alist with (properties . function) elements
9547 (dolist (al tprop)
9548 (save-excursion
9549 (put-text-property
9550 (line-beginning-position) (or (outline-next-heading) (point-max))
9551 (car al)
9552 (funcall (cdr al) p))))))))
9554 (defun org-refresh-category-properties ()
9555 "Refresh category text properties in the buffer."
9556 (let ((case-fold-search t)
9557 (inhibit-read-only t)
9558 (default-category
9559 (cond ((null org-category)
9560 (if buffer-file-name
9561 (file-name-sans-extension
9562 (file-name-nondirectory buffer-file-name))
9563 "???"))
9564 ((symbolp org-category) (symbol-name org-category))
9565 (t org-category))))
9566 (org-with-silent-modifications
9567 (org-with-wide-buffer
9568 ;; Set buffer-wide category. Search last #+CATEGORY keyword.
9569 ;; This is the default category for the buffer. If none is
9570 ;; found, fall-back to `org-category' or buffer file name.
9571 (put-text-property
9572 (point-min) (point-max)
9573 'org-category
9574 (catch 'buffer-category
9575 (goto-char (point-max))
9576 (while (re-search-backward "^[ \t]*#\\+CATEGORY:" (point-min) t)
9577 (let ((element (org-element-at-point)))
9578 (when (eq (org-element-type element) 'keyword)
9579 (throw 'buffer-category
9580 (org-element-property :value element)))))
9581 default-category))
9582 ;; Set sub-tree specific categories.
9583 (goto-char (point-min))
9584 (let ((regexp (org-re-property "CATEGORY")))
9585 (while (re-search-forward regexp nil t)
9586 (let ((value (org-match-string-no-properties 3)))
9587 (when (org-at-property-p)
9588 (put-text-property
9589 (save-excursion (org-back-to-heading t) (point))
9590 (save-excursion (org-end-of-subtree t t) (point))
9591 'org-category
9592 value)))))))))
9594 (defun org-refresh-stats-properties ()
9595 "Refresh stats text properties in the buffer."
9596 (let (stats)
9597 (org-with-silent-modifications
9598 (save-excursion
9599 (save-restriction
9600 (widen)
9601 (goto-char (point-min))
9602 (while (re-search-forward
9603 (concat org-outline-regexp-bol ".*"
9604 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9605 nil t)
9606 (setq stats (cond ((equal (match-string 3) "0") 0)
9607 ((match-string 2)
9608 (/ (* (string-to-number (match-string 2)) 100)
9609 (string-to-number (match-string 3))))
9610 (t (string-to-number (match-string 1)))))
9611 (org-back-to-heading t)
9612 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9613 'org-stats stats)))))))
9615 (defun org-refresh-effort-properties ()
9616 "Refresh effort properties"
9617 (org-refresh-properties
9618 org-effort-property
9619 '((effort . identity)
9620 (effort-minutes . org-duration-string-to-minutes))))
9622 ;;;; Link Stuff
9624 ;;; Link abbreviations
9626 (defun org-link-expand-abbrev (link)
9627 "Apply replacements as defined in `org-link-abbrev-alist'."
9628 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9629 (let* ((key (match-string 1 link))
9630 (as (or (assoc key org-link-abbrev-alist-local)
9631 (assoc key org-link-abbrev-alist)))
9632 (tag (and (match-end 2) (match-string 3 link)))
9633 rpl)
9634 (if (not as)
9635 link
9636 (setq rpl (cdr as))
9637 (cond
9638 ((symbolp rpl) (funcall rpl tag))
9639 ((string-match "%(\\([^)]+\\))" rpl)
9640 (replace-match
9641 (save-match-data
9642 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9643 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9644 ((string-match "%h" rpl)
9645 (replace-match (url-hexify-string (or tag "")) t t rpl))
9646 (t (concat rpl tag)))))
9647 link))
9649 ;;; Storing and inserting links
9651 (defvar org-insert-link-history nil
9652 "Minibuffer history for links inserted with `org-insert-link'.")
9654 (defvar org-stored-links nil
9655 "Contains the links stored with `org-store-link'.")
9657 (defvar org-store-link-plist nil
9658 "Plist with info about the most recently link created with `org-store-link'.")
9660 (defvar org-link-protocols nil
9661 "Link protocols added to Org-mode using `org-add-link-type'.")
9663 (defvar org-store-link-functions nil
9664 "List of functions that are called to create and store a link.
9665 Each function will be called in turn until one returns a non-nil
9666 value. Each function should check if it is responsible for creating
9667 this link (for example by looking at the major mode).
9668 If not, it must exit and return nil.
9669 If yes, it should return a non-nil value after a calling
9670 `org-store-link-props' with a list of properties and values.
9671 Special properties are:
9673 :type The link prefix, like \"http\". This must be given.
9674 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9675 This is obligatory as well.
9676 :description Optional default description for the second pair
9677 of brackets in an Org-mode link. The user can still change
9678 this when inserting this link into an Org-mode buffer.
9680 In addition to these, any additional properties can be specified
9681 and then used in capture templates.")
9683 (defun org-add-link-type (type &optional follow export)
9684 "Add TYPE to the list of `org-link-types'.
9685 Re-compute all regular expressions depending on `org-link-types'
9687 FOLLOW and EXPORT are two functions.
9689 FOLLOW should take the link path as the single argument and do whatever
9690 is necessary to follow the link, for example find a file or display
9691 a mail message.
9693 EXPORT should format the link path for export to one of the export formats.
9694 It should be a function accepting three arguments:
9696 path the path of the link, the text after the prefix (like \"http:\")
9697 desc the description of the link, if any
9698 format the export format, a symbol like `html' or `latex' or `ascii'.
9700 The function may use the FORMAT information to return different values
9701 depending on the format. The return value will be put literally into
9702 the exported file. If the return value is nil, this means Org should
9703 do what it normally does with links which do not have EXPORT defined.
9705 Org mode has a built-in default for exporting links. If you are happy with
9706 this default, there is no need to define an export function for the link
9707 type. For a simple example of an export function, see `org-bbdb.el'."
9708 (add-to-list 'org-link-types type t)
9709 (org-make-link-regexps)
9710 (org-element-update-syntax)
9711 (if (assoc type org-link-protocols)
9712 (setcdr (assoc type org-link-protocols) (list follow export))
9713 (push (list type follow export) org-link-protocols)))
9715 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9716 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9718 ;;;###autoload
9719 (defun org-store-link (arg)
9720 "\\<org-mode-map>Store an org-link to the current location.
9721 This link is added to `org-stored-links' and can later be inserted
9722 into an Org buffer with \\[org-insert-link].
9724 For some link types, a prefix ARG is interpreted.
9725 For links to Usenet articles, ARG negates `org-gnus-prefer-web-links'.
9726 For file links, ARG negates `org-context-in-file-links'.
9728 A double prefix ARG force skipping storing functions that are not
9729 part of Org's core.
9731 A triple prefix ARG force storing a link for each line in the
9732 active region."
9733 (interactive "P")
9734 (org-load-modules-maybe)
9735 (if (and (equal arg '(64)) (org-region-active-p))
9736 (save-excursion
9737 (let ((end (region-end)))
9738 (goto-char (region-beginning))
9739 (set-mark (point))
9740 (while (< (point-at-eol) end)
9741 (move-end-of-line 1) (activate-mark)
9742 (let (current-prefix-arg)
9743 (call-interactively 'org-store-link))
9744 (move-beginning-of-line 2)
9745 (set-mark (point)))))
9746 (org-with-limited-levels
9747 (setq org-store-link-plist nil)
9748 (let (link cpltxt desc description search
9749 txt custom-id agenda-link sfuns sfunsn)
9750 (cond
9752 ;; Store a link using an external link type
9753 ((and (not (equal arg '(16)))
9754 (setq sfuns
9755 (delq
9756 nil (mapcar (lambda (f)
9757 (let (fs) (if (funcall f) (push f fs))))
9758 org-store-link-functions))
9759 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9760 (or (and (cdr sfuns)
9761 (funcall (intern
9762 (completing-read
9763 "Which function for creating the link? "
9764 sfunsn nil t (car sfunsn)))))
9765 (funcall (caar sfuns)))
9766 (setq link (plist-get org-store-link-plist :link)
9767 desc (or (plist-get org-store-link-plist
9768 :description)
9769 link))))
9771 ;; Store a link from a source code buffer.
9772 ((org-src-edit-buffer-p)
9773 (cond
9774 ((save-excursion
9775 (beginning-of-line)
9776 (looking-at (concat (format org-coderef-label-format "\\(.*?\\)")
9777 "[ \t]*$")))
9778 (setq link (format "(%s)" (org-match-string-no-properties 1))))
9779 ((org-called-interactively-p 'any)
9780 (let (label)
9781 (while (or (not label)
9782 (org-with-wide-buffer
9783 (goto-char (point-min))
9784 (re-search-forward
9785 (regexp-quote (format org-coderef-label-format label))
9786 nil t)))
9787 (when label (message "Label exists already") (sit-for 2))
9788 (setq label (read-string "Code line label: " label)))
9789 (end-of-line)
9790 (setq link (format org-coderef-label-format label))
9791 (let ((gc (- 79 (length link))))
9792 (if (< (current-column) gc) (org-move-to-column gc t)
9793 (insert " ")))
9794 (insert link)
9795 (setq link (concat "(" label ")") desc nil)))
9796 (t (setq link nil))))
9798 ;; We are in the agenda, link to referenced location
9799 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9800 (let ((m (or (get-text-property (point) 'org-hd-marker)
9801 (get-text-property (point) 'org-marker))))
9802 (when m
9803 (org-with-point-at m
9804 (setq agenda-link
9805 (if (org-called-interactively-p 'any)
9806 (call-interactively 'org-store-link)
9807 (org-store-link nil)))))))
9809 ((eq major-mode 'calendar-mode)
9810 (let ((cd (calendar-cursor-to-date)))
9811 (setq link
9812 (format-time-string
9813 (car org-time-stamp-formats)
9814 (apply 'encode-time
9815 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9816 nil nil nil))))
9817 (org-store-link-props :type "calendar" :date cd)))
9819 ((eq major-mode 'help-mode)
9820 (setq link (concat "help:" (save-excursion
9821 (goto-char (point-min))
9822 (looking-at "^[^ ]+")
9823 (match-string 0))))
9824 (org-store-link-props :type "help"))
9826 ((eq major-mode 'w3-mode)
9827 (setq cpltxt (if (and (buffer-name)
9828 (not (string-match "Untitled" (buffer-name))))
9829 (buffer-name)
9830 (url-view-url t))
9831 link (url-view-url t))
9832 (org-store-link-props :type "w3" :url (url-view-url t)))
9834 ((eq major-mode 'image-mode)
9835 (setq cpltxt (concat "file:"
9836 (abbreviate-file-name buffer-file-name))
9837 link cpltxt)
9838 (org-store-link-props :type "image" :file buffer-file-name))
9840 ;; In dired, store a link to the file of the current line
9841 ((derived-mode-p 'dired-mode)
9842 (let ((file (dired-get-filename nil t)))
9843 (setq file (if file
9844 (abbreviate-file-name
9845 (expand-file-name (dired-get-filename nil t)))
9846 ;; otherwise, no file so use current directory.
9847 default-directory))
9848 (setq cpltxt (concat "file:" file)
9849 link cpltxt)))
9851 ((setq search (run-hook-with-args-until-success
9852 'org-create-file-search-functions))
9853 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9854 "::" search))
9855 (setq cpltxt (or description link)))
9857 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9858 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9859 (cond
9860 ;; Store a link using the target at point
9861 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9862 (setq cpltxt
9863 (concat "file:"
9864 (abbreviate-file-name
9865 (buffer-file-name (buffer-base-buffer)))
9866 "::" (match-string 1))
9867 link cpltxt))
9868 ((and (featurep 'org-id)
9869 (or (eq org-id-link-to-org-use-id t)
9870 (and (org-called-interactively-p 'any)
9871 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9872 (and (eq org-id-link-to-org-use-id
9873 'create-if-interactive-and-no-custom-id)
9874 (not custom-id))))
9875 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9876 ;; Store a link using the ID at point
9877 (setq link (condition-case nil
9878 (prog1 (org-id-store-link)
9879 (setq desc (or (plist-get org-store-link-plist
9880 :description)
9881 "")))
9882 (error
9883 ;; Probably before first headline, link only to file
9884 (concat "file:"
9885 (abbreviate-file-name
9886 (buffer-file-name (buffer-base-buffer))))))))
9888 ;; Just link to current headline
9889 (setq cpltxt (concat "file:"
9890 (abbreviate-file-name
9891 (buffer-file-name (buffer-base-buffer)))))
9892 ;; Add a context search string
9893 (when (org-xor org-context-in-file-links arg)
9894 (let* ((ee (org-element-at-point))
9895 (et (org-element-type ee))
9896 (ev (plist-get (cadr ee) :value))
9897 (ek (plist-get (cadr ee) :key))
9898 (eok (and (stringp ek) (string-match "name" ek))))
9899 (setq txt (cond
9900 ((org-at-heading-p) nil)
9901 ((and (eq et 'keyword) eok) ev)
9902 ((org-region-active-p)
9903 (buffer-substring (region-beginning) (region-end)))))
9904 (when (or (null txt) (string-match "\\S-" txt))
9905 (setq cpltxt
9906 (concat cpltxt "::"
9907 (condition-case nil
9908 (org-make-org-heading-search-string txt)
9909 (error "")))
9910 desc (or (and (eq et 'keyword) eok ev)
9911 (nth 4 (ignore-errors (org-heading-components)))
9912 "NONE")))))
9913 (if (string-match "::\\'" cpltxt)
9914 (setq cpltxt (substring cpltxt 0 -2)))
9915 (setq link cpltxt))))
9917 ((buffer-file-name (buffer-base-buffer))
9918 ;; Just link to this file here.
9919 (setq cpltxt (concat "file:"
9920 (abbreviate-file-name
9921 (buffer-file-name (buffer-base-buffer)))))
9922 ;; Add a context string.
9923 (when (org-xor org-context-in-file-links arg)
9924 (setq txt (if (org-region-active-p)
9925 (buffer-substring (region-beginning) (region-end))
9926 (buffer-substring (point-at-bol) (point-at-eol))))
9927 ;; Only use search option if there is some text.
9928 (when (string-match "\\S-" txt)
9929 (setq cpltxt
9930 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9931 desc "NONE")))
9932 (setq link cpltxt))
9934 ((org-called-interactively-p 'interactive)
9935 (user-error "No method for storing a link from this buffer"))
9937 (t (setq link nil)))
9939 ;; We're done setting link and desc, clean up
9940 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9941 (setq link (or link cpltxt)
9942 desc (or desc cpltxt))
9943 (cond ((equal desc "NONE") (setq desc nil))
9944 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9945 (let ((d0 (match-string 3 desc))
9946 (p0 (match-string 5 desc)))
9947 (setq desc
9948 (replace-regexp-in-string
9949 org-bracket-link-regexp
9950 (concat (or p0 d0)
9951 (if (equal (length (match-string 0 desc))
9952 (length desc)) "*" "")) desc)))))
9954 ;; Return the link
9955 (if (not (and (or (org-called-interactively-p 'any)
9956 executing-kbd-macro)
9957 link))
9958 (or agenda-link (and link (org-make-link-string link desc)))
9959 (push (list link desc) org-stored-links)
9960 (message "Stored: %s" (or desc link))
9961 (when custom-id
9962 (setq link (concat "file:" (abbreviate-file-name
9963 (buffer-file-name)) "::#" custom-id))
9964 (push (list link desc) org-stored-links))
9965 (car org-stored-links))))))
9967 (defun org-store-link-props (&rest plist)
9968 "Store link properties, extract names and addresses."
9969 (let (x adr)
9970 (when (setq x (plist-get plist :from))
9971 (setq adr (mail-extract-address-components x))
9972 (setq plist (plist-put plist :fromname (car adr)))
9973 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9974 (when (setq x (plist-get plist :to))
9975 (setq adr (mail-extract-address-components x))
9976 (setq plist (plist-put plist :toname (car adr)))
9977 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9978 (let ((from (plist-get plist :from))
9979 (to (plist-get plist :to)))
9980 (when (and from to org-from-is-user-regexp)
9981 (setq plist
9982 (plist-put plist :fromto
9983 (if (string-match org-from-is-user-regexp from)
9984 (concat "to %t")
9985 (concat "from %f"))))))
9986 (setq org-store-link-plist plist))
9988 (defun org-add-link-props (&rest plist)
9989 "Add these properties to the link property list."
9990 (let (key value)
9991 (while plist
9992 (setq key (pop plist) value (pop plist))
9993 (setq org-store-link-plist
9994 (plist-put org-store-link-plist key value)))))
9996 (defun org-email-link-description (&optional fmt)
9997 "Return the description part of an email link.
9998 This takes information from `org-store-link-plist' and formats it
9999 according to FMT (default from `org-email-link-description-format')."
10000 (setq fmt (or fmt org-email-link-description-format))
10001 (let* ((p org-store-link-plist)
10002 (to (plist-get p :toaddress))
10003 (from (plist-get p :fromaddress))
10004 (table
10005 (list
10006 (cons "%c" (plist-get p :fromto))
10007 (cons "%F" (plist-get p :from))
10008 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
10009 (cons "%T" (plist-get p :to))
10010 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
10011 (cons "%s" (plist-get p :subject))
10012 (cons "%d" (plist-get p :date))
10013 (cons "%m" (plist-get p :message-id)))))
10014 (when (string-match "%c" fmt)
10015 ;; Check if the user wrote this message
10016 (if (and org-from-is-user-regexp from to
10017 (save-match-data (string-match org-from-is-user-regexp from)))
10018 (setq fmt (replace-match "to %t" t t fmt))
10019 (setq fmt (replace-match "from %f" t t fmt))))
10020 (org-replace-escapes fmt table)))
10022 (defun org-make-org-heading-search-string (&optional string)
10023 "Make search string for the current headline or STRING."
10024 (let ((s (or string
10025 (and (derived-mode-p 'org-mode)
10026 (save-excursion
10027 (org-back-to-heading t)
10028 (org-element-property :raw-value (org-element-at-point))))))
10029 (lines org-context-in-file-links))
10030 (or string (setq s (concat "*" s))) ; Add * for headlines
10031 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
10032 (when (and string (integerp lines) (> lines 0))
10033 (let ((slines (org-split-string s "\n")))
10034 (when (< lines (length slines))
10035 (setq s (mapconcat
10036 'identity
10037 (reverse (nthcdr (- (length slines) lines)
10038 (reverse slines))) "\n")))))
10039 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
10041 (defun org-make-link-string (link &optional description)
10042 "Make a link with brackets, consisting of LINK and DESCRIPTION."
10043 (unless (org-string-nw-p link) (error "Empty link"))
10044 (let ((uri (cond ((string-match org-link-types-re link)
10045 (concat (match-string 1 link)
10046 (org-link-escape (substring link (match-end 1)))))
10047 ;; For readability, url-encode internal links only
10048 ;; when absolutely needed (i.e, when they contain
10049 ;; square brackets). File links however, are
10050 ;; encoded since, e.g., spaces are significant.
10051 ((or (file-name-absolute-p link)
10052 (org-string-match-p "\\`\\.\\.?/\\|[][]" link))
10053 (org-link-escape link))
10054 (t link)))
10055 (description
10056 (and (org-string-nw-p description)
10057 ;; Remove brackets from description, as they are fatal.
10058 (replace-regexp-in-string
10059 "[][]" (lambda (m) (if (equal "[" m) "{" "}"))
10060 (org-trim description)))))
10061 (format "[[%s]%s]"
10063 (if description (format "[%s]" description) ""))))
10065 (defconst org-link-escape-chars
10066 ;;%20 %5B %5D %25
10067 '(?\s ?\[ ?\] ?%)
10068 "List of characters that should be escaped in a link when stored to Org.
10069 This is the list that is used for internal purposes.")
10071 (defconst org-link-escape-chars-browser
10072 ;;%20 %22
10073 '(?\s ?\")
10074 "List of characters to be escaped before handing over to the browser.
10075 If you consider using this constant then you probably want to use
10076 the function `org-link-escape-browser' instead. See there why
10077 this constant is a candidate to be removed once Org drops support
10078 for Emacs 24.1 and 24.2.")
10080 (defun org-link-escape (text &optional table merge)
10081 "Return percent escaped representation of TEXT.
10082 TEXT is a string with the text to escape.
10083 Optional argument TABLE is a list with characters that should be
10084 escaped. When nil, `org-link-escape-chars' is used.
10085 If optional argument MERGE is set, merge TABLE into
10086 `org-link-escape-chars'."
10087 (let ((characters-to-encode
10088 (cond ((null table) org-link-escape-chars)
10089 (merge (append org-link-escape-chars table))
10090 (t table))))
10091 (mapconcat
10092 (lambda (c)
10093 (if (or (memq c characters-to-encode)
10094 (and org-url-hexify-p (or (< c 32) (> c 126))))
10095 (mapconcat (lambda (e) (format "%%%.2X" e))
10096 (or (encode-coding-char c 'utf-8)
10097 (error "Unable to percent escape character: %c" c))
10099 (char-to-string c)))
10100 text "")))
10102 (defun org-link-escape-browser (text)
10103 "Escape some characters before handing over to the browser.
10104 This function is a candidate to be removed together with the
10105 constant `org-link-escape-chars-browser' once Org drops support
10106 for Emacs 24.1 and 24.2. All calls to this function will have to
10107 be replaced with `url-encode-url' which is available since Emacs
10108 24.3.1."
10109 ;; Example with the Org link
10110 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10111 ;; to open the browser with +subject:"Release 8.2" filled into the
10112 ;; query field: In this case the variable TEXT contains the
10113 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10114 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10115 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10116 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10117 (if (fboundp 'url-encode-url)
10118 (url-encode-url text)
10119 (if (org-string-match-p
10120 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10121 text)
10122 (org-link-escape text org-link-escape-chars-browser)
10123 text)))
10125 (defun org-link-unescape (str)
10126 "Unhex hexified Unicode parts in string STR.
10127 E.g. `%C3%B6' becomes the german o-Umlaut. This is the
10128 reciprocal of `org-link-escape', which see."
10129 (if (org-string-nw-p str)
10130 (replace-regexp-in-string
10131 "\\(%[0-9A-Za-z]\\{2\\}\\)+" #'org-link-unescape-compound str t t)
10132 str))
10134 (defun org-link-unescape-compound (hex)
10135 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10136 Note: this function also decodes single byte encodings like
10137 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10138 (save-match-data
10139 (let* ((bytes (cdr (split-string hex "%")))
10140 (ret "")
10141 (eat 0)
10142 (sum 0))
10143 (while bytes
10144 (let* ((val (string-to-number (pop bytes) 16))
10145 (shift-xor
10146 (if (= 0 eat)
10147 (cond
10148 ((>= val 252) (cons 6 252))
10149 ((>= val 248) (cons 5 248))
10150 ((>= val 240) (cons 4 240))
10151 ((>= val 224) (cons 3 224))
10152 ((>= val 192) (cons 2 192))
10153 (t (cons 0 0)))
10154 (cons 6 128))))
10155 (if (>= val 192) (setq eat (car shift-xor)))
10156 (setq val (logxor val (cdr shift-xor)))
10157 (setq sum (+ (lsh sum (car shift-xor)) val))
10158 (if (> eat 0) (setq eat (- eat 1)))
10159 (cond
10160 ((= 0 eat) ;multi byte
10161 (setq ret (concat ret (org-char-to-string sum)))
10162 (setq sum 0))
10163 ((not bytes) ; single byte(s)
10164 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10165 ret)))
10167 (defun org-link-unescape-single-byte-sequence (hex)
10168 "Unhexify hex-encoded single byte character sequences."
10169 (mapconcat (lambda (byte)
10170 (char-to-string (string-to-number byte 16)))
10171 (cdr (split-string hex "%")) ""))
10173 (defun org-xor (a b)
10174 "Exclusive or."
10175 (if a (not b) b))
10177 (defun org-fixup-message-id-for-http (s)
10178 "Replace special characters in a message id, so it can be used in an http query."
10179 (when (string-match "%" s)
10180 (setq s (mapconcat (lambda (c)
10181 (if (eq c ?%)
10182 "%25"
10183 (char-to-string c)))
10184 s "")))
10185 (while (string-match "<" s)
10186 (setq s (replace-match "%3C" t t s)))
10187 (while (string-match ">" s)
10188 (setq s (replace-match "%3E" t t s)))
10189 (while (string-match "@" s)
10190 (setq s (replace-match "%40" t t s)))
10193 (defun org-link-prettify (link)
10194 "Return a human-readable representation of LINK.
10195 The car of LINK must be a raw link.
10196 The cdr of LINK must be either a link description or nil."
10197 (let ((desc (or (cadr link) "<no description>")))
10198 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10199 "<" (car link) ">")))
10201 ;;;###autoload
10202 (defun org-insert-link-global ()
10203 "Insert a link like Org-mode does.
10204 This command can be called in any mode to insert a link in Org-mode syntax."
10205 (interactive)
10206 (org-load-modules-maybe)
10207 (org-run-like-in-org-mode 'org-insert-link))
10209 (defun org-insert-all-links (arg &optional pre post)
10210 "Insert all links in `org-stored-links'.
10211 When a universal prefix, do not delete the links from `org-stored-links'.
10212 When `ARG' is a number, insert the last N link(s).
10213 `PRE' and `POST' are optional arguments to define a string to
10214 prepend or to append."
10215 (interactive "P")
10216 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10217 (links (copy-seq org-stored-links))
10218 (pr (or pre "- "))
10219 (po (or post "\n"))
10220 (cnt 1) l)
10221 (if (null org-stored-links)
10222 (message "No link to insert")
10223 (while (and (or (listp arg) (>= arg cnt))
10224 (setq l (if (listp arg)
10225 (pop links)
10226 (pop org-stored-links))))
10227 (setq cnt (1+ cnt))
10228 (insert pr)
10229 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10230 (insert po)))))
10232 (defun org-insert-last-stored-link (arg)
10233 "Insert the last link stored in `org-stored-links'."
10234 (interactive "p")
10235 (org-insert-all-links arg "" "\n"))
10237 (defun org-link-fontify-links-to-this-file ()
10238 "Fontify links to the current file in `org-stored-links'."
10239 (let ((f (buffer-file-name)) a b)
10240 (setq a (mapcar (lambda(l)
10241 (let ((ll (car l)))
10242 (when (and (string-match "^file:\\(.+\\)::" ll)
10243 (equal f (expand-file-name (match-string 1 ll))))
10244 ll)))
10245 org-stored-links))
10246 (when (featurep 'org-id)
10247 (setq b (mapcar (lambda(l)
10248 (let ((ll (car l)))
10249 (when (and (string-match "^id:\\(.+\\)$" ll)
10250 (equal f (expand-file-name
10251 (or (org-id-find-id-file
10252 (match-string 1 ll)) ""))))
10253 ll)))
10254 org-stored-links)))
10255 (mapcar (lambda(l)
10256 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10257 (delq nil (append a b)))))
10259 (defvar org-link-links-in-this-file nil)
10260 (defun org-insert-link (&optional complete-file link-location default-description)
10261 "Insert a link. At the prompt, enter the link.
10263 Completion can be used to insert any of the link protocol prefixes like
10264 http or ftp in use.
10266 The history can be used to select a link previously stored with
10267 `org-store-link'. When the empty string is entered (i.e. if you just
10268 press RET at the prompt), the link defaults to the most recently
10269 stored link. As SPC triggers completion in the minibuffer, you need to
10270 use M-SPC or C-q SPC to force the insertion of a space character.
10272 You will also be prompted for a description, and if one is given, it will
10273 be displayed in the buffer instead of the link.
10275 If there is already a link at point, this command will allow you to edit link
10276 and description parts.
10278 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10279 be selected using completion. The path to the file will be relative to the
10280 current directory if the file is in the current directory or a subdirectory.
10281 Otherwise, the link will be the absolute path as completed in the minibuffer
10282 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10283 option `org-link-file-path-type'.
10285 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10286 the current directory or below.
10288 With three \\[universal-argument] prefixes, negate the meaning of
10289 `org-keep-stored-link-after-insertion'.
10291 If `org-make-link-description-function' is non-nil, this function will be
10292 called with the link target, and the result will be the default
10293 link description.
10295 If the LINK-LOCATION parameter is non-nil, this value will be
10296 used as the link location instead of reading one interactively.
10298 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10299 be used as the default description."
10300 (interactive "P")
10301 (let* ((wcf (current-window-configuration))
10302 (origbuf (current-buffer))
10303 (region (if (org-region-active-p)
10304 (buffer-substring (region-beginning) (region-end))))
10305 (remove (and region (list (region-beginning) (region-end))))
10306 (desc region)
10307 tmphist ; byte-compile incorrectly complains about this
10308 (link link-location)
10309 (abbrevs org-link-abbrev-alist-local)
10310 entry file all-prefixes auto-desc)
10311 (cond
10312 (link-location) ; specified by arg, just use it.
10313 ((org-in-regexp org-bracket-link-regexp 1)
10314 ;; We do have a link at point, and we are going to edit it.
10315 (setq remove (list (match-beginning 0) (match-end 0)))
10316 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10317 (setq link (read-string "Link: "
10318 (org-link-unescape
10319 (org-match-string-no-properties 1)))))
10320 ((or (org-in-regexp org-angle-link-re)
10321 (org-in-regexp org-plain-link-re))
10322 ;; Convert to bracket link
10323 (setq remove (list (match-beginning 0) (match-end 0))
10324 link (read-string "Link: "
10325 (org-remove-angle-brackets (match-string 0)))))
10326 ((member complete-file '((4) (16)))
10327 ;; Completing read for file names.
10328 (setq link (org-file-complete-link complete-file)))
10330 ;; Read link, with completion for stored links.
10331 (org-link-fontify-links-to-this-file)
10332 (org-switch-to-buffer-other-window "*Org Links*")
10333 (with-current-buffer "*Org Links*"
10334 (erase-buffer)
10335 (insert "Insert a link.
10336 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10337 (when org-stored-links
10338 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10339 (insert (mapconcat 'org-link-prettify
10340 (reverse org-stored-links) "\n")))
10341 (goto-char (point-min)))
10342 (let ((cw (selected-window)))
10343 (select-window (get-buffer-window "*Org Links*" 'visible))
10344 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10345 (unless (pos-visible-in-window-p (point-max))
10346 (org-fit-window-to-buffer))
10347 (and (window-live-p cw) (select-window cw)))
10348 ;; Fake a link history, containing the stored links.
10349 (setq tmphist (append (mapcar 'car org-stored-links)
10350 org-insert-link-history))
10351 (setq all-prefixes (append (mapcar 'car abbrevs)
10352 (mapcar 'car org-link-abbrev-alist)
10353 org-link-types))
10354 (unwind-protect
10355 (progn
10356 (setq link
10357 (org-completing-read
10358 "Link: "
10359 (append
10360 (mapcar (lambda (x) (concat x ":"))
10361 all-prefixes)
10362 (mapcar 'car org-stored-links))
10363 nil nil nil
10364 'tmphist
10365 (caar org-stored-links)))
10366 (if (not (string-match "\\S-" link))
10367 (user-error "No link selected"))
10368 (mapc (lambda(l)
10369 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10370 org-stored-links)
10371 (if (or (member link all-prefixes)
10372 (and (equal ":" (substring link -1))
10373 (member (substring link 0 -1) all-prefixes)
10374 (setq link (substring link 0 -1))))
10375 (setq link (with-current-buffer origbuf
10376 (org-link-try-special-completion link)))))
10377 (set-window-configuration wcf)
10378 (kill-buffer "*Org Links*"))
10379 (setq entry (assoc link org-stored-links))
10380 (or entry (push link org-insert-link-history))
10381 (setq desc (or desc (nth 1 entry)))))
10383 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10384 (not org-keep-stored-link-after-insertion))
10385 (setq org-stored-links (delq (assoc link org-stored-links)
10386 org-stored-links)))
10388 (if (and (string-match org-plain-link-re link)
10389 (not (string-match org-ts-regexp link)))
10390 ;; URL-like link, normalize the use of angular brackets.
10391 (setq link (org-remove-angle-brackets link)))
10393 ;; Check if we are linking to the current file with a search
10394 ;; option If yes, simplify the link by using only the search
10395 ;; option.
10396 (when (and buffer-file-name
10397 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10398 (let* ((path (match-string 1 link))
10399 (case-fold-search nil)
10400 (search (match-string 2 link)))
10401 (save-match-data
10402 (if (equal (file-truename buffer-file-name) (file-truename path))
10403 ;; We are linking to this same file, with a search option
10404 (setq link search)))))
10406 ;; Check if we can/should use a relative path. If yes, simplify the link
10407 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10408 (let* ((type (match-string 1 link))
10409 (path (match-string 2 link))
10410 (origpath path)
10411 (case-fold-search nil))
10412 (cond
10413 ((or (eq org-link-file-path-type 'absolute)
10414 (equal complete-file '(16)))
10415 (setq path (abbreviate-file-name (expand-file-name path))))
10416 ((eq org-link-file-path-type 'noabbrev)
10417 (setq path (expand-file-name path)))
10418 ((eq org-link-file-path-type 'relative)
10419 (setq path (file-relative-name path)))
10421 (save-match-data
10422 (if (string-match (concat "^" (regexp-quote
10423 (expand-file-name
10424 (file-name-as-directory
10425 default-directory))))
10426 (expand-file-name path))
10427 ;; We are linking a file with relative path name.
10428 (setq path (substring (expand-file-name path)
10429 (match-end 0)))
10430 (setq path (abbreviate-file-name (expand-file-name path)))))))
10431 (setq link (concat type path))
10432 (if (equal desc origpath)
10433 (setq desc path))))
10435 (if org-make-link-description-function
10436 (setq desc
10437 (or (condition-case nil
10438 (funcall org-make-link-description-function link desc)
10439 (error (progn (message "Can't get link description from `%s'"
10440 (symbol-name org-make-link-description-function))
10441 (sit-for 2) nil)))
10442 (read-string "Description: " default-description)))
10443 (if default-description (setq desc default-description)
10444 (setq desc (or (and auto-desc desc)
10445 (read-string "Description: " desc)))))
10447 (unless (string-match "\\S-" desc) (setq desc nil))
10448 (if remove (apply 'delete-region remove))
10449 (insert (org-make-link-string link desc))
10450 ;; Redisplay so as the new link has proper invisible characters.
10451 (sit-for 0)))
10453 (defun org-link-try-special-completion (type)
10454 "If there is completion support for link type TYPE, offer it."
10455 (let ((fun (intern (concat "org-" type "-complete-link"))))
10456 (if (functionp fun)
10457 (funcall fun)
10458 (read-string "Link (no completion support): " (concat type ":")))))
10460 (defun org-file-complete-link (&optional arg)
10461 "Create a file link using completion."
10462 (let ((file (org-iread-file-name "File: "))
10463 (pwd (file-name-as-directory (expand-file-name ".")))
10464 (pwd1 (file-name-as-directory (abbreviate-file-name
10465 (expand-file-name ".")))))
10466 (cond ((equal arg '(16))
10467 (concat "file:"
10468 (abbreviate-file-name (expand-file-name file))))
10469 ((string-match
10470 (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10471 (concat "file:" (match-string 1 file)))
10472 ((string-match
10473 (concat "^" (regexp-quote pwd) "\\(.+\\)")
10474 (expand-file-name file))
10475 (concat "file:"
10476 (match-string 1 (expand-file-name file))))
10477 (t (concat "file:" file)))))
10479 (defun org-iread-file-name (&rest args)
10480 "Read-file-name using `ido-mode' speedup if available.
10481 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10482 See `read-file-name' for a description of parameters."
10483 (org-without-partial-completion
10484 (if (and org-completion-use-ido
10485 (fboundp 'ido-read-file-name)
10486 (org-bound-and-true-p ido-mode)
10487 (listp (nth 1 args)))
10488 (let ((ido-enter-matching-directory nil))
10489 (apply #'ido-read-file-name args))
10490 (apply #'read-file-name args))))
10492 (defun org-completing-read (&rest args)
10493 "Completing-read with SPACE being a normal character."
10494 (let ((enable-recursive-minibuffers t)
10495 (minibuffer-local-completion-map
10496 (copy-keymap minibuffer-local-completion-map)))
10497 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10498 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10499 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10500 (apply 'org-icompleting-read args)))
10502 (defun org-completing-read-no-i (&rest args)
10503 (let (org-completion-use-ido org-completion-use-iswitchb)
10504 (apply 'org-completing-read args)))
10506 (defun org-iswitchb-completing-read (prompt choices &rest args)
10507 "Use iswitch as a completing-read replacement to choose from choices.
10508 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10509 from."
10510 (let* ((iswitchb-use-virtual-buffers nil)
10511 (iswitchb-make-buflist-hook
10512 (lambda ()
10513 (setq iswitchb-temp-buflist choices))))
10514 (iswitchb-read-buffer prompt)))
10516 (defun org-icompleting-read (&rest args)
10517 "Completing-read using `ido-mode' or `iswitchb' speedups if available.
10518 Should be called like `completing-read'."
10519 (org-without-partial-completion
10520 (if (not (listp (nth 1 args)))
10521 ;; Ido only supports lists as the COLLECTION argument. Use
10522 ;; default completion function when second argument is not
10523 ;; a list.
10524 (apply #'completing-read args)
10525 (let ((ido-enter-matching-directory nil))
10526 (apply (cond ((and org-completion-use-ido
10527 (fboundp 'ido-completing-read)
10528 (org-bound-and-true-p ido-mode))
10529 #'ido-completing-read)
10530 ((and org-completion-use-iswitchb
10531 (org-bound-and-true-p iswitchb-mode))
10532 #'org-iswitchb-completing-read)
10533 (t #'completing-read))
10534 args)))))
10536 ;;; Opening/following a link
10538 (defvar org-link-search-failed nil)
10540 (defvar org-open-link-functions nil
10541 "Hook for functions finding a plain text link.
10542 These functions must take a single argument, the link content.
10543 They will be called for links that look like [[link text][description]]
10544 when LINK TEXT does not have a protocol like \"http:\" and does not look
10545 like a filename (e.g. \"./blue.png\").
10547 These functions will be called *before* Org attempts to resolve the
10548 link by doing text searches in the current buffer - so if you want a
10549 link \"[[target]]\" to still find \"<<target>>\", your function should
10550 handle this as a special case.
10552 When the function does handle the link, it must return a non-nil value.
10553 If it decides that it is not responsible for this link, it must return
10554 nil to indicate that that Org-mode can continue with other options
10555 like exact and fuzzy text search.")
10557 (defun org-next-link (&optional search-backward)
10558 "Move forward to the next link.
10559 If the link is in hidden text, expose it."
10560 (interactive "P")
10561 (when (and org-link-search-failed (eq this-command last-command))
10562 (goto-char (point-min))
10563 (message "Link search wrapped back to beginning of buffer"))
10564 (setq org-link-search-failed nil)
10565 (let* ((pos (point))
10566 (ct (org-context))
10567 (a (assoc :link ct))
10568 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10569 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10570 ((looking-at org-any-link-re)
10571 ;; Don't stay stuck at link without an org-link face
10572 (forward-char (if search-backward -1 1))))
10573 (if (funcall srch-fun org-any-link-re nil t)
10574 (progn
10575 (goto-char (match-beginning 0))
10576 (if (outline-invisible-p) (org-show-context)))
10577 (goto-char pos)
10578 (setq org-link-search-failed t)
10579 (message "No further link found"))))
10581 (defun org-previous-link ()
10582 "Move backward to the previous link.
10583 If the link is in hidden text, expose it."
10584 (interactive)
10585 (funcall 'org-next-link t))
10587 (defun org-translate-link (s)
10588 "Translate a link string if a translation function has been defined."
10589 (with-temp-buffer
10590 (insert (org-trim s))
10591 (org-trim (org-element-interpret-data (org-element-context)))))
10593 (defun org-translate-link-from-planner (type path)
10594 "Translate a link from Emacs Planner syntax so that Org can follow it.
10595 This is still an experimental function, your mileage may vary."
10596 (cond
10597 ((member type '("http" "https" "news" "ftp"))
10598 ;; standard Internet links are the same.
10599 nil)
10600 ((and (equal type "irc") (string-match "^//" path))
10601 ;; Planner has two / at the beginning of an irc link, we have 1.
10602 ;; We should have zero, actually....
10603 (setq path (substring path 1)))
10604 ((and (equal type "lisp") (string-match "^/" path))
10605 ;; Planner has a slash, we do not.
10606 (setq type "elisp" path (substring path 1)))
10607 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10608 ;; A typical message link. Planner has the id after the final slash,
10609 ;; we separate it with a hash mark
10610 (setq path (concat (match-string 1 path) "#"
10611 (org-remove-angle-brackets (match-string 2 path))))))
10612 (cons type path))
10614 (defun org-find-file-at-mouse (ev)
10615 "Open file link or URL at mouse."
10616 (interactive "e")
10617 (mouse-set-point ev)
10618 (org-open-at-point 'in-emacs))
10620 (defun org-open-at-mouse (ev)
10621 "Open file link or URL at mouse.
10622 See the docstring of `org-open-file' for details."
10623 (interactive "e")
10624 (mouse-set-point ev)
10625 (if (eq major-mode 'org-agenda-mode)
10626 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10627 (org-open-at-point))
10629 (defvar org-window-config-before-follow-link nil
10630 "The window configuration before following a link.
10631 This is saved in case the need arises to restore it.")
10633 ;;;###autoload
10634 (defun org-open-at-point-global ()
10635 "Follow a link like Org-mode does.
10636 This command can be called in any mode to follow a link that has
10637 Org-mode syntax."
10638 (interactive)
10639 (org-run-like-in-org-mode 'org-open-at-point))
10641 ;;;###autoload
10642 (defun org-open-link-from-string (s &optional arg reference-buffer)
10643 "Open a link in the string S, as if it was in Org-mode."
10644 (interactive "sLink: \nP")
10645 (let ((reference-buffer (or reference-buffer (current-buffer))))
10646 (with-temp-buffer
10647 (let ((org-inhibit-startup (not reference-buffer)))
10648 (org-mode)
10649 (insert s)
10650 (goto-char (point-min))
10651 (when reference-buffer
10652 (setq org-link-abbrev-alist-local
10653 (with-current-buffer reference-buffer
10654 org-link-abbrev-alist-local)))
10655 (org-open-at-point arg reference-buffer)))))
10657 (defvar org-open-at-point-functions nil
10658 "Hook that is run when following a link at point.
10660 Functions in this hook must return t if they identify and follow
10661 a link at point. If they don't find anything interesting at point,
10662 they must return nil.")
10664 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10665 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10666 (defun org-open-at-point (&optional arg reference-buffer)
10667 "Open link, timestamp, footnote or tags at point.
10669 When point is on a link, follow it. Normally, files will be
10670 opened by an appropriate application. If the optional prefix
10671 argument ARG is non-nil, Emacs will visit the file. With
10672 a double prefix argument, try to open outside of Emacs, in the
10673 application the system uses for this file type.
10675 When point is on a timestamp, open the agenda at the day
10676 specified.
10678 When point is a footnote definition, move to the first reference
10679 found. If it is on a reference, move to the associated
10680 definition.
10682 When point is on a headline, display a list of every link in the
10683 entry, so it is possible to pick one, or all, of them. If point
10684 is on a tag, call `org-tags-view' instead.
10686 When optional argument REFERENCE-BUFFER is non-nil, it should
10687 specify a buffer from where the link search should happen. This
10688 is used internally by `org-open-link-from-string'.
10690 On top of syntactically correct links, this function will open
10691 the link at point in comments or comment blocks and the first
10692 link in a property drawer line."
10693 (interactive "P")
10694 ;; On a code block, open block's results.
10695 (unless (call-interactively 'org-babel-open-src-block-result)
10696 (org-load-modules-maybe)
10697 (setq org-window-config-before-follow-link (current-window-configuration))
10698 (org-remove-occur-highlights nil nil t)
10699 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10700 (let* ((context
10701 ;; Only consider supported types, even if they are not
10702 ;; the closest one.
10703 (org-element-lineage
10704 (org-element-context)
10705 '(clock comment comment-block footnote-definition
10706 footnote-reference headline inlinetask keyword link
10707 node-property timestamp)
10709 (type (org-element-type context))
10710 (value (org-element-property :value context)))
10711 (cond
10712 ((not context) (user-error "No link found"))
10713 ;; Exception: open timestamps and links in properties
10714 ;; drawers, keywords and comments.
10715 ((memq type '(comment comment-block keyword node-property))
10716 (cond ((org-in-regexp org-any-link-re)
10717 (org-open-link-from-string (match-string-no-properties 0)))
10718 ((or (org-at-timestamp-p t) (org-at-date-range-p t))
10719 (org-follow-timestamp-link))
10720 (t (user-error "No link found"))))
10721 ;; On a headline or an inlinetask, but not on a timestamp,
10722 ;; a link, a footnote reference or on tags.
10723 ((and (memq type '(headline inlinetask))
10724 ;; Not on tags.
10725 (progn (save-excursion (beginning-of-line)
10726 (looking-at org-complex-heading-regexp))
10727 (or (not (match-beginning 5))
10728 (< (point) (match-beginning 5)))))
10729 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10730 (links (car data))
10731 (links-end (cdr data)))
10732 (if links
10733 (dolist (link (if (stringp links) (list links) links))
10734 (search-forward link nil links-end)
10735 (goto-char (match-beginning 0))
10736 (org-open-at-point))
10737 (require 'org-attach)
10738 (org-attach-reveal 'if-exists))))
10739 ;; On a clock line, make sure point is on the timestamp
10740 ;; before opening it.
10741 ((and (eq type 'clock)
10742 value
10743 (>= (point) (org-element-property :begin value))
10744 (<= (point) (org-element-property :end value)))
10745 (org-follow-timestamp-link))
10746 ;; Do nothing on white spaces after an object, unless point
10747 ;; is right after it.
10748 ((> (point)
10749 (save-excursion
10750 (goto-char (org-element-property :end context))
10751 (skip-chars-backward " \t")
10752 (point)))
10753 (user-error "No link found"))
10754 ((eq type 'timestamp) (org-follow-timestamp-link))
10755 ;; On tags within a headline or an inlinetask.
10756 ((and (memq type '(headline inlinetask))
10757 (progn (save-excursion (beginning-of-line)
10758 (looking-at org-complex-heading-regexp))
10759 (and (match-beginning 5)
10760 (>= (point) (match-beginning 5)))))
10761 (org-tags-view arg (substring (match-string 5) 0 -1)))
10762 ((eq type 'link)
10763 ;; When link is located within the description of another
10764 ;; link (e.g., an inline image), always open the parent
10765 ;; link.
10766 (let*((link (let ((up (org-element-property :parent context)))
10767 (if (eq (org-element-type up) 'link) up context)))
10768 (type (org-element-property :type link))
10769 (path (org-link-unescape (org-element-property :path link))))
10770 ;; Switch back to REFERENCE-BUFFER needed when called in
10771 ;; a temporary buffer through `org-open-link-from-string'.
10772 (with-current-buffer (or reference-buffer (current-buffer))
10773 (cond
10774 ((equal type "file")
10775 (if (string-match "[*?{]" (file-name-nondirectory path))
10776 (dired path)
10777 ;; Look into `org-link-protocols' in order to find
10778 ;; a DEDICATED-FUNCTION to open file. The function
10779 ;; will be applied on raw link instead of parsed
10780 ;; link due to the limitation in `org-add-link-type'
10781 ;; ("open" function called with a single argument).
10782 ;; If no such function is found, fallback to
10783 ;; `org-open-file'.
10785 ;; Note : "file+emacs" and "file+sys" types are
10786 ;; hard-coded in order to escape the previous
10787 ;; limitation.
10788 (let* ((option (org-element-property :search-option link))
10789 (app (org-element-property :application link))
10790 (dedicated-function
10791 (nth 1 (assoc app org-link-protocols))))
10792 (if dedicated-function
10793 (funcall dedicated-function
10794 (concat path
10795 (and option (concat "::" option))))
10796 (apply #'org-open-file
10797 path
10798 (cond (arg)
10799 ((equal app "emacs") 'emacs)
10800 ((equal app "sys") 'system))
10801 (cond ((not option) nil)
10802 ((org-string-match-p "\\`[0-9]+\\'" option)
10803 (list (string-to-number option)))
10804 (t (list nil
10805 (org-link-unescape option)))))))))
10806 ((assoc type org-link-protocols)
10807 (funcall (nth 1 (assoc type org-link-protocols)) path))
10808 ((equal type "help")
10809 (let ((f-or-v (intern path)))
10810 (cond ((fboundp f-or-v) (describe-function f-or-v))
10811 ((boundp f-or-v) (describe-variable f-or-v))
10812 (t (error "Not a known function or variable")))))
10813 ((member type '("http" "https" "ftp" "mailto" "news"))
10814 (browse-url (org-link-escape-browser (concat type ":" path))))
10815 ((equal type "doi")
10816 (browse-url
10817 (org-link-escape-browser (concat org-doi-server-url path))))
10818 ((equal type "message") (browse-url (concat type ":" path)))
10819 ((equal type "shell")
10820 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10821 (cmd path))
10822 (if (or (and (org-string-nw-p
10823 org-confirm-shell-link-not-regexp)
10824 (string-match
10825 org-confirm-shell-link-not-regexp cmd))
10826 (not org-confirm-shell-link-function)
10827 (funcall org-confirm-shell-link-function
10828 (format "Execute \"%s\" in shell? "
10829 (org-add-props cmd nil
10830 'face 'org-warning))))
10831 (progn
10832 (message "Executing %s" cmd)
10833 (shell-command cmd buf)
10834 (when (featurep 'midnight)
10835 (setq clean-buffer-list-kill-buffer-names
10836 (cons (buffer-name buf)
10837 clean-buffer-list-kill-buffer-names))))
10838 (user-error "Abort"))))
10839 ((equal type "elisp")
10840 (let ((cmd path))
10841 (if (or (and (org-string-nw-p
10842 org-confirm-elisp-link-not-regexp)
10843 (org-string-match-p
10844 org-confirm-elisp-link-not-regexp cmd))
10845 (not org-confirm-elisp-link-function)
10846 (funcall org-confirm-elisp-link-function
10847 (format "Execute \"%s\" as elisp? "
10848 (org-add-props cmd nil
10849 'face 'org-warning))))
10850 (message "%s => %s" cmd
10851 (if (eq (string-to-char cmd) ?\()
10852 (eval (read cmd))
10853 (call-interactively (read cmd))))
10854 (user-error "Abort"))))
10855 ((equal type "id")
10856 (require 'org-id)
10857 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10858 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10859 (unless (run-hook-with-args-until-success
10860 'org-open-link-functions path)
10861 (if (not arg) (org-mark-ring-push)
10862 (switch-to-buffer-other-window
10863 (org-get-buffer-for-internal-link (current-buffer))))
10864 (let ((destination
10865 (org-with-wide-buffer
10866 (if (equal type "radio")
10867 (org-search-radio-target
10868 (org-element-property :path link))
10869 (org-link-search
10870 (if (member type '("custom-id" "coderef"))
10871 (org-element-property :raw-link link)
10872 path)
10873 ;; Prevent fuzzy links from matching
10874 ;; themselves.
10875 (and (equal type "fuzzy")
10876 (+ 2 (org-element-property :begin link)))))
10877 (point))))
10878 (unless (and (<= (point-min) destination)
10879 (>= (point-max) destination))
10880 (widen))
10881 (goto-char destination))))
10882 (t (browse-url-at-point))))))
10883 ;; On a footnote reference or at a footnote definition's label.
10884 ((or (eq type 'footnote-reference)
10885 (and (eq type 'footnote-definition)
10886 (save-excursion
10887 ;; Do not validate action when point is on the
10888 ;; spaces right after the footnote label, in
10889 ;; order to be on par with behaviour on links.
10890 (skip-chars-forward " \t")
10891 (let ((begin
10892 (org-element-property :contents-begin context)))
10893 (if begin (< (point) begin)
10894 (= (org-element-property :post-affiliated context)
10895 (line-beginning-position)))))))
10896 (org-footnote-action))
10897 (t (user-error "No link found")))))
10898 (run-hook-with-args 'org-follow-link-hook)))
10900 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10901 "Offer links in the current entry and return the selected link.
10902 If there is only one link, return it.
10903 If NTH is an integer, return the NTH link found.
10904 If ZERO is a string, check also this string for a link, and if
10905 there is one, return it."
10906 (with-current-buffer buffer
10907 (save-excursion
10908 (save-restriction
10909 (widen)
10910 (goto-char marker)
10911 (let ((cnt ?0)
10912 (in-emacs (if (integerp nth) nil nth))
10913 have-zero end links link c)
10914 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10915 (push (match-string 0 zero) links)
10916 (setq cnt (1- cnt) have-zero t))
10917 (save-excursion
10918 (org-back-to-heading t)
10919 (setq end (save-excursion (outline-next-heading) (point)))
10920 (while (re-search-forward org-any-link-re end t)
10921 (push (match-string 0) links))
10922 (setq links (org-uniquify (reverse links))))
10923 (cond
10924 ((null links)
10925 (message "No links"))
10926 ((equal (length links) 1)
10927 (setq link (car links)))
10928 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10929 (setq link (nth (if have-zero nth (1- nth)) links)))
10930 (t ; we have to select a link
10931 (save-excursion
10932 (save-window-excursion
10933 (delete-other-windows)
10934 (with-output-to-temp-buffer "*Select Link*"
10935 (mapc (lambda (l)
10936 (if (not (string-match org-bracket-link-regexp l))
10937 (princ (format "[%c] %s\n" (incf cnt)
10938 (org-remove-angle-brackets l)))
10939 (if (match-end 3)
10940 (princ (format "[%c] %s (%s)\n" (incf cnt)
10941 (match-string 3 l) (match-string 1 l)))
10942 (princ (format "[%c] %s\n" (incf cnt)
10943 (match-string 1 l))))))
10944 links))
10945 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10946 (message "Select link to open, RET to open all:")
10947 (setq c (read-char-exclusive))
10948 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10949 (when (equal c ?q) (user-error "Abort"))
10950 (if (equal c ?\C-m)
10951 (setq link links)
10952 (setq nth (- c ?0))
10953 (if have-zero (setq nth (1+ nth)))
10954 (unless (and (integerp nth) (>= (length links) nth))
10955 (user-error "Invalid link selection"))
10956 (setq link (nth (1- nth) links)))))
10957 (cons link end))))))
10959 ;; TODO: These functions are deprecated since `org-open-at-point'
10960 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10961 (defun org-open-file-with-system (path)
10962 "Open file at PATH using the system way of opening it."
10963 (org-open-file path 'system))
10964 (defun org-open-file-with-emacs (path)
10965 "Open file at PATH in Emacs."
10966 (org-open-file path 'emacs))
10969 ;;; File search
10971 (defvar org-create-file-search-functions nil
10972 "List of functions to construct the right search string for a file link.
10973 These functions are called in turn with point at the location to
10974 which the link should point.
10976 A function in the hook should first test if it would like to
10977 handle this file type, for example by checking the `major-mode'
10978 or the file extension. If it decides not to handle this file, it
10979 should just return nil to give other functions a chance. If it
10980 does handle the file, it must return the search string to be used
10981 when following the link. The search string will be part of the
10982 file link, given after a double colon, and `org-open-at-point'
10983 will automatically search for it. If special measures must be
10984 taken to make the search successful, another function should be
10985 added to the companion hook `org-execute-file-search-functions',
10986 which see.
10988 A function in this hook may also use `setq' to set the variable
10989 `description' to provide a suggestion for the descriptive text to
10990 be used for this link when it gets inserted into an Org-mode
10991 buffer with \\[org-insert-link].")
10993 (defvar org-execute-file-search-functions nil
10994 "List of functions to execute a file search triggered by a link.
10996 Functions added to this hook must accept a single argument, the
10997 search string that was part of the file link, the part after the
10998 double colon. The function must first check if it would like to
10999 handle this search, for example by checking the `major-mode' or
11000 the file extension. If it decides not to handle this search, it
11001 should just return nil to give other functions a chance. If it
11002 does handle the search, it must return a non-nil value to keep
11003 other functions from trying.
11005 Each function can access the current prefix argument through the
11006 variable `current-prefix-arg'. Note that a single prefix is used
11007 to force opening a link in Emacs, so it may be good to only use a
11008 numeric or double prefix to guide the search function.
11010 In case this is needed, a function in this hook can also restore
11011 the window configuration before `org-open-at-point' was called using:
11013 (set-window-configuration org-window-config-before-follow-link)")
11015 (defun org-search-radio-target (target)
11016 "Search a radio target matching TARGET in current buffer.
11017 White spaces are not significant."
11018 (let ((re (format "<<<%s>>>"
11019 (mapconcat #'regexp-quote
11020 (org-split-string target "[ \t\n]+")
11021 "[ \t]+\\(?:\n[ \t]*\\)?")))
11022 (origin (point)))
11023 (goto-char (point-min))
11024 (catch :radio-match
11025 (while (re-search-forward re nil t)
11026 (backward-char)
11027 (let ((object (org-element-context)))
11028 (when (eq (org-element-type object) 'radio-target)
11029 (goto-char (org-element-property :begin object))
11030 (org-show-context 'link-search)
11031 (throw :radio-match nil))))
11032 (goto-char origin)
11033 (user-error "No match for radio target: %s" target))))
11035 (defun org-link-search (s &optional avoid-pos stealth)
11036 "Search for a search string S.
11038 If S starts with \"#\", it triggers a custom ID search.
11040 If S is enclosed within parenthesis, it initiates a coderef
11041 search.
11043 If S is surrounded by forward slashes, it is interpreted as
11044 a regular expression. In Org mode files, this will create an
11045 `org-occur' sparse tree. In ordinary files, `occur' will be used
11046 to list matches. If the current buffer is in `dired-mode', grep
11047 will be used to search in all files.
11049 When AVOID-POS is given, ignore matches near that position.
11051 When optional argument STEALTH is non-nil, do not modify
11052 visibility around point, thus ignoring `org-show-context-detail'
11053 variable.
11055 Search is case-insensitive and ignores white spaces. Return type
11056 of matched result, with is either `dedicated' or `fuzzy'."
11057 (unless (org-string-nw-p s) (error "Invalid search string \"%s\"" s))
11058 (let* ((case-fold-search t)
11059 (origin (point))
11060 (normalized (replace-regexp-in-string "\n[ \t]*" " " s))
11061 (words (org-split-string s "[ \t\n]+"))
11062 (s-multi-re (mapconcat #'regexp-quote words "[ \t]+\\(?:\n[ \t]*\\)?"))
11063 (s-single-re (mapconcat #'regexp-quote words "[ \t]+"))
11064 type)
11065 (cond
11066 ;; Check if there are any special search functions.
11067 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11068 ((eq (string-to-char s) ?#)
11069 ;; Look for a custom ID S if S starts with "#".
11070 (let* ((id (substring normalized 1))
11071 (match (org-find-property "CUSTOM_ID" id)))
11072 (if match (progn (goto-char match) (setf type 'dedicated))
11073 (error "No match for custom ID: %s" id))))
11074 ((string-match "\\`(\\(.*\\))\\'" normalized)
11075 ;; Look for coderef targets if S is enclosed within parenthesis.
11076 (let ((coderef (match-string-no-properties 1 normalized))
11077 (re (substring s-single-re 1 -1)))
11078 (goto-char (point-min))
11079 (catch :coderef-match
11080 (while (re-search-forward re nil t)
11081 (let ((element (org-element-at-point)))
11082 (when (and (memq (org-element-type element)
11083 '(example-block src-block))
11084 ;; Build proper regexp according to current
11085 ;; block's label format.
11086 (let ((label-fmt
11087 (regexp-quote
11088 (or (org-element-property :label-fmt element)
11089 org-coderef-label-format))))
11090 (save-excursion
11091 (beginning-of-line)
11092 (looking-at (format ".*?\\(%s\\)[ \t]*$"
11093 (format label-fmt coderef))))))
11094 (setq type 'dedicated)
11095 (goto-char (match-beginning 1))
11096 (throw :coderef-match nil))))
11097 (goto-char origin)
11098 (error "No match for coderef: %s" coderef))))
11099 ((string-match "\\`/\\(.*\\)/\\'" normalized)
11100 ;; Look for a regular expression.
11101 (funcall (if (derived-mode-p 'org-mode) #'org-occur #'org-do-occur)
11102 (match-string 1 s)))
11103 ;; Fuzzy links.
11105 (let* ((starred (eq (string-to-char normalized) ?*))
11106 (headline-search (and (derived-mode-p 'org-mode)
11107 (or org-link-search-must-match-exact-headline
11108 starred))))
11109 (cond
11110 ;; Look for targets, only if not in a headline search.
11111 ((and (not starred)
11112 (let ((target (format "<<%s>>" s-multi-re)))
11113 (catch :target-match
11114 (goto-char (point-min))
11115 (while (re-search-forward target nil t)
11116 (backward-char)
11117 (let ((context (org-element-context)))
11118 (when (eq (org-element-type context) 'target)
11119 (setq type 'dedicated)
11120 (goto-char (org-element-property :begin context))
11121 (throw :target-match t))))
11122 nil))))
11123 ;; Look for elements named after S, only if not in a headline
11124 ;; search.
11125 ((and (not starred)
11126 (let ((name (format "^[ \t]*#\\+NAME: +%s[ \t]*$" s-single-re)))
11127 (catch :name-match
11128 (goto-char (point-min))
11129 (while (re-search-forward name nil t)
11130 (let ((element (org-element-at-point)))
11131 (when (equal (org-split-string
11132 (org-element-property :name element)
11133 "[ \t]+")
11134 words)
11135 (setq type 'dedicated)
11136 (beginning-of-line)
11137 (throw :name-match t))))
11138 nil))))
11139 ;; Regular text search. Prefer headlines in Org mode
11140 ;; buffers.
11141 ((and (derived-mode-p 'org-mode)
11142 (let* ((wspace "[ \t]")
11143 (wspaceopt (concat wspace "*"))
11144 (cookie (concat "\\(?:"
11145 wspaceopt
11146 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11147 wspaceopt
11148 "\\)"))
11149 (sep (concat "\\(?:\\(?:" wspace "\\|" cookie "\\)+\\)"))
11150 (re (concat
11151 org-outline-regexp-bol
11152 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11153 "\\(?:\\[#.\\][ \t]+\\)?"
11154 "\\(?:" org-comment-string "[ \t]+\\)?"
11155 sep "?"
11156 (let ((title (mapconcat #'regexp-quote
11157 words
11158 sep)))
11159 (if starred (substring title 1) title))
11160 sep "?"
11161 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11162 "[ \t]*$")))
11163 (goto-char (point-min))
11164 (re-search-forward re nil t)))
11165 (goto-char (match-beginning 0))
11166 (setq type 'dedicated))
11167 ;; Offer to create non-existent headline depending on
11168 ;; `org-link-search-must-match-exact-headline'.
11169 ((and (derived-mode-p 'org-mode)
11170 (not org-link-search-inhibit-query)
11171 (eq org-link-search-must-match-exact-headline 'query-to-create)
11172 (yes-or-no-p "No match - create this as a new heading? "))
11173 (goto-char (point-max))
11174 (unless (bolp) (newline))
11175 (org-insert-heading nil t t)
11176 (insert s "\n")
11177 (beginning-of-line 0))
11178 ;; Only headlines are looked after. No need to process
11179 ;; further: throw an error.
11180 ((and (derived-mode-p 'org-mode)
11181 (or starred org-link-search-must-match-exact-headline))
11182 (goto-char origin)
11183 (error "No match for fuzzy expression: %s" normalized))
11184 ;; Regular text search.
11185 ((catch :fuzzy-match
11186 (goto-char (point-min))
11187 (while (re-search-forward s-multi-re nil t)
11188 ;; Skip match if it contains AVOID-POS or it is included
11189 ;; in a link with a description but outside the
11190 ;; description.
11191 (unless (or (and avoid-pos
11192 (<= (match-beginning 0) avoid-pos)
11193 (> (match-end 0) avoid-pos))
11194 (and (save-match-data
11195 (org-in-regexp org-bracket-link-regexp))
11196 (match-beginning 3)
11197 (or (> (match-beginning 3) (point))
11198 (<= (match-end 3) (point)))
11199 (org-element-lineage
11200 (save-match-data (org-element-context))
11201 '(link) t)))
11202 (goto-char (match-beginning 0))
11203 (setq type 'fuzzy)
11204 (throw :fuzzy-match t)))
11205 nil))
11206 ;; All failed. Throw an error.
11207 (t (goto-char origin)
11208 (error "No match for fuzzy expression: %s" normalized))))))
11209 ;; Disclose surroundings of match, if appropriate.
11210 (when (and (derived-mode-p 'org-mode) (not stealth))
11211 (org-show-context 'link-search))
11212 type))
11214 (defun org-get-buffer-for-internal-link (buffer)
11215 "Return a buffer to be used for displaying the link target of internal links."
11216 (cond
11217 ((not org-display-internal-link-with-indirect-buffer)
11218 buffer)
11219 ((string-match "(Clone)$" (buffer-name buffer))
11220 (message "Buffer is already a clone, not making another one")
11221 ;; we also do not modify visibility in this case
11222 buffer)
11223 (t ; make a new indirect buffer for displaying the link
11224 (let* ((bn (buffer-name buffer))
11225 (ibn (concat bn "(Clone)"))
11226 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11227 (with-current-buffer ib (org-overview))
11228 ib))))
11230 (defun org-do-occur (regexp &optional cleanup)
11231 "Call the Emacs command `occur'.
11232 If CLEANUP is non-nil, remove the printout of the regular expression
11233 in the *Occur* buffer. This is useful if the regex is long and not useful
11234 to read."
11235 (occur regexp)
11236 (when cleanup
11237 (let ((cwin (selected-window)) win beg end)
11238 (when (setq win (get-buffer-window "*Occur*"))
11239 (select-window win))
11240 (goto-char (point-min))
11241 (when (re-search-forward "match[a-z]+" nil t)
11242 (setq beg (match-end 0))
11243 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11244 (setq end (1- (match-beginning 0)))))
11245 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11246 (goto-char (point-min))
11247 (select-window cwin))))
11249 ;;; The mark ring for links jumps
11251 (defvar org-mark-ring nil
11252 "Mark ring for positions before jumps in Org-mode.")
11253 (defvar org-mark-ring-last-goto nil
11254 "Last position in the mark ring used to go back.")
11255 ;; Fill and close the ring
11256 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11257 (loop for i from 1 to org-mark-ring-length do
11258 (push (make-marker) org-mark-ring))
11259 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11260 org-mark-ring)
11262 (defun org-mark-ring-push (&optional pos buffer)
11263 "Put the current position or POS into the mark ring and rotate it."
11264 (interactive)
11265 (setq pos (or pos (point)))
11266 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11267 (move-marker (car org-mark-ring)
11268 (or pos (point))
11269 (or buffer (current-buffer)))
11270 (message "%s"
11271 (substitute-command-keys
11272 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11274 (defun org-mark-ring-goto (&optional n)
11275 "Jump to the previous position in the mark ring.
11276 With prefix arg N, jump back that many stored positions. When
11277 called several times in succession, walk through the entire ring.
11278 Org-mode commands jumping to a different position in the current file,
11279 or to another Org-mode file, automatically push the old position
11280 onto the ring."
11281 (interactive "p")
11282 (let (p m)
11283 (if (eq last-command this-command)
11284 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11285 (setq p org-mark-ring))
11286 (setq org-mark-ring-last-goto p)
11287 (setq m (car p))
11288 (org-pop-to-buffer-same-window (marker-buffer m))
11289 (goto-char m)
11290 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11292 (defun org-remove-angle-brackets (s)
11293 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11294 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11296 (defun org-add-angle-brackets (s)
11297 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11298 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11300 (defun org-remove-double-quotes (s)
11301 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11302 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11305 ;;; Following specific links
11307 (defun org-follow-timestamp-link ()
11308 "Open an agenda view for the time-stamp date/range at point."
11309 (cond
11310 ((org-at-date-range-p t)
11311 (let ((org-agenda-start-on-weekday)
11312 (t1 (match-string 1))
11313 (t2 (match-string 2)) tt1 tt2)
11314 (setq tt1 (time-to-days (org-time-string-to-time t1))
11315 tt2 (time-to-days (org-time-string-to-time t2)))
11316 (let ((org-agenda-buffer-tmp-name
11317 (format "*Org Agenda(a:%s)"
11318 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11319 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11320 ((org-at-timestamp-p t)
11321 (let ((org-agenda-buffer-tmp-name
11322 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11323 (org-agenda-list nil (time-to-days (org-time-string-to-time
11324 (substring (match-string 1) 0 10)))
11325 1)))
11326 (t (error "This should not happen"))))
11329 ;;; Following file links
11330 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11331 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11332 (declare-function mailcap-mime-info
11333 "mailcap" (string &optional request no-decode))
11334 (defvar org-wait nil)
11335 (defun org-open-file (path &optional in-emacs line search)
11336 "Open the file at PATH.
11337 First, this expands any special file name abbreviations. Then the
11338 configuration variable `org-file-apps' is checked if it contains an
11339 entry for this file type, and if yes, the corresponding command is launched.
11341 If no application is found, Emacs simply visits the file.
11343 With optional prefix argument IN-EMACS, Emacs will visit the file.
11344 With a double \\[universal-argument] \\[universal-argument] \
11345 prefix arg, Org tries to avoid opening in Emacs
11346 and to use an external application to visit the file.
11348 Optional LINE specifies a line to go to, optional SEARCH a string
11349 to search for. If LINE or SEARCH is given, the file will be
11350 opened in Emacs, unless an entry from org-file-apps that makes
11351 use of groups in a regexp matches.
11353 If you want to change the way frames are used when following a
11354 link, please customize `org-link-frame-setup'.
11356 If the file does not exist, an error is thrown."
11357 (let* ((file (if (equal path "")
11358 buffer-file-name
11359 (substitute-in-file-name (expand-file-name path))))
11360 (file-apps (append org-file-apps (org-default-apps)))
11361 (apps (org-remove-if
11362 'org-file-apps-entry-match-against-dlink-p file-apps))
11363 (apps-dlink (org-remove-if-not
11364 'org-file-apps-entry-match-against-dlink-p file-apps))
11365 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11366 (dirp (if remp nil (file-directory-p file)))
11367 (file (if (and dirp org-open-directory-means-index-dot-org)
11368 (concat (file-name-as-directory file) "index.org")
11369 file))
11370 (a-m-a-p (assq 'auto-mode apps))
11371 (dfile (downcase file))
11372 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11373 (link (cond ((and (eq line nil)
11374 (eq search nil))
11375 file)
11376 (line
11377 (concat file "::" (number-to-string line)))
11378 (search
11379 (concat file "::" search))))
11380 (dlink (downcase link))
11381 (old-buffer (current-buffer))
11382 (old-pos (point))
11383 (old-mode major-mode)
11384 ext cmd link-match-data)
11385 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11386 (setq ext (match-string 1 dfile))
11387 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11388 (setq ext (match-string 1 dfile))))
11389 (cond
11390 ((member in-emacs '((16) system))
11391 (setq cmd (cdr (assoc 'system apps))))
11392 (in-emacs (setq cmd 'emacs))
11394 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11395 (and dirp (cdr (assoc 'directory apps)))
11396 ; first, try matching against apps-dlink
11397 ; if we get a match here, store the match data for later
11398 (let ((match (assoc-default dlink apps-dlink
11399 'string-match)))
11400 (if match
11401 (progn (setq link-match-data (match-data))
11402 match)
11403 (progn (setq in-emacs (or in-emacs line search))
11404 nil))) ; if we have no match in apps-dlink,
11405 ; always open the file in emacs if line or search
11406 ; is given (for backwards compatibility)
11407 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11408 'string-match)
11409 (cdr (assoc ext apps))
11410 (cdr (assoc t apps))))))
11411 (when (eq cmd 'system)
11412 (setq cmd (cdr (assoc 'system apps))))
11413 (when (eq cmd 'default)
11414 (setq cmd (cdr (assoc t apps))))
11415 (when (eq cmd 'mailcap)
11416 (require 'mailcap)
11417 (mailcap-parse-mailcaps)
11418 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11419 (command (mailcap-mime-info mime-type)))
11420 (if (stringp command)
11421 (setq cmd command)
11422 (setq cmd 'emacs))))
11423 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11424 (not (file-exists-p file))
11425 (not org-open-non-existing-files))
11426 (user-error "No such file: %s" file))
11427 (cond
11428 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11429 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11430 (while (string-match "['\"]%s['\"]" cmd)
11431 (setq cmd (replace-match "%s" t t cmd)))
11432 (while (string-match "%s" cmd)
11433 (setq cmd (replace-match
11434 (save-match-data
11435 (shell-quote-argument
11436 (convert-standard-filename file)))
11437 t t cmd)))
11439 ;; Replace "%1", "%2" etc. in command with group matches from regex
11440 (save-match-data
11441 (let ((match-index 1)
11442 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11443 (set-match-data link-match-data)
11444 (while (<= match-index number-of-groups)
11445 (let ((regex (concat "%" (number-to-string match-index)))
11446 (replace-with (match-string match-index dlink)))
11447 (while (string-match regex cmd)
11448 (setq cmd (replace-match replace-with t t cmd))))
11449 (setq match-index (+ match-index 1)))))
11451 (save-window-excursion
11452 (message "Running %s...done" cmd)
11453 (start-process-shell-command cmd nil cmd)
11454 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11455 ((or (stringp cmd)
11456 (eq cmd 'emacs))
11457 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11458 (widen)
11459 (if line (progn (org-goto-line line)
11460 (if (derived-mode-p 'org-mode)
11461 (org-reveal)))
11462 (if search (org-link-search search))))
11463 ((consp cmd)
11464 (let ((file (convert-standard-filename file)))
11465 (save-match-data
11466 (set-match-data link-match-data)
11467 (eval cmd))))
11468 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11469 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11470 (or (not (equal old-buffer (current-buffer)))
11471 (not (equal old-pos (point))))
11472 (org-mark-ring-push old-pos old-buffer))))
11474 (defun org-file-apps-entry-match-against-dlink-p (entry)
11475 "This function returns non-nil if `entry' uses a regular
11476 expression which should be matched against the whole link by
11477 org-open-file.
11479 It assumes that is the case when the entry uses a regular
11480 expression which has at least one grouping construct and the
11481 action is either a lisp form or a command string containing
11482 `%1', i.e. using at least one subexpression match as a
11483 parameter."
11484 (let ((selector (car entry))
11485 (action (cdr entry)))
11486 (if (stringp selector)
11487 (and (> (regexp-opt-depth selector) 0)
11488 (or (and (stringp action)
11489 (string-match "%[0-9]" action))
11490 (consp action)))
11491 nil)))
11493 (defun org-default-apps ()
11494 "Return the default applications for this operating system."
11495 (cond
11496 ((eq system-type 'darwin)
11497 org-file-apps-defaults-macosx)
11498 ((eq system-type 'windows-nt)
11499 org-file-apps-defaults-windowsnt)
11500 (t org-file-apps-defaults-gnu)))
11502 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11503 "Convert extensions to regular expressions in the cars of LIST.
11504 Also, weed out any non-string entries, because the return value is used
11505 only for regexp matching.
11506 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11507 point to the symbol `emacs', indicating that the file should
11508 be opened in Emacs."
11509 (append
11510 (delq nil
11511 (mapcar (lambda (x)
11512 (if (not (stringp (car x)))
11514 (if (string-match "\\W" (car x))
11516 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11517 list))
11518 (if add-auto-mode
11519 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11521 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11522 (defun org-file-remote-p (file)
11523 "Test whether FILE specifies a location on a remote system.
11524 Return non-nil if the location is indeed remote.
11526 For example, the filename \"/user@host:/foo\" specifies a location
11527 on the system \"/user@host:\"."
11528 (cond ((fboundp 'file-remote-p)
11529 (file-remote-p file))
11530 ((fboundp 'tramp-handle-file-remote-p)
11531 (tramp-handle-file-remote-p file))
11532 ((and (boundp 'ange-ftp-name-format)
11533 (string-match (car ange-ftp-name-format) file))
11534 t)))
11537 ;;;; Refiling
11539 (defun org-get-org-file ()
11540 "Read a filename, with default directory `org-directory'."
11541 (let ((default (or org-default-notes-file remember-data-file)))
11542 (read-file-name (format "File name [%s]: " default)
11543 (file-name-as-directory org-directory)
11544 default)))
11546 (defun org-notes-order-reversed-p ()
11547 "Check if the current file should receive notes in reversed order."
11548 (cond
11549 ((not org-reverse-note-order) nil)
11550 ((eq t org-reverse-note-order) t)
11551 ((not (listp org-reverse-note-order)) nil)
11552 (t (catch 'exit
11553 (dolist (entry org-reverse-note-order)
11554 (if (string-match (car entry) buffer-file-name)
11555 (throw 'exit (cdr entry))))))))
11557 (defvar org-refile-target-table nil
11558 "The list of refile targets, created by `org-refile'.")
11560 (defvar org-agenda-new-buffers nil
11561 "Buffers created to visit agenda files.")
11563 (defvar org-refile-cache nil
11564 "Cache for refile targets.")
11566 (defvar org-refile-markers nil
11567 "All the markers used for caching refile locations.")
11569 (defun org-refile-marker (pos)
11570 "Get a new refile marker, but only if caching is in use."
11571 (if (not org-refile-use-cache)
11573 (let ((m (make-marker)))
11574 (move-marker m pos)
11575 (push m org-refile-markers)
11576 m)))
11578 (defun org-refile-cache-clear ()
11579 "Clear the refile cache and disable all the markers."
11580 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11581 (setq org-refile-markers nil)
11582 (setq org-refile-cache nil)
11583 (message "Refile cache has been cleared"))
11585 (defun org-refile-cache-check-set (set)
11586 "Check if all the markers in the cache still have live buffers."
11587 (let (marker)
11588 (catch 'exit
11589 (while (and set (setq marker (nth 3 (pop set))))
11590 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11591 (when (and marker (null (marker-buffer marker)))
11592 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11593 (sit-for 3)
11594 (throw 'exit nil)))
11595 t)))
11597 (defun org-refile-cache-put (set &rest identifiers)
11598 "Push the refile targets SET into the cache, under IDENTIFIERS."
11599 (let* ((key (sha1 (prin1-to-string identifiers)))
11600 (entry (assoc key org-refile-cache)))
11601 (if entry
11602 (setcdr entry set)
11603 (push (cons key set) org-refile-cache))))
11605 (defun org-refile-cache-get (&rest identifiers)
11606 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11607 (cond
11608 ((not org-refile-cache) nil)
11609 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11611 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11612 org-refile-cache))))
11613 (and set (org-refile-cache-check-set set) set)))))
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 txt re files desc descre fast-path-p level pos0)
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 (setq fast-path-p nil)
11626 (cond
11627 ((null files) (setq files (list (current-buffer))))
11628 ((eq files 'org-agenda-files)
11629 (setq files (org-agenda-files 'unrestricted)))
11630 ((and (symbolp files) (fboundp files))
11631 (setq files (funcall files)))
11632 ((and (symbolp files) (boundp files))
11633 (setq files (symbol-value files))))
11634 (if (stringp files) (setq files (list files)))
11635 (cond
11636 ((eq (car desc) :tag)
11637 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11638 ((eq (car desc) :todo)
11639 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11640 ((eq (car desc) :regexp)
11641 (setq descre (cdr desc)))
11642 ((eq (car desc) :level)
11643 (setq descre (concat "^\\*\\{" (number-to-string
11644 (if org-odd-levels-only
11645 (1- (* 2 (cdr desc)))
11646 (cdr desc)))
11647 "\\}[ \t]")))
11648 ((eq (car desc) :maxlevel)
11649 (setq fast-path-p t)
11650 (setq descre (concat "^\\*\\{1," (number-to-string
11651 (if org-odd-levels-only
11652 (1- (* 2 (cdr desc)))
11653 (cdr desc)))
11654 "\\}[ \t]")))
11655 (t (error "Bad refiling target description %s" desc)))
11656 (dolist (f files)
11657 (with-current-buffer
11658 (if (bufferp f) f (org-get-agenda-file-buffer f))
11660 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11661 (progn
11662 (if (bufferp f) (setq f (buffer-file-name
11663 (buffer-base-buffer f))))
11664 (setq f (and f (expand-file-name f)))
11665 (if (eq org-refile-use-outline-path 'file)
11666 (push (list (file-name-nondirectory f) f nil nil) tgs))
11667 (save-excursion
11668 (save-restriction
11669 (widen)
11670 (goto-char (point-min))
11671 (while (re-search-forward descre nil t)
11672 (goto-char (setq pos0 (point-at-bol)))
11673 (catch 'next
11674 (when org-refile-target-verify-function
11675 (save-match-data
11676 (or (funcall org-refile-target-verify-function)
11677 (throw 'next t))))
11678 (when (and (looking-at org-complex-heading-regexp)
11679 (not (member (match-string 4) excluded-entries))
11680 (match-string 4))
11681 (setq level (org-reduced-level
11682 (- (match-end 1) (match-beginning 1)))
11683 txt (org-link-display-format (match-string 4))
11684 txt (replace-regexp-in-string "\\( *[[0-9]+/?[0-9]*%?]\\)+$" "" txt)
11685 re (format org-complex-heading-regexp-format
11686 (regexp-quote (match-string 4))))
11687 (when org-refile-use-outline-path
11688 (setq txt (mapconcat
11689 'org-protect-slash
11690 (append
11691 (if (eq org-refile-use-outline-path
11692 'file)
11693 (list (file-name-nondirectory
11694 (buffer-file-name
11695 (buffer-base-buffer))))
11696 (if (eq org-refile-use-outline-path
11697 'full-file-path)
11698 (list (buffer-file-name
11699 (buffer-base-buffer)))))
11700 (org-get-outline-path fast-path-p
11701 level txt)
11702 (list txt))
11703 "/")))
11704 (push (list txt f re (org-refile-marker (point)))
11705 tgs)))
11706 (when (= (point) pos0)
11707 ;; verification function has not moved point
11708 (goto-char (point-at-eol))))))))
11709 (when org-refile-use-cache
11710 (org-refile-cache-put tgs (buffer-file-name) descre))
11711 (setq targets (append tgs targets))))))
11712 (message "Getting targets...done")
11713 (nreverse targets)))
11715 (defun org-protect-slash (s)
11716 (while (string-match "/" s)
11717 (setq s (replace-match "\\" t t s)))
11720 (defvar org-olpa (make-vector 20 nil))
11722 (defun org-get-outline-path (&optional fastp level heading)
11723 "Return the outline path to the current entry, as a list.
11725 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11726 routine which makes outline path derivations for an entire file,
11727 avoiding backtracing. Refile target collection makes use of that."
11728 (if fastp
11729 (progn
11730 (if (> level 19)
11731 (error "Outline path failure, more than 19 levels"))
11732 (loop for i from level upto 19 do
11733 (aset org-olpa i nil))
11734 (prog1
11735 (delq nil (append org-olpa nil))
11736 (aset org-olpa level heading)))
11737 (let (rtn case-fold-search)
11738 (save-excursion
11739 (save-restriction
11740 (widen)
11741 (while (org-up-heading-safe)
11742 (when (looking-at org-complex-heading-regexp)
11743 (push (org-trim
11744 (replace-regexp-in-string
11745 ;; Remove statistical/checkboxes cookies
11746 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11747 (org-match-string-no-properties 4)))
11748 rtn)))
11749 rtn)))))
11751 (defun org-format-outline-path (path &optional width prefix separator)
11752 "Format the outline path PATH for display.
11753 WIDTH is the maximum number of characters that is available.
11754 PREFIX is a prefix to be included in the returned string,
11755 such as the file name.
11756 SEPARATOR is inserted between the different parts of the path,
11757 the default is \"/\"."
11758 (setq width (or width 79))
11759 (setq path (delq nil path))
11760 (unless (> width 0)
11761 (user-error "Argument `width' must be positive"))
11762 (setq separator (or separator "/"))
11763 (let* ((org-odd-levels-only nil)
11764 (fpath (concat
11765 prefix (and prefix path separator)
11766 (mapconcat
11767 (lambda (s) (replace-regexp-in-string "[ \t]+\\'" "" s))
11768 (loop for head in path
11769 for n from 0
11770 collect (org-add-props
11771 head nil 'face
11772 (nth (% n org-n-level-faces) org-level-faces)))
11773 separator))))
11774 (when (> (length fpath) width)
11775 (if (< width 7)
11776 ;; It's unlikely that `width' will be this small, but don't
11777 ;; waste characters by adding ".." if it is.
11778 (setq fpath (substring fpath 0 width))
11779 (setf (substring fpath (- width 2)) "..")))
11780 fpath))
11782 (defun org-display-outline-path (&optional file current separator just-return-string)
11783 "Display the current outline path in the echo area.
11785 If FILE is non-nil, prepend the output with the file name.
11786 If CURRENT is non-nil, append the current heading to the output.
11787 SEPARATOR is passed through to `org-format-outline-path'. It separates
11788 the different parts of the path and defaults to \"/\".
11789 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11790 (interactive "P")
11791 (let* (case-fold-search
11792 (bfn (buffer-file-name (buffer-base-buffer)))
11793 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11794 res)
11795 (if current (setq path (append path
11796 (save-excursion
11797 (org-back-to-heading t)
11798 (if (looking-at org-complex-heading-regexp)
11799 (list (match-string 4)))))))
11800 (setq res
11801 (org-format-outline-path
11802 path
11803 (1- (frame-width))
11804 (and file bfn (concat (file-name-nondirectory bfn) separator))
11805 separator))
11806 (if just-return-string
11807 (org-no-properties res)
11808 (org-unlogged-message "%s" res))))
11810 (defvar org-refile-history nil
11811 "History for refiling operations.")
11813 (defvar org-after-refile-insert-hook nil
11814 "Hook run after `org-refile' has inserted its stuff at the new location.
11815 Note that this is still *before* the stuff will be removed from
11816 the *old* location.")
11818 (defvar org-capture-last-stored-marker)
11819 (defvar org-refile-keep nil
11820 "Non-nil means `org-refile' will copy instead of refile.")
11822 (defun org-copy ()
11823 "Like `org-refile', but copy."
11824 (interactive)
11825 (let ((org-refile-keep t))
11826 (funcall 'org-refile nil nil nil "Copy")))
11828 (defun org-refile (&optional arg default-buffer rfloc msg)
11829 "Move the entry or entries at point to another heading.
11830 The list of target headings is compiled using the information in
11831 `org-refile-targets', which see.
11833 At the target location, the entry is filed as a subitem of the
11834 target heading. Depending on `org-reverse-note-order', the new
11835 subitem will either be the first or the last subitem.
11837 If there is an active region, all entries in that region will be
11838 refiled. However, the region must fulfill the requirement that
11839 the first heading sets the top-level of the moved text.
11841 With prefix arg ARG, the command will only visit the target
11842 location and not actually move anything.
11844 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11845 refiling operation has put the subtree.
11847 With a numeric prefix argument of `2', refile to the running clock.
11849 With a numeric prefix argument of `3', emulate `org-refile-keep'
11850 being set to t and copy to the target location, don't move it.
11851 Beware that keeping refiled entries may result in duplicated ID
11852 properties.
11854 RFLOC can be a refile location obtained in a different way.
11856 MSG is a string to replace \"Refile\" in the default prompt with
11857 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11859 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11861 If you are using target caching (see `org-refile-use-cache'), you
11862 have to clear the target cache in order to find new targets.
11863 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11864 prefix argument (`C-u C-u C-u C-c C-w')."
11865 (interactive "P")
11866 (if (member arg '(0 (64)))
11867 (org-refile-cache-clear)
11868 (let* ((actionmsg (cond (msg msg)
11869 ((equal arg 3) "Refile (and keep)")
11870 (t "Refile")))
11871 (cbuf (current-buffer))
11872 (regionp (org-region-active-p))
11873 (region-start (and regionp (region-beginning)))
11874 (region-end (and regionp (region-end)))
11875 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11876 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11877 pos it nbuf file re level reversed)
11878 (setq last-command nil)
11879 (when regionp
11880 (goto-char region-start)
11881 (or (bolp) (goto-char (point-at-bol)))
11882 (setq region-start (point))
11883 (unless (or (org-kill-is-subtree-p
11884 (buffer-substring region-start region-end))
11885 (prog1 org-refile-active-region-within-subtree
11886 (let ((s (point-at-eol)))
11887 (org-toggle-heading)
11888 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11889 (user-error "The region is not a (sequence of) subtree(s)")))
11890 (if (equal arg '(16))
11891 (org-refile-goto-last-stored)
11892 (when (or
11893 (and (equal arg 2)
11894 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11895 (prog1
11896 (setq it (list (or org-clock-heading "running clock")
11897 (buffer-file-name
11898 (marker-buffer org-clock-hd-marker))
11900 (marker-position org-clock-hd-marker)))
11901 (setq arg nil)))
11902 (setq it (or rfloc
11903 (let (heading-text)
11904 (save-excursion
11905 (unless (and arg (listp arg))
11906 (org-back-to-heading t)
11907 (setq heading-text
11908 (replace-regexp-in-string
11909 org-bracket-link-regexp
11910 "\\3"
11911 (nth 4 (org-heading-components)))))
11912 (org-refile-get-location
11913 (cond ((and arg (listp arg)) "Goto")
11914 (regionp (concat actionmsg " region to"))
11915 (t (concat actionmsg " subtree \""
11916 heading-text "\" to")))
11917 default-buffer
11918 (and (not (equal '(4) arg))
11919 org-refile-allow-creating-parent-nodes)
11920 arg))))))
11921 (setq file (nth 1 it)
11922 re (nth 2 it)
11923 pos (nth 3 it))
11924 (if (and (not arg)
11926 (equal (buffer-file-name) file)
11927 (if regionp
11928 (and (>= pos region-start)
11929 (<= pos region-end))
11930 (and (>= pos (point))
11931 (< pos (save-excursion
11932 (org-end-of-subtree t t))))))
11933 (error "Cannot refile to position inside the tree or region"))
11934 (setq nbuf (or (find-buffer-visiting file)
11935 (find-file-noselect file)))
11936 (if (and arg (not (equal arg 3)))
11937 (progn
11938 (org-pop-to-buffer-same-window nbuf)
11939 (goto-char pos)
11940 (org-show-context 'org-goto))
11941 (if regionp
11942 (progn
11943 (org-kill-new (buffer-substring region-start region-end))
11944 (org-save-markers-in-region region-start region-end))
11945 (org-copy-subtree 1 nil t))
11946 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11947 (find-file-noselect file)))
11948 (setq reversed (org-notes-order-reversed-p))
11949 (save-excursion
11950 (save-restriction
11951 (widen)
11952 (if pos
11953 (progn
11954 (goto-char pos)
11955 (looking-at org-outline-regexp)
11956 (setq level (org-get-valid-level (funcall outline-level) 1))
11957 (goto-char
11958 (if reversed
11959 (or (outline-next-heading) (point-max))
11960 (or (save-excursion (org-get-next-sibling))
11961 (org-end-of-subtree t t)
11962 (point-max)))))
11963 (setq level 1)
11964 (if (not reversed)
11965 (goto-char (point-max))
11966 (goto-char (point-min))
11967 (or (outline-next-heading) (goto-char (point-max)))))
11968 (if (not (bolp)) (newline))
11969 (org-paste-subtree level nil nil t)
11970 (when org-log-refile
11971 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11972 (unless (eq org-log-refile 'note)
11973 (save-excursion (org-add-log-note))))
11974 (and org-auto-align-tags
11975 (let ((org-loop-over-headlines-in-active-region nil))
11976 (org-set-tags nil t)))
11977 (let ((bookmark-name (plist-get org-bookmark-names-plist
11978 :last-refile)))
11979 (when bookmark-name
11980 (with-demoted-errors
11981 (bookmark-set bookmark-name))))
11982 ;; If we are refiling for capture, make sure that the
11983 ;; last-capture pointers point here
11984 (when (org-bound-and-true-p org-refile-for-capture)
11985 (let ((bookmark-name (plist-get org-bookmark-names-plist
11986 :last-capture-marker)))
11987 (when bookmark-name
11988 (with-demoted-errors
11989 (bookmark-set bookmark-name))))
11990 (move-marker org-capture-last-stored-marker (point)))
11991 (if (fboundp 'deactivate-mark) (deactivate-mark))
11992 (run-hooks 'org-after-refile-insert-hook))))
11993 (unless org-refile-keep
11994 (if regionp
11995 (delete-region (point) (+ (point) (- region-end region-start)))
11996 (delete-region
11997 (and (org-back-to-heading t) (point))
11998 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11999 (when (featurep 'org-inlinetask)
12000 (org-inlinetask-remove-END-maybe))
12001 (setq org-markers-to-move nil)
12002 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
12004 (defun org-refile-goto-last-stored ()
12005 "Go to the location where the last refile was stored."
12006 (interactive)
12007 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
12008 (message "This is the location of the last refile"))
12010 (defun org-refile--get-location (refloc tbl)
12011 "When user refile to REFLOC, find the associated target in TBL.
12012 Also check `org-refile-target-table'."
12013 (car (delq
12015 (mapcar
12016 (lambda (r) (or (assoc r tbl)
12017 (assoc r org-refile-target-table)))
12018 (list (replace-regexp-in-string "/$" "" refloc)
12019 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
12021 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
12022 no-exclude)
12023 "Prompt the user for a refile location, using PROMPT.
12024 PROMPT should not be suffixed with a colon and a space, because
12025 this function appends the default value from
12026 `org-refile-history' automatically, if that is not empty.
12027 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
12028 this is used for the GOTO interface."
12029 (let ((org-refile-targets org-refile-targets)
12030 (org-refile-use-outline-path org-refile-use-outline-path)
12031 excluded-entries)
12032 (when (and (derived-mode-p 'org-mode)
12033 (not org-refile-use-cache)
12034 (not no-exclude))
12035 (org-map-tree
12036 (lambda()
12037 (setq excluded-entries
12038 (append excluded-entries (list (org-get-heading t t)))))))
12039 (setq org-refile-target-table
12040 (org-refile-get-targets default-buffer excluded-entries)))
12041 (unless org-refile-target-table
12042 (user-error "No refile targets"))
12043 (let* ((cbuf (current-buffer))
12044 (partial-completion-mode nil)
12045 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12046 (cfunc (if (and org-refile-use-outline-path
12047 org-outline-path-complete-in-steps)
12048 'org-olpath-completing-read
12049 'org-icompleting-read))
12050 (extra (if org-refile-use-outline-path "/" ""))
12051 (cbnex (concat (buffer-name) extra))
12052 (filename (and cfn (expand-file-name cfn)))
12053 (tbl (mapcar
12054 (lambda (x)
12055 (if (and (not (member org-refile-use-outline-path
12056 '(file full-file-path)))
12057 (not (equal filename (nth 1 x))))
12058 (cons (concat (car x) extra " ("
12059 (file-name-nondirectory (nth 1 x)) ")")
12060 (cdr x))
12061 (cons (concat (car x) extra) (cdr x))))
12062 org-refile-target-table))
12063 (completion-ignore-case t)
12064 cdef
12065 (prompt (concat prompt
12066 (or (and (car org-refile-history)
12067 (concat " (default " (car org-refile-history) ")"))
12068 (and (assoc cbnex tbl) (setq cdef cbnex)
12069 (concat " (default " cbnex ")"))) ": "))
12070 pa answ parent-target child parent old-hist)
12071 (setq old-hist org-refile-history)
12072 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12073 nil 'org-refile-history (or cdef (car org-refile-history))))
12074 (if (setq pa (org-refile--get-location answ tbl))
12075 (progn
12076 (org-refile-check-position pa)
12077 (when (or (not org-refile-history)
12078 (not (eq old-hist org-refile-history))
12079 (not (equal (car pa) (car org-refile-history))))
12080 (setq org-refile-history
12081 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12082 org-refile-history
12083 (cdr org-refile-history))))
12084 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12085 (pop org-refile-history)))
12087 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12088 (progn
12089 (setq parent (match-string 1 answ)
12090 child (match-string 2 answ))
12091 (setq parent-target (org-refile--get-location parent tbl))
12092 (when (and parent-target
12093 (or (eq new-nodes t)
12094 (and (eq new-nodes 'confirm)
12095 (y-or-n-p (format "Create new node \"%s\"? "
12096 child)))))
12097 (org-refile-new-child parent-target child)))
12098 (user-error "Invalid target location")))))
12100 (declare-function org-string-nw-p "org-macs" (s))
12101 (defun org-refile-check-position (refile-pointer)
12102 "Check if the refile pointer matches the headline to which it points."
12103 (let* ((file (nth 1 refile-pointer))
12104 (re (nth 2 refile-pointer))
12105 (pos (nth 3 refile-pointer))
12106 buffer)
12107 (if (and (not (markerp pos)) (not file))
12108 (user-error "Please indicate a target file in the refile path")
12109 (when (org-string-nw-p re)
12110 (setq buffer (if (markerp pos)
12111 (marker-buffer pos)
12112 (or (find-buffer-visiting file)
12113 (find-file-noselect file))))
12114 (with-current-buffer buffer
12115 (save-excursion
12116 (save-restriction
12117 (widen)
12118 (goto-char pos)
12119 (beginning-of-line 1)
12120 (unless (org-looking-at-p re)
12121 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12123 (defun org-refile-new-child (parent-target child)
12124 "Use refile target PARENT-TARGET to add new CHILD below it."
12125 (unless parent-target
12126 (error "Cannot find parent for new node"))
12127 (let ((file (nth 1 parent-target))
12128 (pos (nth 3 parent-target))
12129 level)
12130 (with-current-buffer (or (find-buffer-visiting file)
12131 (find-file-noselect file))
12132 (save-excursion
12133 (save-restriction
12134 (widen)
12135 (if pos
12136 (goto-char pos)
12137 (goto-char (point-max))
12138 (if (not (bolp)) (newline)))
12139 (when (looking-at org-outline-regexp)
12140 (setq level (funcall outline-level))
12141 (org-end-of-subtree t t))
12142 (org-back-over-empty-lines)
12143 (insert "\n" (make-string
12144 (if pos (org-get-valid-level level 1) 1) ?*)
12145 " " child "\n")
12146 (beginning-of-line 0)
12147 (list (concat (car parent-target) "/" child) file "" (point)))))))
12149 (defun org-olpath-completing-read (prompt collection &rest args)
12150 "Read an outline path like a file name."
12151 (let ((thetable collection)
12152 (org-completion-use-ido nil) ; does not work with ido.
12153 (org-completion-use-iswitchb nil)) ; or iswitchb
12154 (apply #'org-icompleting-read
12155 prompt
12156 (lambda (string predicate &optional flag)
12157 (cond
12158 ((eq flag nil) (try-completion string thetable))
12159 ((eq flag t)
12160 (let ((l (length string)))
12161 (mapcar (lambda (x)
12162 (let ((r (substring x l))
12163 (f (if (string-match " ([^)]*)$" x)
12164 (match-string 0 x)
12165 "")))
12166 (if (string-match "/" r)
12167 (concat string (substring r 0 (match-end 0)) f)
12168 x)))
12169 (all-completions string thetable predicate))))
12170 ;; Exact match?
12171 ((eq flag 'lambda) (assoc string thetable))))
12172 args)))
12174 ;;;; Dynamic blocks
12176 (defun org-find-dblock (name)
12177 "Find the first dynamic block with name NAME in the buffer.
12178 If not found, stay at current position and return nil."
12179 (let ((case-fold-search t) pos)
12180 (save-excursion
12181 (goto-char (point-min))
12182 (setq pos (and (re-search-forward
12183 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12184 (match-beginning 0))))
12185 (if pos (goto-char pos))
12186 pos))
12188 (defun org-create-dblock (plist)
12189 "Create a dynamic block section, with parameters taken from PLIST.
12190 PLIST must contain a :name entry which is used as the name of the block."
12191 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12192 (end-of-line 1)
12193 (newline))
12194 (let ((col (current-column))
12195 (name (plist-get plist :name)))
12196 (insert "#+BEGIN: " name)
12197 (while plist
12198 (if (eq (car plist) :name)
12199 (setq plist (cddr plist))
12200 (insert " " (prin1-to-string (pop plist)))))
12201 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12202 (beginning-of-line -2)))
12204 (defun org-prepare-dblock ()
12205 "Prepare dynamic block for refresh.
12206 This empties the block, puts the cursor at the insert position and returns
12207 the property list including an extra property :name with the block name."
12208 (unless (looking-at org-dblock-start-re)
12209 (user-error "Not at a dynamic block"))
12210 (let* ((begdel (1+ (match-end 0)))
12211 (name (org-no-properties (match-string 1)))
12212 (params (append (list :name name)
12213 (read (concat "(" (match-string 3) ")")))))
12214 (save-excursion
12215 (beginning-of-line 1)
12216 (skip-chars-forward " \t")
12217 (setq params (plist-put params :indentation-column (current-column))))
12218 (unless (re-search-forward org-dblock-end-re nil t)
12219 (error "Dynamic block not terminated"))
12220 (setq params
12221 (append params
12222 (list :content (buffer-substring
12223 begdel (match-beginning 0)))))
12224 (delete-region begdel (match-beginning 0))
12225 (goto-char begdel)
12226 (open-line 1)
12227 params))
12229 (defun org-map-dblocks (&optional command)
12230 "Apply COMMAND to all dynamic blocks in the current buffer.
12231 If COMMAND is not given, use `org-update-dblock'."
12232 (let ((cmd (or command 'org-update-dblock)))
12233 (save-excursion
12234 (goto-char (point-min))
12235 (while (re-search-forward org-dblock-start-re nil t)
12236 (goto-char (match-beginning 0))
12237 (save-excursion
12238 (condition-case nil
12239 (funcall cmd)
12240 (error (message "Error during update of dynamic block"))))
12241 (unless (re-search-forward org-dblock-end-re nil t)
12242 (error "Dynamic block not terminated"))))))
12244 (defun org-dblock-update (&optional arg)
12245 "User command for updating dynamic blocks.
12246 Update the dynamic block at point. With prefix ARG, update all dynamic
12247 blocks in the buffer."
12248 (interactive "P")
12249 (if arg
12250 (org-update-all-dblocks)
12251 (or (looking-at org-dblock-start-re)
12252 (org-beginning-of-dblock))
12253 (org-update-dblock)))
12255 (defun org-update-dblock ()
12256 "Update the dynamic block at point.
12257 This means to empty the block, parse for parameters and then call
12258 the correct writing function."
12259 (interactive)
12260 (save-excursion
12261 (let* ((win (selected-window))
12262 (pos (point))
12263 (line (org-current-line))
12264 (params (org-prepare-dblock))
12265 (name (plist-get params :name))
12266 (indent (plist-get params :indentation-column))
12267 (cmd (intern (concat "org-dblock-write:" name))))
12268 (message "Updating dynamic block `%s' at line %d..." name line)
12269 (funcall cmd params)
12270 (message "Updating dynamic block `%s' at line %d...done" name line)
12271 (goto-char pos)
12272 (when (and indent (> indent 0))
12273 (setq indent (make-string indent ?\ ))
12274 (save-excursion
12275 (select-window win)
12276 (org-beginning-of-dblock)
12277 (forward-line 1)
12278 (while (not (looking-at org-dblock-end-re))
12279 (insert indent)
12280 (beginning-of-line 2))
12281 (when (looking-at org-dblock-end-re)
12282 (and (looking-at "[ \t]+")
12283 (replace-match ""))
12284 (insert indent)))))))
12286 (defun org-beginning-of-dblock ()
12287 "Find the beginning of the dynamic block at point.
12288 Error if there is no such block at point."
12289 (let ((pos (point))
12290 beg)
12291 (end-of-line 1)
12292 (if (and (re-search-backward org-dblock-start-re nil t)
12293 (setq beg (match-beginning 0))
12294 (re-search-forward org-dblock-end-re nil t)
12295 (> (match-end 0) pos))
12296 (goto-char beg)
12297 (goto-char pos)
12298 (error "Not in a dynamic block"))))
12300 (defun org-update-all-dblocks ()
12301 "Update all dynamic blocks in the buffer.
12302 This function can be used in a hook."
12303 (interactive)
12304 (when (derived-mode-p 'org-mode)
12305 (org-map-dblocks 'org-update-dblock)))
12308 ;;;; Completion
12310 (declare-function org-export-backend-name "org-export" (cl-x))
12311 (declare-function org-export-backend-options "org-export" (cl-x))
12312 (defun org-get-export-keywords ()
12313 "Return a list of all currently understood export keywords.
12314 Export keywords include options, block names, attributes and
12315 keywords relative to each registered export back-end."
12316 (let (keywords)
12317 (dolist (backend
12318 (org-bound-and-true-p org-export-registered-backends)
12319 (delq nil keywords))
12320 ;; Back-end name (for keywords, like #+LATEX:)
12321 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12322 (dolist (option-entry (org-export-backend-options backend))
12323 ;; Back-end options.
12324 (push (nth 1 option-entry) keywords)))))
12326 (defconst org-options-keywords
12327 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12328 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12329 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12330 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12331 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12333 (defcustom org-structure-template-alist
12334 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12335 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12336 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12337 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12338 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12339 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12340 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12341 ("L" "#+LaTeX: ")
12342 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12343 ("H" "#+HTML: ")
12344 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12345 ("A" "#+ASCII: ")
12346 ("i" "#+INDEX: ?")
12347 ("I" "#+INCLUDE: %file ?"))
12348 "Structure completion elements.
12349 This is a list of abbreviation keys and values. The value gets inserted
12350 if you type `<' followed by the key and then press the completion key,
12351 usually `TAB'. %file will be replaced by a file name after prompting
12352 for the file using completion. The cursor will be placed at the position
12353 of the `?' in the template.
12354 There are two templates for each key, the first uses the original Org syntax,
12355 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12356 the default when the /org-mtags.el/ module has been loaded. See also the
12357 variable `org-mtags-prefer-muse-templates'."
12358 :group 'org-completion
12359 :type '(repeat
12360 (list
12361 (string :tag "Key")
12362 (string :tag "Template")))
12363 :version "25.1"
12364 :package-version '(Org . "8.3"))
12366 (defun org-try-structure-completion ()
12367 "Try to complete a structure template before point.
12368 This looks for strings like \"<e\" on an otherwise empty line and
12369 expands them."
12370 (let ((l (buffer-substring (point-at-bol) (point)))
12372 (when (and (looking-at "[ \t]*$")
12373 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12374 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12375 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12376 (match-beginning 1)) a)
12377 t)))
12379 (defun org-complete-expand-structure-template (start cell)
12380 "Expand a structure template."
12381 (let ((rpl (nth 1 cell))
12382 (ind ""))
12383 (delete-region start (point))
12384 (when (string-match "\\`[ \t]*#\\+" rpl)
12385 (cond
12386 ((bolp))
12387 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12388 (setq ind (buffer-substring (point-at-bol) (point))))
12389 (t (newline))))
12390 (setq start (point))
12391 (if (string-match "%file" rpl)
12392 (setq rpl (replace-match
12393 (concat
12394 "\""
12395 (save-match-data
12396 (abbreviate-file-name (read-file-name "Include file: ")))
12397 "\"")
12398 t t rpl)))
12399 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12400 (concat "\n" ind)))
12401 (insert rpl)
12402 (if (re-search-backward "\\?" start t) (delete-char 1))))
12404 ;;;; TODO, DEADLINE, Comments
12406 (defun org-toggle-comment ()
12407 "Change the COMMENT state of an entry."
12408 (interactive)
12409 (save-excursion
12410 (org-back-to-heading)
12411 (looking-at org-complex-heading-regexp)
12412 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12413 (skip-chars-forward " \t")
12414 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12415 (if (org-in-commented-heading-p t)
12416 (delete-region (point)
12417 (progn (search-forward " " (line-end-position) 'move)
12418 (skip-chars-forward " \t")
12419 (point)))
12420 (insert org-comment-string)
12421 (unless (eolp) (insert " ")))))
12423 (defvar org-last-todo-state-is-todo nil
12424 "This is non-nil when the last TODO state change led to a TODO state.
12425 If the last change removed the TODO tag or switched to DONE, then
12426 this is nil.")
12428 (defvar org-setting-tags nil) ; dynamically skipped
12430 (defvar org-todo-setup-filter-hook nil
12431 "Hook for functions that pre-filter todo specs.
12432 Each function takes a todo spec and returns either nil or the spec
12433 transformed into canonical form." )
12435 (defvar org-todo-get-default-hook nil
12436 "Hook for functions that get a default item for todo.
12437 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12438 nil or a string to be used for the todo mark." )
12440 (defvar org-agenda-headline-snapshot-before-repeat)
12442 (defun org-current-effective-time ()
12443 "Return current time adjusted for `org-extend-today-until' variable."
12444 (let* ((ct (org-current-time))
12445 (dct (decode-time ct))
12446 (ct1
12447 (cond
12448 (org-use-last-clock-out-time-as-effective-time
12449 (or (org-clock-get-last-clock-out-time) ct))
12450 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12451 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12452 (t ct))))
12453 ct1))
12455 (defun org-todo-yesterday (&optional arg)
12456 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12457 (interactive "P")
12458 (if (eq major-mode 'org-agenda-mode)
12459 (apply 'org-agenda-todo-yesterday arg)
12460 (let* ((org-use-effective-time t)
12461 (hour (third (decode-time
12462 (org-current-time))))
12463 (org-extend-today-until (1+ hour)))
12464 (org-todo arg))))
12466 (defvar org-block-entry-blocking ""
12467 "First entry preventing the TODO state change.")
12469 (defun org-cancel-repeater ()
12470 "Cancel a repeater by setting its numeric value to zero."
12471 (interactive)
12472 (save-excursion
12473 (org-back-to-heading t)
12474 (let ((bound1 (point))
12475 (bound0 (save-excursion (outline-next-heading) (point))))
12476 (when (re-search-forward
12477 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12478 org-deadline-time-regexp "\\)\\|\\("
12479 org-ts-regexp "\\)")
12480 bound0 t)
12481 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12482 (replace-match "0" t nil nil 1))))))
12484 (defun org-todo (&optional arg)
12485 "Change the TODO state of an item.
12486 The state of an item is given by a keyword at the start of the heading,
12487 like
12488 *** TODO Write paper
12489 *** DONE Call mom
12491 The different keywords are specified in the variable `org-todo-keywords'.
12492 By default the available states are \"TODO\" and \"DONE\".
12493 So for this example: when the item starts with TODO, it is changed to DONE.
12494 When it starts with DONE, the DONE is removed. And when neither TODO nor
12495 DONE are present, add TODO at the beginning of the heading.
12497 With \\[universal-argument] prefix arg, use completion to determine the new \
12498 state.
12499 With numeric prefix arg, switch to that state.
12500 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12501 keywords (nextset).
12502 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12503 With a numeric prefix arg of 0, inhibit note taking for the change.
12504 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12506 When called through ELisp, arg is also interpreted in the following way:
12507 `none' -> empty state
12508 \"\"(empty string) -> switch to empty state
12509 `done' -> switch to DONE
12510 `nextset' -> switch to the next set of keywords
12511 `previousset' -> switch to the previous set of keywords
12512 \"WAITING\" -> switch to the specified keyword, but only if it
12513 really is a member of `org-todo-keywords'."
12514 (interactive "P")
12515 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12516 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12517 'region-start-level 'region))
12518 org-loop-over-headlines-in-active-region)
12519 (org-map-entries
12520 `(org-todo ,arg)
12521 org-loop-over-headlines-in-active-region
12522 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12523 (if (equal arg '(16)) (setq arg 'nextset))
12524 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12525 (let ((org-blocker-hook org-blocker-hook)
12526 commentp
12527 case-fold-search)
12528 (when (equal arg '(64))
12529 (setq arg nil org-blocker-hook nil))
12530 (when (and org-blocker-hook
12531 (or org-inhibit-blocking
12532 (org-entry-get nil "NOBLOCKING")))
12533 (setq org-blocker-hook nil))
12534 (save-excursion
12535 (catch 'exit
12536 (org-back-to-heading t)
12537 (when (org-in-commented-heading-p t)
12538 (org-toggle-comment)
12539 (setq commentp t))
12540 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12541 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12542 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12543 (let* ((match-data (match-data))
12544 (startpos (point-at-bol))
12545 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12546 (org-log-done org-log-done)
12547 (org-log-repeat org-log-repeat)
12548 (org-todo-log-states org-todo-log-states)
12549 (org-inhibit-logging
12550 (if (equal arg 0)
12551 (progn (setq arg nil) 'note) org-inhibit-logging))
12552 (this (match-string 1))
12553 (hl-pos (match-beginning 0))
12554 (head (org-get-todo-sequence-head this))
12555 (ass (assoc head org-todo-kwd-alist))
12556 (interpret (nth 1 ass))
12557 (done-word (nth 3 ass))
12558 (final-done-word (nth 4 ass))
12559 (org-last-state (or this ""))
12560 (completion-ignore-case t)
12561 (member (member this org-todo-keywords-1))
12562 (tail (cdr member))
12563 (org-state (cond
12564 ((and org-todo-key-trigger
12565 (or (and (equal arg '(4))
12566 (eq org-use-fast-todo-selection 'prefix))
12567 (and (not arg) org-use-fast-todo-selection
12568 (not (eq org-use-fast-todo-selection
12569 'prefix)))))
12570 ;; Use fast selection
12571 (org-fast-todo-selection))
12572 ((and (equal arg '(4))
12573 (or (not org-use-fast-todo-selection)
12574 (not org-todo-key-trigger)))
12575 ;; Read a state with completion
12576 (org-icompleting-read
12577 "State: " (mapcar 'list org-todo-keywords-1)
12578 nil t))
12579 ((eq arg 'right)
12580 (if this
12581 (if tail (car tail) nil)
12582 (car org-todo-keywords-1)))
12583 ((eq arg 'left)
12584 (if (equal member org-todo-keywords-1)
12586 (if this
12587 (nth (- (length org-todo-keywords-1)
12588 (length tail) 2)
12589 org-todo-keywords-1)
12590 (org-last org-todo-keywords-1))))
12591 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12592 (setq arg nil))) ; hack to fall back to cycling
12593 (arg
12594 ;; user or caller requests a specific state
12595 (cond
12596 ((equal arg "") nil)
12597 ((eq arg 'none) nil)
12598 ((eq arg 'done) (or done-word (car org-done-keywords)))
12599 ((eq arg 'nextset)
12600 (or (car (cdr (member head org-todo-heads)))
12601 (car org-todo-heads)))
12602 ((eq arg 'previousset)
12603 (let ((org-todo-heads (reverse org-todo-heads)))
12604 (or (car (cdr (member head org-todo-heads)))
12605 (car org-todo-heads))))
12606 ((car (member arg org-todo-keywords-1)))
12607 ((stringp arg)
12608 (user-error "State `%s' not valid in this file" arg))
12609 ((nth (1- (prefix-numeric-value arg))
12610 org-todo-keywords-1))))
12611 ((null member) (or head (car org-todo-keywords-1)))
12612 ((equal this final-done-word) nil) ;; -> make empty
12613 ((null tail) nil) ;; -> first entry
12614 ((memq interpret '(type priority))
12615 (if (eq this-command last-command)
12616 (car tail)
12617 (if (> (length tail) 0)
12618 (or done-word (car org-done-keywords))
12619 nil)))
12621 (car tail))))
12622 (org-state (or
12623 (run-hook-with-args-until-success
12624 'org-todo-get-default-hook org-state org-last-state)
12625 org-state))
12626 (next (if org-state (concat " " org-state " ") " "))
12627 (change-plist (list :type 'todo-state-change :from this :to org-state
12628 :position startpos))
12629 dolog now-done-p)
12630 (when org-blocker-hook
12631 (setq org-last-todo-state-is-todo
12632 (not (member this org-done-keywords)))
12633 (unless (save-excursion
12634 (save-match-data
12635 (org-with-wide-buffer
12636 (run-hook-with-args-until-failure
12637 'org-blocker-hook change-plist))))
12638 (if (org-called-interactively-p 'interactive)
12639 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12640 this org-state org-block-entry-blocking)
12641 ;; fail silently
12642 (message "TODO state change from %s to %s blocked (by \"%s\")"
12643 this org-state org-block-entry-blocking)
12644 (throw 'exit nil))))
12645 (store-match-data match-data)
12646 (replace-match next t t)
12647 (cond ((equal this org-state)
12648 (message "TODO state was already %s" (org-trim next)))
12649 ((pos-visible-in-window-p hl-pos)
12650 (message "TODO state changed to %s" (org-trim next))))
12651 (unless head
12652 (setq head (org-get-todo-sequence-head org-state)
12653 ass (assoc head org-todo-kwd-alist)
12654 interpret (nth 1 ass)
12655 done-word (nth 3 ass)
12656 final-done-word (nth 4 ass)))
12657 (when (memq arg '(nextset previousset))
12658 (message "Keyword-Set %d/%d: %s"
12659 (- (length org-todo-sets) -1
12660 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12661 (length org-todo-sets)
12662 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12663 (setq org-last-todo-state-is-todo
12664 (not (member org-state org-done-keywords)))
12665 (setq now-done-p (and (member org-state org-done-keywords)
12666 (not (member this org-done-keywords))))
12667 (and logging (org-local-logging logging))
12668 (when (and (or org-todo-log-states org-log-done)
12669 (not (eq org-inhibit-logging t))
12670 (not (memq arg '(nextset previousset))))
12671 ;; we need to look at recording a time and note
12672 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12673 (nth 2 (assoc this org-todo-log-states))))
12674 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12675 (setq dolog 'time))
12676 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12677 (and org-state
12678 (member org-state org-not-done-keywords)
12679 (not (member this org-not-done-keywords))))
12680 ;; This is now a todo state and was not one before
12681 ;; If there was a CLOSED time stamp, get rid of it.
12682 (org-add-planning-info nil nil 'closed))
12683 (when (and now-done-p org-log-done)
12684 ;; It is now done, and it was not done before
12685 (org-add-planning-info 'closed (org-current-effective-time))
12686 (if (and (not dolog) (eq 'note org-log-done))
12687 (org-add-log-setup 'done org-state this 'findpos 'note)))
12688 (when (and org-state dolog)
12689 ;; This is a non-nil state, and we need to log it
12690 (org-add-log-setup 'state org-state this 'findpos dolog)))
12691 ;; Fixup tag positioning
12692 (org-todo-trigger-tag-changes org-state)
12693 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12694 (when org-provide-todo-statistics
12695 (org-update-parent-todo-statistics))
12696 (run-hooks 'org-after-todo-state-change-hook)
12697 (if (and arg (not (member org-state org-done-keywords)))
12698 (setq head (org-get-todo-sequence-head org-state)))
12699 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12700 ;; Do we need to trigger a repeat?
12701 (when now-done-p
12702 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12703 ;; This is for the agenda, take a snapshot of the headline.
12704 (save-match-data
12705 (setq org-agenda-headline-snapshot-before-repeat
12706 (org-get-heading))))
12707 (org-auto-repeat-maybe org-state))
12708 ;; Fixup cursor location if close to the keyword
12709 (if (and (outline-on-heading-p)
12710 (not (bolp))
12711 (save-excursion (beginning-of-line 1)
12712 (looking-at org-todo-line-regexp))
12713 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12714 (progn
12715 (goto-char (or (match-end 2) (match-end 1)))
12716 (and (looking-at " ") (just-one-space))))
12717 (when org-trigger-hook
12718 (save-excursion
12719 (run-hook-with-args 'org-trigger-hook change-plist)))
12720 (when commentp (org-toggle-comment))))))))
12722 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12723 "Block turning an entry into a TODO, using the hierarchy.
12724 This checks whether the current task should be blocked from state
12725 changes. Such blocking occurs when:
12727 1. The task has children which are not all in a completed state.
12729 2. A task has a parent with the property :ORDERED:, and there
12730 are siblings prior to the current task with incomplete
12731 status.
12733 3. The parent of the task is blocked because it has siblings that should
12734 be done first, or is child of a block grandparent TODO entry."
12736 (if (not org-enforce-todo-dependencies)
12737 t ; if locally turned off don't block
12738 (catch 'dont-block
12739 ;; If this is not a todo state change, or if this entry is already DONE,
12740 ;; do not block
12741 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12742 (member (plist-get change-plist :from)
12743 (cons 'done org-done-keywords))
12744 (member (plist-get change-plist :to)
12745 (cons 'todo org-not-done-keywords))
12746 (not (plist-get change-plist :to)))
12747 (throw 'dont-block t))
12748 ;; If this task has children, and any are undone, it's blocked
12749 (save-excursion
12750 (org-back-to-heading t)
12751 (let ((this-level (funcall outline-level)))
12752 (outline-next-heading)
12753 (let ((child-level (funcall outline-level)))
12754 (while (and (not (eobp))
12755 (> child-level this-level))
12756 ;; this todo has children, check whether they are all
12757 ;; completed
12758 (if (and (not (org-entry-is-done-p))
12759 (org-entry-is-todo-p))
12760 (progn (setq org-block-entry-blocking (org-get-heading))
12761 (throw 'dont-block nil)))
12762 (outline-next-heading)
12763 (setq child-level (funcall outline-level))))))
12764 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12765 ;; any previous siblings are undone, it's blocked
12766 (save-excursion
12767 (org-back-to-heading t)
12768 (let* ((pos (point))
12769 (parent-pos (and (org-up-heading-safe) (point))))
12770 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12771 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12772 (forward-line 1)
12773 (re-search-forward org-not-done-heading-regexp pos t))
12774 (setq org-block-entry-blocking (match-string 0))
12775 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12776 ;; Search further up the hierarchy, to see if an ancestor is blocked
12777 (while t
12778 (goto-char parent-pos)
12779 (if (not (looking-at org-not-done-heading-regexp))
12780 (throw 'dont-block t)) ; do not block, parent is not a TODO
12781 (setq pos (point))
12782 (setq 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 (org-get-heading)))
12788 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12790 (defcustom org-track-ordered-property-with-tag nil
12791 "Should the ORDERED property also be shown as a tag?
12792 The ORDERED property decides if an entry should require subtasks to be
12793 completed in sequence. Since a property is not very visible, setting
12794 this option means that toggling the ORDERED property with the command
12795 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12796 not relevant for the behavior, but it makes things more visible.
12798 Note that toggling the tag with tags commands will not change the property
12799 and therefore not influence behavior!
12801 This can be t, meaning the tag ORDERED should be used, It can also be a
12802 string to select a different tag for this task."
12803 :group 'org-todo
12804 :type '(choice
12805 (const :tag "No tracking" nil)
12806 (const :tag "Track with ORDERED tag" t)
12807 (string :tag "Use other tag")))
12809 (defun org-toggle-ordered-property ()
12810 "Toggle the ORDERED property of the current entry.
12811 For better visibility, you can track the value of this property with a tag.
12812 See variable `org-track-ordered-property-with-tag'."
12813 (interactive)
12814 (let* ((t1 org-track-ordered-property-with-tag)
12815 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12816 (save-excursion
12817 (org-back-to-heading)
12818 (if (org-entry-get nil "ORDERED")
12819 (progn
12820 (org-delete-property "ORDERED")
12821 (and tag (org-toggle-tag tag 'off))
12822 (message "Subtasks can be completed in arbitrary order"))
12823 (org-entry-put nil "ORDERED" "t")
12824 (and tag (org-toggle-tag tag 'on))
12825 (message "Subtasks must be completed in sequence")))))
12827 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12828 (defun org-block-todo-from-checkboxes (change-plist)
12829 "Block turning an entry into a TODO, using checkboxes.
12830 This checks whether the current task should be blocked from state
12831 changes because there are unchecked boxes in this entry."
12832 (if (not org-enforce-todo-checkbox-dependencies)
12833 t ; if locally turned off don't block
12834 (catch 'dont-block
12835 ;; If this is not a todo state change, or if this entry is already DONE,
12836 ;; do not block
12837 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12838 (member (plist-get change-plist :from)
12839 (cons 'done org-done-keywords))
12840 (member (plist-get change-plist :to)
12841 (cons 'todo org-not-done-keywords))
12842 (not (plist-get change-plist :to)))
12843 (throw 'dont-block t))
12844 ;; If this task has checkboxes that are not checked, it's blocked
12845 (save-excursion
12846 (org-back-to-heading t)
12847 (let ((beg (point)) end)
12848 (outline-next-heading)
12849 (setq end (point))
12850 (goto-char beg)
12851 (if (org-list-search-forward
12852 (concat (org-item-beginning-re)
12853 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12854 "\\[[- ]\\]")
12855 end t)
12856 (progn
12857 (if (boundp 'org-blocked-by-checkboxes)
12858 (setq org-blocked-by-checkboxes t))
12859 (throw 'dont-block nil)))))
12860 t))) ; do not block
12862 (defun org-entry-blocked-p ()
12863 "Non-nil if entry at point is blocked."
12864 (and (not (org-entry-get nil "NOBLOCKING"))
12865 (member (org-entry-get nil "TODO") org-not-done-keywords)
12866 (not (run-hook-with-args-until-failure
12867 'org-blocker-hook
12868 (list :type 'todo-state-change
12869 :position (point)
12870 :from 'todo
12871 :to 'done)))))
12873 (defun org-update-statistics-cookies (all)
12874 "Update the statistics cookie, either from TODO or from checkboxes.
12875 This should be called with the cursor in a line with a statistics cookie."
12876 (interactive "P")
12877 (if all
12878 (progn
12879 (org-update-checkbox-count 'all)
12880 (org-map-entries 'org-update-parent-todo-statistics))
12881 (if (not (org-at-heading-p))
12882 (org-update-checkbox-count)
12883 (let ((pos (point-marker))
12884 end l1 l2)
12885 (ignore-errors (org-back-to-heading t))
12886 (if (not (org-at-heading-p))
12887 (org-update-checkbox-count)
12888 (setq l1 (org-outline-level))
12889 (setq end (save-excursion
12890 (outline-next-heading)
12891 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12892 (point)))
12893 (if (and (save-excursion
12894 (re-search-forward
12895 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12896 (not (save-excursion (re-search-forward
12897 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12898 (org-update-checkbox-count)
12899 (if (and l2 (> l2 l1))
12900 (progn
12901 (goto-char end)
12902 (org-update-parent-todo-statistics))
12903 (goto-char pos)
12904 (beginning-of-line 1)
12905 (while (re-search-forward
12906 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12907 (point-at-eol) t)
12908 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12909 (goto-char pos)
12910 (move-marker pos nil)))))
12912 (defvar org-entry-property-inherited-from) ;; defined below
12913 (defun org-update-parent-todo-statistics ()
12914 "Update any statistics cookie in the parent of the current headline.
12915 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12916 the entire subtree and this will travel up the hierarchy and update
12917 statistics everywhere."
12918 (let* ((prop (save-excursion (org-up-heading-safe)
12919 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12920 (recursive (or (not org-hierarchical-todo-statistics)
12921 (and prop (string-match "\\<recursive\\>" prop))))
12922 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12924 (first t)
12925 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12926 level ltoggle l1 new ndel
12927 (cnt-all 0) (cnt-done 0) is-percent kwd
12928 checkbox-beg ov ovs ove cookie-present)
12929 (catch 'exit
12930 (save-excursion
12931 (beginning-of-line 1)
12932 (setq ltoggle (funcall outline-level))
12933 ;; Three situations are to consider:
12935 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12936 ;; to the top-level ancestor on the headline;
12938 ;; 2. If parent has "recursive" property, repeat up to the
12939 ;; headline setting that property, taking inheritance into
12940 ;; account;
12942 ;; 3. Else, move up to direct parent and proceed only once.
12943 (while (and (setq level (org-up-heading-safe))
12944 (or recursive first)
12945 (>= (point) lim))
12946 (setq first nil cookie-present nil)
12947 (unless (and level
12948 (not (string-match
12949 "\\<checkbox\\>"
12950 (downcase (or (org-entry-get nil "COOKIE_DATA")
12951 "")))))
12952 (throw 'exit nil))
12953 (while (re-search-forward box-re (point-at-eol) t)
12954 (setq cnt-all 0 cnt-done 0 cookie-present t)
12955 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12956 (save-match-data
12957 (unless (outline-next-heading) (throw 'exit nil))
12958 (while (and (looking-at org-complex-heading-regexp)
12959 (> (setq l1 (length (match-string 1))) level))
12960 (setq kwd (and (or recursive (= l1 ltoggle))
12961 (match-string 2)))
12962 (if (or (eq org-provide-todo-statistics 'all-headlines)
12963 (and (eq org-provide-todo-statistics t)
12964 (or (member kwd org-done-keywords)))
12965 (and (listp org-provide-todo-statistics)
12966 (stringp (car org-provide-todo-statistics))
12967 (or (member kwd org-provide-todo-statistics)
12968 (member kwd org-done-keywords)))
12969 (and (listp org-provide-todo-statistics)
12970 (listp (car org-provide-todo-statistics))
12971 (or (member kwd (car org-provide-todo-statistics))
12972 (and (member kwd org-done-keywords)
12973 (member kwd (cadr org-provide-todo-statistics))))))
12974 (setq cnt-all (1+ cnt-all))
12975 (if (eq org-provide-todo-statistics t)
12976 (and kwd (setq cnt-all (1+ cnt-all)))))
12977 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12978 (member kwd org-done-keywords))
12979 (and (listp org-provide-todo-statistics)
12980 (listp (car org-provide-todo-statistics))
12981 (member kwd org-done-keywords)
12982 (member kwd (cadr org-provide-todo-statistics)))
12983 (and (listp org-provide-todo-statistics)
12984 (stringp (car org-provide-todo-statistics))
12985 (member kwd org-done-keywords)))
12986 (setq cnt-done (1+ cnt-done)))
12987 (outline-next-heading)))
12988 (setq new
12989 (if is-percent
12990 (format "[%d%%]" (floor (* 100.0 cnt-done)
12991 (max 1 cnt-all)))
12992 (format "[%d/%d]" cnt-done cnt-all))
12993 ndel (- (match-end 0) checkbox-beg))
12994 ;; handle overlays when updating cookie from column view
12995 (when (setq ov (car (overlays-at checkbox-beg)))
12996 (setq ovs (overlay-start ov) ove (overlay-end ov))
12997 (delete-overlay ov))
12998 (goto-char checkbox-beg)
12999 (insert new)
13000 (delete-region (point) (+ (point) ndel))
13001 (when org-auto-align-tags (org-fix-tags-on-the-fly))
13002 (when ov (move-overlay ov ovs ove)))
13003 (when cookie-present
13004 (run-hook-with-args 'org-after-todo-statistics-hook
13005 cnt-done (- cnt-all cnt-done))))))
13006 (run-hooks 'org-todo-statistics-hook)))
13008 (defvar org-after-todo-statistics-hook nil
13009 "Hook that is called after a TODO statistics cookie has been updated.
13010 Each function is called with two arguments: the number of not-done entries
13011 and the number of done entries.
13013 For example, the following function, when added to this hook, will switch
13014 an entry to DONE when all children are done, and back to TODO when new
13015 entries are set to a TODO status. Note that this hook is only called
13016 when there is a statistics cookie in the headline!
13018 (defun org-summary-todo (n-done n-not-done)
13019 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
13020 (let (org-log-done org-log-states) ; turn off logging
13021 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13024 (defvar org-todo-statistics-hook nil
13025 "Hook that is run whenever Org thinks TODO statistics should be updated.
13026 This hook runs even if there is no statistics cookie present, in which case
13027 `org-after-todo-statistics-hook' would not run.")
13029 (defun org-todo-trigger-tag-changes (state)
13030 "Apply the changes defined in `org-todo-state-tags-triggers'."
13031 (let ((l org-todo-state-tags-triggers)
13032 changes)
13033 (when (or (not state) (equal state ""))
13034 (setq changes (append changes (cdr (assoc "" l)))))
13035 (when (and (stringp state) (> (length state) 0))
13036 (setq changes (append changes (cdr (assoc state l)))))
13037 (when (member state org-not-done-keywords)
13038 (setq changes (append changes (cdr (assoc 'todo l)))))
13039 (when (member state org-done-keywords)
13040 (setq changes (append changes (cdr (assoc 'done l)))))
13041 (dolist (c changes)
13042 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13044 (defun org-local-logging (value)
13045 "Get logging settings from a property VALUE."
13046 ;; Directly set the variables, they are already local.
13047 (setq org-log-done nil
13048 org-log-repeat nil
13049 org-todo-log-states nil)
13050 (dolist (w (org-split-string value))
13051 (let (a)
13052 (cond
13053 ((setq a (assoc w org-startup-options))
13054 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13055 (set (nth 1 a) (nth 2 a))))
13056 ((setq a (org-extract-log-state-settings w))
13057 (and (member (car a) org-todo-keywords-1)
13058 (push a org-todo-log-states)))))))
13060 (defun org-get-todo-sequence-head (kwd)
13061 "Return the head of the TODO sequence to which KWD belongs.
13062 If KWD is not set, check if there is a text property remembering the
13063 right sequence."
13064 (let (p)
13065 (cond
13066 ((not kwd)
13067 (or (get-text-property (point-at-bol) 'org-todo-head)
13068 (progn
13069 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13070 nil (point-at-eol)))
13071 (get-text-property p 'org-todo-head))))
13072 ((not (member kwd org-todo-keywords-1))
13073 (car org-todo-keywords-1))
13074 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13076 (defun org-fast-todo-selection ()
13077 "Fast TODO keyword selection with single keys.
13078 Returns the new TODO keyword, or nil if no state change should occur."
13079 (let* ((fulltable org-todo-key-alist)
13080 (done-keywords org-done-keywords) ;; needed for the faces.
13081 (maxlen (apply 'max (mapcar
13082 (lambda (x)
13083 (if (stringp (car x)) (string-width (car x)) 0))
13084 fulltable)))
13085 (expert nil)
13086 (fwidth (+ maxlen 3 1 3))
13087 (ncol (/ (- (window-width) 4) fwidth))
13088 tg cnt e c tbl
13089 groups ingroup)
13090 (save-excursion
13091 (save-window-excursion
13092 (if expert
13093 (set-buffer (get-buffer-create " *Org todo*"))
13094 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13095 (erase-buffer)
13096 (org-set-local 'org-done-keywords done-keywords)
13097 (setq tbl fulltable cnt 0)
13098 (while (setq e (pop tbl))
13099 (cond
13100 ((equal e '(:startgroup))
13101 (push '() groups) (setq ingroup t)
13102 (when (not (= cnt 0))
13103 (setq cnt 0)
13104 (insert "\n"))
13105 (insert "{ "))
13106 ((equal e '(:endgroup))
13107 (setq ingroup nil cnt 0)
13108 (insert "}\n"))
13109 ((equal e '(:newline))
13110 (when (not (= cnt 0))
13111 (setq cnt 0)
13112 (insert "\n")
13113 (setq e (car tbl))
13114 (while (equal (car tbl) '(:newline))
13115 (insert "\n")
13116 (setq tbl (cdr tbl)))))
13118 (setq tg (car e) c (cdr e))
13119 (if ingroup (push tg (car groups)))
13120 (setq tg (org-add-props tg nil 'face
13121 (org-get-todo-face tg)))
13122 (if (and (= cnt 0) (not ingroup)) (insert " "))
13123 (insert "[" c "] " tg (make-string
13124 (- fwidth 4 (length tg)) ?\ ))
13125 (when (= (setq cnt (1+ cnt)) ncol)
13126 (insert "\n")
13127 (if ingroup (insert " "))
13128 (setq cnt 0)))))
13129 (insert "\n")
13130 (goto-char (point-min))
13131 (if (not expert) (org-fit-window-to-buffer))
13132 (message "[a-z..]:Set [SPC]:clear")
13133 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13134 (cond
13135 ((or (= c ?\C-g)
13136 (and (= c ?q) (not (rassoc c fulltable))))
13137 (setq quit-flag t))
13138 ((= c ?\ ) nil)
13139 ((setq e (rassoc c fulltable) tg (car e))
13141 (t (setq quit-flag t)))))))
13143 (defun org-entry-is-todo-p ()
13144 (member (org-get-todo-state) org-not-done-keywords))
13146 (defun org-entry-is-done-p ()
13147 (member (org-get-todo-state) org-done-keywords))
13149 (defun org-get-todo-state ()
13150 "Return the TODO keyword of the current subtree."
13151 (save-excursion
13152 (org-back-to-heading t)
13153 (and (looking-at org-todo-line-regexp)
13154 (match-end 2)
13155 (match-string 2))))
13157 (defun org-at-date-range-p (&optional inactive-ok)
13158 "Non-nil if point is inside a date range.
13160 When optional argument INACTIVE-OK is non-nil, also consider
13161 inactive time ranges.
13163 When this function returns a non-nil value, match data is set
13164 according to `org-tr-regexp-both' or `org-tr-regexp', depending
13165 on INACTIVE-OK."
13166 (interactive)
13167 (save-excursion
13168 (catch 'exit
13169 (let ((pos (point)))
13170 (skip-chars-backward "^[<\r\n")
13171 (skip-chars-backward "<[")
13172 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13173 (>= (match-end 0) pos)
13174 (throw 'exit t))
13175 (skip-chars-backward "^<[\r\n")
13176 (skip-chars-backward "<[")
13177 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13178 (>= (match-end 0) pos)
13179 (throw 'exit t)))
13180 nil)))
13182 (defun org-get-repeat (&optional tagline)
13183 "Check if there is a deadline/schedule with repeater in this entry."
13184 (save-match-data
13185 (save-excursion
13186 (org-back-to-heading t)
13187 (and (re-search-forward (if tagline
13188 (concat tagline "\\s-*" org-repeat-re)
13189 org-repeat-re)
13190 (org-entry-end-position) t)
13191 (match-string-no-properties 1)))))
13193 (defvar org-last-changed-timestamp)
13194 (defvar org-last-inserted-timestamp)
13195 (defvar org-log-post-message)
13196 (defvar org-log-note-purpose)
13197 (defvar org-log-note-how nil)
13198 (defvar org-log-note-extra)
13199 (defun org-auto-repeat-maybe (done-word)
13200 "Check if the current headline contains a repeated deadline/schedule.
13201 If yes, set TODO state back to what it was and change the base date
13202 of repeating deadline/scheduled time stamps to new date.
13203 This function is run automatically after each state change to a DONE state."
13204 ;; last-state is dynamically scoped into this function
13205 (let* ((repeat (org-get-repeat))
13206 (aa (assoc org-last-state org-todo-kwd-alist))
13207 (interpret (nth 1 aa))
13208 (head (nth 2 aa))
13209 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13210 (msg "Entry repeats: ")
13211 (org-log-done nil)
13212 (org-todo-log-states nil)
13213 re type n what ts time to-state)
13214 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13215 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13216 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13217 org-todo-repeat-to-state))
13218 (unless (and to-state (member to-state org-todo-keywords-1))
13219 (setq to-state (if (eq interpret 'type) org-last-state head)))
13220 (org-todo to-state)
13221 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13222 (org-entry-put nil "LAST_REPEAT" (format-time-string
13223 (org-time-stamp-format t t))))
13224 (when org-log-repeat
13225 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13226 (memq 'org-add-log-note post-command-hook))
13227 ;; OK, we are already setup for some record
13228 (if (eq org-log-repeat 'note)
13229 ;; make sure we take a note, not only a time stamp
13230 (setq org-log-note-how 'note))
13231 ;; Set up for taking a record
13232 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13233 org-last-state
13234 'findpos org-log-repeat)))
13235 (org-back-to-heading t)
13236 (org-add-planning-info nil nil 'closed)
13237 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13238 org-deadline-time-regexp "\\)\\|\\("
13239 org-ts-regexp "\\)"))
13240 (while (re-search-forward
13241 re (save-excursion (outline-next-heading) (point)) t)
13242 (setq type (if (match-end 1) org-scheduled-string
13243 (if (match-end 3) org-deadline-string "Plain:"))
13244 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13245 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13246 (setq n (string-to-number (match-string 2 ts))
13247 what (match-string 3 ts))
13248 (if (equal what "w") (setq n (* n 7) what "d"))
13249 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13250 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13251 ;; Preparation, see if we need to modify the start date for the change
13252 (when (match-end 1)
13253 (setq time (save-match-data (org-time-string-to-time ts)))
13254 (cond
13255 ((equal (match-string 1 ts) ".")
13256 ;; Shift starting date to today
13257 (org-timestamp-change
13258 (- (org-today) (time-to-days time))
13259 'day))
13260 ((equal (match-string 1 ts) "+")
13261 (let ((nshiftmax 10) (nshift 0))
13262 (while (or (= nshift 0)
13263 (<= (time-to-days time)
13264 (time-to-days (current-time))))
13265 (when (= (incf nshift) nshiftmax)
13266 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13267 (user-error "Abort")))
13268 (org-timestamp-change n (cdr (assoc what whata)))
13269 (org-at-timestamp-p t)
13270 (setq ts (match-string 1))
13271 (setq time (save-match-data (org-time-string-to-time ts)))))
13272 (org-timestamp-change (- n) (cdr (assoc what whata)))
13273 ;; rematch, so that we have everything in place for the real shift
13274 (org-at-timestamp-p t)
13275 (setq ts (match-string 1))
13276 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13277 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13278 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13279 (setq org-log-post-message msg)
13280 (message "%s" msg))))
13282 (defun org-show-todo-tree (arg)
13283 "Make a compact tree which shows all headlines marked with TODO.
13284 The tree will show the lines where the regexp matches, and all higher
13285 headlines above the match.
13286 With a \\[universal-argument] prefix, prompt for a regexp to match.
13287 With a numeric prefix N, construct a sparse tree for the Nth element
13288 of `org-todo-keywords-1'."
13289 (interactive "P")
13290 (let ((case-fold-search nil)
13291 (kwd-re
13292 (cond ((null arg) org-not-done-regexp)
13293 ((equal arg '(4))
13294 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13295 (mapcar 'list org-todo-keywords-1))))
13296 (concat "\\("
13297 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13298 "\\)\\>")))
13299 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13300 (regexp-quote (nth (1- (prefix-numeric-value arg))
13301 org-todo-keywords-1)))
13302 (t (user-error "Invalid prefix argument: %s" arg)))))
13303 (message "%d TODO entries found"
13304 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13306 (defun org-deadline (arg &optional time)
13307 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13308 With one universal prefix argument, remove any deadline from the item.
13309 With two universal prefix arguments, prompt for a warning delay.
13310 With argument TIME, set the deadline at the corresponding date. TIME
13311 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13312 (interactive "P")
13313 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13314 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13315 'region-start-level 'region))
13316 org-loop-over-headlines-in-active-region)
13317 (org-map-entries
13318 `(org-deadline ',arg ,time)
13319 org-loop-over-headlines-in-active-region
13320 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13321 (let* ((old-date (org-entry-get nil "DEADLINE"))
13322 (old-date-time (if old-date (org-time-string-to-time old-date)))
13323 (repeater (and old-date
13324 (string-match
13325 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13326 old-date)
13327 (match-string 1 old-date))))
13328 (cond
13329 ((equal arg '(4))
13330 (when (and old-date org-log-redeadline)
13331 (org-add-log-setup 'deldeadline nil old-date 'findpos
13332 org-log-redeadline))
13333 (org-remove-timestamp-with-keyword org-deadline-string)
13334 (message "Item no longer has a deadline."))
13335 ((equal arg '(16))
13336 (save-excursion
13337 (org-back-to-heading t)
13338 (if (re-search-forward
13339 org-deadline-time-regexp
13340 (save-excursion (outline-next-heading) (point)) t)
13341 (let* ((rpl0 (match-string 1))
13342 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13343 (replace-match
13344 (concat org-deadline-string
13345 " <" rpl
13346 (format " -%dd"
13347 (abs
13348 (- (time-to-days
13349 (save-match-data
13350 (org-read-date nil t nil "Warn starting from" old-date-time)))
13351 (time-to-days old-date-time))))
13352 ">") t t))
13353 (user-error "No deadline information to update"))))
13355 (org-add-planning-info 'deadline time 'closed)
13356 (when (and old-date
13357 org-log-redeadline
13358 (not (equal old-date org-last-inserted-timestamp)))
13359 (org-add-log-setup
13360 'redeadline org-last-inserted-timestamp old-date 'findpos
13361 org-log-redeadline))
13362 (when repeater
13363 (save-excursion
13364 (org-back-to-heading t)
13365 (when (re-search-forward (concat org-deadline-string " "
13366 org-last-inserted-timestamp)
13367 (save-excursion
13368 (outline-next-heading) (point)) t)
13369 (goto-char (1- (match-end 0)))
13370 (insert " " repeater)
13371 (setq org-last-inserted-timestamp
13372 (concat (substring org-last-inserted-timestamp 0 -1)
13373 " " repeater
13374 (substring org-last-inserted-timestamp -1))))))
13375 (message "Deadline on %s" org-last-inserted-timestamp))))))
13377 (defun org-schedule (arg &optional time)
13378 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13379 With one universal prefix argument, remove any scheduling date from the item.
13380 With two universal prefix arguments, prompt for a delay cookie.
13381 With argument TIME, scheduled at the corresponding date. TIME can
13382 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13383 (interactive "P")
13384 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13385 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13386 'region-start-level 'region))
13387 org-loop-over-headlines-in-active-region)
13388 (org-map-entries
13389 `(org-schedule ',arg ,time)
13390 org-loop-over-headlines-in-active-region
13391 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13392 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13393 (old-date-time (if old-date (org-time-string-to-time old-date)))
13394 (repeater (and old-date
13395 (string-match
13396 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13397 old-date)
13398 (match-string 1 old-date))))
13399 (cond
13400 ((equal arg '(4))
13401 (progn
13402 (when (and old-date org-log-reschedule)
13403 (org-add-log-setup 'delschedule nil old-date 'findpos
13404 org-log-reschedule))
13405 (org-remove-timestamp-with-keyword org-scheduled-string)
13406 (message "Item is no longer scheduled.")))
13407 ((equal arg '(16))
13408 (save-excursion
13409 (org-back-to-heading t)
13410 (if (re-search-forward
13411 org-scheduled-time-regexp
13412 (save-excursion (outline-next-heading) (point)) t)
13413 (let* ((rpl0 (match-string 1))
13414 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13415 (replace-match
13416 (concat org-scheduled-string
13417 " <" rpl
13418 (format " -%dd"
13419 (abs
13420 (- (time-to-days
13421 (save-match-data
13422 (org-read-date nil t nil "Delay until" old-date-time)))
13423 (time-to-days old-date-time))))
13424 ">") t t))
13425 (user-error "No scheduled information to update"))))
13427 (org-add-planning-info 'scheduled time 'closed)
13428 (when (and old-date
13429 org-log-reschedule
13430 (not (equal old-date org-last-inserted-timestamp)))
13431 (org-add-log-setup
13432 'reschedule org-last-inserted-timestamp old-date 'findpos
13433 org-log-reschedule))
13434 (when repeater
13435 (save-excursion
13436 (org-back-to-heading t)
13437 (when (re-search-forward (concat org-scheduled-string " "
13438 org-last-inserted-timestamp)
13439 (save-excursion
13440 (outline-next-heading) (point)) t)
13441 (goto-char (1- (match-end 0)))
13442 (insert " " repeater)
13443 (setq org-last-inserted-timestamp
13444 (concat (substring org-last-inserted-timestamp 0 -1)
13445 " " repeater
13446 (substring org-last-inserted-timestamp -1))))))
13447 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13449 (defun org-get-scheduled-time (pom &optional inherit)
13450 "Get the scheduled time as a time tuple, of a format suitable
13451 for calling org-schedule with, or if there is no scheduling,
13452 returns nil."
13453 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13454 (when time
13455 (apply 'encode-time (org-parse-time-string time)))))
13457 (defun org-get-deadline-time (pom &optional inherit)
13458 "Get the deadline as a time tuple, of a format suitable for
13459 calling org-deadline with, or if there is no scheduling, returns
13460 nil."
13461 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13462 (when time
13463 (apply 'encode-time (org-parse-time-string time)))))
13465 (defun org-remove-timestamp-with-keyword (keyword)
13466 "Remove all time stamps with KEYWORD in the current entry."
13467 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13468 beg)
13469 (save-excursion
13470 (org-back-to-heading t)
13471 (setq beg (point))
13472 (outline-next-heading)
13473 (while (re-search-backward re beg t)
13474 (replace-match "")
13475 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13476 (equal (char-before) ?\ ))
13477 (backward-delete-char 1)
13478 (if (string-match "^[ \t]*$" (buffer-substring
13479 (point-at-bol) (point-at-eol)))
13480 (delete-region (point-at-bol)
13481 (min (point-max) (1+ (point-at-eol))))))))))
13483 (defvar org-time-was-given) ; dynamically scoped parameter
13484 (defvar org-end-time-was-given) ; dynamically scoped parameter
13486 (defun org-at-planning-p ()
13487 "Non-nil when point is on a planning info line."
13488 ;; This is as accurate and faster than `org-element-at-point' since
13489 ;; planning info location is fixed in the section.
13490 (org-with-wide-buffer
13491 (beginning-of-line)
13492 (and (org-looking-at-p org-planning-line-re)
13493 (eq (point)
13494 (ignore-errors
13495 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13496 (org-back-to-heading t)
13497 (org-with-limited-levels (org-back-to-heading t)))
13498 (line-beginning-position 2))))))
13500 (defun org-add-planning-info (what &optional time &rest remove)
13501 "Insert new timestamp with keyword in the planning line.
13502 WHAT indicates what kind of time stamp to add. It is a symbol
13503 among `closed', `deadline', `scheduled' and nil. TIME indicates
13504 the time to use. If none is given, the user is prompted for
13505 a date. REMOVE indicates what kind of entries to remove. An old
13506 WHAT entry will also be removed."
13507 (let (org-time-was-given org-end-time-was-given default-time default-input)
13508 (catch 'exit
13509 (when (and (memq what '(scheduled deadline))
13510 (or (not time)
13511 (and (stringp time)
13512 (string-match "^[-+]+[0-9]" time))))
13513 ;; Try to get a default date/time from existing timestamp
13514 (save-excursion
13515 (org-back-to-heading t)
13516 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13517 (when (re-search-forward (if (eq what 'scheduled)
13518 org-scheduled-time-regexp
13519 org-deadline-time-regexp)
13520 end t)
13521 (setq ts (match-string 1)
13522 default-time (apply 'encode-time (org-parse-time-string ts))
13523 default-input (and ts (org-get-compact-tod ts)))))))
13524 (when what
13525 (setq time
13526 (if (stringp time)
13527 ;; This is a string (relative or absolute), set
13528 ;; proper date.
13529 (apply #'encode-time
13530 (org-read-date-analyze
13531 time default-time (decode-time default-time)))
13532 ;; If necessary, get the time from the user
13533 (or time (org-read-date nil 'to-time nil nil
13534 default-time default-input)))))
13536 (org-with-wide-buffer
13537 (org-back-to-heading t)
13538 (forward-line)
13539 (unless (bolp) (insert "\n"))
13540 (cond ((org-looking-at-p org-planning-line-re)
13541 ;; Move to current indentation.
13542 (skip-chars-forward " \t")
13543 ;; Check if we have to remove something.
13544 (dolist (type (if what (cons what remove) remove))
13545 (save-excursion
13546 (when (re-search-forward
13547 (case type
13548 (closed org-closed-time-regexp)
13549 (deadline org-deadline-time-regexp)
13550 (scheduled org-scheduled-time-regexp)
13551 (otherwise
13552 (error "Invalid planning type: %s" type)))
13553 (line-end-position) t)
13554 ;; Delete until next keyword or end of line.
13555 (delete-region
13556 (match-beginning 0)
13557 (if (re-search-forward org-keyword-time-not-clock-regexp
13558 (line-end-position)
13560 (match-beginning 0)
13561 (line-end-position))))))
13562 ;; If there is nothing more to add and no more keyword
13563 ;; is left, remove the line completely.
13564 (if (and (org-looking-at-p "[ \t]*$") (not what))
13565 (delete-region (line-beginning-position)
13566 (line-beginning-position 2))
13567 ;; If we removed last keyword, do not leave trailing
13568 ;; white space at the end of line.
13569 (let ((p (point)))
13570 (save-excursion
13571 (end-of-line)
13572 (unless (= (skip-chars-backward " \t" p) 0)
13573 (delete-region (point) (line-end-position)))))))
13574 ((not what) (throw 'exit nil)) ; Nothing to do.
13575 (t (insert-before-markers "\n")
13576 (backward-char 1)
13577 (when org-adapt-indentation
13578 (org-indent-to-column (1+ (org-outline-level))))))
13579 (when what
13580 ;; Insert planning keyword.
13581 (insert (case what
13582 (closed org-closed-string)
13583 (deadline org-deadline-string)
13584 (scheduled org-scheduled-string)
13585 (otherwise (error "Invalid planning type: %s" what)))
13586 " ")
13587 ;; Insert associated timestamp.
13588 (let ((ts (org-insert-time-stamp
13589 time
13590 (or org-time-was-given
13591 (and (eq what 'closed) org-log-done-with-time))
13592 (eq what 'closed)
13593 nil nil (list org-end-time-was-given))))
13594 (unless (eolp) (insert " "))
13595 ts))))))
13597 (defvar org-log-note-marker (make-marker))
13598 (defvar org-log-note-purpose nil)
13599 (defvar org-log-note-state nil)
13600 (defvar org-log-note-previous-state nil)
13601 (defvar org-log-note-extra nil)
13602 (defvar org-log-note-window-configuration nil)
13603 (defvar org-log-note-return-to (make-marker))
13604 (defvar org-log-note-effective-time nil
13605 "Remembered current time so that dynamically scoped
13606 `org-extend-today-until' affects tha timestamps in state change
13607 log")
13609 (defvar org-log-post-message nil
13610 "Message to be displayed after a log note has been stored.
13611 The auto-repeater uses this.")
13613 (defun org-add-note ()
13614 "Add a note to the current entry.
13615 This is done in the same way as adding a state change note."
13616 (interactive)
13617 (org-add-log-setup 'note nil nil 'findpos nil))
13619 (defun org-log-beginning (&optional create)
13620 "Return expected start of log notes in current entry.
13621 When optional argument CREATE is non-nil, the function creates
13622 a drawer to store notes, if necessary. Returned position ignores
13623 narrowing."
13624 (org-with-wide-buffer
13625 (org-end-of-meta-data)
13626 (let ((end (if (org-at-heading-p) (point)
13627 (save-excursion (outline-next-heading) (point))))
13628 (drawer (org-log-into-drawer)))
13629 (cond
13630 (drawer
13631 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13632 (case-fold-search t))
13633 (catch 'exit
13634 ;; Try to find existing drawer.
13635 (while (re-search-forward regexp end t)
13636 (let ((element (org-element-at-point)))
13637 (when (eq (org-element-type element) 'drawer)
13638 (let ((cend (org-element-property :contents-end element)))
13639 (when (and (not org-log-states-order-reversed) cend)
13640 (goto-char cend)))
13641 (throw 'exit nil))))
13642 ;; No drawer found. Create one, if permitted.
13643 (when create
13644 (unless (bolp) (insert "\n"))
13645 (let ((beg (point)))
13646 (insert ":" drawer ":\n:END:\n")
13647 (org-indent-region beg (point)))
13648 (end-of-line -1)))))
13649 (org-log-state-notes-insert-after-drawers
13650 (while (and (looking-at org-drawer-regexp)
13651 (progn (goto-char (match-end 0))
13652 (re-search-forward org-property-end-re end t)))
13653 (forward-line)))))
13654 (if (bolp) (point) (line-beginning-position 2))))
13656 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13657 "Set up the post command hook to take a note.
13658 If this is about to TODO state change, the new state is expected in STATE.
13659 When FINDPOS is non-nil, find the correct position for the note in
13660 the current entry. If not, assume that it can be inserted at point.
13661 HOW is an indicator what kind of note should be created.
13662 EXTRA is additional text that will be inserted into the notes buffer."
13663 (org-with-wide-buffer
13664 (when findpos
13665 (goto-char (org-log-beginning t))
13666 (unless org-log-states-order-reversed
13667 (org-skip-over-state-notes)
13668 (skip-chars-backward " \t\n\r")
13669 (forward-line)))
13670 (move-marker org-log-note-marker (point))
13671 ;; Preserve position even if a property drawer is inserted in the
13672 ;; process.
13673 (set-marker-insertion-type org-log-note-marker t)
13674 (setq org-log-note-purpose purpose
13675 org-log-note-state state
13676 org-log-note-previous-state prev-state
13677 org-log-note-how how
13678 org-log-note-extra extra
13679 org-log-note-effective-time (org-current-effective-time))
13680 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13682 (defun org-skip-over-state-notes ()
13683 "Skip past the list of State notes in an entry."
13684 (when (ignore-errors (goto-char (org-in-item-p)))
13685 (let* ((struct (org-list-struct))
13686 (prevs (org-list-prevs-alist struct))
13687 (regexp
13688 (concat "[ \t]*- +"
13689 (replace-regexp-in-string
13690 " +" " +"
13691 (org-replace-escapes
13692 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13693 `(("%d" . ,org-ts-regexp-inactive)
13694 ("%D" . ,org-ts-regexp)
13695 ("%s" . "\"\\S-+\"")
13696 ("%S" . "\"\\S-+\"")
13697 ("%t" . ,org-ts-regexp-inactive)
13698 ("%T" . ,org-ts-regexp)
13699 ("%u" . ".*?")
13700 ("%U" . ".*?")))))))
13701 (while (org-looking-at-p regexp)
13702 (goto-char (or (org-list-get-next-item (point) struct prevs)
13703 (org-list-get-item-end (point) struct)))))))
13705 (defun org-add-log-note (&optional purpose)
13706 "Pop up a window for taking a note, and add this note later at point."
13707 (remove-hook 'post-command-hook 'org-add-log-note)
13708 (setq org-log-note-window-configuration (current-window-configuration))
13709 (delete-other-windows)
13710 (move-marker org-log-note-return-to (point))
13711 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13712 (goto-char org-log-note-marker)
13713 (org-switch-to-buffer-other-window "*Org Note*")
13714 (erase-buffer)
13715 (if (memq org-log-note-how '(time state))
13716 (let (current-prefix-arg) (org-store-log-note))
13717 (let ((org-inhibit-startup t)) (org-mode))
13718 (insert (format "# Insert note for %s.
13719 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13720 (cond
13721 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13722 ((eq org-log-note-purpose 'done) "closed todo item")
13723 ((eq org-log-note-purpose 'state)
13724 (format "state change from \"%s\" to \"%s\""
13725 (or org-log-note-previous-state "")
13726 (or org-log-note-state "")))
13727 ((eq org-log-note-purpose 'reschedule)
13728 "rescheduling")
13729 ((eq org-log-note-purpose 'delschedule)
13730 "no longer scheduled")
13731 ((eq org-log-note-purpose 'redeadline)
13732 "changing deadline")
13733 ((eq org-log-note-purpose 'deldeadline)
13734 "removing deadline")
13735 ((eq org-log-note-purpose 'refile)
13736 "refiling")
13737 ((eq org-log-note-purpose 'note)
13738 "this entry")
13739 (t (error "This should not happen")))))
13740 (if org-log-note-extra (insert org-log-note-extra))
13741 (org-set-local 'org-finish-function 'org-store-log-note)
13742 (run-hooks 'org-log-buffer-setup-hook)))
13744 (defvar org-note-abort nil) ; dynamically scoped
13745 (defun org-store-log-note ()
13746 "Finish taking a log note, and insert it to where it belongs."
13747 (let ((txt (buffer-string)))
13748 (kill-buffer (current-buffer))
13749 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13750 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13751 (setq txt (replace-match "" t t txt)))
13752 (if (string-match "\\s-+\\'" txt)
13753 (setq txt (replace-match "" t t txt)))
13754 (setq lines (org-split-string txt "\n"))
13755 (when (and note (string-match "\\S-" note))
13756 (setq note
13757 (org-replace-escapes
13758 note
13759 (list (cons "%u" (user-login-name))
13760 (cons "%U" user-full-name)
13761 (cons "%t" (format-time-string
13762 (org-time-stamp-format 'long 'inactive)
13763 org-log-note-effective-time))
13764 (cons "%T" (format-time-string
13765 (org-time-stamp-format 'long nil)
13766 org-log-note-effective-time))
13767 (cons "%d" (format-time-string
13768 (org-time-stamp-format nil 'inactive)
13769 org-log-note-effective-time))
13770 (cons "%D" (format-time-string
13771 (org-time-stamp-format nil nil)
13772 org-log-note-effective-time))
13773 (cons "%s" (cond
13774 ((not org-log-note-state) "")
13775 ((org-string-match-p org-ts-regexp
13776 org-log-note-state)
13777 (format "\"[%s]\""
13778 (substring org-log-note-state 1 -1)))
13779 (t (format "\"%s\"" org-log-note-state))))
13780 (cons "%S"
13781 (cond
13782 ((not org-log-note-previous-state) "")
13783 ((org-string-match-p org-ts-regexp
13784 org-log-note-previous-state)
13785 (format "\"[%s]\""
13786 (substring
13787 org-log-note-previous-state 1 -1)))
13788 (t (format "\"%s\""
13789 org-log-note-previous-state)))))))
13790 (when lines (setq note (concat note " \\\\")))
13791 (push note lines))
13792 (when (or current-prefix-arg org-note-abort)
13793 (when (org-log-into-drawer)
13794 (org-remove-empty-drawer-at org-log-note-marker))
13795 (setq lines nil))
13796 (when lines
13797 (with-current-buffer (marker-buffer org-log-note-marker)
13798 (org-with-wide-buffer
13799 (goto-char org-log-note-marker)
13800 (move-marker org-log-note-marker nil)
13801 ;; Make sure point is at the beginning of an empty line.
13802 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13803 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13804 ;; In an existing list, add a new item at the top level.
13805 ;; Otherwise, indent line like a regular one.
13806 (let ((itemp (org-in-item-p)))
13807 (if itemp
13808 (org-indent-line-to
13809 (let ((struct (save-excursion
13810 (goto-char itemp) (org-list-struct))))
13811 (org-list-get-ind (org-list-get-top-point struct) struct)))
13812 (org-indent-line)))
13813 (insert (org-list-bullet-string "-") (pop lines))
13814 (let ((ind (org-list-item-body-column (line-beginning-position))))
13815 (dolist (line lines)
13816 (insert "\n")
13817 (org-indent-line-to ind)
13818 (insert line)))
13819 (message "Note stored")
13820 (org-back-to-heading t)
13821 (org-cycle-hide-drawers 'children))
13822 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13823 ;; from within `org-add-log-note' because `buffer-undo-list'
13824 ;; is then modified outside of `org-with-remote-undo'.
13825 (when (eq this-command 'org-agenda-todo)
13826 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13827 ;; Don't add undo information when called from `org-agenda-todo'
13828 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13829 (set-window-configuration org-log-note-window-configuration)
13830 (with-current-buffer (marker-buffer org-log-note-return-to)
13831 (goto-char org-log-note-return-to))
13832 (move-marker org-log-note-return-to nil)
13833 (and org-log-post-message (message "%s" org-log-post-message))))
13835 (defun org-remove-empty-drawer-at (pos)
13836 "Remove an empty drawer at position POS.
13837 POS may also be a marker."
13838 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13839 (org-with-wide-buffer
13840 (goto-char pos)
13841 (let ((drawer (org-element-at-point)))
13842 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13843 (not (org-element-property :contents-begin drawer)))
13844 (delete-region (org-element-property :begin drawer)
13845 (progn (goto-char (org-element-property :end drawer))
13846 (skip-chars-backward " \r\t\n")
13847 (forward-line)
13848 (point))))))))
13850 (defvar org-ts-type nil)
13851 (defun org-sparse-tree (&optional arg type)
13852 "Create a sparse tree, prompt for the details.
13853 This command can create sparse trees. You first need to select the type
13854 of match used to create the tree:
13856 t Show all TODO entries.
13857 T Show entries with a specific TODO keyword.
13858 m Show entries selected by a tags/property match.
13859 p Enter a property name and its value (both with completion on existing
13860 names/values) and show entries with that property.
13861 r Show entries matching a regular expression (`/' can be used as well).
13862 b Show deadlines and scheduled items before a date.
13863 a Show deadlines and scheduled items after a date.
13864 d Show deadlines due within `org-deadline-warning-days'.
13865 D Show deadlines and scheduled items between a date range."
13866 (interactive "P")
13867 (setq type (or type org-sparse-tree-default-date-type))
13868 (setq org-ts-type type)
13869 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13870 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13871 [c]ycle through date types: %s"
13872 (case type
13873 (all "all timestamps")
13874 (scheduled "only scheduled")
13875 (deadline "only deadline")
13876 (active "only active timestamps")
13877 (inactive "only inactive timestamps")
13878 (closed "with a closed time-stamp")
13879 (otherwise "scheduled/deadline")))
13880 (let ((answer (read-char-exclusive)))
13881 (case answer
13883 (org-sparse-tree
13885 (cadr
13886 (memq type '(nil all scheduled deadline active inactive closed)))))
13887 (?d (call-interactively 'org-check-deadlines))
13888 (?b (call-interactively 'org-check-before-date))
13889 (?a (call-interactively 'org-check-after-date))
13890 (?D (call-interactively 'org-check-dates-range))
13891 (?t (call-interactively 'org-show-todo-tree))
13892 (?T (org-show-todo-tree '(4)))
13893 (?m (call-interactively 'org-match-sparse-tree))
13894 ((?p ?P)
13895 (let* ((kwd (org-icompleting-read
13896 "Property: " (mapcar 'list (org-buffer-property-keys))))
13897 (value (org-icompleting-read
13898 "Value: " (mapcar 'list (org-property-values kwd)))))
13899 (unless (string-match "\\`{.*}\\'" value)
13900 (setq value (concat "\"" value "\"")))
13901 (org-match-sparse-tree arg (concat kwd "=" value))))
13902 ((?r ?R ?/) (call-interactively 'org-occur))
13903 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13905 (defvar org-occur-highlights nil
13906 "List of overlays used for occur matches.")
13907 (make-variable-buffer-local 'org-occur-highlights)
13908 (defvar org-occur-parameters nil
13909 "Parameters of the active org-occur calls.
13910 This is a list, each call to org-occur pushes as cons cell,
13911 containing the regular expression and the callback, onto the list.
13912 The list can contain several entries if `org-occur' has been called
13913 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13914 will only contain one set of parameters. When the highlights are
13915 removed (for example with `C-c C-c', or with the next edit (depending
13916 on `org-remove-highlights-with-change'), this variable is emptied
13917 as well.")
13918 (make-variable-buffer-local 'org-occur-parameters)
13920 (defun org-occur (regexp &optional keep-previous callback)
13921 "Make a compact tree which shows all matches of REGEXP.
13922 The tree will show the lines where the regexp matches, and all higher
13923 headlines above the match. It will also show the heading after the match,
13924 to make sure editing the matching entry is easy.
13925 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13926 call to `org-occur' will be kept, to allow stacking of calls to this
13927 command.
13928 If CALLBACK is non-nil, it is a function which is called to confirm
13929 that the match should indeed be shown."
13930 (interactive "sRegexp: \nP")
13931 (when (equal regexp "")
13932 (user-error "Regexp cannot be empty"))
13933 (unless keep-previous
13934 (org-remove-occur-highlights nil nil t))
13935 (push (cons regexp callback) org-occur-parameters)
13936 (let ((cnt 0))
13937 (save-excursion
13938 (goto-char (point-min))
13939 (if (or (not keep-previous) ; do not want to keep
13940 (not org-occur-highlights)) ; no previous matches
13941 ;; hide everything
13942 (org-overview))
13943 (while (re-search-forward regexp nil t)
13944 (backward-char) ;; FIXME: Match timestamps at the end of a headline
13945 (when (or (not callback)
13946 (save-match-data (funcall callback)))
13947 (setq cnt (1+ cnt))
13948 (when org-highlight-sparse-tree-matches
13949 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13950 (org-show-context 'occur-tree))))
13951 (when org-remove-highlights-with-change
13952 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13953 nil 'local))
13954 (unless org-sparse-tree-open-archived-trees
13955 (org-hide-archived-subtrees (point-min) (point-max)))
13956 (run-hooks 'org-occur-hook)
13957 (if (org-called-interactively-p 'interactive)
13958 (message "%d match(es) for regexp %s" cnt regexp))
13959 cnt))
13961 (defun org-occur-next-match (&optional n reset)
13962 "Function for `next-error-function' to find sparse tree matches.
13963 N is the number of matches to move, when negative move backwards.
13964 RESET is entirely ignored - this function always goes back to the
13965 starting point when no match is found."
13966 (let* ((limit (if (< n 0) (point-min) (point-max)))
13967 (search-func (if (< n 0)
13968 'previous-single-char-property-change
13969 'next-single-char-property-change))
13970 (n (abs n))
13971 (pos (point))
13973 (catch 'exit
13974 (while (setq p1 (funcall search-func (point) 'org-type))
13975 (when (equal p1 limit)
13976 (goto-char pos)
13977 (user-error "No more matches"))
13978 (when (equal (get-char-property p1 'org-type) 'org-occur)
13979 (setq n (1- n))
13980 (when (= n 0)
13981 (goto-char p1)
13982 (throw 'exit (point))))
13983 (goto-char p1))
13984 (goto-char p1)
13985 (user-error "No more matches"))))
13987 (defun org-show-context (&optional key)
13988 "Make sure point and context are visible.
13989 Optional argument KEY, when non-nil, is a symbol. See
13990 `org-show-context-detail' for allowed values and how much is to
13991 be shown."
13992 (org-show-set-visibility
13993 (cond ((symbolp org-show-context-detail) org-show-context-detail)
13994 ((cdr (assq key org-show-context-detail)))
13995 (t (cdr (assq 'default org-show-context-detail))))))
13997 (defun org-show-set-visibility (detail)
13998 "Set visibility around point according to DETAIL.
13999 DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
14000 `tree', `canonical' or t. See `org-show-context-detail' for more
14001 information."
14002 (unless (org-before-first-heading-p)
14003 ;; Show current heading and possibly its entry, following headline
14004 ;; or all children.
14005 (if (and (org-at-heading-p) (not (eq detail 'local)))
14006 (org-flag-heading nil)
14007 (org-show-entry)
14008 (org-with-limited-levels
14009 (case detail
14010 ((tree canonical t) (outline-show-children))
14011 ((nil minimal ancestors))
14012 (t (save-excursion
14013 (outline-next-heading)
14014 (org-flag-heading nil))))))
14015 ;; Show all siblings.
14016 (when (eq detail 'lineage) (org-show-siblings))
14017 ;; Show ancestors, possibly with their children.
14018 (when (memq detail '(ancestors lineage tree canonical t))
14019 (save-excursion
14020 (while (org-up-heading-safe)
14021 (org-flag-heading nil)
14022 (when (memq detail '(canonical t)) (org-show-entry))
14023 (when (memq detail '(tree canonical t)) (outline-show-children)))))))
14025 (defvar org-reveal-start-hook nil
14026 "Hook run before revealing a location.")
14028 (defun org-reveal (&optional siblings)
14029 "Show current entry, hierarchy above it, and the following headline.
14031 This can be used to show a consistent set of context around
14032 locations exposed with `org-show-context'.
14034 With optional argument SIBLINGS, on each level of the hierarchy all
14035 siblings are shown. This repairs the tree structure to what it would
14036 look like when opened with hierarchical calls to `org-cycle'.
14038 With double optional argument \\[universal-argument] \\[universal-argument], \
14039 go to the parent and show the
14040 entire tree."
14041 (interactive "P")
14042 (run-hooks 'org-reveal-start-hook)
14043 (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
14044 ((equal siblings '(16))
14045 (save-excursion
14046 (when (org-up-heading-safe)
14047 (org-show-subtree)
14048 (run-hook-with-args 'org-cycle-hook 'subtree))))
14049 (t (org-show-set-visibility 'lineage))))
14051 (defun org-highlight-new-match (beg end)
14052 "Highlight from BEG to END and mark the highlight is an occur headline."
14053 (let ((ov (make-overlay beg end)))
14054 (overlay-put ov 'face 'secondary-selection)
14055 (overlay-put ov 'org-type 'org-occur)
14056 (push ov org-occur-highlights)))
14058 (defun org-remove-occur-highlights (&optional beg end noremove)
14059 "Remove the occur highlights from the buffer.
14060 BEG and END are ignored. If NOREMOVE is nil, remove this function
14061 from the `before-change-functions' in the current buffer."
14062 (interactive)
14063 (unless org-inhibit-highlight-removal
14064 (mapc 'delete-overlay org-occur-highlights)
14065 (setq org-occur-highlights nil)
14066 (setq org-occur-parameters nil)
14067 (unless noremove
14068 (remove-hook 'before-change-functions
14069 'org-remove-occur-highlights 'local))))
14071 ;;;; Priorities
14073 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14074 "Regular expression matching the priority indicator.")
14076 (defvar org-remove-priority-next-time nil)
14078 (defun org-priority-up ()
14079 "Increase the priority of the current item."
14080 (interactive)
14081 (org-priority 'up))
14083 (defun org-priority-down ()
14084 "Decrease the priority of the current item."
14085 (interactive)
14086 (org-priority 'down))
14088 (defun org-priority (&optional action show)
14089 "Change the priority of an item.
14090 ACTION can be `set', `up', `down', or a character."
14091 (interactive "P")
14092 (if (equal action '(4))
14093 (org-show-priority)
14094 (unless org-enable-priority-commands
14095 (user-error "Priority commands are disabled"))
14096 (setq action (or action 'set))
14097 (let (current new news have remove)
14098 (save-excursion
14099 (org-back-to-heading t)
14100 (if (looking-at org-priority-regexp)
14101 (setq current (string-to-char (match-string 2))
14102 have t))
14103 (cond
14104 ((eq action 'remove)
14105 (setq remove t new ?\ ))
14106 ((or (eq action 'set)
14107 (if (featurep 'xemacs) (characterp action) (integerp action)))
14108 (if (not (eq action 'set))
14109 (setq new action)
14110 (message "Priority %c-%c, SPC to remove: "
14111 org-highest-priority org-lowest-priority)
14112 (save-match-data
14113 (setq new (read-char-exclusive))))
14114 (if (and (= (upcase org-highest-priority) org-highest-priority)
14115 (= (upcase org-lowest-priority) org-lowest-priority))
14116 (setq new (upcase new)))
14117 (cond ((equal new ?\ ) (setq remove t))
14118 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14119 (user-error "Priority must be between `%c' and `%c'"
14120 org-highest-priority org-lowest-priority))))
14121 ((eq action 'up)
14122 (setq new (if have
14123 (1- current) ; normal cycling
14124 ;; last priority was empty
14125 (if (eq last-command this-command)
14126 org-lowest-priority ; wrap around empty to lowest
14127 ;; default
14128 (if org-priority-start-cycle-with-default
14129 org-default-priority
14130 (1- org-default-priority))))))
14131 ((eq action 'down)
14132 (setq new (if have
14133 (1+ current) ; normal cycling
14134 ;; last priority was empty
14135 (if (eq last-command this-command)
14136 org-highest-priority ; wrap around empty to highest
14137 ;; default
14138 (if org-priority-start-cycle-with-default
14139 org-default-priority
14140 (1+ org-default-priority))))))
14141 (t (user-error "Invalid action")))
14142 (if (or (< (upcase new) org-highest-priority)
14143 (> (upcase new) org-lowest-priority))
14144 (if (and (memq action '(up down))
14145 (not have) (not (eq last-command this-command)))
14146 ;; `new' is from default priority
14147 (error
14148 "The default can not be set, see `org-default-priority' why")
14149 ;; normal cycling: `new' is beyond highest/lowest priority
14150 ;; and is wrapped around to the empty priority
14151 (setq remove t)))
14152 (setq news (format "%c" new))
14153 (if have
14154 (if remove
14155 (replace-match "" t t nil 1)
14156 (replace-match news t t nil 2))
14157 (if remove
14158 (user-error "No priority cookie found in line")
14159 (let ((case-fold-search nil))
14160 (looking-at org-todo-line-regexp))
14161 (if (match-end 2)
14162 (progn
14163 (goto-char (match-end 2))
14164 (insert " [#" news "]"))
14165 (goto-char (match-beginning 3))
14166 (insert "[#" news "] "))))
14167 (org-set-tags nil 'align))
14168 (if remove
14169 (message "Priority removed")
14170 (message "Priority of current item set to %s" news)))))
14172 (defun org-show-priority ()
14173 "Show the priority of the current item.
14174 This priority is composed of the main priority given with the [#A] cookies,
14175 and by additional input from the age of a schedules or deadline entry."
14176 (interactive)
14177 (let ((pri (if (eq major-mode 'org-agenda-mode)
14178 (org-get-at-bol 'priority)
14179 (save-excursion
14180 (save-match-data
14181 (beginning-of-line)
14182 (and (looking-at org-heading-regexp)
14183 (org-get-priority (match-string 0))))))))
14184 (message "Priority is %d" (if pri pri -1000))))
14186 (defun org-get-priority (s)
14187 "Find priority cookie and return priority."
14188 (save-match-data
14189 (if (functionp org-get-priority-function)
14190 (funcall org-get-priority-function)
14191 (if (not (string-match org-priority-regexp s))
14192 (* 1000 (- org-lowest-priority org-default-priority))
14193 (* 1000 (- org-lowest-priority
14194 (string-to-char (match-string 2 s))))))))
14196 ;;;; Tags
14198 (defvar org-agenda-archives-mode)
14199 (defvar org-map-continue-from nil
14200 "Position from where mapping should continue.
14201 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14203 (defvar org-scanner-tags nil
14204 "The current tag list while the tags scanner is running.")
14205 (defvar org-trust-scanner-tags nil
14206 "Should `org-get-tags-at' use the tags for the scanner.
14207 This is for internal dynamical scoping only.
14208 When this is non-nil, the function `org-get-tags-at' will return the value
14209 of `org-scanner-tags' instead of building the list by itself. This
14210 can lead to large speed-ups when the tags scanner is used in a file with
14211 many entries, and when the list of tags is retrieved, for example to
14212 obtain a list of properties. Building the tags list for each entry in such
14213 a file becomes an N^2 operation - but with this variable set, it scales
14214 as N.")
14216 (defun org-scan-tags (action matcher todo-only &optional start-level)
14217 "Scan headline tags with inheritance and produce output ACTION.
14219 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14220 or `agenda' to produce an entry list for an agenda view. It can also be
14221 a Lisp form or a function that should be called at each matched headline, in
14222 this case the return value is a list of all return values from these calls.
14224 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14225 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14226 only lines with a not-done TODO keyword are included in the output.
14227 This should be the same variable that was scoped into
14228 and set by `org-make-tags-matcher' when it constructed MATCHER.
14230 START-LEVEL can be a string with asterisks, reducing the scope to
14231 headlines matching this string."
14232 (require 'org-agenda)
14233 (let* ((re (concat "^"
14234 (if start-level
14235 ;; Get the correct level to match
14236 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14237 org-outline-regexp)
14238 " *\\(\\<\\("
14239 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14240 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14241 (props (list 'face 'default
14242 'done-face 'org-agenda-done
14243 'undone-face 'default
14244 'mouse-face 'highlight
14245 'org-not-done-regexp org-not-done-regexp
14246 'org-todo-regexp org-todo-regexp
14247 'org-complex-heading-regexp org-complex-heading-regexp
14248 'help-echo
14249 (format "mouse-2 or RET jump to org file %s"
14250 (abbreviate-file-name
14251 (or (buffer-file-name (buffer-base-buffer))
14252 (buffer-name (buffer-base-buffer)))))))
14253 (org-map-continue-from nil)
14254 lspos tags tags-list
14255 (tags-alist (list (cons 0 org-file-tags)))
14256 (llast 0) rtn rtn1 level category i txt
14257 todo marker entry priority
14258 ts-date ts-date-type ts-date-pair)
14259 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14260 (setq action (list 'lambda nil action)))
14261 (save-excursion
14262 (goto-char (point-min))
14263 (when (eq action 'sparse-tree)
14264 (org-overview)
14265 (org-remove-occur-highlights))
14266 (while (let (case-fold-search)
14267 (re-search-forward re nil t))
14268 (setq org-map-continue-from nil)
14269 (catch :skip
14270 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14271 tags (if (match-end 4) (org-match-string-no-properties 4)))
14272 (goto-char (setq lspos (match-beginning 0)))
14273 (setq level (org-reduced-level (org-outline-level))
14274 category (org-get-category))
14275 (when (eq action 'agenda)
14276 (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
14277 ts-date (car ts-date-pair)
14278 ts-date-type (cdr ts-date-pair)))
14279 (setq i llast llast level)
14280 ;; remove tag lists from same and sublevels
14281 (while (>= i level)
14282 (when (setq entry (assoc i tags-alist))
14283 (setq tags-alist (delete entry tags-alist)))
14284 (setq i (1- i)))
14285 ;; add the next tags
14286 (when tags
14287 (setq tags (org-split-string tags ":")
14288 tags-alist
14289 (cons (cons level tags) tags-alist)))
14290 ;; compile tags for current headline
14291 (setq tags-list
14292 (if org-use-tag-inheritance
14293 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14294 tags)
14295 org-scanner-tags tags-list)
14296 (when org-use-tag-inheritance
14297 (setcdr (car tags-alist)
14298 (mapcar (lambda (x)
14299 (setq x (copy-sequence x))
14300 (org-add-prop-inherited x))
14301 (cdar tags-alist))))
14302 (when (and tags org-use-tag-inheritance
14303 (or (not (eq t org-use-tag-inheritance))
14304 org-tags-exclude-from-inheritance))
14305 ;; selective inheritance, remove uninherited ones
14306 (setcdr (car tags-alist)
14307 (org-remove-uninherited-tags (cdar tags-alist))))
14308 (when (and
14310 ;; eval matcher only when the todo condition is OK
14311 (and (or (not todo-only) (member todo org-not-done-keywords))
14312 (let ((case-fold-search t) (org-trust-scanner-tags t))
14313 (eval matcher)))
14315 ;; Call the skipper, but return t if it does not skip,
14316 ;; so that the `and' form continues evaluating
14317 (progn
14318 (unless (eq action 'sparse-tree) (org-agenda-skip))
14321 ;; Check if timestamps are deselecting this entry
14322 (or (not todo-only)
14323 (and (member todo org-not-done-keywords)
14324 (or (not org-agenda-tags-todo-honor-ignore-options)
14325 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14327 ;; select this headline
14328 (cond
14329 ((eq action 'sparse-tree)
14330 (and org-highlight-sparse-tree-matches
14331 (org-get-heading) (match-end 0)
14332 (org-highlight-new-match
14333 (match-beginning 1) (match-end 1)))
14334 (org-show-context 'tags-tree))
14335 ((eq action 'agenda)
14336 (setq txt (org-agenda-format-item
14338 (concat
14339 (if (eq org-tags-match-list-sublevels 'indented)
14340 (make-string (1- level) ?.) "")
14341 (org-get-heading))
14342 (make-string level ?\s)
14343 category
14344 tags-list)
14345 priority (org-get-priority txt))
14346 (goto-char lspos)
14347 (setq marker (org-agenda-new-marker))
14348 (org-add-props txt props
14349 'org-marker marker 'org-hd-marker marker 'org-category category
14350 'todo-state todo
14351 'ts-date ts-date
14352 'priority priority
14353 'type (concat "tagsmatch" ts-date-type))
14354 (push txt rtn))
14355 ((functionp action)
14356 (setq org-map-continue-from nil)
14357 (save-excursion
14358 (setq rtn1 (funcall action))
14359 (push rtn1 rtn)))
14360 (t (user-error "Invalid action")))
14362 ;; if we are to skip sublevels, jump to end of subtree
14363 (unless org-tags-match-list-sublevels
14364 (org-end-of-subtree t)
14365 (backward-char 1))))
14366 ;; Get the correct position from where to continue
14367 (if org-map-continue-from
14368 (goto-char org-map-continue-from)
14369 (and (= (point) lspos) (end-of-line 1)))))
14370 (when (and (eq action 'sparse-tree)
14371 (not org-sparse-tree-open-archived-trees))
14372 (org-hide-archived-subtrees (point-min) (point-max)))
14373 (nreverse rtn)))
14375 (defun org-remove-uninherited-tags (tags)
14376 "Remove all tags that are not inherited from the list TAGS."
14377 (cond
14378 ((eq org-use-tag-inheritance t)
14379 (if org-tags-exclude-from-inheritance
14380 (org-delete-all org-tags-exclude-from-inheritance tags)
14381 tags))
14382 ((not org-use-tag-inheritance) nil)
14383 ((stringp org-use-tag-inheritance)
14384 (delq nil (mapcar
14385 (lambda (x)
14386 (if (and (string-match org-use-tag-inheritance x)
14387 (not (member x org-tags-exclude-from-inheritance)))
14388 x nil))
14389 tags)))
14390 ((listp org-use-tag-inheritance)
14391 (delq nil (mapcar
14392 (lambda (x)
14393 (if (member x org-use-tag-inheritance) x nil))
14394 tags)))))
14396 (defun org-match-sparse-tree (&optional todo-only match)
14397 "Create a sparse tree according to tags string MATCH.
14398 MATCH can contain positive and negative selection of tags, like
14399 \"+WORK+URGENT-WITHBOSS\".
14400 If optional argument TODO-ONLY is non-nil, only select lines that are
14401 also TODO lines."
14402 (interactive "P")
14403 (org-agenda-prepare-buffers (list (current-buffer)))
14404 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14406 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14408 (defvar org-cached-props nil)
14409 (defun org-cached-entry-get (pom property)
14410 (if (or (eq t org-use-property-inheritance)
14411 (and (stringp org-use-property-inheritance)
14412 (let ((case-fold-search t))
14413 (org-string-match-p org-use-property-inheritance property)))
14414 (and (listp org-use-property-inheritance)
14415 (member-ignore-case property org-use-property-inheritance)))
14416 ;; Caching is not possible, check it directly.
14417 (org-entry-get pom property 'inherit)
14418 ;; Get all properties, so we can do complicated checks easily.
14419 (cdr (assoc-string property
14420 (or org-cached-props
14421 (setq org-cached-props (org-entry-properties pom)))
14422 t))))
14424 (defun org-global-tags-completion-table (&optional files)
14425 "Return the list of all tags in all agenda buffer/files.
14426 Optional FILES argument is a list of files which can be used
14427 instead of the agenda files."
14428 (save-excursion
14429 (org-uniquify
14430 (delq nil
14431 (apply 'append
14432 (mapcar
14433 (lambda (file)
14434 (set-buffer (find-file-noselect file))
14435 (append (org-get-buffer-tags)
14436 (mapcar (lambda (x) (if (stringp (car-safe x))
14437 (list (car-safe x)) nil))
14438 org-tag-alist)))
14439 (if (and files (car files))
14440 files
14441 (org-agenda-files))))))))
14443 (defun org-make-tags-matcher (match)
14444 "Create the TAGS/TODO matcher form for the selection string MATCH.
14446 The variable `todo-only' is scoped dynamically into this function.
14447 It will be set to t if the matcher restricts matching to TODO entries,
14448 otherwise will not be touched.
14450 Returns a cons of the selection string MATCH and the constructed
14451 lisp form implementing the matcher. The matcher is to be evaluated
14452 at an Org entry, with point on the headline, and returns t if the
14453 entry matches the selection string MATCH. The returned lisp form
14454 references two variables with information about the entry, which
14455 must be bound around the form's evaluation: todo, the TODO keyword
14456 at the entry (or nil of none); and tags-list, the list of all tags
14457 at the entry including inherited ones. Additionally, the category
14458 of the entry (if any) must be specified as the text property
14459 `org-category' on the headline.
14461 See also `org-scan-tags'.
14463 (declare (special todo-only))
14464 (unless (boundp 'todo-only)
14465 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14466 (unless match
14467 ;; Get a new match request, with completion against the global
14468 ;; tags table and the local tags in current buffer
14469 (let ((org-last-tags-completion-table
14470 (org-uniquify
14471 (delq nil (append (org-get-buffer-tags)
14472 (org-global-tags-completion-table))))))
14473 (setq match (org-completing-read-no-i
14474 "Match: " 'org-tags-completion-function nil nil nil
14475 'org-tags-history))))
14477 ;; Parse the string and create a lisp form
14478 (let ((match0 match)
14479 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14480 minus tag mm
14481 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14482 orterms term orlist re-p str-p level-p level-op time-p
14483 prop-p pn pv po gv rest (start 0) (ss 0))
14484 ;; Expand group tags
14485 (setq match (org-tags-expand match))
14487 ;; Check if there is a TODO part of this match, which would be the
14488 ;; part after a "/". TO make sure that this slash is not part of
14489 ;; a property value to be matched against, we also check that there
14490 ;; is no " after that slash.
14491 ;; First, find the last slash
14492 (while (string-match "/+" match ss)
14493 (setq start (match-beginning 0) ss (match-end 0)))
14494 (if (and (string-match "/+" match start)
14495 (not (save-match-data (string-match "\"" match start))))
14496 ;; match contains also a todo-matching request
14497 (progn
14498 (setq tagsmatch (substring match 0 (match-beginning 0))
14499 todomatch (substring match (match-end 0)))
14500 (if (string-match "^!" todomatch)
14501 (setq todo-only t todomatch (substring todomatch 1)))
14502 (if (string-match "^\\s-*$" todomatch)
14503 (setq todomatch nil)))
14504 ;; only matching tags
14505 (setq tagsmatch match todomatch nil))
14507 ;; Make the tags matcher
14508 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14509 (setq tagsmatcher t)
14510 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14511 (while (setq term (pop orterms))
14512 (while (and (equal (substring term -1) "\\") orterms)
14513 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14514 (while (string-match re term)
14515 (setq rest (substring term (match-end 0))
14516 minus (and (match-end 1)
14517 (equal (match-string 1 term) "-"))
14518 tag (save-match-data (replace-regexp-in-string
14519 "\\\\-" "-"
14520 (match-string 2 term)))
14521 re-p (equal (string-to-char tag) ?{)
14522 level-p (match-end 4)
14523 prop-p (match-end 5)
14524 mm (cond
14525 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14526 (level-p
14527 (setq level-op (org-op-to-function (match-string 3 term)))
14528 `(,level-op level ,(string-to-number
14529 (match-string 4 term))))
14530 (prop-p
14531 (setq pn (match-string 5 term)
14532 po (match-string 6 term)
14533 pv (match-string 7 term)
14534 re-p (equal (string-to-char pv) ?{)
14535 str-p (equal (string-to-char pv) ?\")
14536 time-p (save-match-data
14537 (string-match "^\"[[<].*[]>]\"$" pv))
14538 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14539 (if time-p (setq pv (org-matcher-time pv)))
14540 (setq po (org-op-to-function po (if time-p 'time str-p)))
14541 (cond
14542 ((equal pn "CATEGORY")
14543 (setq gv '(get-text-property (point) 'org-category)))
14544 ((equal pn "TODO")
14545 (setq gv 'todo))
14547 (setq gv `(org-cached-entry-get nil ,pn))))
14548 (if re-p
14549 (if (eq po 'org<>)
14550 `(not (string-match ,pv (or ,gv "")))
14551 `(string-match ,pv (or ,gv "")))
14552 (if str-p
14553 `(,po (or ,gv "") ,pv)
14554 `(,po (string-to-number (or ,gv ""))
14555 ,(string-to-number pv) ))))
14556 (t `(member ,tag tags-list)))
14557 mm (if minus (list 'not mm) mm)
14558 term rest)
14559 (push mm tagsmatcher))
14560 (push (if (> (length tagsmatcher) 1)
14561 (cons 'and tagsmatcher)
14562 (car tagsmatcher))
14563 orlist)
14564 (setq tagsmatcher nil))
14565 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14566 (setq tagsmatcher
14567 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14568 ;; Make the todo matcher
14569 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14570 (setq todomatcher t)
14571 (setq orterms (org-split-string todomatch "|") orlist nil)
14572 (dolist (term orterms)
14573 (while (string-match re term)
14574 (setq minus (and (match-end 1)
14575 (equal (match-string 1 term) "-"))
14576 kwd (match-string 2 term)
14577 re-p (equal (string-to-char kwd) ?{)
14578 term (substring term (match-end 0))
14579 mm (if re-p
14580 `(string-match ,(substring kwd 1 -1) todo)
14581 (list 'equal 'todo kwd))
14582 mm (if minus (list 'not mm) mm))
14583 (push mm todomatcher))
14584 (push (if (> (length todomatcher) 1)
14585 (cons 'and todomatcher)
14586 (car todomatcher))
14587 orlist)
14588 (setq todomatcher nil))
14589 (setq todomatcher (if (> (length orlist) 1)
14590 (cons 'or orlist) (car orlist))))
14592 ;; Return the string and lisp forms of the matcher
14593 (setq matcher (if todomatcher
14594 (list 'and tagsmatcher todomatcher)
14595 tagsmatcher))
14596 (when todo-only
14597 (setq matcher (list 'and '(member todo org-not-done-keywords)
14598 matcher)))
14599 (cons match0 matcher)))
14601 (defun org-tags-expand (match &optional single-as-list downcased tags-already-expanded)
14602 "Expand group tags in MATCH.
14604 This replaces every group tag in MATCH with a regexp tag search.
14605 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14606 will be replaced like this:
14608 Work => {\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14609 +Work => +{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14610 -Work => -{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14612 Replacing by a regexp preserves the structure of the match.
14613 E.g., this expansion
14615 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14617 will match anything tagged with \"Lab\" and \"Home\", or tagged
14618 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14620 A group tag in MATCH can contain regular expressions of its own.
14621 For example, a group tag \"Proj\" defined as { Proj : {P@.+} }
14622 will be replaced like this:
14624 Proj => {\\<\\(?:Proj\\)\\>\\|P@.+}
14626 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14627 assumed to be a single group tag, and the function will return
14628 the list of tags in this group.
14630 When DOWNCASE is non-nil, expand downcased TAGS."
14631 (if org-group-tags
14632 (let* ((case-fold-search t)
14633 (stable org-mode-syntax-table)
14634 (taggroups (or org-tag-groups-alist-for-agenda org-tag-groups-alist))
14635 (taggroups (if downcased
14636 (mapcar (lambda (tg) (mapcar #'downcase tg))
14637 taggroups)
14638 taggroups))
14639 (taggroups-keys (mapcar #'car taggroups))
14640 (return-match (if downcased (downcase match) match))
14641 (count 0)
14642 (work-already-expanded tags-already-expanded)
14643 regexps-in-match tags-in-group regexp-in-group regexp-in-group-escaped)
14644 ;; @ and _ are allowed as word-components in tags.
14645 (modify-syntax-entry ?@ "w" stable)
14646 (modify-syntax-entry ?_ "w" stable)
14647 ;; Temporarily replace regexp-expressions in the match-expression.
14648 (while (string-match "{.+?}" return-match)
14649 (incf count)
14650 (push (match-string 0 return-match) regexps-in-match)
14651 (setq return-match (replace-match (format "<%d>" count) t nil return-match)))
14652 (while (and taggroups-keys
14653 (with-syntax-table stable
14654 (string-match
14655 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14656 (regexp-opt taggroups-keys) "\\>\\)")
14657 return-match)))
14658 (let* ((dir (match-string 1 return-match))
14659 (tag (match-string 2 return-match))
14660 (tag (if downcased (downcase tag) tag)))
14661 (unless (or (get-text-property 0 'grouptag (match-string 2 return-match))
14662 (member tag work-already-expanded))
14663 (setq tags-in-group (assoc tag taggroups))
14664 (push tag work-already-expanded)
14665 ;; Recursively expand each tag in the group, if the tag hasn't
14666 ;; already been expanded. Restore the match-data after all recursive calls.
14667 (save-match-data
14668 (let (tags-expanded)
14669 (dolist (x (cdr tags-in-group))
14670 (if (and (member x taggroups-keys)
14671 (not (member x work-already-expanded)))
14672 (setq tags-expanded
14673 (delete-dups
14674 (append
14675 (org-tags-expand x t downcased
14676 work-already-expanded)
14677 tags-expanded)))
14678 (setq tags-expanded
14679 (append (list x) tags-expanded)))
14680 (setq work-already-expanded
14681 (delete-dups
14682 (append tags-expanded
14683 work-already-expanded))))
14684 (setq tags-in-group
14685 (delete-dups (cons (car tags-in-group)
14686 tags-expanded)))))
14687 ;; Filter tag-regexps from tags.
14688 (setq regexp-in-group-escaped
14689 (delq nil (mapcar (lambda (x)
14690 (if (stringp x)
14691 (and (equal "{" (substring x 0 1))
14692 (equal "}" (substring x -1))
14695 tags-in-group))
14696 regexp-in-group
14697 (mapcar (lambda (x)
14698 (substring x 1 -1))
14699 regexp-in-group-escaped)
14700 tags-in-group
14701 (delq nil (mapcar (lambda (x)
14702 (if (stringp x)
14703 (and (not (equal "{" (substring x 0 1)))
14704 (not (equal "}" (substring x -1)))
14707 tags-in-group)))
14708 ;; If single-as-list, do no more in the while-loop.
14709 (if (not single-as-list)
14710 (progn
14711 (when regexp-in-group
14712 (setq regexp-in-group
14713 (concat "\\|"
14714 (mapconcat 'identity regexp-in-group
14715 "\\|"))))
14716 (setq tags-in-group
14717 (concat dir
14718 "{\\<"
14719 (regexp-opt tags-in-group)
14720 "\\>"
14721 regexp-in-group
14722 "}"))
14723 (when (stringp tags-in-group)
14724 (org-add-props tags-in-group '(grouptag t)))
14725 (setq return-match
14726 (replace-match tags-in-group t t return-match)))
14727 (setq tags-in-group
14728 (append regexp-in-group-escaped tags-in-group))))
14729 (setq taggroups-keys (delete tag taggroups-keys))))
14730 ;; Add the regular expressions back into the match-expression again.
14731 (while regexps-in-match
14732 (setq return-match (replace-regexp-in-string (format "<%d>" count)
14733 (pop regexps-in-match)
14734 return-match t t))
14735 (decf count))
14736 (if single-as-list
14737 (if tags-in-group tags-in-group (list return-match))
14738 return-match))
14739 (if single-as-list
14740 (list (if downcased (downcase match) match))
14741 match)))
14743 (defun org-op-to-function (op &optional stringp)
14744 "Turn an operator into the appropriate function."
14745 (setq op
14746 (cond
14747 ((equal op "<" ) '(< string< org-time<))
14748 ((equal op ">" ) '(> org-string> org-time>))
14749 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14750 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14751 ((member op '("=" "==")) '(= string= org-time=))
14752 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14753 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14755 (defun org<> (a b) (not (= a b)))
14756 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14757 (defun org-string>= (a b) (not (string< a b)))
14758 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14759 (defun org-string<> (a b) (not (string= a b)))
14760 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14761 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14762 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= a b)))
14763 (defun org-time> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (> a b)))
14764 (defun org-time>= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (>= a b)))
14765 (defun org-time<> (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (org<> a b)))
14766 (defun org-2ft (s)
14767 "Convert S to a floating point time.
14768 If S is already a number, just return it. If it is a string, parse
14769 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14770 (cond
14771 ((numberp s) s)
14772 ((stringp s)
14773 (condition-case nil
14774 (float-time (apply 'encode-time (org-parse-time-string s)))
14775 (error 0.)))
14776 (t 0.)))
14778 (defun org-time-today ()
14779 "Time in seconds today at 0:00.
14780 Returns the float number of seconds since the beginning of the
14781 epoch to the beginning of today (00:00)."
14782 (float-time (apply 'encode-time
14783 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14785 (defun org-matcher-time (s)
14786 "Interpret a time comparison value."
14787 (save-match-data
14788 (cond
14789 ((string= s "<now>") (float-time))
14790 ((string= s "<today>") (org-time-today))
14791 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14792 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14793 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14794 (+ (org-time-today)
14795 (* (string-to-number (match-string 1 s))
14796 (cdr (assoc (match-string 2 s)
14797 '(("d" . 86400.0) ("w" . 604800.0)
14798 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14799 (t (org-2ft s)))))
14801 (defun org-match-any-p (re list)
14802 "Does re match any element of list?"
14803 (setq list (mapcar (lambda (x) (string-match re x)) list))
14804 (delq nil list))
14806 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14807 (defvar org-tags-overlay (make-overlay 1 1))
14808 (org-detach-overlay org-tags-overlay)
14810 (defun org-get-local-tags-at (&optional pos)
14811 "Get a list of tags defined in the current headline."
14812 (org-get-tags-at pos 'local))
14814 (defun org-get-local-tags ()
14815 "Get a list of tags defined in the current headline."
14816 (org-get-tags-at nil 'local))
14818 (defun org-get-tags-at (&optional pos local)
14819 "Get a list of all headline tags applicable at POS.
14820 POS defaults to point. If tags are inherited, the list contains
14821 the targets in the same sequence as the headlines appear, i.e.
14822 the tags of the current headline come last.
14823 When LOCAL is non-nil, only return tags from the current headline,
14824 ignore inherited ones."
14825 (interactive)
14826 (if (and org-trust-scanner-tags
14827 (or (not pos) (equal pos (point)))
14828 (not local))
14829 org-scanner-tags
14830 (let (tags ltags lastpos parent)
14831 (save-excursion
14832 (save-restriction
14833 (widen)
14834 (goto-char (or pos (point)))
14835 (save-match-data
14836 (catch 'done
14837 (condition-case nil
14838 (progn
14839 (org-back-to-heading t)
14840 (while (not (equal lastpos (point)))
14841 (setq lastpos (point))
14842 (when (looking-at
14843 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14844 (setq ltags (org-split-string
14845 (org-match-string-no-properties 1) ":"))
14846 (when parent
14847 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14848 (setq tags (append
14849 (if parent
14850 (org-remove-uninherited-tags ltags)
14851 ltags)
14852 tags)))
14853 (or org-use-tag-inheritance (throw 'done t))
14854 (if local (throw 'done t))
14855 (or (org-up-heading-safe) (error nil))
14856 (setq parent t)))
14857 (error nil)))))
14858 (if local
14859 tags
14860 (reverse (delete-dups
14861 (reverse (append
14862 (org-remove-uninherited-tags
14863 org-file-tags)
14864 tags)))))))))
14866 (defun org-add-prop-inherited (s)
14867 (add-text-properties 0 (length s) '(inherited t) s)
14870 (defun org-toggle-tag (tag &optional onoff)
14871 "Toggle the tag TAG for the current line.
14872 If ONOFF is `on' or `off', don't toggle but set to this state."
14873 (let (res current)
14874 (save-excursion
14875 (org-back-to-heading t)
14876 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14877 (point-at-eol) t)
14878 (progn
14879 (setq current (match-string 1))
14880 (replace-match ""))
14881 (setq current ""))
14882 (setq current (nreverse (org-split-string current ":")))
14883 (cond
14884 ((eq onoff 'on)
14885 (setq res t)
14886 (or (member tag current) (push tag current)))
14887 ((eq onoff 'off)
14888 (or (not (member tag current)) (setq current (delete tag current))))
14889 (t (if (member tag current)
14890 (setq current (delete tag current))
14891 (setq res t)
14892 (push tag current))))
14893 (end-of-line 1)
14894 (if current
14895 (progn
14896 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14897 (org-set-tags nil t))
14898 (delete-horizontal-space))
14899 (run-hooks 'org-after-tags-change-hook))
14900 res))
14902 (defun org-align-tags-here (to-col)
14903 ;; Assumes that this is a headline
14904 "Align tags on the current headline to TO-COL."
14905 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14906 (beginning-of-line 1)
14907 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14908 (< pos (match-beginning 2)))
14909 (progn
14910 (setq tags-l (- (match-end 2) (match-beginning 2)))
14911 (goto-char (match-beginning 1))
14912 (insert " ")
14913 (delete-region (point) (1+ (match-beginning 2)))
14914 (setq ncol (max (current-column)
14915 (1+ col)
14916 (if (> to-col 0)
14917 to-col
14918 (- (abs to-col) tags-l))))
14919 (setq p (point))
14920 (insert (make-string (- ncol (current-column)) ?\ ))
14921 (setq ncol (current-column))
14922 (when indent-tabs-mode (tabify p (point-at-eol)))
14923 (org-move-to-column (min ncol col)))
14924 (goto-char pos))))
14926 (defun org-set-tags-command (&optional arg just-align)
14927 "Call the set-tags command for the current entry."
14928 (interactive "P")
14929 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14930 (org-set-tags arg just-align)
14931 (save-excursion
14932 (unless (and (org-region-active-p)
14933 org-loop-over-headlines-in-active-region)
14934 (org-back-to-heading t))
14935 (org-set-tags arg just-align))))
14937 (defun org-set-tags-to (data)
14938 "Set the tags of the current entry to DATA, replacing the current tags.
14939 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14940 If DATA is nil or the empty string, any tags will be removed."
14941 (interactive "sTags: ")
14942 (setq data
14943 (cond
14944 ((eq data nil) "")
14945 ((equal data "") "")
14946 ((stringp data)
14947 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14948 ":"))
14949 ((listp data)
14950 (concat ":" (mapconcat 'identity data ":") ":"))))
14951 (when data
14952 (save-excursion
14953 (org-back-to-heading t)
14954 (when (looking-at org-complex-heading-regexp)
14955 (if (match-end 5)
14956 (progn
14957 (goto-char (match-beginning 5))
14958 (insert data)
14959 (delete-region (point) (point-at-eol))
14960 (org-set-tags nil 'align))
14961 (goto-char (point-at-eol))
14962 (insert " " data)
14963 (org-set-tags nil 'align)))
14964 (beginning-of-line 1)
14965 (if (looking-at ".*?\\([ \t]+\\)$")
14966 (delete-region (match-beginning 1) (match-end 1))))))
14968 (defun org-align-all-tags ()
14969 "Align the tags i all headings."
14970 (interactive)
14971 (save-excursion
14972 (or (ignore-errors (org-back-to-heading t))
14973 (outline-next-heading))
14974 (if (org-at-heading-p)
14975 (org-set-tags t)
14976 (message "No headings"))))
14978 (defvar org-indent-indentation-per-level)
14979 (defun org-set-tags (&optional arg just-align)
14980 "Set the tags for the current headline.
14981 With prefix ARG, realign all tags in headings in the current buffer.
14982 When JUST-ALIGN is non-nil, only align tags."
14983 (interactive "P")
14984 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14985 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14986 'region-start-level
14987 'region))
14988 org-loop-over-headlines-in-active-region)
14989 (org-map-entries
14990 ;; We don't use ARG and JUST-ALIGN here because these args
14991 ;; are not useful when looping over headlines.
14992 #'org-set-tags
14993 org-loop-over-headlines-in-active-region
14995 '(when (outline-invisible-p) (org-end-of-subtree nil t))))
14996 (let ((org-setting-tags t))
14997 (if arg
14998 (save-excursion
14999 (goto-char (point-min))
15000 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
15001 (while (re-search-forward org-outline-regexp-bol nil t)
15002 (org-set-tags nil t)
15003 (end-of-line)))
15004 (message "All tags realigned to column %d" org-tags-column))
15005 (let* ((current (org-get-tags-string))
15006 (col (current-column))
15007 (tags
15008 (if just-align current
15009 ;; Get a new set of tags from the user.
15010 (save-excursion
15011 (let* ((table
15012 (setq
15013 org-last-tags-completion-table
15014 (append
15015 org-tag-persistent-alist
15016 (or org-tag-alist (org-get-buffer-tags))
15017 (and
15018 org-complete-tags-always-offer-all-agenda-tags
15019 (org-global-tags-completion-table
15020 (org-agenda-files))))))
15021 (current-tags (org-split-string current ":"))
15022 (inherited-tags
15023 (nreverse (nthcdr (length current-tags)
15024 (nreverse (org-get-tags-at))))))
15025 (replace-regexp-in-string
15026 "\\([-+&]+\\|,\\)"
15028 (if (or (eq t org-use-fast-tag-selection)
15029 (and org-use-fast-tag-selection
15030 (delq nil (mapcar #'cdr table))))
15031 (org-fast-tag-selection
15032 current-tags inherited-tags table
15033 (and org-fast-tag-selection-include-todo
15034 org-todo-key-alist))
15035 (let ((org-add-colon-after-tag-completion
15036 (< 1 (length table))))
15037 (org-trim
15038 (completing-read
15039 "Tags: "
15040 #'org-tags-completion-function
15041 nil nil current 'org-tags-history))))))))))
15043 (when org-tags-sort-function
15044 (setq tags
15045 (mapconcat
15046 #'identity
15047 (sort (org-split-string tags (org-re "[^[:alnum:]_@#%]+"))
15048 org-tags-sort-function)
15049 ":")))
15051 (if (not (org-string-nw-p tags)) (setq tags "")
15052 (unless (string-match ":\\'" tags) (setq tags (concat tags ":")))
15053 (unless (string-match "\\`:" tags) (setq tags (concat ":" tags))))
15055 ;; Insert new tags at the correct column
15056 (beginning-of-line)
15057 (let ((level (if (looking-at org-outline-regexp)
15058 (- (match-end 0) (point) 1)
15059 1)))
15060 (cond
15061 ((and (equal current "") (equal tags "")))
15062 ((re-search-forward
15063 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
15064 (line-end-position)
15066 (if (equal tags "") (replace-match "" t t)
15067 (goto-char (match-beginning 0))
15068 (let* ((c0 (current-column))
15069 ;; Compute offset for the case of org-indent-mode
15070 ;; active.
15071 (di (if (org-bound-and-true-p org-indent-mode)
15072 (* (1- org-indent-indentation-per-level)
15073 (1- level))
15075 (p0 (if (eq (char-before) ?*) (1+ (point)) (point)))
15076 (tc (+ org-tags-column
15077 (if (> org-tags-column 0) (- di) di)))
15078 (c1 (max (1+ c0)
15079 (if (> tc 0) tc
15080 (- (- tc) (string-width tags)))))
15081 (rpl (concat (make-string (max 0 (- c1 c0)) ?\s) tags)))
15082 (replace-match rpl t t)
15083 (when (and (not (featurep 'xemacs)) indent-tabs-mode)
15084 (tabify p0 (point))))))
15085 (t (error "Tags alignment failed"))))
15086 (org-move-to-column col))
15087 (unless just-align (run-hooks 'org-after-tags-change-hook))))))
15089 (defun org-change-tag-in-region (beg end tag off)
15090 "Add or remove TAG for each entry in the region.
15091 This works in the agenda, and also in an org-mode buffer."
15092 (interactive
15093 (list (region-beginning) (region-end)
15094 (let ((org-last-tags-completion-table
15095 (if (derived-mode-p 'org-mode)
15096 (org-uniquify
15097 (delq nil (append (org-get-buffer-tags)
15098 (org-global-tags-completion-table))))
15099 (org-global-tags-completion-table))))
15100 (org-icompleting-read
15101 "Tag: " 'org-tags-completion-function nil nil nil
15102 'org-tags-history))
15103 (progn
15104 (message "[s]et or [r]emove? ")
15105 (equal (read-char-exclusive) ?r))))
15106 (if (fboundp 'deactivate-mark) (deactivate-mark))
15107 (let ((agendap (equal major-mode 'org-agenda-mode))
15108 l1 l2 m buf pos newhead (cnt 0))
15109 (goto-char end)
15110 (setq l2 (1- (org-current-line)))
15111 (goto-char beg)
15112 (setq l1 (org-current-line))
15113 (loop for l from l1 to l2 do
15114 (org-goto-line l)
15115 (setq m (get-text-property (point) 'org-hd-marker))
15116 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
15117 (and agendap m))
15118 (setq buf (if agendap (marker-buffer m) (current-buffer))
15119 pos (if agendap m (point)))
15120 (with-current-buffer buf
15121 (save-excursion
15122 (save-restriction
15123 (goto-char pos)
15124 (setq cnt (1+ cnt))
15125 (org-toggle-tag tag (if off 'off 'on))
15126 (setq newhead (org-get-heading)))))
15127 (and agendap (org-agenda-change-all-lines newhead m))))
15128 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
15130 (defun org-tags-completion-function (string predicate &optional flag)
15131 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
15132 (confirm (lambda (x) (stringp (car x)))))
15133 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
15134 (setq s1 (match-string 1 string)
15135 s2 (match-string 2 string))
15136 (setq s1 "" s2 string))
15137 (cond
15138 ((eq flag nil)
15139 ;; try completion
15140 (setq rtn (try-completion s2 ctable confirm))
15141 (if (stringp rtn)
15142 (setq rtn
15143 (concat s1 s2 (substring rtn (length s2))
15144 (if (and org-add-colon-after-tag-completion
15145 (assoc rtn ctable))
15146 ":" ""))))
15147 rtn)
15148 ((eq flag t)
15149 ;; all-completions
15150 (all-completions s2 ctable confirm))
15151 ((eq flag 'lambda)
15152 ;; exact match?
15153 (assoc s2 ctable)))))
15155 (defun org-fast-tag-insert (kwd tags face &optional end)
15156 "Insert KDW, and the TAGS, the latter with face FACE.
15157 Also insert END."
15158 (insert (format "%-12s" (concat kwd ":"))
15159 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15160 (or end "")))
15162 (defun org-fast-tag-show-exit (flag)
15163 (save-excursion
15164 (org-goto-line 3)
15165 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15166 (replace-match ""))
15167 (when flag
15168 (end-of-line 1)
15169 (org-move-to-column (- (window-width) 19) t)
15170 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15172 (defun org-set-current-tags-overlay (current prefix)
15173 "Add an overlay to CURRENT tag with PREFIX."
15174 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15175 (if (featurep 'xemacs)
15176 (org-overlay-display org-tags-overlay (concat prefix s)
15177 'secondary-selection)
15178 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15179 (org-overlay-display org-tags-overlay (concat prefix s)))))
15181 (defvar org-last-tag-selection-key nil)
15182 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15183 "Fast tag selection with single keys.
15184 CURRENT is the current list of tags in the headline, INHERITED is the
15185 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15186 possibly with grouping information. TODO-TABLE is a similar table with
15187 TODO keywords, should these have keys assigned to them.
15188 If the keys are nil, a-z are automatically assigned.
15189 Returns the new tags string, or nil to not change the current settings."
15190 (let* ((fulltable (append table todo-table))
15191 (maxlen (apply 'max (mapcar
15192 (lambda (x)
15193 (if (stringp (car x)) (string-width (car x)) 0))
15194 fulltable)))
15195 (buf (current-buffer))
15196 (expert (eq org-fast-tag-selection-single-key 'expert))
15197 (buffer-tags nil)
15198 (fwidth (+ maxlen 3 1 3))
15199 (ncol (/ (- (window-width) 4) fwidth))
15200 (i-face 'org-done)
15201 (c-face 'org-todo)
15202 tg cnt e c char c1 c2 ntable tbl rtn
15203 ov-start ov-end ov-prefix
15204 (exit-after-next org-fast-tag-selection-single-key)
15205 (done-keywords org-done-keywords)
15206 groups ingroup intaggroup)
15207 (save-excursion
15208 (beginning-of-line 1)
15209 (if (looking-at
15210 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15211 (setq ov-start (match-beginning 1)
15212 ov-end (match-end 1)
15213 ov-prefix "")
15214 (setq ov-start (1- (point-at-eol))
15215 ov-end (1+ ov-start))
15216 (skip-chars-forward "^\n\r")
15217 (setq ov-prefix
15218 (concat
15219 (buffer-substring (1- (point)) (point))
15220 (if (> (current-column) org-tags-column)
15222 (make-string (- org-tags-column (current-column)) ?\ ))))))
15223 (move-overlay org-tags-overlay ov-start ov-end)
15224 (save-window-excursion
15225 (if expert
15226 (set-buffer (get-buffer-create " *Org tags*"))
15227 (delete-other-windows)
15228 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15229 (org-switch-to-buffer-other-window " *Org tags*"))
15230 (erase-buffer)
15231 (org-set-local 'org-done-keywords done-keywords)
15232 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15233 (org-fast-tag-insert "Current" current c-face "\n\n")
15234 (org-fast-tag-show-exit exit-after-next)
15235 (org-set-current-tags-overlay current ov-prefix)
15236 (setq tbl fulltable char ?a cnt 0)
15237 (while (setq e (pop tbl))
15238 (cond
15239 ((eq (car e) :startgroup)
15240 (push '() groups) (setq ingroup t)
15241 (unless (zerop cnt)
15242 (setq cnt 0)
15243 (insert "\n"))
15244 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15245 ((eq (car e) :endgroup)
15246 (setq ingroup nil cnt 0)
15247 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15248 ((eq (car e) :startgrouptag)
15249 (setq intaggroup t)
15250 (unless (zerop cnt)
15251 (setq cnt 0)
15252 (insert "\n"))
15253 (insert "[ "))
15254 ((eq (car e) :endgrouptag)
15255 (setq intaggroup nil cnt 0)
15256 (insert "]\n"))
15257 ((equal e '(:newline))
15258 (unless (zerop cnt)
15259 (setq cnt 0)
15260 (insert "\n")
15261 (setq e (car tbl))
15262 (while (equal (car tbl) '(:newline))
15263 (insert "\n")
15264 (setq tbl (cdr tbl)))))
15265 ((equal e '(:grouptags)) (insert " : "))
15267 (setq tg (copy-sequence (car e)) c2 nil)
15268 (if (cdr e)
15269 (setq c (cdr e))
15270 ;; automatically assign a character.
15271 (setq c1 (string-to-char
15272 (downcase (substring
15273 tg (if (= (string-to-char tg) ?@) 1 0)))))
15274 (if (or (rassoc c1 ntable) (rassoc c1 table))
15275 (while (or (rassoc char ntable) (rassoc char table))
15276 (setq char (1+ char)))
15277 (setq c2 c1))
15278 (setq c (or c2 char)))
15279 (when ingroup (push tg (car groups)))
15280 (setq tg (org-add-props tg nil 'face
15281 (cond
15282 ((not (assoc tg table))
15283 (org-get-todo-face tg))
15284 ((member tg current) c-face)
15285 ((member tg inherited) i-face))))
15286 (when (equal (caar tbl) :grouptags)
15287 (org-add-props tg nil 'face 'org-tag-group))
15288 (when (and (zerop cnt) (not ingroup) (not intaggroup)) (insert " "))
15289 (insert "[" c "] " tg (make-string
15290 (- fwidth 4 (length tg)) ?\ ))
15291 (push (cons tg c) ntable)
15292 (when (= (incf cnt) ncol)
15293 (insert "\n")
15294 (when (or ingroup intaggroup) (insert " "))
15295 (setq cnt 0)))))
15296 (setq ntable (nreverse ntable))
15297 (insert "\n")
15298 (goto-char (point-min))
15299 (unless expert (org-fit-window-to-buffer))
15300 (setq rtn
15301 (catch 'exit
15302 (while t
15303 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15304 (if (not groups) "no " "")
15305 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15306 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15307 (setq org-last-tag-selection-key c)
15308 (cond
15309 ((= c ?\r) (throw 'exit t))
15310 ((= c ?!)
15311 (setq groups (not groups))
15312 (goto-char (point-min))
15313 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15314 ((= c ?\C-c)
15315 (if (not expert)
15316 (org-fast-tag-show-exit
15317 (setq exit-after-next (not exit-after-next)))
15318 (setq expert nil)
15319 (delete-other-windows)
15320 (set-window-buffer (split-window-vertically) " *Org tags*")
15321 (org-switch-to-buffer-other-window " *Org tags*")
15322 (org-fit-window-to-buffer)))
15323 ((or (= c ?\C-g)
15324 (and (= c ?q) (not (rassoc c ntable))))
15325 (org-detach-overlay org-tags-overlay)
15326 (setq quit-flag t))
15327 ((= c ?\ )
15328 (setq current nil)
15329 (when exit-after-next (setq exit-after-next 'now)))
15330 ((= c ?\t)
15331 (condition-case nil
15332 (setq tg (org-icompleting-read
15333 "Tag: "
15334 (or buffer-tags
15335 (with-current-buffer buf
15336 (setq buffer-tags
15337 (org-get-buffer-tags))))))
15338 (quit (setq tg "")))
15339 (when (string-match "\\S-" tg)
15340 (add-to-list 'buffer-tags (list tg))
15341 (if (member tg current)
15342 (setq current (delete tg current))
15343 (push tg current)))
15344 (when exit-after-next (setq exit-after-next 'now)))
15345 ((setq e (rassoc c todo-table) tg (car e))
15346 (with-current-buffer buf
15347 (save-excursion (org-todo tg)))
15348 (when exit-after-next (setq exit-after-next 'now)))
15349 ((setq e (rassoc c ntable) tg (car e))
15350 (if (member tg current)
15351 (setq current (delete tg current))
15352 (loop for g in groups do
15353 (when (member tg g)
15354 (dolist (x g) (setq current (delete x current)))))
15355 (push tg current))
15356 (when exit-after-next (setq exit-after-next 'now))))
15358 ;; Create a sorted list
15359 (setq current
15360 (sort current
15361 (lambda (a b)
15362 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15363 (when (eq exit-after-next 'now) (throw 'exit t))
15364 (goto-char (point-min))
15365 (beginning-of-line 2)
15366 (delete-region (point) (point-at-eol))
15367 (org-fast-tag-insert "Current" current c-face)
15368 (org-set-current-tags-overlay current ov-prefix)
15369 (while (re-search-forward
15370 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15371 (setq tg (match-string 1))
15372 (add-text-properties
15373 (match-beginning 1) (match-end 1)
15374 (list 'face
15375 (cond
15376 ((member tg current) c-face)
15377 ((member tg inherited) i-face)
15378 (t (get-text-property (match-beginning 1) 'face))))))
15379 (goto-char (point-min)))))
15380 (org-detach-overlay org-tags-overlay)
15381 (if rtn
15382 (mapconcat 'identity current ":")
15383 nil))))
15385 (defun org-get-tags-string ()
15386 "Get the TAGS string in the current headline."
15387 (unless (org-at-heading-p t)
15388 (user-error "Not on a heading"))
15389 (save-excursion
15390 (beginning-of-line 1)
15391 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15392 (org-match-string-no-properties 1)
15393 "")))
15395 (defun org-get-tags ()
15396 "Get the list of tags specified in the current headline."
15397 (org-split-string (org-get-tags-string) ":"))
15399 (defun org-get-buffer-tags ()
15400 "Get a table of all tags used in the buffer, for completion."
15401 (org-with-wide-buffer
15402 (goto-char (point-min))
15403 (let ((tag-re (concat org-outline-regexp-bol
15404 "\\(?:.*?[ \t]\\)?"
15405 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15406 tags)
15407 (while (re-search-forward tag-re nil t)
15408 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15409 (push tag tags)))
15410 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15412 ;;;; The mapping API
15414 (defun org-map-entries (func &optional match scope &rest skip)
15415 "Call FUNC at each headline selected by MATCH in SCOPE.
15417 FUNC is a function or a lisp form. The function will be called without
15418 arguments, with the cursor positioned at the beginning of the headline.
15419 The return values of all calls to the function will be collected and
15420 returned as a list.
15422 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15423 does not need to preserve point. After evaluation, the cursor will be
15424 moved to the end of the line (presumably of the headline of the
15425 processed entry) and search continues from there. Under some
15426 circumstances, this may not produce the wanted results. For example,
15427 if you have removed (e.g. archived) the current (sub)tree it could
15428 mean that the next entry will be skipped entirely. In such cases, you
15429 can specify the position from where search should continue by making
15430 FUNC set the variable `org-map-continue-from' to the desired buffer
15431 position.
15433 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15434 Only headlines that are matched by this query will be considered during
15435 the iteration. When MATCH is nil or t, all headlines will be
15436 visited by the iteration.
15438 SCOPE determines the scope of this command. It can be any of:
15440 nil The current buffer, respecting the restriction if any
15441 tree The subtree started with the entry at point
15442 region The entries within the active region, if any
15443 region-start-level
15444 The entries within the active region, but only those at
15445 the same level than the first one.
15446 file The current buffer, without restriction
15447 file-with-archives
15448 The current buffer, and any archives associated with it
15449 agenda All agenda files
15450 agenda-with-archives
15451 All agenda files with any archive files associated with them
15452 \(file1 file2 ...)
15453 If this is a list, all files in the list will be scanned
15455 The remaining args are treated as settings for the skipping facilities of
15456 the scanner. The following items can be given here:
15458 archive skip trees with the archive tag
15459 comment skip trees with the COMMENT keyword
15460 function or Emacs Lisp form:
15461 will be used as value for `org-agenda-skip-function', so
15462 whenever the function returns a position, FUNC will not be
15463 called for that entry and search will continue from the
15464 position returned
15466 If your function needs to retrieve the tags including inherited tags
15467 at the *current* entry, you can use the value of the variable
15468 `org-scanner-tags' which will be much faster than getting the value
15469 with `org-get-tags-at'. If your function gets properties with
15470 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15471 to t around the call to `org-entry-properties' to get the same speedup.
15472 Note that if your function moves around to retrieve tags and properties at
15473 a *different* entry, you cannot use these techniques."
15474 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15475 (not (org-region-active-p)))
15476 (let* ((org-agenda-archives-mode nil) ; just to make sure
15477 (org-agenda-skip-archived-trees (memq 'archive skip))
15478 (org-agenda-skip-comment-trees (memq 'comment skip))
15479 (org-agenda-skip-function
15480 (car (org-delete-all '(comment archive) skip)))
15481 (org-tags-match-list-sublevels t)
15482 (start-level (eq scope 'region-start-level))
15483 matcher file res
15484 org-todo-keywords-for-agenda
15485 org-done-keywords-for-agenda
15486 org-todo-keyword-alist-for-agenda
15487 org-tag-alist-for-agenda
15488 todo-only)
15490 (cond
15491 ((eq match t) (setq matcher t))
15492 ((eq match nil) (setq matcher t))
15493 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15495 (save-excursion
15496 (save-restriction
15497 (cond ((eq scope 'tree)
15498 (org-back-to-heading t)
15499 (org-narrow-to-subtree)
15500 (setq scope nil))
15501 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15502 (org-region-active-p))
15503 ;; If needed, set start-level to a string like "2"
15504 (when start-level
15505 (save-excursion
15506 (goto-char (region-beginning))
15507 (unless (org-at-heading-p) (outline-next-heading))
15508 (setq start-level (org-current-level))))
15509 (narrow-to-region (region-beginning)
15510 (save-excursion
15511 (goto-char (region-end))
15512 (unless (and (bolp) (org-at-heading-p))
15513 (outline-next-heading))
15514 (point)))
15515 (setq scope nil)))
15517 (if (not scope)
15518 (progn
15519 (org-agenda-prepare-buffers
15520 (and buffer-file-name (list buffer-file-name)))
15521 (setq res (org-scan-tags func matcher todo-only start-level)))
15522 ;; Get the right scope
15523 (cond
15524 ((and scope (listp scope) (symbolp (car scope)))
15525 (setq scope (eval scope)))
15526 ((eq scope 'agenda)
15527 (setq scope (org-agenda-files t)))
15528 ((eq scope 'agenda-with-archives)
15529 (setq scope (org-agenda-files t))
15530 (setq scope (org-add-archive-files scope)))
15531 ((eq scope 'file)
15532 (setq scope (and buffer-file-name (list buffer-file-name))))
15533 ((eq scope 'file-with-archives)
15534 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15535 (org-agenda-prepare-buffers scope)
15536 (dolist (file scope)
15537 (with-current-buffer (org-find-base-buffer-visiting file)
15538 (save-excursion
15539 (save-restriction
15540 (widen)
15541 (goto-char (point-min))
15542 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15543 res)))
15545 ;;; Properties API
15547 (defconst org-special-properties
15548 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15549 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15550 "The special properties valid in Org mode.
15551 These are properties that are not defined in the property drawer,
15552 but in some other way.")
15554 (defconst org-default-properties
15555 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15556 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15557 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15558 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15559 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15560 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15561 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15562 "Some properties that are used by Org mode for various purposes.
15563 Being in this list makes sure that they are offered for completion.")
15565 (defun org--valid-property-p (property)
15566 "Non nil when string PROPERTY is a valid property name."
15567 (not
15568 (or (equal property "")
15569 (org-string-match-p "\\s-" property))))
15571 (defun org--update-property-plist (key val props)
15572 "Associate KEY to VAL in alist PROPS.
15573 Modifications are made by side-effect. Return new alist."
15574 (let* ((appending (string= (substring key -1) "+"))
15575 (key (if appending (substring key 0 -1) key))
15576 (old (assoc-string key props t)))
15577 (if (not old) (cons (cons key val) props)
15578 (setcdr old (if appending (concat (cdr old) " " val) val))
15579 props)))
15581 (defun org-get-property-block (&optional beg force)
15582 "Return the (beg . end) range of the body of the property drawer.
15583 BEG is the beginning of the current subtree, or of the part
15584 before the first headline. If it is not given, it will be found.
15585 If the drawer does not exist, create it if FORCE is non-nil, or
15586 return nil."
15587 (org-with-wide-buffer
15588 (when beg (goto-char beg))
15589 (unless (org-before-first-heading-p)
15590 (let ((beg (cond (beg)
15591 ((or (not (featurep 'org-inlinetask))
15592 (org-inlinetask-in-task-p))
15593 (org-back-to-heading t))
15594 (t (org-with-limited-levels (org-back-to-heading t))))))
15595 (forward-line)
15596 (when (org-looking-at-p org-planning-line-re) (forward-line))
15597 (cond ((looking-at org-property-drawer-re)
15598 (forward-line)
15599 (cons (point) (progn (goto-char (match-end 0))
15600 (line-beginning-position))))
15601 (force
15602 (goto-char beg)
15603 (org-insert-property-drawer)
15604 (let ((pos (save-excursion (search-forward ":END:")
15605 (line-beginning-position))))
15606 (cons pos pos))))))))
15608 (defun org-at-property-p ()
15609 "Non-nil when point is inside a property drawer.
15610 See `org-property-re' for match data, if applicable."
15611 (save-excursion
15612 (beginning-of-line)
15613 (and (looking-at org-property-re)
15614 (let ((property-drawer (save-match-data (org-get-property-block))))
15615 (and property-drawer
15616 (>= (point) (car property-drawer))
15617 (< (point) (cdr property-drawer)))))))
15619 (defun org-property-action ()
15620 "Do an action on properties."
15621 (interactive)
15622 (unless (org-at-property-p) (user-error "Not at a property"))
15623 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15624 (let ((c (read-char-exclusive)))
15625 (case c
15626 (?s (call-interactively #'org-set-property))
15627 (?d (call-interactively #'org-delete-property))
15628 (?D (call-interactively #'org-delete-property-globally))
15629 (?c (call-interactively #'org-compute-property-at-point))
15630 (otherwise (user-error "No such property action %c" c)))))
15632 (defun org-inc-effort ()
15633 "Increment the value of the effort property in the current entry."
15634 (interactive)
15635 (org-set-effort nil t))
15637 (defvar org-clock-effort) ; Defined in org-clock.el.
15638 (defvar org-clock-current-task) ; Defined in org-clock.el.
15639 (defun org-set-effort (&optional value increment)
15640 "Set the effort property of the current entry.
15641 With numerical prefix arg, use the nth allowed value, 0 stands for the
15642 10th allowed value.
15644 When INCREMENT is non-nil, set the property to the next allowed value."
15645 (interactive "P")
15646 (if (equal value 0) (setq value 10))
15647 (let* ((completion-ignore-case t)
15648 (prop org-effort-property)
15649 (cur (org-entry-get nil prop))
15650 (allowed (org-property-get-allowed-values nil prop 'table))
15651 (existing (mapcar 'list (org-property-values prop)))
15652 (heading (nth 4 (org-heading-components)))
15654 (val (cond
15655 ((stringp value) value)
15656 ((and allowed (integerp value))
15657 (or (car (nth (1- value) allowed))
15658 (car (org-last allowed))))
15659 ((and allowed increment)
15660 (or (caadr (member (list cur) allowed))
15661 (user-error "Allowed effort values are not set")))
15662 (allowed
15663 (message "Select 1-9,0, [RET%s]: %s"
15664 (if cur (concat "=" cur) "")
15665 (mapconcat 'car allowed " "))
15666 (setq rpl (read-char-exclusive))
15667 (if (equal rpl ?\r)
15669 (setq rpl (- rpl ?0))
15670 (if (equal rpl 0) (setq rpl 10))
15671 (if (and (> rpl 0) (<= rpl (length allowed)))
15672 (car (nth (1- rpl) allowed))
15673 (org-completing-read "Effort: " allowed nil))))
15675 (let (org-completion-use-ido org-completion-use-iswitchb)
15676 (org-completing-read
15677 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15678 (concat "[" cur "]") "")
15679 ": ")
15680 existing nil nil "" nil cur))))))
15681 (unless (equal (org-entry-get nil prop) val)
15682 (org-entry-put nil prop val))
15683 (org-refresh-property
15684 '((effort . identity)
15685 (effort-minutes . org-duration-string-to-minutes))
15686 val)
15687 (when (string= heading org-clock-current-task)
15688 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15689 (org-clock-update-mode-line))
15690 (message "%s is now %s" prop val)))
15692 (defun org-entry-properties (&optional pom which)
15693 "Get all properties of the current entry.
15695 When POM is a buffer position, get all properties from the entry
15696 there instead.
15698 This includes the TODO keyword, the tags, time strings for
15699 deadline, scheduled, and clocking, and any additional properties
15700 defined in the entry.
15702 If WHICH is nil or `all', get all properties. If WHICH is
15703 `special' or `standard', only get that subclass. If WHICH is
15704 a string, only get that property.
15706 Return value is an alist. Keys are properties, as upcased
15707 strings."
15708 (org-with-point-at pom
15709 (when (and (derived-mode-p 'org-mode)
15710 (ignore-errors (org-back-to-heading t)))
15711 (catch 'exit
15712 (let* ((beg (point))
15713 (specific (and (stringp which) (upcase which)))
15714 (which (cond ((not specific) which)
15715 ((member specific org-special-properties) 'special)
15716 (t 'standard)))
15717 props)
15718 ;; Get the special properties, like TODO and TAGS.
15719 (when (memq which '(nil all special))
15720 (when (or (not specific) (string= specific "CLOCKSUM"))
15721 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15722 (when clocksum
15723 (push (cons "CLOCKSUM"
15724 (org-columns-number-to-string
15725 (/ (float clocksum) 60.) 'add_times))
15726 props)))
15727 (when specific (throw 'exit props)))
15728 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15729 (let ((clocksumt (get-text-property (point)
15730 :org-clock-minutes-today)))
15731 (when clocksumt
15732 (push (cons "CLOCKSUM_T"
15733 (org-columns-number-to-string
15734 (/ (float clocksumt) 60.) 'add_times))
15735 props)))
15736 (when specific (throw 'exit props)))
15737 (when (or (not specific) (string= specific "ITEM"))
15738 (when (looking-at org-complex-heading-regexp)
15739 (push (cons "ITEM"
15740 (concat
15741 (org-match-string-no-properties 1)
15742 (let ((title (org-match-string-no-properties 4)))
15743 (when (org-string-nw-p title)
15744 (concat " " (org-remove-tabs title))))))
15745 props))
15746 (when specific (throw 'exit props)))
15747 (when (or (not specific) (string= specific "TODO"))
15748 (let ((case-fold-search nil))
15749 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15750 (push (cons "TODO" (org-match-string-no-properties 2)) props)))
15751 (when specific (throw 'exit props)))
15752 (when (or (not specific) (string= specific "PRIORITY"))
15753 (push (cons "PRIORITY"
15754 (if (looking-at org-priority-regexp)
15755 (org-match-string-no-properties 2)
15756 (char-to-string org-default-priority)))
15757 props)
15758 (when specific (throw 'exit props)))
15759 (when (or (not specific) (string= specific "FILE"))
15760 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15761 props)
15762 (when specific (throw 'exit props)))
15763 (when (or (not specific) (string= specific "TAGS"))
15764 (let ((value (org-string-nw-p (org-get-tags-string))))
15765 (when value (push (cons "TAGS" value) props)))
15766 (when specific (throw 'exit props)))
15767 (when (or (not specific) (string= specific "ALLTAGS"))
15768 (let ((value (org-get-tags-at)))
15769 (when value
15770 (push (cons "ALLTAGS"
15771 (format ":%s:" (mapconcat #'identity value ":")))
15772 props)))
15773 (when specific (throw 'exit props)))
15774 (when (or (not specific) (string= specific "BLOCKED"))
15775 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15776 (when specific (throw 'exit props)))
15777 (when (or (not specific)
15778 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15779 (forward-line)
15780 (when (org-looking-at-p org-planning-line-re)
15781 (end-of-line)
15782 (let ((bol (line-beginning-position))
15783 ;; Backward compatibility: time keywords used to
15784 ;; be configurable (before 8.3). Make sure we
15785 ;; get the correct keyword.
15786 (key-assoc `(("CLOSED" . ,org-closed-string)
15787 ("DEADLINE" . ,org-deadline-string)
15788 ("SCHEDULED" . ,org-scheduled-string))))
15789 (dolist (pair (if specific (list (assoc specific key-assoc))
15790 key-assoc))
15791 (save-excursion
15792 (when (search-backward (cdr pair) bol t)
15793 (goto-char (match-end 0))
15794 (skip-chars-forward " \t")
15795 (and (looking-at org-ts-regexp-both)
15796 (push (cons (car pair)
15797 (org-match-string-no-properties 0))
15798 props)))))))
15799 (when specific (throw 'exit props)))
15800 (when (or (not specific)
15801 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15802 (let ((find-ts
15803 (lambda (end ts)
15804 (let ((regexp (cond
15805 ((string= specific "TIMESTAMP")
15806 org-ts-regexp)
15807 ((string= specific "TIMESTAMP_IA")
15808 org-ts-regexp-inactive)
15809 ((assoc "TIMESTAMP_IA" ts)
15810 org-ts-regexp)
15811 ((assoc "TIMESTAMP" ts)
15812 org-ts-regexp-inactive)
15813 (t org-ts-regexp-both))))
15814 (catch 'next
15815 (while (re-search-forward regexp end t)
15816 (backward-char)
15817 (let ((object (org-element-context)))
15818 ;; Accept to match timestamps in node
15819 ;; properties, too.
15820 (when (memq (org-element-type object)
15821 '(node-property timestamp))
15822 (let ((type
15823 (org-element-property :type object)))
15824 (cond
15825 ((and (memq type '(active active-range))
15826 (not (equal specific "TIMESTAMP_IA")))
15827 (unless (assoc "TIMESTAMP" ts)
15828 (push (cons "TIMESTAMP"
15829 (org-element-property
15830 :raw-value object))
15832 (when specific (throw 'exit ts))))
15833 ((and (memq type '(inactive inactive-range))
15834 (not (string= specific "TIMESTAMP")))
15835 (unless (assoc "TIMESTAMP_IA" ts)
15836 (push (cons "TIMESTAMP_IA"
15837 (org-element-property
15838 :raw-value object))
15840 (when specific (throw 'exit ts))))))
15841 ;; Both timestamp types are found,
15842 ;; move to next part.
15843 (when (= (length ts) 2) (throw 'next ts)))))
15844 ts)))))
15845 (goto-char beg)
15846 ;; First look for timestamps within headline.
15847 (let ((ts (funcall find-ts (line-end-position) nil)))
15848 (if (= (length ts) 2) (setq props (nconc ts props))
15849 (forward-line)
15850 ;; Then find timestamps in the section, skipping
15851 ;; planning line.
15852 (when (org-looking-at-p org-planning-line-re)
15853 (forward-line))
15854 (let ((end (save-excursion (outline-next-heading))))
15855 (setq props (nconc (funcall find-ts end ts) props))))))))
15856 ;; Get the standard properties, like :PROP:.
15857 (when (memq which '(nil all standard))
15858 ;; If we are looking after a specific property, delegate
15859 ;; to `org-entry-get', which is faster. However, make an
15860 ;; exception for "CATEGORY", since it can be also set
15861 ;; through keywords (i.e. #+CATEGORY).
15862 (if (and specific (not (equal specific "CATEGORY")))
15863 (let ((value (org-entry-get beg specific nil t)))
15864 (throw 'exit (and value (list (cons specific value)))))
15865 (let ((range (org-get-property-block beg)))
15866 (when range
15867 (let ((end (cdr range)) seen-base)
15868 (goto-char (car range))
15869 ;; Unlike to `org--update-property-plist', we
15870 ;; handle the case where base values is found
15871 ;; after its extension. We also forbid standard
15872 ;; properties to be named as special properties.
15873 (while (re-search-forward org-property-re end t)
15874 (let* ((key (upcase (org-match-string-no-properties 2)))
15875 (extendp (org-string-match-p "\\+\\'" key))
15876 (key-base (if extendp (substring key 0 -1) key))
15877 (value (org-match-string-no-properties 3)))
15878 (cond
15879 ((member-ignore-case key-base org-special-properties))
15880 (extendp
15881 (setq props
15882 (org--update-property-plist key value props)))
15883 ((member key seen-base))
15884 (t (push key seen-base)
15885 (let ((p (assoc-string key props t)))
15886 (if p (setcdr p (concat value " " (cdr p)))
15887 (push (cons key value) props))))))))))))
15888 (unless (assoc "CATEGORY" props)
15889 (push (cons "CATEGORY" (org-get-category beg)) props)
15890 (when (string= specific "CATEGORY") (throw 'exit props)))
15891 ;; Return value.
15892 props)))))
15894 (defun org-property--local-values (property literal-nil)
15895 "Return value for PROPERTY in current entry.
15896 Value is a list whose care is the base value for PROPERTY and cdr
15897 a list of accumulated values. Return nil if neither is found in
15898 the entry. Also return nil when PROPERTY is set to \"nil\",
15899 unless LITERAL-NIL is non-nil."
15900 (let ((range (org-get-property-block)))
15901 (when range
15902 (goto-char (car range))
15903 (let* ((case-fold-search t)
15904 (end (cdr range))
15905 (value
15906 ;; Base value.
15907 (save-excursion
15908 (let ((v (and (re-search-forward
15909 (org-re-property property nil t) end t)
15910 (org-match-string-no-properties 3))))
15911 (list (if literal-nil v (org-not-nil v)))))))
15912 ;; Find additional values.
15913 (let* ((property+ (org-re-property (concat property "+") nil t)))
15914 (while (re-search-forward property+ end t)
15915 (push (org-match-string-no-properties 3) value)))
15916 ;; Return final values.
15917 (and (not (equal value '(nil))) (nreverse value))))))
15919 (defun org-entry-get (pom property &optional inherit literal-nil)
15920 "Get value of PROPERTY for entry or content at point-or-marker POM.
15922 If INHERIT is non-nil and the entry does not have the property,
15923 then also check higher levels of the hierarchy. If INHERIT is
15924 the symbol `selective', use inheritance only if the setting in
15925 `org-use-property-inheritance' selects PROPERTY for inheritance.
15927 If the property is present but empty, the return value is the
15928 empty string. If the property is not present at all, nil is
15929 returned. In any other case, return the value as a string.
15930 Search is case-insensitive.
15932 If LITERAL-NIL is set, return the string value \"nil\" as
15933 a string, do not interpret it as the list atom nil. This is used
15934 for inheritance when a \"nil\" value can supersede a non-nil
15935 value higher up the hierarchy."
15936 (org-with-point-at pom
15937 (cond
15938 ((member-ignore-case property (cons "CATEGORY" org-special-properties))
15939 ;; We need a special property. Use `org-entry-properties' to
15940 ;; retrieve it, but specify the wanted property.
15941 (cdr (assoc-string property (org-entry-properties nil property))))
15942 ((and inherit
15943 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15944 (org-entry-get-with-inheritance property literal-nil))
15946 (let* ((local (org-property--local-values property literal-nil))
15947 (value (and local (mapconcat #'identity (delq nil local) " "))))
15948 (if literal-nil value (org-not-nil value)))))))
15950 (defun org-property-or-variable-value (var &optional inherit)
15951 "Check if there is a property fixing the value of VAR.
15952 If yes, return this value. If not, return the current value of the variable."
15953 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15954 (if (and prop (stringp prop) (string-match "\\S-" prop))
15955 (read prop)
15956 (symbol-value var))))
15958 (defun org-entry-delete (pom property)
15959 "Delete PROPERTY from entry at point-or-marker POM.
15960 Accumulated properties, i.e. PROPERTY+, are also removed. Return
15961 non-nil when a property was removed."
15962 (unless (member property org-special-properties)
15963 (org-with-point-at pom
15964 (let ((range (org-get-property-block)))
15965 (when range
15966 (let* ((begin (car range))
15967 (origin (cdr range))
15968 (end (copy-marker origin))
15969 (re (org-re-property
15970 (concat (regexp-quote property) "\\+?") t t)))
15971 (goto-char begin)
15972 (while (re-search-forward re end t)
15973 (delete-region (match-beginning 0) (line-beginning-position 2)))
15974 ;; If drawer is empty, remove it altogether.
15975 (when (= begin end)
15976 (delete-region (line-beginning-position 0)
15977 (line-beginning-position 2)))
15978 ;; Return non-nil if some property was removed.
15979 (prog1 (/= end origin) (set-marker end nil))))))))
15981 ;; Multi-values properties are properties that contain multiple values
15982 ;; These values are assumed to be single words, separated by whitespace.
15983 (defun org-entry-add-to-multivalued-property (pom property value)
15984 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15985 (let* ((old (org-entry-get pom property))
15986 (values (and old (org-split-string old "[ \t]"))))
15987 (setq value (org-entry-protect-space value))
15988 (unless (member value values)
15989 (setq values (append values (list value)))
15990 (org-entry-put pom property
15991 (mapconcat 'identity values " ")))))
15993 (defun org-entry-remove-from-multivalued-property (pom property value)
15994 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15995 (let* ((old (org-entry-get pom property))
15996 (values (and old (org-split-string old "[ \t]"))))
15997 (setq value (org-entry-protect-space value))
15998 (when (member value values)
15999 (setq values (delete value values))
16000 (org-entry-put pom property
16001 (mapconcat 'identity values " ")))))
16003 (defun org-entry-member-in-multivalued-property (pom property value)
16004 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
16005 (let* ((old (org-entry-get pom property))
16006 (values (and old (org-split-string old "[ \t]"))))
16007 (setq value (org-entry-protect-space value))
16008 (member value values)))
16010 (defun org-entry-get-multivalued-property (pom property)
16011 "Return a list of values in a multivalued property."
16012 (let* ((value (org-entry-get pom property))
16013 (values (and value (org-split-string value "[ \t]"))))
16014 (mapcar 'org-entry-restore-space values)))
16016 (defun org-entry-put-multivalued-property (pom property &rest values)
16017 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
16018 VALUES should be a list of strings. Spaces will be protected."
16019 (org-entry-put pom property
16020 (mapconcat 'org-entry-protect-space values " "))
16021 (let* ((value (org-entry-get pom property))
16022 (values (and value (org-split-string value "[ \t]"))))
16023 (mapcar 'org-entry-restore-space values)))
16025 (defun org-entry-protect-space (s)
16026 "Protect spaces and newline in string S."
16027 (while (string-match " " s)
16028 (setq s (replace-match "%20" t t s)))
16029 (while (string-match "\n" s)
16030 (setq s (replace-match "%0A" t t s)))
16033 (defun org-entry-restore-space (s)
16034 "Restore spaces and newline in string S."
16035 (while (string-match "%20" s)
16036 (setq s (replace-match " " t t s)))
16037 (while (string-match "%0A" s)
16038 (setq s (replace-match "\n" t t s)))
16041 (defvar org-entry-property-inherited-from (make-marker)
16042 "Marker pointing to the entry from where a property was inherited.
16043 Each call to `org-entry-get-with-inheritance' will set this marker to the
16044 location of the entry where the inheritance search matched. If there was
16045 no match, the marker will point nowhere.
16046 Note that also `org-entry-get' calls this function, if the INHERIT flag
16047 is set.")
16049 (defun org-entry-get-with-inheritance (property &optional literal-nil)
16050 "Get PROPERTY of entry or content at point, search higher levels if needed.
16051 The search will stop at the first ancestor which has the property defined.
16052 If the value found is \"nil\", return nil to show that the property
16053 should be considered as undefined (this is the meaning of nil here).
16054 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
16055 (move-marker org-entry-property-inherited-from nil)
16056 (org-with-wide-buffer
16057 (let (value)
16058 (catch 'exit
16059 (while t
16060 (let ((v (org-property--local-values property literal-nil)))
16061 (when v
16062 (setq value
16063 (concat (mapconcat #'identity (delq nil v) " ")
16064 (and value " ")
16065 value)))
16066 (cond
16067 ((car v)
16068 (org-back-to-heading t)
16069 (move-marker org-entry-property-inherited-from (point))
16070 (throw 'exit nil))
16071 ((org-up-heading-safe))
16073 (let ((global
16074 (cdr (or (assoc-string property org-file-properties t)
16075 (assoc-string property org-global-properties t)
16076 (assoc-string property org-global-properties-fixed t)))))
16077 (cond ((not global))
16078 (value (setq value (concat global " " value)))
16079 (t (setq value global))))
16080 (throw 'exit nil))))))
16081 (if literal-nil value (org-not-nil value)))))
16083 (defvar org-property-changed-functions nil
16084 "Hook called when the value of a property has changed.
16085 Each hook function should accept two arguments, the name of the property
16086 and the new value.")
16088 (defun org-entry-put (pom property value)
16089 "Set PROPERTY to VALUE for entry at point-or-marker POM.
16091 If the value is nil, it is converted to the empty string. If it
16092 is not a string, an error is raised. Also raise an error on
16093 invalid property names.
16095 PROPERTY can be any regular property (see
16096 `org-special-properties'). It can also be \"TODO\",
16097 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
16099 For the last two properties, VALUE may have any of the special
16100 values \"earlier\" and \"later\". The function then increases or
16101 decreases scheduled or deadline date by one day."
16102 (cond ((null value) (setq value ""))
16103 ((not (stringp value)) (error "Properties values should be strings"))
16104 ((not (org--valid-property-p property))
16105 (user-error "Invalid property name: \"%s\"" property)))
16106 (org-with-point-at pom
16107 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16108 (org-back-to-heading t)
16109 (org-with-limited-levels (org-back-to-heading t)))
16110 (let ((beg (point)))
16111 (cond
16112 ((equal property "TODO")
16113 (cond ((not (org-string-nw-p value)) (setq value 'none))
16114 ((not (member value org-todo-keywords-1))
16115 (user-error "\"%s\" is not a valid TODO state" value)))
16116 (org-todo value)
16117 (org-set-tags nil 'align))
16118 ((equal property "PRIORITY")
16119 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
16120 (org-set-tags nil 'align))
16121 ((equal property "SCHEDULED")
16122 (forward-line)
16123 (if (and (org-looking-at-p org-planning-line-re)
16124 (re-search-forward
16125 org-scheduled-time-regexp (line-end-position) t))
16126 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16127 ((string= value "later") (org-timestamp-change 1 'day))
16128 ((string= value "") (org-schedule '(4)))
16129 (t (org-schedule nil value)))
16130 (if (member value '("earlier" "later" ""))
16131 (call-interactively #'org-schedule)
16132 (org-schedule nil value))))
16133 ((equal property "DEADLINE")
16134 (forward-line)
16135 (if (and (org-looking-at-p org-planning-line-re)
16136 (re-search-forward
16137 org-deadline-time-regexp (line-end-position) t))
16138 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16139 ((string= value "later") (org-timestamp-change 1 'day))
16140 ((string= value "") (org-deadline '(4)))
16141 (t (org-deadline nil value)))
16142 (if (member value '("earlier" "later" ""))
16143 (call-interactively #'org-deadline)
16144 (org-deadline nil value))))
16145 ((member property org-special-properties)
16146 (error "The %s property cannot be set with `org-entry-put'" property))
16148 (let* ((range (org-get-property-block beg 'force))
16149 (end (cdr range))
16150 (case-fold-search t))
16151 (goto-char (car range))
16152 (if (re-search-forward (org-re-property property nil t) end t)
16153 (progn (delete-region (match-beginning 0) (match-end 0))
16154 (goto-char (match-beginning 0)))
16155 (goto-char end)
16156 (insert "\n")
16157 (backward-char))
16158 (insert ":" property ":")
16159 (when value (insert " " value))
16160 (org-indent-line)))))
16161 (run-hook-with-args 'org-property-changed-functions property value)))
16163 (defun org-buffer-property-keys (&optional specials defaults columns)
16164 "Get all property keys in the current buffer.
16166 When SPECIALS is non-nil, also list the special properties that
16167 reflect things like tags and TODO state.
16169 When DEFAULTS is non-nil, also include properties that has
16170 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
16171 DESCRIPTION, LOCATION, and LOGGING and others.
16173 When COLUMNS in non-nil, also include property names given in
16174 COLUMN formats in the current buffer."
16175 (let ((case-fold-search t)
16176 (props (append
16177 (and specials org-special-properties)
16178 (and defaults (cons org-effort-property org-default-properties))
16179 nil)))
16180 (org-with-wide-buffer
16181 (goto-char (point-min))
16182 (while (re-search-forward org-property-start-re nil t)
16183 (let ((range (org-get-property-block)))
16184 (catch 'skip
16185 (unless range
16186 (when (and (not (org-before-first-heading-p))
16187 (y-or-n-p (format "Malformed drawer at %d, repair?"
16188 (line-beginning-position))))
16189 (org-get-property-block nil t))
16190 (throw 'skip nil))
16191 (goto-char (car range))
16192 (let ((begin (car range))
16193 (end (cdr range)))
16194 ;; Make sure that found property block is not located
16195 ;; before current point, as it would generate an infloop.
16196 ;; It can happen, for example, in the following
16197 ;; situation:
16199 ;; * Headline
16200 ;; :PROPERTIES:
16201 ;; ...
16202 ;; :END:
16203 ;; *************** Inlinetask
16204 ;; #+BEGIN_EXAMPLE
16205 ;; :PROPERTIES:
16206 ;; #+END_EXAMPLE
16208 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
16209 (while (< (point) end)
16210 (let ((p (progn (looking-at org-property-re)
16211 (org-match-string-no-properties 2))))
16212 ;; Only add true property name, not extension symbol.
16213 (add-to-list 'props
16214 (if (not (org-string-match-p "\\+\\'" p)) p
16215 (substring p 0 -1))))
16216 (forward-line))))
16217 (outline-next-heading)))
16218 (when columns
16219 (goto-char (point-min))
16220 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16221 (let ((element (org-element-at-point)))
16222 (when (memq (org-element-type element) '(keyword node-property))
16223 (let ((value (org-element-property :value element))
16224 (start 0))
16225 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16226 (setq start (match-end 0))
16227 (let ((p (org-match-string-no-properties 1 value)))
16228 (unless (member-ignore-case p org-special-properties)
16229 (add-to-list 'props p))))))))))
16230 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16232 (defun org-property-values (key)
16233 "List all non-nil values of property KEY in current buffer."
16234 (org-with-wide-buffer
16235 (goto-char (point-min))
16236 (let ((case-fold-search t)
16237 (re (org-re-property key))
16238 values)
16239 (while (re-search-forward re nil t)
16240 (add-to-list 'values (org-entry-get (point) key)))
16241 values)))
16243 (defun org-insert-property-drawer ()
16244 "Insert a property drawer into the current entry."
16245 (org-with-wide-buffer
16246 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16247 (org-back-to-heading t)
16248 (org-with-limited-levels (org-back-to-heading t)))
16249 (forward-line)
16250 (when (org-looking-at-p org-planning-line-re) (forward-line))
16251 (unless (org-looking-at-p org-property-drawer-re)
16252 ;; Make sure we start editing a line from current entry, not from
16253 ;; next one. It prevents extending text properties or overlays
16254 ;; belonging to the latter.
16255 (when (bolp) (backward-char))
16256 (let ((begin (1+ (point)))
16257 (inhibit-read-only t))
16258 (insert "\n:PROPERTIES:\n:END:")
16259 (when (eobp) (insert "\n"))
16260 (org-indent-region begin (point))))))
16262 (defun org-insert-drawer (&optional arg drawer)
16263 "Insert a drawer at point.
16265 When optional argument ARG is non-nil, insert a property drawer.
16267 Optional argument DRAWER, when non-nil, is a string representing
16268 drawer's name. Otherwise, the user is prompted for a name.
16270 If a region is active, insert the drawer around that region
16271 instead.
16273 Point is left between drawer's boundaries."
16274 (interactive "P")
16275 (let* ((drawer (if arg "PROPERTIES"
16276 (or drawer (read-from-minibuffer "Drawer: ")))))
16277 (cond
16278 ;; With C-u, fall back on `org-insert-property-drawer'
16279 (arg (org-insert-property-drawer))
16280 ;; Check validity of suggested drawer's name.
16281 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16282 (user-error "Invalid drawer name"))
16283 ;; With an active region, insert a drawer at point.
16284 ((not (org-region-active-p))
16285 (progn
16286 (unless (bolp) (insert "\n"))
16287 (insert (format ":%s:\n\n:END:\n" drawer))
16288 (forward-line -2)))
16289 ;; Otherwise, insert the drawer at point
16291 (let ((rbeg (region-beginning))
16292 (rend (copy-marker (region-end))))
16293 (unwind-protect
16294 (progn
16295 (goto-char rbeg)
16296 (beginning-of-line)
16297 (when (save-excursion
16298 (re-search-forward org-outline-regexp-bol rend t))
16299 (user-error "Drawers cannot contain headlines"))
16300 ;; Position point at the beginning of the first
16301 ;; non-blank line in region. Insert drawer's opening
16302 ;; there, then indent it.
16303 (org-skip-whitespace)
16304 (beginning-of-line)
16305 (insert ":" drawer ":\n")
16306 (forward-line -1)
16307 (indent-for-tab-command)
16308 ;; Move point to the beginning of the first blank line
16309 ;; after the last non-blank line in region. Insert
16310 ;; drawer's closing, then indent it.
16311 (goto-char rend)
16312 (skip-chars-backward " \r\t\n")
16313 (insert "\n:END:")
16314 (deactivate-mark t)
16315 (indent-for-tab-command)
16316 (unless (eolp) (insert "\n")))
16317 ;; Clear marker, whatever the outcome of insertion is.
16318 (set-marker rend nil)))))))
16320 (defvar org-property-set-functions-alist nil
16321 "Property set function alist.
16322 Each entry should have the following format:
16324 (PROPERTY . READ-FUNCTION)
16326 The read function will be called with the same argument as
16327 `org-completing-read'.")
16329 (defun org-set-property-function (property)
16330 "Get the function that should be used to set PROPERTY.
16331 This is computed according to `org-property-set-functions-alist'."
16332 (or (cdr (assoc property org-property-set-functions-alist))
16333 'org-completing-read))
16335 (defun org-read-property-value (property)
16336 "Read PROPERTY value from user."
16337 (let* ((completion-ignore-case t)
16338 (allowed (org-property-get-allowed-values nil property 'table))
16339 (cur (org-entry-get nil property))
16340 (prompt (concat property " value"
16341 (if (and cur (string-match "\\S-" cur))
16342 (concat " [" cur "]") "") ": "))
16343 (set-function (org-set-property-function property))
16344 (val (if allowed
16345 (funcall set-function prompt allowed nil
16346 (not (get-text-property 0 'org-unrestricted
16347 (caar allowed))))
16348 (let (org-completion-use-ido org-completion-use-iswitchb)
16349 (funcall set-function prompt
16350 (mapcar 'list (org-property-values property))
16351 nil nil "" nil cur)))))
16352 (org-trim val)))
16354 (defvar org-last-set-property nil)
16355 (defvar org-last-set-property-value nil)
16356 (defun org-read-property-name ()
16357 "Read a property name."
16358 (let ((completion-ignore-case t)
16359 (default-prop (or (and (org-at-property-p)
16360 (org-match-string-no-properties 2))
16361 org-last-set-property)))
16362 (org-completing-read
16363 (concat "Property"
16364 (if default-prop (concat " [" default-prop "]") "")
16365 ": ")
16366 (mapcar #'list (org-buffer-property-keys nil t t))
16367 nil nil nil nil default-prop)))
16369 (defun org-set-property-and-value (use-last)
16370 "Allow to set [PROPERTY]: [value] direction from prompt.
16371 When use-default, don't even ask, just use the last
16372 \"[PROPERTY]: [value]\" string from the history."
16373 (interactive "P")
16374 (let* ((completion-ignore-case t)
16375 (pv (or (and use-last org-last-set-property-value)
16376 (org-completing-read
16377 "Enter a \"[Property]: [value]\" pair: "
16378 nil nil nil nil nil
16379 org-last-set-property-value)))
16380 prop val)
16381 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16382 (setq prop (match-string 1 pv)
16383 val (match-string 2 pv))
16384 (org-set-property prop val))))
16386 (defun org-set-property (property value)
16387 "In the current entry, set PROPERTY to VALUE.
16389 When called interactively, this will prompt for a property name, offering
16390 completion on existing and default properties. And then it will prompt
16391 for a value, offering completion either on allowed values (via an inherited
16392 xxx_ALL property) or on existing values in other instances of this property
16393 in the current file.
16395 Throw an error when trying to set a property with an invalid name."
16396 (interactive (list nil nil))
16397 (let ((property (or property (org-read-property-name))))
16398 ;; `org-entry-put' also makes the following check, but this one
16399 ;; avoids polluting `org-last-set-property' and
16400 ;; `org-last-set-property-value' needlessly.
16401 (unless (org--valid-property-p property)
16402 (user-error "Invalid property name: \"%s\"" property))
16403 (let ((value (or value (org-read-property-value property)))
16404 (fn (cdr (assoc-string property org-properties-postprocess-alist t))))
16405 (setq org-last-set-property property)
16406 (setq org-last-set-property-value (concat property ": " value))
16407 ;; Possibly postprocess the inserted value:
16408 (when fn (setq value (funcall fn value)))
16409 (unless (equal (org-entry-get nil property) value)
16410 (org-entry-put nil property value)))))
16412 (defun org-find-property (property &optional value)
16413 "Find first entry in buffer that sets PROPERTY.
16415 When optional argument VALUE is non-nil, only consider an entry
16416 if it contains PROPERTY set to this value. If PROPERTY should be
16417 explicitly set to nil, use string \"nil\" for VALUE.
16419 Return position where the entry begins, or nil if there is no
16420 such entry. If narrowing is in effect, only search the visible
16421 part of the buffer."
16422 (save-excursion
16423 (goto-char (point-min))
16424 (let ((case-fold-search t)
16425 (re (org-re-property property nil (not value) value)))
16426 (catch 'exit
16427 (while (re-search-forward re nil t)
16428 (when (if value (org-at-property-p)
16429 (org-entry-get (point) property nil t))
16430 (throw 'exit (progn (org-back-to-heading t) (point)))))))))
16432 (defun org-delete-property (property)
16433 "In the current entry, delete PROPERTY."
16434 (interactive
16435 (let* ((completion-ignore-case t)
16436 (cat (org-entry-get (point) "CATEGORY"))
16437 (props0 (org-entry-properties nil 'standard))
16438 (props (if cat props0
16439 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16440 (prop (if (< 1 (length props))
16441 (org-icompleting-read "Property: " props nil t)
16442 (caar props))))
16443 (list prop)))
16444 (if (not property)
16445 (message "No property to delete in this entry")
16446 (org-entry-delete nil property)
16447 (message "Property \"%s\" deleted" property)))
16449 (defun org-delete-property-globally (property)
16450 "Remove PROPERTY globally, from all entries.
16451 This function ignores narrowing, if any."
16452 (interactive
16453 (let* ((completion-ignore-case t)
16454 (prop (org-icompleting-read
16455 "Globally remove property: "
16456 (mapcar #'list (org-buffer-property-keys)))))
16457 (list prop)))
16458 (org-with-wide-buffer
16459 (goto-char (point-min))
16460 (let ((count 0)
16461 (re (org-re-property (concat (regexp-quote property) "\\+?") t t)))
16462 (while (re-search-forward re nil t)
16463 (when (org-entry-delete (point) property) (incf count)))
16464 (message "Property \"%s\" removed from %d entries" property count))))
16466 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16468 (defun org-compute-property-at-point ()
16469 "Compute the property at point.
16470 This looks for an enclosing column format, extracts the operator and
16471 then applies it to the property in the column format's scope."
16472 (interactive)
16473 (unless (org-at-property-p)
16474 (user-error "Not at a property"))
16475 (let ((prop (org-match-string-no-properties 2)))
16476 (org-columns-get-format-and-top-level)
16477 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16478 (user-error "No operator defined for property %s" prop))
16479 (org-columns-compute prop)))
16481 (defvar org-property-allowed-value-functions nil
16482 "Hook for functions supplying allowed values for a specific property.
16483 The functions must take a single argument, the name of the property, and
16484 return a flat list of allowed values. If \":ETC\" is one of
16485 the values, this means that these values are intended as defaults for
16486 completion, but that other values should be allowed too.
16487 The functions must return nil if they are not responsible for this
16488 property.")
16490 (defun org-property-get-allowed-values (pom property &optional table)
16491 "Get allowed values for the property PROPERTY.
16492 When TABLE is non-nil, return an alist that can directly be used for
16493 completion."
16494 (let (vals)
16495 (cond
16496 ((equal property "TODO")
16497 (setq vals (org-with-point-at pom
16498 (append org-todo-keywords-1 '("")))))
16499 ((equal property "PRIORITY")
16500 (let ((n org-lowest-priority))
16501 (while (>= n org-highest-priority)
16502 (push (char-to-string n) vals)
16503 (setq n (1- n)))))
16504 ((equal property "CATEGORY"))
16505 ((member property org-special-properties))
16506 ((setq vals (run-hook-with-args-until-success
16507 'org-property-allowed-value-functions property)))
16509 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16510 (when (and vals (string-match "\\S-" vals))
16511 (setq vals (car (read-from-string (concat "(" vals ")"))))
16512 (setq vals (mapcar (lambda (x)
16513 (cond ((stringp x) x)
16514 ((numberp x) (number-to-string x))
16515 ((symbolp x) (symbol-name x))
16516 (t "???")))
16517 vals)))))
16518 (when (member ":ETC" vals)
16519 (setq vals (remove ":ETC" vals))
16520 (org-add-props (car vals) '(org-unrestricted t)))
16521 (if table (mapcar 'list vals) vals)))
16523 (defun org-property-previous-allowed-value (&optional previous)
16524 "Switch to the next allowed value for this property."
16525 (interactive)
16526 (org-property-next-allowed-value t))
16528 (defun org-property-next-allowed-value (&optional previous)
16529 "Switch to the next allowed value for this property."
16530 (interactive)
16531 (unless (org-at-property-p)
16532 (user-error "Not at a property"))
16533 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16534 (key (match-string 2))
16535 (value (match-string 3))
16536 (allowed (or (org-property-get-allowed-values (point) key)
16537 (and (member value '("[ ]" "[-]" "[X]"))
16538 '("[ ]" "[X]"))))
16539 (heading (save-match-data (nth 4 (org-heading-components))))
16540 nval)
16541 (unless allowed
16542 (user-error "Allowed values for this property have not been defined"))
16543 (if previous (setq allowed (reverse allowed)))
16544 (if (member value allowed)
16545 (setq nval (car (cdr (member value allowed)))))
16546 (setq nval (or nval (car allowed)))
16547 (if (equal nval value)
16548 (user-error "Only one allowed value for this property"))
16549 (org-at-property-p)
16550 (replace-match (concat " :" key ": " nval) t t)
16551 (org-indent-line)
16552 (beginning-of-line 1)
16553 (skip-chars-forward " \t")
16554 (when (equal prop org-effort-property)
16555 (org-refresh-property
16556 '((effort . identity)
16557 (effort-minutes . org-duration-string-to-minutes))
16558 nval)
16559 (when (string= org-clock-current-task heading)
16560 (setq org-clock-effort nval)
16561 (org-clock-update-mode-line)))
16562 (run-hook-with-args 'org-property-changed-functions key nval)))
16564 (defun org-find-olp (path &optional this-buffer)
16565 "Return a marker pointing to the entry at outline path OLP.
16566 If anything goes wrong, throw an error.
16567 You can wrap this call to catch the error like this:
16569 (condition-case msg
16570 (org-mobile-locate-entry (match-string 4))
16571 (error (nth 1 msg)))
16573 The return value will then be either a string with the error message,
16574 or a marker if everything is OK.
16576 If THIS-BUFFER is set, the outline path does not contain a file,
16577 only headings."
16578 (let* ((file (if this-buffer buffer-file-name (pop path)))
16579 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16580 (level 1)
16581 (lmin 1)
16582 (lmax 1)
16583 limit re end found pos heading cnt flevel)
16584 (unless buffer (error "File not found :%s" file))
16585 (with-current-buffer buffer
16586 (save-excursion
16587 (save-restriction
16588 (widen)
16589 (setq limit (point-max))
16590 (goto-char (point-min))
16591 (dolist (heading path)
16592 (setq re (format org-complex-heading-regexp-format
16593 (regexp-quote heading)))
16594 (setq cnt 0 pos (point))
16595 (while (re-search-forward re end t)
16596 (setq level (- (match-end 1) (match-beginning 1)))
16597 (if (and (>= level lmin) (<= level lmax))
16598 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16599 (when (= cnt 0) (error "Heading not found on level %d: %s"
16600 lmax heading))
16601 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16602 lmax heading))
16603 (goto-char found)
16604 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16605 (setq end (save-excursion (org-end-of-subtree t t))))
16606 (when (org-at-heading-p)
16607 (point-marker)))))))
16609 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16610 "Find node HEADING in BUFFER.
16611 Return a marker to the heading if it was found, or nil if not.
16612 If POS-ONLY is set, return just the position instead of a marker.
16614 The heading text must match exact, but it may have a TODO keyword,
16615 a priority cookie and tags in the standard locations."
16616 (with-current-buffer (or buffer (current-buffer))
16617 (save-excursion
16618 (save-restriction
16619 (widen)
16620 (goto-char (point-min))
16621 (let (case-fold-search)
16622 (if (re-search-forward
16623 (format org-complex-heading-regexp-format
16624 (regexp-quote heading)) nil t)
16625 (if pos-only
16626 (match-beginning 0)
16627 (move-marker (make-marker) (match-beginning 0)))))))))
16629 (defun org-find-exact-heading-in-directory (heading &optional dir)
16630 "Find Org node headline HEADING in all .org files in directory DIR.
16631 When the target headline is found, return a marker to this location."
16632 (let ((files (directory-files (or dir default-directory)
16633 t "\\`[^.#].*\\.org\\'"))
16634 visiting m buffer)
16635 (catch 'found
16636 (dolist (file files)
16637 (message "trying %s" file)
16638 (setq visiting (org-find-base-buffer-visiting file))
16639 (setq buffer (or visiting (find-file-noselect file)))
16640 (setq m (org-find-exact-headline-in-buffer
16641 heading buffer))
16642 (when (and (not m) (not visiting)) (kill-buffer buffer))
16643 (and m (throw 'found m))))))
16645 (defun org-find-entry-with-id (ident)
16646 "Locate the entry that contains the ID property with exact value IDENT.
16647 IDENT can be a string, a symbol or a number, this function will search for
16648 the string representation of it.
16649 Return the position where this entry starts, or nil if there is no such entry."
16650 (interactive "sID: ")
16651 (let ((id (cond
16652 ((stringp ident) ident)
16653 ((symbolp ident) (symbol-name ident))
16654 ((numberp ident) (number-to-string ident))
16655 (t (error "IDENT %s must be a string, symbol or number" ident)))))
16656 (org-with-wide-buffer (org-find-property "ID" id))))
16658 ;;;; Timestamps
16660 (defvar org-last-changed-timestamp nil)
16661 (defvar org-last-inserted-timestamp nil
16662 "The last time stamp inserted with `org-insert-time-stamp'.")
16663 (defvar org-ts-what) ; dynamically scoped parameter
16665 (defun org-time-stamp (arg &optional inactive)
16666 "Prompt for a date/time and insert a time stamp.
16668 If the user specifies a time like HH:MM or if this command is
16669 called with at least one prefix argument, the time stamp contains
16670 the date and the time. Otherwise, only the date is included.
16672 All parts of a date not specified by the user are filled in from
16673 the timestamp at point, if any, or the current date/time
16674 otherwise.
16676 If there is already a timestamp at the cursor, it is replaced.
16678 With two universal prefix arguments, insert an active timestamp
16679 with the current time without prompting the user.
16681 When called from lisp, the timestamp is inactive if INACTIVE is
16682 non-nil."
16683 (interactive "P")
16684 (let* ((ts (cond
16685 ((org-at-date-range-p t)
16686 (match-string (if (< (point) (- (match-beginning 2) 2)) 1 2)))
16687 ((org-at-timestamp-p t) (match-string 0))))
16688 ;; Default time is either the timestamp at point or today.
16689 ;; When entering a range, only the range start is considered.
16690 (default-time (if (not ts) (current-time)
16691 (apply #'encode-time (org-parse-time-string ts))))
16692 (default-input (and ts (org-get-compact-tod ts)))
16693 (repeater (and ts
16694 (string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
16695 (match-string 0 ts)))
16696 org-time-was-given
16697 org-end-time-was-given
16698 (time
16699 (and (if (equal arg '(16)) (current-time)
16700 ;; Preserve `this-command' and `last-command'.
16701 (let ((this-command this-command)
16702 (last-command last-command))
16703 (org-read-date
16704 arg 'totime nil nil default-time default-input
16705 inactive))))))
16706 (cond
16707 ((and ts
16708 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16709 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16710 (insert "--")
16711 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16713 ;; Make sure we're on a timestamp. When in the middle of a date
16714 ;; range, move arbitrarily to range end.
16715 (unless (org-at-timestamp-p t)
16716 (skip-chars-forward "-")
16717 (org-at-timestamp-p t))
16718 (replace-match "")
16719 (setq org-last-changed-timestamp
16720 (org-insert-time-stamp
16721 time (or org-time-was-given arg)
16722 inactive nil nil (list org-end-time-was-given)))
16723 (when repeater
16724 (backward-char)
16725 (insert " " repeater)
16726 (setq org-last-changed-timestamp
16727 (concat (substring org-last-inserted-timestamp 0 -1)
16728 " " repeater ">")))
16729 (message "Timestamp updated"))
16730 ((equal arg '(16)) (org-insert-time-stamp time t inactive))
16731 (t (org-insert-time-stamp
16732 time (or org-time-was-given arg) inactive nil nil
16733 (list org-end-time-was-given))))))
16735 ;; FIXME: can we use this for something else, like computing time differences?
16736 (defun org-get-compact-tod (s)
16737 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16738 (let* ((t1 (match-string 1 s))
16739 (h1 (string-to-number (match-string 2 s)))
16740 (m1 (string-to-number (match-string 3 s)))
16741 (t2 (and (match-end 4) (match-string 5 s)))
16742 (h2 (and t2 (string-to-number (match-string 6 s))))
16743 (m2 (and t2 (string-to-number (match-string 7 s))))
16744 dh dm)
16745 (if (not t2)
16747 (setq dh (- h2 h1) dm (- m2 m1))
16748 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16749 (concat t1 "+" (number-to-string dh)
16750 (and (/= 0 dm) (format ":%02d" dm)))))))
16752 (defun org-time-stamp-inactive (&optional arg)
16753 "Insert an inactive time stamp.
16754 An inactive time stamp is enclosed in square brackets instead of angle
16755 brackets. It is inactive in the sense that it does not trigger agenda entries,
16756 does not link to the calendar and cannot be changed with the S-cursor keys.
16757 So these are more for recording a certain time/date."
16758 (interactive "P")
16759 (org-time-stamp arg 'inactive))
16761 (defvar org-date-ovl (make-overlay 1 1))
16762 (overlay-put org-date-ovl 'face 'org-date-selected)
16763 (org-detach-overlay org-date-ovl)
16765 (defvar org-ans1) ; dynamically scoped parameter
16766 (defvar org-ans2) ; dynamically scoped parameter
16768 (defvar org-plain-time-of-day-regexp) ; defined below
16770 (defvar org-overriding-default-time nil) ; dynamically scoped
16771 (defvar org-read-date-overlay nil)
16772 (defvar org-dcst nil) ; dynamically scoped
16773 (defvar org-read-date-history nil)
16774 (defvar org-read-date-final-answer nil)
16775 (defvar org-read-date-analyze-futurep nil)
16776 (defvar org-read-date-analyze-forced-year nil)
16777 (defvar org-read-date-inactive)
16779 (defvar org-read-date-minibuffer-local-map
16780 (let* ((map (make-sparse-keymap)))
16781 (set-keymap-parent map minibuffer-local-map)
16782 (org-defkey map (kbd ".")
16783 (lambda () (interactive)
16784 ;; Are we at the beginning of the prompt?
16785 (if (org-looking-back "^[^:]+: "
16786 (let ((inhibit-field-text-motion t))
16787 (line-beginning-position)))
16788 (org-eval-in-calendar '(calendar-goto-today))
16789 (insert "."))))
16790 (org-defkey map (kbd "C-.")
16791 (lambda () (interactive)
16792 (org-eval-in-calendar '(calendar-goto-today))))
16793 (org-defkey map [(meta shift left)]
16794 (lambda () (interactive)
16795 (org-eval-in-calendar '(calendar-backward-month 1))))
16796 (org-defkey map [(meta shift right)]
16797 (lambda () (interactive)
16798 (org-eval-in-calendar '(calendar-forward-month 1))))
16799 (org-defkey map [(meta shift up)]
16800 (lambda () (interactive)
16801 (org-eval-in-calendar '(calendar-backward-year 1))))
16802 (org-defkey map [(meta shift down)]
16803 (lambda () (interactive)
16804 (org-eval-in-calendar '(calendar-forward-year 1))))
16805 (org-defkey map [?\e (shift left)]
16806 (lambda () (interactive)
16807 (org-eval-in-calendar '(calendar-backward-month 1))))
16808 (org-defkey map [?\e (shift right)]
16809 (lambda () (interactive)
16810 (org-eval-in-calendar '(calendar-forward-month 1))))
16811 (org-defkey map [?\e (shift up)]
16812 (lambda () (interactive)
16813 (org-eval-in-calendar '(calendar-backward-year 1))))
16814 (org-defkey map [?\e (shift down)]
16815 (lambda () (interactive)
16816 (org-eval-in-calendar '(calendar-forward-year 1))))
16817 (org-defkey map [(shift up)]
16818 (lambda () (interactive)
16819 (org-eval-in-calendar '(calendar-backward-week 1))))
16820 (org-defkey map [(shift down)]
16821 (lambda () (interactive)
16822 (org-eval-in-calendar '(calendar-forward-week 1))))
16823 (org-defkey map [(shift left)]
16824 (lambda () (interactive)
16825 (org-eval-in-calendar '(calendar-backward-day 1))))
16826 (org-defkey map [(shift right)]
16827 (lambda () (interactive)
16828 (org-eval-in-calendar '(calendar-forward-day 1))))
16829 (org-defkey map "!"
16830 (lambda () (interactive)
16831 (org-eval-in-calendar '(diary-view-entries))
16832 (message "")))
16833 (org-defkey map ">"
16834 (lambda () (interactive)
16835 (org-eval-in-calendar '(calendar-scroll-left 1))))
16836 (org-defkey map "<"
16837 (lambda () (interactive)
16838 (org-eval-in-calendar '(calendar-scroll-right 1))))
16839 (org-defkey map "\C-v"
16840 (lambda () (interactive)
16841 (org-eval-in-calendar
16842 '(calendar-scroll-left-three-months 1))))
16843 (org-defkey map "\M-v"
16844 (lambda () (interactive)
16845 (org-eval-in-calendar
16846 '(calendar-scroll-right-three-months 1))))
16847 map)
16848 "Keymap for minibuffer commands when using `org-read-date'.")
16850 (defvar org-def)
16851 (defvar org-defdecode)
16852 (defvar org-with-time)
16854 (defun org-read-date (&optional org-with-time to-time from-string prompt
16855 default-time default-input inactive)
16856 "Read a date, possibly a time, and make things smooth for the user.
16857 The prompt will suggest to enter an ISO date, but you can also enter anything
16858 which will at least partially be understood by `parse-time-string'.
16859 Unrecognized parts of the date will default to the current day, month, year,
16860 hour and minute. If this command is called to replace a timestamp at point,
16861 or to enter the second timestamp of a range, the default time is taken
16862 from the existing stamp. Furthermore, the command prefers the future,
16863 so if you are giving a date where the year is not given, and the day-month
16864 combination is already past in the current year, it will assume you
16865 mean next year. For details, see the manual. A few examples:
16867 3-2-5 --> 2003-02-05
16868 feb 15 --> currentyear-02-15
16869 2/15 --> currentyear-02-15
16870 sep 12 9 --> 2009-09-12
16871 12:45 --> today 12:45
16872 22 sept 0:34 --> currentyear-09-22 0:34
16873 12 --> currentyear-currentmonth-12
16874 Fri --> nearest Friday after today
16875 -Tue --> last Tuesday
16876 etc.
16878 Furthermore you can specify a relative date by giving, as the *first* thing
16879 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16880 change in days weeks, months, years.
16881 With a single plus or minus, the date is relative to today. With a double
16882 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16883 +4d --> four days from today
16884 +4 --> same as above
16885 +2w --> two weeks from today
16886 ++5 --> five days from default date
16888 The function understands only English month and weekday abbreviations.
16890 While prompting, a calendar is popped up - you can also select the
16891 date with the mouse (button 1). The calendar shows a period of three
16892 months. To scroll it to other months, use the keys `>' and `<'.
16893 If you don't like the calendar, turn it off with
16894 (setq org-read-date-popup-calendar nil)
16896 With optional argument TO-TIME, the date will immediately be converted
16897 to an internal time.
16898 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16899 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16900 still enter a time, and this function will inform the calling routine
16901 about this change. The calling routine may then choose to change the
16902 format used to insert the time stamp into the buffer to include the time.
16903 With optional argument FROM-STRING, read from this string instead from
16904 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16905 the time/date that is used for everything that is not specified by the
16906 user."
16907 (require 'parse-time)
16908 (let* ((org-time-stamp-rounding-minutes
16909 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16910 (org-dcst org-display-custom-times)
16911 (ct (org-current-time))
16912 (org-def (or org-overriding-default-time default-time ct))
16913 (org-defdecode (decode-time org-def))
16914 (dummy (progn
16915 (when (< (nth 2 org-defdecode) org-extend-today-until)
16916 (setcar (nthcdr 2 org-defdecode) -1)
16917 (setcar (nthcdr 1 org-defdecode) 59)
16918 (setq org-def (apply 'encode-time org-defdecode)
16919 org-defdecode (decode-time org-def)))))
16920 (cur-frame (selected-frame))
16921 (mouse-autoselect-window nil) ; Don't let the mouse jump
16922 (calendar-frame-setup nil)
16923 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16924 (calendar-move-hook nil)
16925 (calendar-view-diary-initially-flag nil)
16926 (calendar-view-holidays-initially-flag nil)
16927 (timestr (format-time-string
16928 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16929 (prompt (concat (if prompt (concat prompt " ") "")
16930 (format "Date+time [%s]: " timestr)))
16931 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16933 (cond
16934 (from-string (setq ans from-string))
16935 (org-read-date-popup-calendar
16936 (save-excursion
16937 (save-window-excursion
16938 (calendar)
16939 (when (eq calendar-setup 'calendar-only)
16940 (setq cal-frame
16941 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16942 (select-frame cal-frame))
16943 (org-eval-in-calendar '(setq cursor-type nil) t)
16944 (unwind-protect
16945 (progn
16946 (calendar-forward-day (- (time-to-days org-def)
16947 (calendar-absolute-from-gregorian
16948 (calendar-current-date))))
16949 (org-eval-in-calendar nil t)
16950 (let* ((old-map (current-local-map))
16951 (map (copy-keymap calendar-mode-map))
16952 (minibuffer-local-map
16953 (copy-keymap org-read-date-minibuffer-local-map)))
16954 (org-defkey map (kbd "RET") 'org-calendar-select)
16955 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16956 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16957 (unwind-protect
16958 (progn
16959 (use-local-map map)
16960 (setq org-read-date-inactive inactive)
16961 (add-hook 'post-command-hook 'org-read-date-display)
16962 (setq org-ans0 (read-string prompt default-input
16963 'org-read-date-history nil))
16964 ;; org-ans0: from prompt
16965 ;; org-ans1: from mouse click
16966 ;; org-ans2: from calendar motion
16967 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16968 (remove-hook 'post-command-hook 'org-read-date-display)
16969 (use-local-map old-map)
16970 (when org-read-date-overlay
16971 (delete-overlay org-read-date-overlay)
16972 (setq org-read-date-overlay nil)))))
16973 (bury-buffer "*Calendar*")
16974 (when cal-frame
16975 (delete-frame cal-frame)
16976 (select-frame-set-input-focus cur-frame))))))
16978 (t ; Naked prompt only
16979 (unwind-protect
16980 (setq ans (read-string prompt default-input
16981 'org-read-date-history timestr))
16982 (when org-read-date-overlay
16983 (delete-overlay org-read-date-overlay)
16984 (setq org-read-date-overlay nil)))))
16986 (setq final (org-read-date-analyze ans org-def org-defdecode))
16988 (when org-read-date-analyze-forced-year
16989 (message "Year was forced into %s"
16990 (if org-read-date-force-compatible-dates
16991 "compatible range (1970-2037)"
16992 "range representable on this machine"))
16993 (ding))
16995 ;; One round trip to get rid of 34th of August and stuff like that....
16996 (setq final (decode-time (apply 'encode-time final)))
16998 (setq org-read-date-final-answer ans)
17000 (if to-time
17001 (apply 'encode-time final)
17002 (if (and (boundp 'org-time-was-given) org-time-was-given)
17003 (format "%04d-%02d-%02d %02d:%02d"
17004 (nth 5 final) (nth 4 final) (nth 3 final)
17005 (nth 2 final) (nth 1 final))
17006 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
17008 (defun org-read-date-display ()
17009 "Display the current date prompt interpretation in the minibuffer."
17010 (when org-read-date-display-live
17011 (when org-read-date-overlay
17012 (delete-overlay org-read-date-overlay))
17013 (when (minibufferp (current-buffer))
17014 (save-excursion
17015 (end-of-line 1)
17016 (while (not (equal (buffer-substring
17017 (max (point-min) (- (point) 4)) (point))
17018 " "))
17019 (insert " ")))
17020 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
17021 " " (or org-ans1 org-ans2)))
17022 (org-end-time-was-given nil)
17023 (f (org-read-date-analyze ans org-def org-defdecode))
17024 (fmts (if org-dcst
17025 org-time-stamp-custom-formats
17026 org-time-stamp-formats))
17027 (fmt (if (or org-with-time
17028 (and (boundp 'org-time-was-given) org-time-was-given))
17029 (cdr fmts)
17030 (car fmts)))
17031 (txt (format-time-string fmt (apply 'encode-time f)))
17032 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
17033 (txt (concat "=> " txt)))
17034 (when (and org-end-time-was-given
17035 (string-match org-plain-time-of-day-regexp txt))
17036 (setq txt (concat (substring txt 0 (match-end 0)) "-"
17037 org-end-time-was-given
17038 (substring txt (match-end 0)))))
17039 (when org-read-date-analyze-futurep
17040 (setq txt (concat txt " (=>F)")))
17041 (setq org-read-date-overlay
17042 (make-overlay (1- (point-at-eol)) (point-at-eol)))
17043 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
17045 (defun org-read-date-analyze (ans org-def org-defdecode)
17046 "Analyze the combined answer of the date prompt."
17047 ;; FIXME: cleanup and comment
17048 ;; Pass `current-time' result to `decode-time' (instead of calling
17049 ;; without arguments) so that only `current-time' has to be
17050 ;; overriden in tests.
17051 (let ((nowdecode (decode-time (current-time)))
17052 delta deltan deltaw deltadef year month day
17053 hour minute second wday pm h2 m2 tl wday1
17054 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
17055 (setq org-read-date-analyze-futurep nil
17056 org-read-date-analyze-forced-year nil)
17057 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
17058 (setq ans "+0"))
17060 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
17061 (setq ans (replace-match "" t t ans)
17062 deltan (car delta)
17063 deltaw (nth 1 delta)
17064 deltadef (nth 2 delta)))
17066 ;; Check if there is an iso week date in there. If yes, store the
17067 ;; info and postpone interpreting it until the rest of the parsing
17068 ;; is done.
17069 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
17070 (setq iso-year (if (match-end 1)
17071 (org-small-year-to-year
17072 (string-to-number (match-string 1 ans))))
17073 iso-weekday (if (match-end 3)
17074 (string-to-number (match-string 3 ans)))
17075 iso-week (string-to-number (match-string 2 ans)))
17076 (setq ans (replace-match "" t t ans)))
17078 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
17079 (when (string-match
17080 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
17081 (setq year (if (match-end 2)
17082 (string-to-number (match-string 2 ans))
17083 (progn (setq kill-year t)
17084 (string-to-number (format-time-string "%Y"))))
17085 month (string-to-number (match-string 3 ans))
17086 day (string-to-number (match-string 4 ans)))
17087 (if (< year 100) (setq year (+ 2000 year)))
17088 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17089 t nil ans)))
17091 ;; Help matching dotted european dates
17092 (when (string-match
17093 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
17094 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
17095 (setq kill-year t)
17096 (string-to-number (format-time-string "%Y")))
17097 day (string-to-number (match-string 1 ans))
17098 month (string-to-number (match-string 2 ans))
17099 ans (replace-match (format "%04d-%02d-%02d" year month day)
17100 t nil ans)))
17102 ;; Help matching american dates, like 5/30 or 5/30/7
17103 (when (string-match
17104 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
17105 (setq year (if (match-end 4)
17106 (string-to-number (match-string 4 ans))
17107 (progn (setq kill-year t)
17108 (string-to-number (format-time-string "%Y"))))
17109 month (string-to-number (match-string 1 ans))
17110 day (string-to-number (match-string 2 ans)))
17111 (if (< year 100) (setq year (+ 2000 year)))
17112 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17113 t nil ans)))
17114 ;; Help matching am/pm times, because `parse-time-string' does not do that.
17115 ;; If there is a time with am/pm, and *no* time without it, we convert
17116 ;; so that matching will be successful.
17117 (loop for i from 1 to 2 do ; twice, for end time as well
17118 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
17119 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
17120 (setq hour (string-to-number (match-string 1 ans))
17121 minute (if (match-end 3)
17122 (string-to-number (match-string 3 ans))
17124 pm (equal ?p
17125 (string-to-char (downcase (match-string 4 ans)))))
17126 (if (and (= hour 12) (not pm))
17127 (setq hour 0)
17128 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
17129 (setq ans (replace-match (format "%02d:%02d" hour minute)
17130 t t ans))))
17132 ;; Check if a time range is given as a duration
17133 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
17134 (setq hour (string-to-number (match-string 1 ans))
17135 h2 (+ hour (string-to-number (match-string 3 ans)))
17136 minute (string-to-number (match-string 2 ans))
17137 m2 (+ minute (if (match-end 5) (string-to-number
17138 (match-string 5 ans))0)))
17139 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
17140 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
17141 t t ans)))
17143 ;; Check if there is a time range
17144 (when (boundp 'org-end-time-was-given)
17145 (setq org-time-was-given nil)
17146 (when (and (string-match org-plain-time-of-day-regexp ans)
17147 (match-end 8))
17148 (setq org-end-time-was-given (match-string 8 ans))
17149 (setq ans (concat (substring ans 0 (match-beginning 7))
17150 (substring ans (match-end 7))))))
17152 (setq tl (parse-time-string ans)
17153 day (or (nth 3 tl) (nth 3 org-defdecode))
17154 month
17155 (cond ((nth 4 tl))
17156 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
17157 ;; Day was specified. Make sure DAY+MONTH
17158 ;; combination happens in the future.
17159 ((nth 3 tl)
17160 (setq futurep t)
17161 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
17162 (nth 4 nowdecode)))
17163 (t (nth 4 org-defdecode)))
17164 year
17165 (cond ((and (not kill-year) (nth 5 tl)))
17166 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
17167 ;; Month was guessed in the future and is at least
17168 ;; equal to NOWDECODE's. Fix year accordingly.
17169 (futurep
17170 (if (or (> month (nth 4 nowdecode))
17171 (>= day (nth 3 nowdecode)))
17172 (nth 5 nowdecode)
17173 (1+ (nth 5 nowdecode))))
17174 ;; Month was specified. Make sure MONTH+YEAR
17175 ;; combination happens in the future.
17176 ((nth 4 tl)
17177 (setq futurep t)
17178 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
17179 ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
17180 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
17181 (t (nth 5 nowdecode))))
17182 (t (nth 5 org-defdecode)))
17183 hour (or (nth 2 tl) (nth 2 org-defdecode))
17184 minute (or (nth 1 tl) (nth 1 org-defdecode))
17185 second (or (nth 0 tl) 0)
17186 wday (nth 6 tl))
17188 (when (and (eq org-read-date-prefer-future 'time)
17189 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
17190 (equal day (nth 3 nowdecode))
17191 (equal month (nth 4 nowdecode))
17192 (equal year (nth 5 nowdecode))
17193 (nth 2 tl)
17194 (or (< (nth 2 tl) (nth 2 nowdecode))
17195 (and (= (nth 2 tl) (nth 2 nowdecode))
17196 (nth 1 tl)
17197 (< (nth 1 tl) (nth 1 nowdecode)))))
17198 (setq day (1+ day)
17199 futurep t))
17201 ;; Special date definitions below
17202 (cond
17203 (iso-week
17204 ;; There was an iso week
17205 (require 'cal-iso)
17206 (setq futurep nil)
17207 (setq year (or iso-year year)
17208 day (or iso-weekday wday 1)
17209 wday nil ; to make sure that the trigger below does not match
17210 iso-date (calendar-gregorian-from-absolute
17211 (calendar-iso-to-absolute
17212 (list iso-week day year))))
17213 ; FIXME: Should we also push ISO weeks into the future?
17214 ; (when (and org-read-date-prefer-future
17215 ; (not iso-year)
17216 ; (< (calendar-absolute-from-gregorian iso-date)
17217 ; (time-to-days (current-time))))
17218 ; (setq year (1+ year)
17219 ; iso-date (calendar-gregorian-from-absolute
17220 ; (calendar-iso-to-absolute
17221 ; (list iso-week day year)))))
17222 (setq month (car iso-date)
17223 year (nth 2 iso-date)
17224 day (nth 1 iso-date)))
17225 (deltan
17226 (setq futurep nil)
17227 (unless deltadef
17228 ;; Pass `current-time' result to `decode-time' (instead of
17229 ;; calling without arguments) so that only `current-time' has
17230 ;; to be overriden in tests.
17231 (let ((now (decode-time (current-time))))
17232 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17233 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17234 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17235 ((equal deltaw "m") (setq month (+ month deltan)))
17236 ((equal deltaw "y") (setq year (+ year deltan)))))
17237 ((and wday (not (nth 3 tl)))
17238 ;; Weekday was given, but no day, so pick that day in the week
17239 ;; on or after the derived date.
17240 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17241 (unless (equal wday wday1)
17242 (setq day (+ day (% (- wday wday1 -7) 7))))))
17243 (if (and (boundp 'org-time-was-given)
17244 (nth 2 tl))
17245 (setq org-time-was-given t))
17246 (if (< year 100) (setq year (+ 2000 year)))
17247 ;; Check of the date is representable
17248 (if org-read-date-force-compatible-dates
17249 (progn
17250 (if (< year 1970)
17251 (setq year 1970 org-read-date-analyze-forced-year t))
17252 (if (> year 2037)
17253 (setq year 2037 org-read-date-analyze-forced-year t)))
17254 (condition-case nil
17255 (ignore (encode-time second minute hour day month year))
17256 (error
17257 (setq year (nth 5 org-defdecode))
17258 (setq org-read-date-analyze-forced-year t))))
17259 (setq org-read-date-analyze-futurep futurep)
17260 (list second minute hour day month year)))
17262 (defvar parse-time-weekdays)
17263 (defun org-read-date-get-relative (s today default)
17264 "Check string S for special relative date string.
17265 TODAY and DEFAULT are internal times, for today and for a default.
17266 Return shift list (N what def-flag)
17267 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17268 N is the number of WHATs to shift.
17269 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17270 the DEFAULT date rather than TODAY."
17271 (require 'parse-time)
17272 (when (and
17273 (string-match
17274 (concat
17275 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17276 "\\([0-9]+\\)?"
17277 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17278 "\\([ \t]\\|$\\)") s)
17279 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17280 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17281 (string-to-char (substring (match-string 1 s) -1))
17282 ?+))
17283 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17284 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17285 (what (if (match-end 3) (match-string 3 s) "d"))
17286 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17287 (date (if rel default today))
17288 (wday (nth 6 (decode-time date)))
17289 delta)
17290 (if wday1
17291 (progn
17292 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17293 (if (= delta 0) (setq delta 7))
17294 (if (= dir ?-)
17295 (progn
17296 (setq delta (- delta 7))
17297 (if (= delta 0) (setq delta -7))))
17298 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17299 (list delta "d" rel))
17300 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17302 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17303 "Turn a user-specified date into the internal representation.
17304 The internal representation needed by the calendar is (month day year).
17305 This is a wrapper to handle the brain-dead convention in calendar that
17306 user function argument order change dependent on argument order."
17307 (if (boundp 'calendar-date-style)
17308 (cond
17309 ((eq calendar-date-style 'american)
17310 (list arg1 arg2 arg3))
17311 ((eq calendar-date-style 'european)
17312 (list arg2 arg1 arg3))
17313 ((eq calendar-date-style 'iso)
17314 (list arg2 arg3 arg1)))
17315 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17316 (if (org-bound-and-true-p european-calendar-style)
17317 (list arg2 arg1 arg3)
17318 (list arg1 arg2 arg3)))))
17320 (defun org-eval-in-calendar (form &optional keepdate)
17321 "Eval FORM in the calendar window and return to current window.
17322 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17323 otherwise stick to the current value of `org-ans2'."
17324 (let ((sf (selected-frame))
17325 (sw (selected-window)))
17326 (select-window (get-buffer-window "*Calendar*" t))
17327 (eval form)
17328 (when (and (not keepdate) (calendar-cursor-to-date))
17329 (let* ((date (calendar-cursor-to-date))
17330 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17331 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17332 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17333 (select-window sw)
17334 (org-select-frame-set-input-focus sf)))
17336 (defun org-calendar-select ()
17337 "Return to `org-read-date' with the date currently selected.
17338 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17339 (interactive)
17340 (when (calendar-cursor-to-date)
17341 (let* ((date (calendar-cursor-to-date))
17342 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17343 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17344 (if (active-minibuffer-window) (exit-minibuffer))))
17346 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17347 "Insert a date stamp for the date given by the internal TIME.
17348 See `format-time-string' for the format of TIME.
17349 WITH-HM means use the stamp format that includes the time of the day.
17350 INACTIVE means use square brackets instead of angular ones, so that the
17351 stamp will not contribute to the agenda.
17352 PRE and POST are optional strings to be inserted before and after the
17353 stamp.
17354 The command returns the inserted time stamp."
17355 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17356 stamp)
17357 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17358 (insert-before-markers (or pre ""))
17359 (when (listp extra)
17360 (setq extra (car extra))
17361 (if (and (stringp extra)
17362 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17363 (setq extra (format "-%02d:%02d"
17364 (string-to-number (match-string 1 extra))
17365 (string-to-number (match-string 2 extra))))
17366 (setq extra nil)))
17367 (when extra
17368 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17369 (insert-before-markers (setq stamp (format-time-string fmt time)))
17370 (insert-before-markers (or post ""))
17371 (setq org-last-inserted-timestamp stamp)))
17373 (defun org-toggle-time-stamp-overlays ()
17374 "Toggle the use of custom time stamp formats."
17375 (interactive)
17376 (setq org-display-custom-times (not org-display-custom-times))
17377 (unless org-display-custom-times
17378 (let ((p (point-min)) (bmp (buffer-modified-p)))
17379 (while (setq p (next-single-property-change p 'display))
17380 (if (and (get-text-property p 'display)
17381 (eq (get-text-property p 'face) 'org-date))
17382 (remove-text-properties
17383 p (setq p (next-single-property-change p 'display))
17384 '(display t))))
17385 (set-buffer-modified-p bmp)))
17386 (if (featurep 'xemacs)
17387 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17388 (org-restart-font-lock)
17389 (setq org-table-may-need-update t)
17390 (if org-display-custom-times
17391 (message "Time stamps are overlaid with custom format")
17392 (message "Time stamp overlays removed")))
17394 (defun org-display-custom-time (beg end)
17395 "Overlay modified time stamp format over timestamp between BEG and END."
17396 (let* ((ts (buffer-substring beg end))
17397 t1 w1 with-hm tf time str w2 (off 0))
17398 (save-match-data
17399 (setq t1 (org-parse-time-string ts t))
17400 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17401 (setq off (- (match-end 0) (match-beginning 0)))))
17402 (setq end (- end off))
17403 (setq w1 (- end beg)
17404 with-hm (and (nth 1 t1) (nth 2 t1))
17405 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17406 time (org-fix-decoded-time t1)
17407 str (org-add-props
17408 (format-time-string
17409 (substring tf 1 -1) (apply 'encode-time time))
17410 nil 'mouse-face 'highlight)
17411 w2 (length str))
17412 (if (not (= w2 w1))
17413 (add-text-properties (1+ beg) (+ 2 beg)
17414 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17415 (if (featurep 'xemacs)
17416 (progn
17417 (put-text-property beg end 'invisible t)
17418 (put-text-property beg end 'end-glyph (make-glyph str)))
17419 (put-text-property beg end 'display str))))
17421 (defun org-fix-decoded-time (time)
17422 "Set 0 instead of nil for the first 6 elements of time.
17423 Don't touch the rest."
17424 (let ((n 0))
17425 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17427 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17429 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17430 "Difference between TIMESTAMP-STRING and now in days.
17431 If SECONDS is non-nil, return the difference in seconds."
17432 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17433 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17434 (funcall fdiff (current-time)))))
17436 (defun org-deadline-close (timestamp-string &optional ndays)
17437 "Is the time in TIMESTAMP-STRING close to the current date?"
17438 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17439 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17440 (not (org-entry-is-done-p))))
17442 (defun org-get-wdays (ts &optional delay zero-delay)
17443 "Get the deadline lead time appropriate for timestring TS.
17444 When DELAY is non-nil, get the delay time for scheduled items
17445 instead of the deadline lead time. When ZERO-DELAY is non-nil
17446 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17447 don't try to find the delay cookie in the scheduled timestamp."
17448 (let ((tv (if delay org-scheduled-delay-days
17449 org-deadline-warning-days)))
17450 (cond
17451 ((or (and delay (< tv 0))
17452 (and delay zero-delay (<= tv 0))
17453 (and (not delay) (<= tv 0)))
17454 ;; Enforce this value no matter what
17455 (- tv))
17456 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17457 ;; lead time is specified.
17458 (floor (* (string-to-number (match-string 1 ts))
17459 (cdr (assoc (match-string 2 ts)
17460 '(("d" . 1) ("w" . 7)
17461 ("m" . 30.4) ("y" . 365.25)
17462 ("h" . 0.041667)))))))
17463 ;; go for the default.
17464 (t tv))))
17466 (defun org-calendar-select-mouse (ev)
17467 "Return to `org-read-date' with the date currently selected.
17468 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17469 (interactive "e")
17470 (mouse-set-point ev)
17471 (when (calendar-cursor-to-date)
17472 (let* ((date (calendar-cursor-to-date))
17473 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17474 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17475 (if (active-minibuffer-window) (exit-minibuffer))))
17477 (defun org-check-deadlines (ndays)
17478 "Check if there are any deadlines due or past due.
17479 A deadline is considered due if it happens within `org-deadline-warning-days'
17480 days from today's date. If the deadline appears in an entry marked DONE,
17481 it is not shown. The prefix arg NDAYS can be used to test that many
17482 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17483 (interactive "P")
17484 (let* ((org-warn-days
17485 (cond
17486 ((equal ndays '(4)) 100000)
17487 (ndays (prefix-numeric-value ndays))
17488 (t (abs org-deadline-warning-days))))
17489 (case-fold-search nil)
17490 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17491 (callback
17492 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17493 (message "%d deadlines past-due or due within %d days"
17494 (org-occur regexp nil callback)
17495 org-warn-days)))
17497 (defsubst org-re-timestamp (type)
17498 "Return a regexp for timestamp TYPE.
17499 Allowed values for TYPE are:
17501 all: all timestamps
17502 active: only active timestamps (<...>)
17503 inactive: only inactive timestamps ([...])
17504 scheduled: only scheduled timestamps
17505 deadline: only deadline timestamps
17506 closed: only closed time-stamps
17508 When TYPE is nil, fall back on returning a regexp that matches
17509 both scheduled and deadline timestamps."
17510 (case type
17511 (all org-ts-regexp-both)
17512 (active org-ts-regexp)
17513 (inactive org-ts-regexp-inactive)
17514 (scheduled org-scheduled-time-regexp)
17515 (deadline org-deadline-time-regexp)
17516 (closed org-closed-time-regexp)
17517 (otherwise
17518 (concat "\\<"
17519 (regexp-opt (list org-deadline-string org-scheduled-string))
17520 " *<\\([^>]+\\)>"))))
17522 (defun org-check-before-date (date)
17523 "Check if there are deadlines or scheduled entries before DATE."
17524 (interactive (list (org-read-date)))
17525 (let ((case-fold-search nil)
17526 (regexp (org-re-timestamp org-ts-type))
17527 (callback
17528 `(lambda ()
17529 (let ((match (match-string 1)))
17530 (and ,(if (memq org-ts-type '(active inactive all))
17531 '(eq (org-element-type (org-element-context)) 'timestamp)
17532 '(org-at-planning-p))
17533 (time-less-p
17534 (org-time-string-to-time match)
17535 (org-time-string-to-time date)))))))
17536 (message "%d entries before %s"
17537 (org-occur regexp nil callback) date)))
17539 (defun org-check-after-date (date)
17540 "Check if there are deadlines or scheduled entries after DATE."
17541 (interactive (list (org-read-date)))
17542 (let ((case-fold-search nil)
17543 (regexp (org-re-timestamp org-ts-type))
17544 (callback
17545 `(lambda ()
17546 (let ((match (match-string 1)))
17547 (and ,(if (memq org-ts-type '(active inactive all))
17548 '(eq (org-element-type (org-element-context)) 'timestamp)
17549 '(org-at-planning-p))
17550 (not (time-less-p
17551 (org-time-string-to-time match)
17552 (org-time-string-to-time date))))))))
17553 (message "%d entries after %s"
17554 (org-occur regexp nil callback) date)))
17556 (defun org-check-dates-range (start-date end-date)
17557 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17558 (interactive (list (org-read-date nil nil nil "Range starts")
17559 (org-read-date nil nil nil "Range end")))
17560 (let ((case-fold-search nil)
17561 (regexp (org-re-timestamp org-ts-type))
17562 (callback
17563 `(lambda ()
17564 (let ((match (match-string 1)))
17565 (and
17566 ,(if (memq org-ts-type '(active inactive all))
17567 '(eq (org-element-type (org-element-context)) 'timestamp)
17568 '(org-at-planning-p))
17569 (not (time-less-p
17570 (org-time-string-to-time match)
17571 (org-time-string-to-time start-date)))
17572 (time-less-p
17573 (org-time-string-to-time match)
17574 (org-time-string-to-time end-date)))))))
17575 (message "%d entries between %s and %s"
17576 (org-occur regexp nil callback) start-date end-date)))
17578 (defun org-evaluate-time-range (&optional to-buffer)
17579 "Evaluate a time range by computing the difference between start and end.
17580 Normally the result is just printed in the echo area, but with prefix arg
17581 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17582 If the time range is actually in a table, the result is inserted into the
17583 next column.
17584 For time difference computation, a year is assumed to be exactly 365
17585 days in order to avoid rounding problems."
17586 (interactive "P")
17588 (org-clock-update-time-maybe)
17589 (save-excursion
17590 (unless (org-at-date-range-p t)
17591 (goto-char (point-at-bol))
17592 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17593 (if (not (org-at-date-range-p t))
17594 (user-error "Not at a time-stamp range, and none found in current line")))
17595 (let* ((ts1 (match-string 1))
17596 (ts2 (match-string 2))
17597 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17598 (match-end (match-end 0))
17599 (time1 (org-time-string-to-time ts1))
17600 (time2 (org-time-string-to-time ts2))
17601 (t1 (org-float-time time1))
17602 (t2 (org-float-time time2))
17603 (diff (abs (- t2 t1)))
17604 (negative (< (- t2 t1) 0))
17605 ;; (ys (floor (* 365 24 60 60)))
17606 (ds (* 24 60 60))
17607 (hs (* 60 60))
17608 (fy "%dy %dd %02d:%02d")
17609 (fy1 "%dy %dd")
17610 (fd "%dd %02d:%02d")
17611 (fd1 "%dd")
17612 (fh "%02d:%02d")
17613 y d h m align)
17614 (if havetime
17615 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17617 d (floor (/ diff ds)) diff (mod diff ds)
17618 h (floor (/ diff hs)) diff (mod diff hs)
17619 m (floor (/ diff 60)))
17620 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17622 d (floor (+ (/ diff ds) 0.5))
17623 h 0 m 0))
17624 (if (not to-buffer)
17625 (message "%s" (org-make-tdiff-string y d h m))
17626 (if (org-at-table-p)
17627 (progn
17628 (goto-char match-end)
17629 (setq align t)
17630 (and (looking-at " *|") (goto-char (match-end 0))))
17631 (goto-char match-end))
17632 (if (looking-at
17633 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17634 (replace-match ""))
17635 (if negative (insert " -"))
17636 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17637 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17638 (insert " " (format fh h m))))
17639 (if align (org-table-align))
17640 (message "Time difference inserted")))))
17642 (defun org-make-tdiff-string (y d h m)
17643 (let ((fmt "")
17644 (l nil))
17645 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17646 l (push y l)))
17647 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17648 l (push d l)))
17649 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17650 l (push h l)))
17651 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17652 l (push m l)))
17653 (apply 'format fmt (nreverse l))))
17655 (defun org-time-string-to-time (s &optional buffer pos)
17656 "Convert a timestamp string into internal time."
17657 (condition-case errdata
17658 (apply 'encode-time (org-parse-time-string s))
17659 (error (error "Bad timestamp `%s'%s\nError was: %s"
17660 s (if (not (and buffer pos))
17662 (format-message " at %d in buffer `%s'" pos buffer))
17663 (cdr errdata)))))
17665 (defun org-time-string-to-seconds (s)
17666 "Convert a timestamp string to a number of seconds."
17667 (org-float-time (org-time-string-to-time s)))
17669 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17670 "Convert a time stamp to an absolute day number.
17671 If there is a specifier for a cyclic time stamp, get the closest
17672 date to DAYNR.
17673 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17674 The variable `date' is bound by the calendar when this is called."
17675 (cond
17676 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17677 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17678 daynr
17679 (+ daynr 1000)))
17680 ((and daynr (string-match "\\+\\([0-9]+\\)[hdwmy]" s)
17681 (> (string-to-number (match-string 1 s)) 0))
17682 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17683 (time-to-days (current-time))) (match-string 0 s)
17684 prefer show-all))
17685 (t (time-to-days
17686 (condition-case errdata
17687 (apply 'encode-time (org-parse-time-string s))
17688 (error (error "Bad timestamp `%s'%s\nError was: %s"
17689 s (if (not (and buffer pos))
17691 (format-message " at %d in buffer `%s'" pos buffer))
17692 (cdr errdata))))))))
17694 (defun org-days-to-iso-week (days)
17695 "Return the iso week number."
17696 (require 'cal-iso)
17697 (car (calendar-iso-from-absolute days)))
17699 (defun org-small-year-to-year (year)
17700 "Convert 2-digit years into 4-digit years.
17701 YEAR is expanded into one of the 30 next years, if possible, or
17702 into a past one. Any year larger than 99 is returned unchanged."
17703 (if (>= year 100) year
17704 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17705 (century (/ current 100))
17706 (offset (- year (% current 100))))
17707 (cond ((> offset 30) (+ (* (1- century) 100) year))
17708 ((> offset -70) (+ (* century 100) year))
17709 (t (+ (* (1+ century) 100) year))))))
17711 (defun org-time-from-absolute (d)
17712 "Return the time corresponding to date D.
17713 D may be an absolute day number, or a calendar-type list (month day year)."
17714 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17715 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17717 (defun org-calendar-holiday ()
17718 "List of holidays, for Diary display in Org-mode."
17719 (require 'holidays)
17720 (let ((hl (funcall
17721 (if (fboundp 'calendar-check-holidays)
17722 'calendar-check-holidays 'check-calendar-holidays) date)))
17723 (if hl (mapconcat 'identity hl "; "))))
17725 (defun org-diary-sexp-entry (sexp entry date)
17726 "Process a SEXP diary ENTRY for DATE."
17727 (require 'diary-lib)
17728 (let ((result (if calendar-debug-sexp
17729 (let ((stack-trace-on-error t))
17730 (eval (car (read-from-string sexp))))
17731 (condition-case nil
17732 (eval (car (read-from-string sexp)))
17733 (error
17734 (beep)
17735 (message "Bad sexp at line %d in %s: %s"
17736 (org-current-line)
17737 (buffer-file-name) sexp)
17738 (sleep-for 2))))))
17739 (cond ((stringp result) (split-string result "; "))
17740 ((and (consp result)
17741 (not (consp (cdr result)))
17742 (stringp (cdr result))) (cdr result))
17743 ((and (consp result)
17744 (stringp (car result))) result)
17745 (result entry))))
17747 (defun org-diary-to-ical-string (frombuf)
17748 "Get iCalendar entries from diary entries in buffer FROMBUF.
17749 This uses the icalendar.el library."
17750 (let* ((tmpdir (if (featurep 'xemacs)
17751 (temp-directory)
17752 temporary-file-directory))
17753 (tmpfile (make-temp-name
17754 (expand-file-name "orgics" tmpdir)))
17755 buf rtn b e)
17756 (with-current-buffer frombuf
17757 (icalendar-export-region (point-min) (point-max) tmpfile)
17758 (setq buf (find-buffer-visiting tmpfile))
17759 (set-buffer buf)
17760 (goto-char (point-min))
17761 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17762 (setq b (match-beginning 0)))
17763 (goto-char (point-max))
17764 (if (re-search-backward "^END:VEVENT" nil t)
17765 (setq e (match-end 0)))
17766 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17767 (kill-buffer buf)
17768 (delete-file tmpfile)
17769 rtn))
17771 (defun org-closest-date (start current change prefer show-all)
17772 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17773 When PREFER is `past', return a date that is either CURRENT or past.
17774 When PREFER is `future', return a date that is either CURRENT or future.
17775 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17776 ;; Make the proper lists from the dates
17777 (catch 'exit
17778 (let ((a1 '(("h" . hour)
17779 ("d" . day)
17780 ("w" . week)
17781 ("m" . month)
17782 ("y" . year)))
17783 (shour (nth 2 (org-parse-time-string start)))
17784 dn dw sday cday n1 n2 n0
17785 d m y y1 y2 date1 date2 nmonths nm ny m2)
17787 (setq start (org-date-to-gregorian start)
17788 current (org-date-to-gregorian
17789 (if show-all
17790 current
17791 (time-to-days (current-time))))
17792 sday (calendar-absolute-from-gregorian start)
17793 cday (calendar-absolute-from-gregorian current))
17795 (if (<= cday sday) (throw 'exit sday))
17797 (when (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17798 (setq dn (string-to-number (match-string 1 change))
17799 dw (cdr (assoc (match-string 2 change) a1))))
17800 (unless (and dn (> dn 0))
17801 (user-error "Invalid change specifier: %s" change))
17802 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17803 (cond
17804 ((eq dw 'hour)
17805 (let ((missing-hours
17806 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17807 dn)))
17808 (setq n1 (if (zerop missing-hours) cday
17809 (- cday (1+ (floor (/ missing-hours 24)))))
17810 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17811 ((eq dw 'day)
17812 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17813 n2 (+ n1 dn)))
17814 ((eq dw 'year)
17815 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17816 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17817 (setq date1 (list m d y1)
17818 n1 (calendar-absolute-from-gregorian date1)
17819 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17820 n2 (calendar-absolute-from-gregorian date2)))
17821 ((eq dw 'month)
17822 ;; approx number of month between the two dates
17823 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17824 ;; How often does dn fit in there?
17825 (setq d (nth 1 start) m (car start) y (nth 2 start)
17826 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17827 m (+ m nm)
17828 ny (floor (/ m 12))
17829 y (+ y ny)
17830 m (- m (* ny 12)))
17831 (while (> m 12) (setq m (- m 12) y (1+ y)))
17832 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17833 (setq m2 (+ m dn) y2 y)
17834 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17835 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17836 (while (<= n2 cday)
17837 (setq n1 n2 m m2 y y2)
17838 (setq m2 (+ m dn) y2 y)
17839 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17840 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17841 ;; Make sure n1 is the earlier date
17842 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17843 (if show-all
17844 (cond
17845 ((eq prefer 'past) (if (= cday n2) n2 n1))
17846 ((eq prefer 'future) (if (= cday n1) n1 n2))
17847 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17848 (cond
17849 ((eq prefer 'past) (if (= cday n2) n2 n1))
17850 ((eq prefer 'future) (if (= cday n1) n1 n2))
17851 (t (if (= cday n1) n1 n2)))))))
17853 (defun org-date-to-gregorian (date)
17854 "Turn any specification of DATE into a Gregorian date for the calendar."
17855 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17856 ((and (listp date) (= (length date) 3)) date)
17857 ((stringp date)
17858 (setq date (org-parse-time-string date))
17859 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17860 ((listp date)
17861 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17863 (defun org-parse-time-string (s &optional nodefault)
17864 "Parse the standard Org-mode time string.
17865 This should be a lot faster than the normal `parse-time-string'.
17866 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17867 hour and minute fields will be nil if not given."
17868 (cond ((string-match org-ts-regexp0 s)
17869 (list 0
17870 (if (or (match-beginning 8) (not nodefault))
17871 (string-to-number (or (match-string 8 s) "0")))
17872 (if (or (match-beginning 7) (not nodefault))
17873 (string-to-number (or (match-string 7 s) "0")))
17874 (string-to-number (match-string 4 s))
17875 (string-to-number (match-string 3 s))
17876 (string-to-number (match-string 2 s))
17877 nil nil nil))
17878 ((string-match "^<[^>]+>$" s)
17879 (decode-time (seconds-to-time (org-matcher-time s))))
17880 (t (error "Not a standard Org-mode time string: %s" s))))
17882 (defun org-timestamp-up (&optional arg)
17883 "Increase the date item at the cursor by one.
17884 If the cursor is on the year, change the year. If it is on the month,
17885 the day or the time, change that.
17886 With prefix ARG, change by that many units."
17887 (interactive "p")
17888 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17890 (defun org-timestamp-down (&optional arg)
17891 "Decrease the date item at the cursor by one.
17892 If the cursor is on the year, change the year. If it is on the month,
17893 the day or the time, change that.
17894 With prefix ARG, change by that many units."
17895 (interactive "p")
17896 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17898 (defun org-timestamp-up-day (&optional arg)
17899 "Increase the date in the time stamp by one day.
17900 With prefix ARG, change that many days."
17901 (interactive "p")
17902 (if (and (not (org-at-timestamp-p t))
17903 (org-at-heading-p))
17904 (org-todo 'up)
17905 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17907 (defun org-timestamp-down-day (&optional arg)
17908 "Decrease the date in the time stamp by one day.
17909 With prefix ARG, change that many days."
17910 (interactive "p")
17911 (if (and (not (org-at-timestamp-p t))
17912 (org-at-heading-p))
17913 (org-todo 'down)
17914 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17916 (defun org-at-timestamp-p (&optional inactive-ok)
17917 "Non-nil if point is inside a timestamp.
17919 When optional argument INACTIVE-OK is non-nil, also consider
17920 inactive timestamps.
17922 When this function returns a non-nil value, match data is set
17923 according to `org-ts-regexp3' or `org-ts-regexp2', depending on
17924 INACTIVE-OK."
17925 (interactive)
17926 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17927 (pos (point))
17928 (ans (or (looking-at tsr)
17929 (save-excursion
17930 (skip-chars-backward "^[<\n\r\t")
17931 (if (> (point) (point-min)) (backward-char 1))
17932 (and (looking-at tsr)
17933 (> (- (match-end 0) pos) -1))))))
17934 (and ans
17935 (boundp 'org-ts-what)
17936 (setq org-ts-what
17937 (cond
17938 ((= pos (match-beginning 0)) 'bracket)
17939 ;; Point is considered to be "on the bracket" whether
17940 ;; it's really on it or right after it.
17941 ((= pos (1- (match-end 0))) 'bracket)
17942 ((= pos (match-end 0)) 'after)
17943 ((org-pos-in-match-range pos 2) 'year)
17944 ((org-pos-in-match-range pos 3) 'month)
17945 ((org-pos-in-match-range pos 7) 'hour)
17946 ((org-pos-in-match-range pos 8) 'minute)
17947 ((or (org-pos-in-match-range pos 4)
17948 (org-pos-in-match-range pos 5)) 'day)
17949 ((and (> pos (or (match-end 8) (match-end 5)))
17950 (< pos (match-end 0)))
17951 (- pos (or (match-end 8) (match-end 5))))
17952 (t 'day))))
17953 ans))
17955 (defun org-toggle-timestamp-type ()
17956 "Toggle the type (<active> or [inactive]) of a time stamp."
17957 (interactive)
17958 (when (org-at-timestamp-p t)
17959 (let ((beg (match-beginning 0)) (end (match-end 0))
17960 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17961 (save-excursion
17962 (goto-char beg)
17963 (while (re-search-forward "[][<>]" end t)
17964 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17965 t t)))
17966 (message "Timestamp is now %sactive"
17967 (if (equal (char-after beg) ?<) "" "in")))))
17969 (defun org-at-clock-log-p nil
17970 "Is the cursor on the clock log line?"
17971 (save-excursion
17972 (move-beginning-of-line 1)
17973 (looking-at org-clock-line-re)))
17975 (defvar org-clock-history) ; defined in org-clock.el
17976 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17977 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17978 "Change the date in the time stamp at point.
17979 The date will be changed by N times WHAT. WHAT can be `day', `month',
17980 `year', `minute', `second'. If WHAT is not given, the cursor position
17981 in the timestamp determines what will be changed.
17982 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17983 (let ((origin (point)) origin-cat
17984 with-hm inactive
17985 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17986 org-ts-what
17987 extra rem
17988 ts time time0 fixnext clrgx)
17989 (if (not (org-at-timestamp-p t))
17990 (user-error "Not at a timestamp"))
17991 (if (and (not what) (eq org-ts-what 'bracket))
17992 (org-toggle-timestamp-type)
17993 ;; Point isn't on brackets. Remember the part of the time-stamp
17994 ;; the point was in. Indeed, size of time-stamps may change,
17995 ;; but point must be kept in the same category nonetheless.
17996 (setq origin-cat org-ts-what)
17997 (if (and (not what) (not (eq org-ts-what 'day))
17998 org-display-custom-times
17999 (get-text-property (point) 'display)
18000 (not (get-text-property (1- (point)) 'display)))
18001 (setq org-ts-what 'day))
18002 (setq org-ts-what (or what org-ts-what)
18003 inactive (= (char-after (match-beginning 0)) ?\[)
18004 ts (match-string 0))
18005 (replace-match "")
18006 (when (string-match
18007 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
18009 (setq extra (match-string 1 ts))
18010 (if suppress-tmp-delay
18011 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
18012 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
18013 (setq with-hm t))
18014 (setq time0 (org-parse-time-string ts))
18015 (when (and updown
18016 (eq org-ts-what 'minute)
18017 (not current-prefix-arg))
18018 ;; This looks like s-up and s-down. Change by one rounding step.
18019 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
18020 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
18021 (setcar (cdr time0) (+ (nth 1 time0)
18022 (if (> n 0) (- rem) (- dm rem))))))
18023 (setq time
18024 (encode-time (or (car time0) 0)
18025 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
18026 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
18027 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
18028 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
18029 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
18030 (nthcdr 6 time0)))
18031 (when (and (member org-ts-what '(hour minute))
18032 extra
18033 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
18034 (setq extra (org-modify-ts-extra
18035 extra
18036 (if (eq org-ts-what 'hour) 2 5)
18037 n dm)))
18038 (when (integerp org-ts-what)
18039 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
18040 (if (eq what 'calendar)
18041 (let ((cal-date (org-get-date-from-calendar)))
18042 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
18043 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
18044 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
18045 (setcar time0 (or (car time0) 0))
18046 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
18047 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
18048 (setq time (apply 'encode-time time0))))
18049 ;; Insert the new time-stamp, and ensure point stays in the same
18050 ;; category as before (i.e. not after the last position in that
18051 ;; category).
18052 (let ((pos (point)))
18053 ;; Stay before inserted string. `save-excursion' is of no use.
18054 (setq org-last-changed-timestamp
18055 (org-insert-time-stamp time with-hm inactive nil nil extra))
18056 (goto-char pos))
18057 (save-match-data
18058 (looking-at org-ts-regexp3)
18059 (goto-char (cond
18060 ;; `day' category ends before `hour' if any, or at
18061 ;; the end of the day name.
18062 ((eq origin-cat 'day)
18063 (min (or (match-beginning 7) (1- (match-end 5))) origin))
18064 ((eq origin-cat 'hour) (min (match-end 7) origin))
18065 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
18066 ((integerp origin-cat) (min (1- (match-end 0)) origin))
18067 ;; `year' and `month' have both fixed size: point
18068 ;; couldn't have moved into another part.
18069 (t origin))))
18070 ;; Update clock if on a CLOCK line.
18071 (org-clock-update-time-maybe)
18072 ;; Maybe adjust the closest clock in `org-clock-history'
18073 (when org-clock-adjust-closest
18074 (if (not (and (org-at-clock-log-p)
18075 (< 1 (length (delq nil (mapcar 'marker-position
18076 org-clock-history))))))
18077 (message "No clock to adjust")
18078 (cond ((save-excursion ; fix previous clock?
18079 (re-search-backward org-ts-regexp0 nil t)
18080 (org-looking-back (concat org-clock-string " \\[")
18081 (line-beginning-position)))
18082 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
18083 ((save-excursion ; fix next clock?
18084 (re-search-backward org-ts-regexp0 nil t)
18085 (looking-at (concat org-ts-regexp0 "\\] =>")))
18086 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
18087 (save-window-excursion
18088 ;; Find closest clock to point, adjust the previous/next one in history
18089 (let* ((p (save-excursion (org-back-to-heading t)))
18090 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
18091 (clfixnth
18092 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
18093 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
18094 (if (not clfixpos)
18095 (message "No clock to adjust")
18096 (save-excursion
18097 (org-goto-marker-or-bmk clfixpos)
18098 (org-show-subtree)
18099 (when (re-search-forward clrgx nil t)
18100 (goto-char (match-beginning 1))
18101 (let (org-clock-adjust-closest)
18102 (org-timestamp-change n org-ts-what updown))
18103 (message "Clock adjusted in %s for heading: %s"
18104 (file-name-nondirectory (buffer-file-name))
18105 (org-get-heading t t)))))))))
18106 ;; Try to recenter the calendar window, if any.
18107 (if (and org-calendar-follow-timestamp-change
18108 (get-buffer-window "*Calendar*" t)
18109 (memq org-ts-what '(day month year)))
18110 (org-recenter-calendar (time-to-days time))))))
18112 (defun org-modify-ts-extra (s pos n dm)
18113 "Change the different parts of the lead-time and repeat fields in timestamp."
18114 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
18115 ng h m new rem)
18116 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
18117 (cond
18118 ((or (org-pos-in-match-range pos 2)
18119 (org-pos-in-match-range pos 3))
18120 (setq m (string-to-number (match-string 3 s))
18121 h (string-to-number (match-string 2 s)))
18122 (if (org-pos-in-match-range pos 2)
18123 (setq h (+ h n))
18124 (setq n (* dm (org-no-warnings (signum n))))
18125 (when (not (= 0 (setq rem (% m dm))))
18126 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
18127 (setq m (+ m n)))
18128 (if (< m 0) (setq m (+ m 60) h (1- h)))
18129 (if (> m 59) (setq m (- m 60) h (1+ h)))
18130 (setq h (mod h 24))
18131 (setq ng 1 new (format "-%02d:%02d" h m)))
18132 ((org-pos-in-match-range pos 6)
18133 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
18134 ((org-pos-in-match-range pos 5)
18135 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
18137 ((org-pos-in-match-range pos 9)
18138 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
18139 ((org-pos-in-match-range pos 8)
18140 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
18142 (when ng
18143 (setq s (concat
18144 (substring s 0 (match-beginning ng))
18146 (substring s (match-end ng))))))
18149 (defun org-recenter-calendar (date)
18150 "If the calendar is visible, recenter it to DATE."
18151 (let ((cwin (get-buffer-window "*Calendar*" t)))
18152 (when cwin
18153 (let ((calendar-move-hook nil))
18154 (with-selected-window cwin
18155 (calendar-goto-date (if (listp date) date
18156 (calendar-gregorian-from-absolute date))))))))
18158 (defun org-goto-calendar (&optional arg)
18159 "Go to the Emacs calendar at the current date.
18160 If there is a time stamp in the current line, go to that date.
18161 A prefix ARG can be used to force the current date."
18162 (interactive "P")
18163 (let ((tsr org-ts-regexp) diff
18164 (calendar-move-hook nil)
18165 (calendar-view-holidays-initially-flag nil)
18166 (calendar-view-diary-initially-flag nil))
18167 (if (or (org-at-timestamp-p)
18168 (save-excursion
18169 (beginning-of-line 1)
18170 (looking-at (concat ".*" tsr))))
18171 (let ((d1 (time-to-days (current-time)))
18172 (d2 (time-to-days
18173 (org-time-string-to-time (match-string 1)))))
18174 (setq diff (- d2 d1))))
18175 (calendar)
18176 (calendar-goto-today)
18177 (if (and diff (not arg)) (calendar-forward-day diff))))
18179 (defun org-get-date-from-calendar ()
18180 "Return a list (month day year) of date at point in calendar."
18181 (with-current-buffer "*Calendar*"
18182 (save-match-data
18183 (calendar-cursor-to-date))))
18185 (defun org-date-from-calendar ()
18186 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
18187 If there is already a time stamp at the cursor position, update it."
18188 (interactive)
18189 (if (org-at-timestamp-p t)
18190 (org-timestamp-change 0 'calendar)
18191 (let ((cal-date (org-get-date-from-calendar)))
18192 (org-insert-time-stamp
18193 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
18195 (defcustom org-effort-durations
18196 `(("min" . 1)
18197 ("h" . 60)
18198 ("d" . ,(* 60 8))
18199 ("w" . ,(* 60 8 5))
18200 ("m" . ,(* 60 8 5 4))
18201 ("y" . ,(* 60 8 5 40)))
18202 "Conversion factor to minutes for an effort modifier.
18204 Each entry has the form (MODIFIER . MINUTES).
18206 In an effort string, a number followed by MODIFIER is multiplied
18207 by the specified number of MINUTES to obtain an effort in
18208 minutes.
18210 For example, if the value of this variable is ((\"hours\" . 60)), then an
18211 effort string \"2hours\" is equivalent to 120 minutes."
18212 :group 'org-agenda
18213 :version "25.1"
18214 :package-version '(Org . "8.3")
18215 :type '(alist :key-type (string :tag "Modifier")
18216 :value-type (number :tag "Minutes")))
18218 (defun org-minutes-to-clocksum-string (m)
18219 "Format number of minutes as a clocksum string.
18220 The format is determined by `org-time-clocksum-format',
18221 `org-time-clocksum-use-fractional' and
18222 `org-time-clocksum-fractional-format' and
18223 `org-time-clocksum-use-effort-durations'."
18224 (let ((clocksum "")
18225 (m (round m)) ; Don't allow fractions of minutes
18226 h d w mo y fmt n)
18227 (setq h (if org-time-clocksum-use-effort-durations
18228 (cdr (assoc "h" org-effort-durations)) 60)
18229 d (if org-time-clocksum-use-effort-durations
18230 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
18231 w (if org-time-clocksum-use-effort-durations
18232 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18233 mo (if org-time-clocksum-use-effort-durations
18234 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18235 y (if org-time-clocksum-use-effort-durations
18236 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18237 ;; fractional format
18238 (if org-time-clocksum-use-fractional
18239 (cond
18240 ;; single format string
18241 ((stringp org-time-clocksum-fractional-format)
18242 (format org-time-clocksum-fractional-format (/ m (float h))))
18243 ;; choice of fractional formats for different time units
18244 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18245 (> (/ (truncate m) (* y d h)) 0))
18246 (format fmt (/ m (* y d (float h)))))
18247 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18248 (> (/ (truncate m) (* mo d h)) 0))
18249 (format fmt (/ m (* mo d (float h)))))
18250 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18251 (> (/ (truncate m) (* w d h)) 0))
18252 (format fmt (/ m (* w d (float h)))))
18253 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18254 (> (/ (truncate m) (* d h)) 0))
18255 (format fmt (/ m (* d (float h)))))
18256 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18257 (> (/ (truncate m) h) 0))
18258 (format fmt (/ m (float h))))
18259 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18260 (format fmt m))
18261 ;; fall back to smallest time unit with a format
18262 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18263 (format fmt (/ m (float h))))
18264 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18265 (format fmt (/ m (* d (float h)))))
18266 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18267 (format fmt (/ m (* w d (float h)))))
18268 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18269 (format fmt (/ m (* mo d (float h)))))
18270 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18271 (format fmt (/ m (* y d (float h))))))
18272 ;; standard (non-fractional) format, with single format string
18273 (if (stringp org-time-clocksum-format)
18274 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18275 ;; separate formats components
18276 (and (setq fmt (plist-get org-time-clocksum-format :years))
18277 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18278 (plist-get org-time-clocksum-format :require-years))
18279 (setq clocksum (concat clocksum (format fmt n))
18280 m (- m (* n y d h))))
18281 (and (setq fmt (plist-get org-time-clocksum-format :months))
18282 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18283 (plist-get org-time-clocksum-format :require-months))
18284 (setq clocksum (concat clocksum (format fmt n))
18285 m (- m (* n mo d h))))
18286 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18287 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18288 (plist-get org-time-clocksum-format :require-weeks))
18289 (setq clocksum (concat clocksum (format fmt n))
18290 m (- m (* n w d h))))
18291 (and (setq fmt (plist-get org-time-clocksum-format :days))
18292 (or (> (setq n (/ (truncate m) (* d h))) 0)
18293 (plist-get org-time-clocksum-format :require-days))
18294 (setq clocksum (concat clocksum (format fmt n))
18295 m (- m (* n d h))))
18296 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18297 (or (> (setq n (/ (truncate m) h)) 0)
18298 (plist-get org-time-clocksum-format :require-hours))
18299 (setq clocksum (concat clocksum (format fmt n))
18300 m (- m (* n h))))
18301 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18302 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18303 (setq clocksum (concat clocksum (format fmt m))))
18304 ;; return formatted time duration
18305 clocksum))))
18307 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18308 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18309 "Org mode version 8.0")
18311 (defun org-hours-to-clocksum-string (n)
18312 (org-minutes-to-clocksum-string (* n 60)))
18314 (defun org-hh:mm-string-to-minutes (s)
18315 "Convert a string H:MM to a number of minutes.
18316 If the string is just a number, interpret it as minutes.
18317 In fact, the first hh:mm or number in the string will be taken,
18318 there can be extra stuff in the string.
18319 If no number is found, the return value is 0."
18320 (cond
18321 ((integerp s) s)
18322 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18323 (+ (* (string-to-number (match-string 1 s)) 60)
18324 (string-to-number (match-string 2 s))))
18325 ((string-match "\\([0-9]+\\)" s)
18326 (string-to-number (match-string 1 s)))
18327 (t 0)))
18329 (defcustom org-image-actual-width t
18330 "Should we use the actual width of images when inlining them?
18332 When set to t, always use the image width.
18334 When set to a number, use imagemagick (when available) to set
18335 the image's width to this value.
18337 When set to a number in a list, try to get the width from any
18338 #+ATTR.* keyword if it matches a width specification like
18340 #+ATTR_HTML: :width 300px
18342 and fall back on that number if none is found.
18344 When set to nil, try to get the width from an #+ATTR.* keyword
18345 and fall back on the original width if none is found.
18347 This requires Emacs >= 24.1, build with imagemagick support."
18348 :group 'org-appearance
18349 :version "24.4"
18350 :package-version '(Org . "8.0")
18351 :type '(choice
18352 (const :tag "Use the image width" t)
18353 (integer :tag "Use a number of pixels")
18354 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18355 (const :tag "Use #+ATTR* or don't resize" nil)))
18357 (defcustom org-agenda-inhibit-startup nil
18358 "Inhibit startup when preparing agenda buffers.
18359 When this variable is t, the initialization of the Org agenda
18360 buffers is inhibited: e.g. the visibility state is not set, the
18361 tables are not re-aligned, etc."
18362 :type 'boolean
18363 :version "24.3"
18364 :group 'org-agenda)
18366 (define-obsolete-variable-alias
18367 'org-agenda-ignore-drawer-properties
18368 'org-agenda-ignore-properties "25.1")
18370 (defcustom org-agenda-ignore-properties nil
18371 "Avoid updating text properties when building the agenda.
18372 Properties are used to prepare buffers for effort estimates,
18373 appointments, statistics and subtree-local categories.
18374 If you don't use these in the agenda, you can add them to this
18375 list and agenda building will be a bit faster.
18376 The value is a list, with zero or more of the symbols `effort', `appt',
18377 `stats' or `category'."
18378 :type '(set :greedy t
18379 (const effort)
18380 (const appt)
18381 (const stats)
18382 (const category))
18383 :version "25.1"
18384 :package-version '(Org . "8.3")
18385 :group 'org-agenda)
18387 (defun org-duration-string-to-minutes (s &optional output-to-string)
18388 "Convert a duration string S to minutes.
18390 A bare number is interpreted as minutes, modifiers can be set by
18391 customizing `org-effort-durations' (which see).
18393 Entries containing a colon are interpreted as H:MM by
18394 `org-hh:mm-string-to-minutes'."
18395 (let ((result 0)
18396 (re (concat "\\([0-9.]+\\) *\\("
18397 (regexp-opt (mapcar 'car org-effort-durations))
18398 "\\)")))
18399 (while (string-match re s)
18400 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18401 (string-to-number (match-string 1 s))))
18402 (setq s (replace-match "" nil t s)))
18403 (setq result (floor result))
18404 (incf result (org-hh:mm-string-to-minutes s))
18405 (if output-to-string (number-to-string result) result)))
18407 ;;;; Files
18409 (defun org-save-all-org-buffers ()
18410 "Save all Org-mode buffers without user confirmation."
18411 (interactive)
18412 (message "Saving all Org-mode buffers...")
18413 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18414 (when (featurep 'org-id) (org-id-locations-save))
18415 (message "Saving all Org-mode buffers... done"))
18417 (defun org-revert-all-org-buffers ()
18418 "Revert all Org-mode buffers.
18419 Prompt for confirmation when there are unsaved changes.
18420 Be sure you know what you are doing before letting this function
18421 overwrite your changes.
18423 This function is useful in a setup where one tracks org files
18424 with a version control system, to revert on one machine after pulling
18425 changes from another. I believe the procedure must be like this:
18427 1. M-x org-save-all-org-buffers
18428 2. Pull changes from the other machine, resolve conflicts
18429 3. M-x org-revert-all-org-buffers"
18430 (interactive)
18431 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18432 (user-error "Abort"))
18433 (save-excursion
18434 (save-window-excursion
18435 (mapc
18436 (lambda (b)
18437 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18438 (with-current-buffer b buffer-file-name))
18439 (org-pop-to-buffer-same-window b)
18440 (revert-buffer t 'no-confirm)))
18441 (buffer-list))
18442 (when (and (featurep 'org-id) org-id-track-globally)
18443 (org-id-locations-load)))))
18445 ;;;; Agenda files
18447 ;;;###autoload
18448 (defun org-switchb (&optional arg)
18449 "Switch between Org buffers.
18450 With one prefix argument, restrict available buffers to files.
18451 With two prefix arguments, restrict available buffers to agenda files.
18453 Defaults to `iswitchb' for buffer name completion.
18454 Set `org-completion-use-ido' to make it use ido instead."
18455 (interactive "P")
18456 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18457 ((equal arg '(16)) (org-buffer-list 'agenda))
18458 (t (org-buffer-list))))
18459 (org-completion-use-iswitchb org-completion-use-iswitchb)
18460 (org-completion-use-ido org-completion-use-ido))
18461 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18462 (setq org-completion-use-iswitchb t))
18463 (org-pop-to-buffer-same-window
18464 (org-icompleting-read "Org buffer: "
18465 (mapcar 'list (mapcar 'buffer-name blist))
18466 nil t))))
18468 ;;; Define some older names previously used for this functionality
18469 ;;;###autoload
18470 (defalias 'org-ido-switchb 'org-switchb)
18471 ;;;###autoload
18472 (defalias 'org-iswitchb 'org-switchb)
18474 (defun org-buffer-list (&optional predicate exclude-tmp)
18475 "Return a list of Org buffers.
18476 PREDICATE can be `export', `files' or `agenda'.
18478 export restrict the list to Export buffers.
18479 files restrict the list to buffers visiting Org files.
18480 agenda restrict the list to buffers visiting agenda files.
18482 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18483 (let* ((bfn nil)
18484 (agenda-files (and (eq predicate 'agenda)
18485 (mapcar 'file-truename (org-agenda-files t))))
18486 (filter
18487 (cond
18488 ((eq predicate 'files)
18489 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18490 ((eq predicate 'export)
18491 (lambda (b) (string-match "\\*Org .*Export" (buffer-name b))))
18492 ((eq predicate 'agenda)
18493 (lambda (b)
18494 (with-current-buffer b
18495 (and (derived-mode-p 'org-mode)
18496 (setq bfn (buffer-file-name b))
18497 (member (file-truename bfn) agenda-files)))))
18498 (t (lambda (b) (with-current-buffer b
18499 (or (derived-mode-p 'org-mode)
18500 (string-match "\\*Org .*Export"
18501 (buffer-name b)))))))))
18502 (delq nil
18503 (mapcar
18504 (lambda(b)
18505 (if (and (funcall filter b)
18506 (or (not exclude-tmp)
18507 (not (string-match "tmp" (buffer-name b)))))
18509 nil))
18510 (buffer-list)))))
18512 (defun org-agenda-files (&optional unrestricted archives)
18513 "Get the list of agenda files.
18514 Optional UNRESTRICTED means return the full list even if a restriction
18515 is currently in place.
18516 When ARCHIVES is t, include all archive files that are really being
18517 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18518 `org-agenda-archives-mode' is t."
18519 (let ((files
18520 (cond
18521 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18522 ((stringp org-agenda-files) (org-read-agenda-file-list))
18523 ((listp org-agenda-files) org-agenda-files)
18524 (t (error "Invalid value of `org-agenda-files'")))))
18525 (setq files (apply 'append
18526 (mapcar (lambda (f)
18527 (if (file-directory-p f)
18528 (directory-files
18529 f t org-agenda-file-regexp)
18530 (list f)))
18531 files)))
18532 (when org-agenda-skip-unavailable-files
18533 (setq files (delq nil
18534 (mapcar (function
18535 (lambda (file)
18536 (and (file-readable-p file) file)))
18537 files))))
18538 (when (or (eq archives t)
18539 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18540 (setq files (org-add-archive-files files)))
18541 files))
18543 (defun org-agenda-file-p (&optional file)
18544 "Return non-nil, if FILE is an agenda file.
18545 If FILE is omitted, use the file associated with the current
18546 buffer."
18547 (let ((fname (or file (buffer-file-name))))
18548 (and fname
18549 (member (file-truename fname)
18550 (mapcar #'file-truename (org-agenda-files t))))))
18552 (defun org-edit-agenda-file-list ()
18553 "Edit the list of agenda files.
18554 Depending on setup, this either uses customize to edit the variable
18555 `org-agenda-files', or it visits the file that is holding the list. In the
18556 latter case, the buffer is set up in a way that saving it automatically kills
18557 the buffer and restores the previous window configuration."
18558 (interactive)
18559 (if (stringp org-agenda-files)
18560 (let ((cw (current-window-configuration)))
18561 (find-file org-agenda-files)
18562 (org-set-local 'org-window-configuration cw)
18563 (org-add-hook 'after-save-hook
18564 (lambda ()
18565 (set-window-configuration
18566 (prog1 org-window-configuration
18567 (kill-buffer (current-buffer))))
18568 (org-install-agenda-files-menu)
18569 (message "New agenda file list installed"))
18570 nil 'local)
18571 (message "%s" (substitute-command-keys
18572 "Edit list and finish with \\[save-buffer]")))
18573 (customize-variable 'org-agenda-files)))
18575 (defun org-store-new-agenda-file-list (list)
18576 "Set new value for the agenda file list and save it correctly."
18577 (if (stringp org-agenda-files)
18578 (let ((fe (org-read-agenda-file-list t)) b u)
18579 (while (setq b (find-buffer-visiting org-agenda-files))
18580 (kill-buffer b))
18581 (with-temp-file org-agenda-files
18582 (insert
18583 (mapconcat
18584 (lambda (f) ;; Keep un-expanded entries.
18585 (if (setq u (assoc f fe))
18586 (cdr u)
18588 list "\n")
18589 "\n")))
18590 (let ((org-mode-hook nil) (org-inhibit-startup t)
18591 (org-insert-mode-line-in-empty-file nil))
18592 (setq org-agenda-files list)
18593 (customize-save-variable 'org-agenda-files org-agenda-files))))
18595 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18596 "Read the list of agenda files from a file.
18597 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18598 filenames, used by `org-store-new-agenda-file-list' to write back
18599 un-expanded file names."
18600 (when (file-directory-p org-agenda-files)
18601 (error "`org-agenda-files' cannot be a single directory"))
18602 (when (stringp org-agenda-files)
18603 (with-temp-buffer
18604 (insert-file-contents org-agenda-files)
18605 (mapcar
18606 (lambda (f)
18607 (let ((e (expand-file-name (substitute-in-file-name f)
18608 org-directory)))
18609 (if pair-with-expansion
18610 (cons e f)
18611 e)))
18612 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18614 ;;;###autoload
18615 (defun org-cycle-agenda-files ()
18616 "Cycle through the files in `org-agenda-files'.
18617 If the current buffer visits an agenda file, find the next one in the list.
18618 If the current buffer does not, find the first agenda file."
18619 (interactive)
18620 (let* ((fs (or (org-agenda-files t)
18621 (user-error "No agenda files")))
18622 (files (copy-sequence fs))
18623 (tcf (and buffer-file-name (file-truename buffer-file-name)))
18624 file)
18625 (when tcf
18626 (while (and (setq file (pop files))
18627 (not (equal (file-truename file) tcf)))))
18628 (find-file (car (or files fs)))
18629 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18631 (defun org-agenda-file-to-front (&optional to-end)
18632 "Move/add the current file to the top of the agenda file list.
18633 If the file is not present in the list, it is added to the front. If it is
18634 present, it is moved there. With optional argument TO-END, add/move to the
18635 end of the list."
18636 (interactive "P")
18637 (let ((org-agenda-skip-unavailable-files nil)
18638 (file-alist (mapcar (lambda (x)
18639 (cons (file-truename x) x))
18640 (org-agenda-files t)))
18641 (ctf (file-truename
18642 (or buffer-file-name
18643 (user-error "Please save the current buffer to a file"))))
18644 x had)
18645 (setq x (assoc ctf file-alist) had x)
18647 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18648 (if to-end
18649 (setq file-alist (append (delq x file-alist) (list x)))
18650 (setq file-alist (cons x (delq x file-alist))))
18651 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18652 (org-install-agenda-files-menu)
18653 (message "File %s to %s of agenda file list"
18654 (if had "moved" "added") (if to-end "end" "front"))))
18656 (defun org-remove-file (&optional file)
18657 "Remove current file from the list of files in variable `org-agenda-files'.
18658 These are the files which are being checked for agenda entries.
18659 Optional argument FILE means use this file instead of the current."
18660 (interactive)
18661 (let* ((org-agenda-skip-unavailable-files nil)
18662 (file (or file buffer-file-name
18663 (user-error "Current buffer does not visit a file")))
18664 (true-file (file-truename file))
18665 (afile (abbreviate-file-name file))
18666 (files (delq nil (mapcar
18667 (lambda (x)
18668 (if (equal true-file
18669 (file-truename x))
18670 nil x))
18671 (org-agenda-files t)))))
18672 (if (not (= (length files) (length (org-agenda-files t))))
18673 (progn
18674 (org-store-new-agenda-file-list files)
18675 (org-install-agenda-files-menu)
18676 (message "Removed from Org Agenda list: %s" afile))
18677 (message "File was not in list: %s (not removed)" afile))))
18679 (defun org-file-menu-entry (file)
18680 (vector file (list 'find-file file) t))
18682 (defun org-check-agenda-file (file)
18683 "Make sure FILE exists. If not, ask user what to do."
18684 (when (not (file-exists-p file))
18685 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18686 (abbreviate-file-name file))
18687 (let ((r (downcase (read-char-exclusive))))
18688 (cond
18689 ((equal r ?r)
18690 (org-remove-file file)
18691 (throw 'nextfile t))
18692 (t (user-error "Abort"))))))
18694 (defun org-get-agenda-file-buffer (file)
18695 "Get an agenda buffer visiting FILE.
18696 If the buffer needs to be created, add it to the list of buffers
18697 which might be released later."
18698 (let ((buf (org-find-base-buffer-visiting file)))
18699 (if buf
18700 buf ; just return it
18701 ;; Make a new buffer and remember it
18702 (setq buf (find-file-noselect file))
18703 (if buf (push buf org-agenda-new-buffers))
18704 buf)))
18706 (defun org-release-buffers (blist)
18707 "Release all buffers in list, asking the user for confirmation when needed.
18708 When a buffer is unmodified, it is just killed. When modified, it is saved
18709 \(if the user agrees) and then killed."
18710 (let (file)
18711 (dolist (buf blist)
18712 (setq file (buffer-file-name buf))
18713 (when (and (buffer-modified-p buf)
18714 file
18715 (y-or-n-p (format "Save file %s? " file)))
18716 (with-current-buffer buf (save-buffer)))
18717 (kill-buffer buf))))
18719 (defun org-agenda-prepare-buffers (files)
18720 "Create buffers for all agenda files, protect archived trees and comments."
18721 (interactive)
18722 (let ((pa '(:org-archived t))
18723 (pc '(:org-comment t))
18724 (pall '(:org-archived t :org-comment t))
18725 (inhibit-read-only t)
18726 (org-inhibit-startup org-agenda-inhibit-startup)
18727 (rea (concat ":" org-archive-tag ":"))
18728 file re pos)
18729 (setq org-tag-alist-for-agenda nil
18730 org-tag-groups-alist-for-agenda nil)
18731 (save-excursion
18732 (save-restriction
18733 (dolist (file files)
18734 (catch 'nextfile
18735 (if (bufferp file)
18736 (set-buffer file)
18737 (org-check-agenda-file file)
18738 (set-buffer (org-get-agenda-file-buffer file)))
18739 (widen)
18740 (org-set-regexps-and-options 'tags-only)
18741 (setq pos (point))
18742 (or (memq 'category org-agenda-ignore-properties)
18743 (org-refresh-category-properties))
18744 (or (memq 'stats org-agenda-ignore-properties)
18745 (org-refresh-stats-properties))
18746 (or (memq 'effort org-agenda-ignore-properties)
18747 (org-refresh-effort-properties))
18748 (or (memq 'appt org-agenda-ignore-properties)
18749 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18750 (setq org-todo-keywords-for-agenda
18751 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18752 (setq org-done-keywords-for-agenda
18753 (append org-done-keywords-for-agenda org-done-keywords))
18754 (setq org-todo-keyword-alist-for-agenda
18755 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18756 (setq org-tag-alist-for-agenda
18757 (org-uniquify
18758 (append org-tag-alist-for-agenda
18759 org-tag-alist
18760 org-tag-persistent-alist)))
18761 ;; Merge current file's tag groups into global
18762 ;; `org-tag-groups-alist-for-agenda'.
18763 (when org-group-tags
18764 (dolist (alist org-tag-groups-alist)
18765 (let ((old (assoc (car alist) org-tag-groups-alist-for-agenda)))
18766 (if old
18767 (setcdr old (org-uniquify (append (cdr old) (cdr alist))))
18768 (push alist org-tag-groups-alist-for-agenda)))))
18769 (org-with-silent-modifications
18770 (save-excursion
18771 (remove-text-properties (point-min) (point-max) pall)
18772 (when org-agenda-skip-archived-trees
18773 (goto-char (point-min))
18774 (while (re-search-forward rea nil t)
18775 (if (org-at-heading-p t)
18776 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18777 (goto-char (point-min))
18778 (setq re (format "^\\*+ .*\\<%s\\>" org-comment-string))
18779 (while (re-search-forward re nil t)
18780 (when (save-match-data (org-in-commented-heading-p t))
18781 (add-text-properties
18782 (match-beginning 0) (org-end-of-subtree t) pc)))))
18783 (goto-char pos)))))
18784 (setq org-todo-keywords-for-agenda
18785 (org-uniquify org-todo-keywords-for-agenda))
18786 (setq org-todo-keyword-alist-for-agenda
18787 (org-uniquify org-todo-keyword-alist-for-agenda))))
18790 ;;;; CDLaTeX minor mode
18792 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18793 "Keymap for the minor `org-cdlatex-mode'.")
18795 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18796 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18797 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18798 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18799 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18801 (defvar org-cdlatex-texmathp-advice-is-done nil
18802 "Flag remembering if we have applied the advice to texmathp already.")
18804 (define-minor-mode org-cdlatex-mode
18805 "Toggle the minor `org-cdlatex-mode'.
18806 This mode supports entering LaTeX environment and math in LaTeX fragments
18807 in Org-mode.
18808 \\{org-cdlatex-mode-map}"
18809 nil " OCDL" nil
18810 (when org-cdlatex-mode
18811 (require 'cdlatex)
18812 (run-hooks 'cdlatex-mode-hook)
18813 (cdlatex-compute-tables))
18814 (unless org-cdlatex-texmathp-advice-is-done
18815 (setq org-cdlatex-texmathp-advice-is-done t)
18816 (defadvice texmathp (around org-math-always-on activate)
18817 "Always return t in org-mode buffers.
18818 This is because we want to insert math symbols without dollars even outside
18819 the LaTeX math segments. If Orgmode thinks that point is actually inside
18820 an embedded LaTeX fragment, let texmathp do its job.
18821 \\[org-cdlatex-mode-map]"
18822 (interactive)
18823 (let (p)
18824 (cond
18825 ((not (derived-mode-p 'org-mode)) ad-do-it)
18826 ((eq this-command 'cdlatex-math-symbol)
18827 (setq ad-return-value t
18828 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18830 (let ((p (org-inside-LaTeX-fragment-p)))
18831 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18832 (setq ad-return-value t
18833 texmathp-why '("Org-mode embedded math" . 0))
18834 (if p ad-do-it)))))))))
18836 (defun turn-on-org-cdlatex ()
18837 "Unconditionally turn on `org-cdlatex-mode'."
18838 (org-cdlatex-mode 1))
18840 (defun org-try-cdlatex-tab ()
18841 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18842 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18843 - inside a LaTeX fragment, or
18844 - after the first word in a line, where an abbreviation expansion could
18845 insert a LaTeX environment."
18846 (when org-cdlatex-mode
18847 (cond
18848 ;; Before any word on the line: No expansion possible.
18849 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18850 ;; Just after first word on the line: Expand it. Make sure it
18851 ;; cannot happen on headlines, though.
18852 ((save-excursion
18853 (skip-chars-backward "a-zA-Z0-9*")
18854 (skip-chars-backward " \t")
18855 (and (bolp) (not (org-at-heading-p))))
18856 (cdlatex-tab) t)
18857 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18859 (defun org-cdlatex-underscore-caret (&optional arg)
18860 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18861 Revert to the normal definition outside of these fragments."
18862 (interactive "P")
18863 (if (org-inside-LaTeX-fragment-p)
18864 (call-interactively 'cdlatex-sub-superscript)
18865 (let (org-cdlatex-mode)
18866 (call-interactively (key-binding (vector last-input-event))))))
18868 (defun org-cdlatex-math-modify (&optional arg)
18869 "Execute `cdlatex-math-modify' in LaTeX fragments.
18870 Revert to the normal definition outside of these fragments."
18871 (interactive "P")
18872 (if (org-inside-LaTeX-fragment-p)
18873 (call-interactively 'cdlatex-math-modify)
18874 (let (org-cdlatex-mode)
18875 (call-interactively (key-binding (vector last-input-event))))))
18877 (defun org-cdlatex-environment-indent (&optional environment item)
18878 "Execute `cdlatex-environment' and indent the inserted environment.
18880 ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
18882 The inserted environment is indented to current indentation
18883 unless point is at the beginning of the line, in which the
18884 environment remains unintended."
18885 (interactive)
18886 ;; cdlatex-environment always return nil. Therefore, capture output
18887 ;; first and determine if an environment was selected.
18888 (let* ((beg (point-marker))
18889 (end (copy-marker (point) t))
18890 (inserted (progn
18891 (ignore-errors (cdlatex-environment environment item))
18892 (< beg end)))
18893 ;; Figure out how many lines to move forward after the
18894 ;; environment has been inserted.
18895 (lines (when inserted
18896 (save-excursion
18897 (- (loop while (< beg (point))
18898 with x = 0
18899 do (forward-line -1)
18900 (incf x)
18901 finally return x)
18902 (if (progn (goto-char beg)
18903 (and (progn (skip-chars-forward " \t") (eolp))
18904 (progn (skip-chars-backward " \t") (bolp))))
18905 1 0)))))
18906 (env (org-trim (delete-and-extract-region beg end))))
18907 (when inserted
18908 ;; Get indentation of next line unless at column 0.
18909 (let ((ind (if (bolp) 0
18910 (save-excursion
18911 (org-return-indent)
18912 (prog1 (org-get-indentation)
18913 (when (progn (skip-chars-forward " \t") (eolp))
18914 (delete-region beg (point)))))))
18915 (bol (progn (skip-chars-backward " \t") (bolp))))
18916 ;; Insert a newline before environment unless at column zero
18917 ;; to "escape" the current line. Insert a newline if
18918 ;; something is one the same line as \end{ENVIRONMENT}.
18919 (insert
18920 (concat (unless bol "\n") env
18921 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
18922 (unless (zerop ind)
18923 (save-excursion
18924 (goto-char beg)
18925 (while (< (point) end)
18926 (unless (eolp) (org-indent-line-to ind))
18927 (forward-line))))
18928 (goto-char beg)
18929 (forward-line lines)
18930 (org-indent-line-to ind)))
18931 (set-marker beg nil)
18932 (set-marker end nil)))
18935 ;;;; LaTeX fragments
18937 (defun org-inside-LaTeX-fragment-p ()
18938 "Test if point is inside a LaTeX fragment.
18939 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18940 sequence appearing also before point.
18941 Even though the matchers for math are configurable, this function assumes
18942 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18943 delimiters are skipped when they have been removed by customization.
18944 The return value is nil, or a cons cell with the delimiter and the
18945 position of this delimiter.
18947 This function does a reasonably good job, but can locally be fooled by
18948 for example currency specifications. For example it will assume being in
18949 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18950 fragments that are properly closed, but during editing, we have to live
18951 with the uncertainty caused by missing closing delimiters. This function
18952 looks only before point, not after."
18953 (catch 'exit
18954 (let ((pos (point))
18955 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18956 (lim (progn
18957 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18958 (point)))
18959 dd-on str (start 0) m re)
18960 (goto-char pos)
18961 (when dodollar
18962 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18963 re (nth 1 (assoc "$" org-latex-regexps)))
18964 (while (string-match re str start)
18965 (cond
18966 ((= (match-end 0) (length str))
18967 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18968 ((= (match-end 0) (- (length str) 5))
18969 (throw 'exit nil))
18970 (t (setq start (match-end 0))))))
18971 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18972 (goto-char pos)
18973 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18974 (and (match-beginning 2) (throw 'exit nil))
18975 ;; count $$
18976 (while (re-search-backward "\\$\\$" lim t)
18977 (setq dd-on (not dd-on)))
18978 (goto-char pos)
18979 (if dd-on (cons "$$" m))))))
18981 (defun org-inside-latex-macro-p ()
18982 "Is point inside a LaTeX macro or its arguments?"
18983 (save-match-data
18984 (org-in-regexp
18985 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18987 (defvar org-latex-fragment-image-overlays nil
18988 "List of overlays carrying the images of latex fragments.")
18989 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18991 (defun org-remove-latex-fragment-image-overlays (&optional beg end)
18992 "Remove all overlays with LaTeX fragment images in current buffer.
18993 When optional arguments BEG and END are non-nil, remove all
18994 overlays between them instead. Return t when some overlays were
18995 removed, nil otherwise."
18996 (let (removedp)
18997 (setq org-latex-fragment-image-overlays
18998 (let ((beg (or beg (point-min)))
18999 (end (or end (point-max))))
19000 (org-remove-if
19001 (lambda (o)
19002 (cond ((not (overlay-buffer o)) (delete-overlay o) t)
19003 ((and (>= (overlay-start o) beg)
19004 (<= (overlay-end o) end))
19005 (delete-overlay o)
19006 (unless removedp (setq removedp t)))
19007 (t nil)))
19008 org-latex-fragment-image-overlays)))
19009 removedp))
19011 (define-obsolete-function-alias
19012 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
19013 (defun org-toggle-latex-fragment (&optional arg)
19014 "Preview the LaTeX fragment at point, or all locally or globally.
19016 If the cursor is on a LaTeX fragment, create the image and overlay
19017 it over the source code, if there is none. Remove it otherwise.
19018 If there is no fragment at point, display all fragments in the
19019 current section.
19021 With prefix ARG, preview or clear image for all fragments in the
19022 current subtree or in the whole buffer when used before the first
19023 headline. With a double prefix ARG \\[universal-argument] \
19024 \\[universal-argument] preview or clear images
19025 for all fragments in the buffer."
19026 (interactive "P")
19027 (unless (buffer-file-name (buffer-base-buffer))
19028 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
19029 (when (display-graphic-p)
19030 (catch 'exit
19031 (save-excursion
19032 (let ((window-start (window-start)) msg)
19033 (save-restriction
19034 (cond
19035 ((or (equal arg '(16))
19036 (and (equal arg '(4))
19037 (org-with-limited-levels (org-before-first-heading-p))))
19038 (if (org-remove-latex-fragment-image-overlays)
19039 (progn (message "LaTeX fragments images removed from buffer")
19040 (throw 'exit nil))
19041 (setq msg "Creating images for buffer...")))
19042 ((equal arg '(4))
19043 (org-with-limited-levels (org-back-to-heading t))
19044 (let ((beg (point))
19045 (end (progn (org-end-of-subtree t) (point))))
19046 (if (org-remove-latex-fragment-image-overlays beg end)
19047 (progn
19048 (message "LaTeX fragment images removed from subtree")
19049 (throw 'exit nil))
19050 (setq msg "Creating images for subtree...")
19051 (narrow-to-region beg end))))
19052 ((let ((datum (org-element-context)))
19053 (when (memq (org-element-type datum)
19054 '(latex-environment latex-fragment))
19055 (let* ((beg (org-element-property :begin datum))
19056 (end (org-element-property :end datum)))
19057 (if (org-remove-latex-fragment-image-overlays beg end)
19058 (progn (message "LaTeX fragment image removed")
19059 (throw 'exit nil))
19060 (narrow-to-region beg end)
19061 (setq msg "Creating image..."))))))
19063 (org-with-limited-levels
19064 (let ((beg (if (org-at-heading-p) (line-beginning-position)
19065 (outline-previous-heading)
19066 (point)))
19067 (end (progn (outline-next-heading) (point))))
19068 (if (org-remove-latex-fragment-image-overlays beg end)
19069 (progn
19070 (message "LaTeX fragment images removed from section")
19071 (throw 'exit nil))
19072 (setq msg "Creating images for section...")
19073 (narrow-to-region beg end))))))
19074 (let ((file (buffer-file-name (buffer-base-buffer))))
19075 (org-format-latex
19076 (concat org-latex-preview-ltxpng-directory
19077 (file-name-sans-extension (file-name-nondirectory file)))
19078 ;; Emacs cannot overlay images from remote hosts.
19079 ;; Create it in `temporary-file-directory' instead.
19080 (if (file-remote-p file) temporary-file-directory
19081 default-directory)
19082 'overlays msg 'forbuffer
19083 org-latex-create-formula-image-program)))
19084 ;; Work around a bug that doesn't restore window's start
19085 ;; when widening back the buffer.
19086 (set-window-start nil window-start)
19087 (message (concat msg "done")))))))
19089 (defun org-format-latex
19090 (prefix &optional dir overlays msg forbuffer processing-type)
19091 "Replace LaTeX fragments with links to an image, and produce images.
19093 When optional argument OVERLAYS is non-nil, display the image on
19094 top of the fragment instead of replacing it.
19096 PROCESSING-TYPE is the conversion method to use, as a symbol.
19098 Some of the options can be changed using the variable
19099 `org-format-latex-options', which see."
19100 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
19101 (unless (eq processing-type 'verbatim)
19102 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
19103 (cnt 0)
19104 checkdir-flag)
19105 (goto-char (point-min))
19106 ;; Optimize overlay creation: (info "(elisp) Managing Overlays").
19107 (when (and overlays (memq processing-type '(dvipng imagemagick)))
19108 (overlay-recenter (point-max)))
19109 (while (re-search-forward math-regexp nil t)
19110 (unless (and overlays
19111 (eq (get-char-property (point) 'org-overlay-type)
19112 'org-latex-overlay))
19113 (let* ((context (org-element-context))
19114 (type (org-element-type context)))
19115 (when (memq type '(latex-environment latex-fragment))
19116 (let ((block-type (eq type 'latex-environment))
19117 (value (org-element-property :value context))
19118 (beg (org-element-property :begin context))
19119 (end (save-excursion
19120 (goto-char (org-element-property :end context))
19121 (skip-chars-backward " \r\t\n")
19122 (point))))
19123 (case processing-type
19124 (mathjax
19125 ;; Prepare for MathJax processing.
19126 (if (eq (char-after beg) ?$)
19127 (save-excursion
19128 (delete-region beg end)
19129 (insert "\\(" (substring value 1 -1) "\\)"))
19130 (goto-char end)))
19131 ((dvipng imagemagick)
19132 ;; Process to an image.
19133 (incf cnt)
19134 (goto-char beg)
19135 (let* ((face (face-at-point))
19136 ;; Get the colors from the face at point.
19138 (let ((color (plist-get org-format-latex-options
19139 :foreground)))
19140 (if (and forbuffer (eq color 'auto))
19141 (face-attribute face :foreground nil 'default)
19142 color)))
19144 (let ((color (plist-get org-format-latex-options
19145 :background)))
19146 (if (and forbuffer (eq color 'auto))
19147 (face-attribute face :background nil 'default)
19148 color)))
19149 (hash (sha1 (prin1-to-string
19150 (list org-format-latex-header
19151 org-latex-default-packages-alist
19152 org-latex-packages-alist
19153 org-format-latex-options
19154 forbuffer value fg bg))))
19155 (absprefix (expand-file-name prefix dir))
19156 (linkfile (format "%s_%s.png" prefix hash))
19157 (movefile (format "%s_%s.png" absprefix hash))
19158 (sep (and block-type "\n\n"))
19159 (link (concat sep "[[file:" linkfile "]]" sep))
19160 (options
19161 (org-combine-plists
19162 org-format-latex-options
19163 `(:foreground ,fg :background ,bg))))
19164 (when msg (message msg cnt))
19165 (unless checkdir-flag ; Ensure the directory exists.
19166 (setq checkdir-flag t)
19167 (let ((todir (file-name-directory absprefix)))
19168 (unless (file-directory-p todir)
19169 (make-directory todir t))))
19170 (unless (file-exists-p movefile)
19171 (org-create-formula-image
19172 value movefile options forbuffer processing-type))
19173 (if overlays
19174 (progn
19175 (dolist (o (overlays-in beg end))
19176 (when (eq (overlay-get o 'org-overlay-type)
19177 'org-latex-overlay)
19178 (delete-overlay o)))
19179 (let ((ov (make-overlay beg end)))
19180 (overlay-put ov
19181 'org-overlay-type
19182 'org-latex-overlay)
19183 (overlay-put ov 'evaporate t)
19184 (if (featurep 'xemacs)
19185 (progn
19186 (overlay-put ov 'invisible t)
19187 (overlay-put
19188 ov 'end-glyph
19189 (make-glyph
19190 (vector 'png :file movefile))))
19191 (overlay-put
19192 ov 'display
19193 (list 'image
19194 :type 'png
19195 :file movefile
19196 :ascent 'center)))
19197 (push ov org-latex-fragment-image-overlays))
19198 (goto-char end))
19199 (delete-region beg end)
19200 (insert
19201 (org-add-props link
19202 (list 'org-latex-src
19203 (replace-regexp-in-string "\"" "" value)
19204 'org-latex-src-embed-type
19205 (if block-type 'paragraph 'character)))))))
19206 (mathml
19207 ;; Process to MathML.
19208 (unless (org-format-latex-mathml-available-p)
19209 (user-error "LaTeX to MathML converter not configured"))
19210 (incf cnt)
19211 (when msg (message msg cnt))
19212 (goto-char beg)
19213 (delete-region beg end)
19214 (insert (org-format-latex-as-mathml
19215 value block-type prefix dir)))
19216 (otherwise
19217 (error "Unknown conversion type %s for LaTeX fragments"
19218 processing-type)))))))))))
19220 (defun org-create-math-formula (latex-frag &optional mathml-file)
19221 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
19222 Use `org-latex-to-mathml-convert-command'. If the conversion is
19223 sucessful, return the portion between \"<math...> </math>\"
19224 elements otherwise return nil. When MATHML-FILE is specified,
19225 write the results in to that file. When invoked as an
19226 interactive command, prompt for LATEX-FRAG, with initial value
19227 set to the current active region and echo the results for user
19228 inspection."
19229 (interactive (list (let ((frag (when (org-region-active-p)
19230 (buffer-substring-no-properties
19231 (region-beginning) (region-end)))))
19232 (read-string "LaTeX Fragment: " frag nil frag))))
19233 (unless latex-frag (user-error "Invalid LaTeX fragment"))
19234 (let* ((tmp-in-file (file-relative-name
19235 (make-temp-name (expand-file-name "ltxmathml-in"))))
19236 (ignore (write-region latex-frag nil tmp-in-file))
19237 (tmp-out-file (file-relative-name
19238 (make-temp-name (expand-file-name "ltxmathml-out"))))
19239 (cmd (format-spec
19240 org-latex-to-mathml-convert-command
19241 `((?j . ,(and org-latex-to-mathml-jar-file
19242 (shell-quote-argument
19243 (expand-file-name
19244 org-latex-to-mathml-jar-file))))
19245 (?I . ,(shell-quote-argument tmp-in-file))
19246 (?i . ,latex-frag)
19247 (?o . ,(shell-quote-argument tmp-out-file)))))
19248 mathml shell-command-output)
19249 (when (org-called-interactively-p 'any)
19250 (unless (org-format-latex-mathml-available-p)
19251 (user-error "LaTeX to MathML converter not configured")))
19252 (message "Running %s" cmd)
19253 (setq shell-command-output (shell-command-to-string cmd))
19254 (setq mathml
19255 (when (file-readable-p tmp-out-file)
19256 (with-current-buffer (find-file-noselect tmp-out-file t)
19257 (goto-char (point-min))
19258 (when (re-search-forward
19259 (concat
19260 (regexp-quote
19261 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\"")
19262 "[^>]*?>"
19263 "\\(.\\|\n\\)*"
19264 "</math>")
19265 nil t)
19266 (prog1 (match-string 0) (kill-buffer))))))
19267 (cond
19268 (mathml
19269 (setq mathml
19270 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
19271 (when mathml-file
19272 (write-region mathml nil mathml-file))
19273 (when (org-called-interactively-p 'any)
19274 (message mathml)))
19275 ((message "LaTeX to MathML conversion failed")
19276 (message shell-command-output)))
19277 (delete-file tmp-in-file)
19278 (when (file-exists-p tmp-out-file)
19279 (delete-file tmp-out-file))
19280 mathml))
19282 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
19283 prefix &optional dir)
19284 "Use `org-create-math-formula' but check local cache first."
19285 (let* ((absprefix (expand-file-name prefix dir))
19286 (print-length nil) (print-level nil)
19287 (formula-id (concat
19288 "formula-"
19289 (sha1
19290 (prin1-to-string
19291 (list latex-frag
19292 org-latex-to-mathml-convert-command)))))
19293 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
19294 (formula-cache-dir (file-name-directory formula-cache)))
19296 (unless (file-directory-p formula-cache-dir)
19297 (make-directory formula-cache-dir t))
19299 (unless (file-exists-p formula-cache)
19300 (org-create-math-formula latex-frag formula-cache))
19302 (if (file-exists-p formula-cache)
19303 ;; Successful conversion. Return the link to MathML file.
19304 (org-add-props
19305 (format "[[file:%s]]" (file-relative-name formula-cache dir))
19306 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
19307 'org-latex-src-embed-type (if latex-frag-type
19308 'paragraph 'character)))
19309 ;; Failed conversion. Return the LaTeX fragment verbatim
19310 latex-frag)))
19312 (defun org-create-formula-image (string tofile options buffer &optional type)
19313 "Create an image from LaTeX source using dvipng or convert.
19314 This function calls either `org-create-formula-image-with-dvipng'
19315 or `org-create-formula-image-with-imagemagick' depending on the
19316 value of `org-latex-create-formula-image-program' or on the value
19317 of the optional TYPE variable.
19319 Note: ultimately these two function should be combined as they
19320 share a good deal of logic."
19321 (org-check-external-command
19322 "latex" "needed to convert LaTeX fragments to images")
19323 (funcall
19324 (case (or type org-latex-create-formula-image-program)
19325 (dvipng
19326 (org-check-external-command
19327 "dvipng" "needed to convert LaTeX fragments to images")
19328 #'org-create-formula-image-with-dvipng)
19329 (imagemagick
19330 (org-check-external-command
19331 "convert" "you need to install imagemagick")
19332 #'org-create-formula-image-with-imagemagick)
19333 (t (error
19334 "Invalid value of `org-latex-create-formula-image-program'")))
19335 string tofile options buffer))
19337 (declare-function org-export-get-backend "ox" (name))
19338 (declare-function org-export--get-global-options "ox" (&optional backend))
19339 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19340 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19341 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19342 (defun org-create-formula--latex-header ()
19343 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19344 (let ((info (org-combine-plists (org-export--get-global-options
19345 (org-export-get-backend 'latex))
19346 (org-export--get-inbuffer-options
19347 (org-export-get-backend 'latex)))))
19348 (org-latex-guess-babel-language
19349 (org-latex-guess-inputenc
19350 (org-splice-latex-header
19351 org-format-latex-header
19352 org-latex-default-packages-alist
19353 org-latex-packages-alist t
19354 (plist-get info :latex-header)))
19355 info)))
19357 (defun org--get-display-dpi ()
19358 "Get the DPI of the display.
19360 Assumes that the display has the same pixel width in the
19361 horizontal and vertical directions."
19362 (if (display-graphic-p)
19363 (round (/ (display-pixel-height)
19364 (/ (display-mm-height) 25.4)))
19365 (error "Attempt to calculate the dpi of a non-graphic display")))
19367 ;; This function borrows from Ganesh Swami's latex2png.el
19368 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19369 "This calls dvipng."
19370 (require 'ox-latex)
19371 (let* ((tmpdir (if (featurep 'xemacs)
19372 (temp-directory)
19373 temporary-file-directory))
19374 (texfilebase (make-temp-name
19375 (expand-file-name "orgtex" tmpdir)))
19376 (texfile (concat texfilebase ".tex"))
19377 (dvifile (concat texfilebase ".dvi"))
19378 (pngfile (concat texfilebase ".png"))
19379 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19380 ;; This assumes that the display has the same pixel width in
19381 ;; the horizontal and vertical directions
19382 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19383 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19384 "Black"))
19385 (bg (or (plist-get options (if buffer :background :html-background))
19386 "Transparent")))
19387 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19388 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19389 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19390 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19391 (let ((latex-header (org-create-formula--latex-header)))
19392 (with-temp-file texfile
19393 (insert latex-header)
19394 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19395 (let ((dir default-directory))
19396 (ignore-errors
19397 (cd tmpdir)
19398 (call-process "latex" nil nil nil texfile))
19399 (cd dir))
19400 (if (not (file-exists-p dvifile))
19401 (progn (message "Failed to create dvi file from %s" texfile) nil)
19402 (ignore-errors
19403 (if (featurep 'xemacs)
19404 (call-process "dvipng" nil nil nil
19405 "-fg" fg "-bg" bg
19406 "-T" "tight"
19407 "-o" pngfile
19408 dvifile)
19409 (call-process "dvipng" nil nil nil
19410 "-fg" fg "-bg" bg
19411 "-D" dpi
19412 ;;"-x" scale "-y" scale
19413 "-T" "tight"
19414 "-o" pngfile
19415 dvifile)))
19416 (if (not (file-exists-p pngfile))
19417 (if org-format-latex-signal-error
19418 (error "Failed to create png file from %s" texfile)
19419 (message "Failed to create png file from %s" texfile)
19420 nil)
19421 ;; Use the requested file name and clean up
19422 (copy-file pngfile tofile 'replace)
19423 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19424 (if (file-exists-p (concat texfilebase e))
19425 (delete-file (concat texfilebase e))))
19426 pngfile))))
19428 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19429 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19430 "This calls convert, which is included into imagemagick."
19431 (require 'ox-latex)
19432 (let* ((tmpdir (if (featurep 'xemacs)
19433 (temp-directory)
19434 temporary-file-directory))
19435 (texfilebase (make-temp-name
19436 (expand-file-name "orgtex" tmpdir)))
19437 (texfile (concat texfilebase ".tex"))
19438 (pdffile (concat texfilebase ".pdf"))
19439 (pngfile (concat texfilebase ".png"))
19440 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19441 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19442 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19443 "black"))
19444 (bg (or (plist-get options (if buffer :background :html-background))
19445 "white")))
19446 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19447 (setq fg (org-latex-color-format fg)))
19448 (if (eq bg 'default) (setq bg (org-latex-color :background))
19449 (setq bg (org-latex-color-format
19450 (if (string= bg "Transparent") "white" bg))))
19451 (let ((latex-header (org-create-formula--latex-header)))
19452 (with-temp-file texfile
19453 (insert latex-header)
19454 (insert "\n\\begin{document}\n"
19455 "\\definecolor{fg}{rgb}{" fg "}\n"
19456 "\\definecolor{bg}{rgb}{" bg "}\n"
19457 "\n\\pagecolor{bg}\n"
19458 "\n{\\color{fg}\n"
19459 string
19460 "\n}\n"
19461 "\n\\end{document}\n")))
19462 (org-latex-compile texfile t)
19463 (if (not (file-exists-p pdffile))
19464 (progn (message "Failed to create pdf file from %s" texfile) nil)
19465 (ignore-errors
19466 (if (featurep 'xemacs)
19467 (call-process "convert" nil nil nil
19468 "-density" "96"
19469 "-trim"
19470 "-antialias"
19471 pdffile
19472 "-quality" "100"
19473 ;; "-sharpen" "0x1.0"
19474 pngfile)
19475 (call-process "convert" nil nil nil
19476 "-density" dpi
19477 "-trim"
19478 "-antialias"
19479 pdffile
19480 "-quality" "100"
19481 ;; "-sharpen" "0x1.0"
19482 pngfile)))
19483 (if (not (file-exists-p pngfile))
19484 (if org-format-latex-signal-error
19485 (error "Failed to create png file from %s" texfile)
19486 (message "Failed to create png file from %s" texfile)
19487 nil)
19488 ;; Use the requested file name and clean up
19489 (copy-file pngfile tofile 'replace)
19490 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19491 (if (file-exists-p (concat texfilebase e))
19492 (delete-file (concat texfilebase e))))
19493 pngfile))))
19495 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19496 "Fill a LaTeX header template TPL.
19497 In the template, the following place holders will be recognized:
19499 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19500 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19501 [PACKAGES] \\usepackage statements for PKG
19502 [NO-PACKAGES] do not include PKG
19503 [EXTRA] the string EXTRA
19504 [NO-EXTRA] do not include EXTRA
19506 For backward compatibility, if both the positive and the negative place
19507 holder is missing, the positive one (without the \"NO-\") will be
19508 assumed to be present at the end of the template.
19509 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19510 EXTRA is a string.
19511 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19512 (let (rpl (end ""))
19513 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19514 (setq rpl (if (or (match-end 1) (not def-pkg))
19515 "" (org-latex-packages-to-string def-pkg snippets-p t))
19516 tpl (replace-match rpl t t tpl))
19517 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19519 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19520 (setq rpl (if (or (match-end 1) (not pkg))
19521 "" (org-latex-packages-to-string pkg snippets-p t))
19522 tpl (replace-match rpl t t tpl))
19523 (if pkg (setq end
19524 (concat end "\n"
19525 (org-latex-packages-to-string pkg snippets-p)))))
19527 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19528 (setq rpl (if (or (match-end 1) (not extra))
19529 "" (concat extra "\n"))
19530 tpl (replace-match rpl t t tpl))
19531 (if (and extra (string-match "\\S-" extra))
19532 (setq end (concat end "\n" extra))))
19534 (if (string-match "\\S-" end)
19535 (concat tpl "\n" end)
19536 tpl)))
19538 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19539 "Turn an alist of packages into a string with the \\usepackage macros."
19540 (setq pkg (mapconcat (lambda(p)
19541 (cond
19542 ((stringp p) p)
19543 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19544 (format "%% Package %s omitted" (cadr p)))
19545 ((equal "" (car p))
19546 (format "\\usepackage{%s}" (cadr p)))
19548 (format "\\usepackage[%s]{%s}"
19549 (car p) (cadr p)))))
19551 "\n"))
19552 (if newline (concat pkg "\n") pkg))
19554 (defun org-dvipng-color (attr)
19555 "Return a RGB color specification for dvipng."
19556 (apply 'format "rgb %s %s %s"
19557 (mapcar 'org-normalize-color
19558 (if (featurep 'xemacs)
19559 (color-rgb-components
19560 (face-property 'default
19561 (cond ((eq attr :foreground) 'foreground)
19562 ((eq attr :background) 'background))))
19563 (color-values (face-attribute 'default attr nil))))))
19565 (defun org-dvipng-color-format (color-name)
19566 "Convert COLOR-NAME to a RGB color value for dvipng."
19567 (apply 'format "rgb %s %s %s"
19568 (mapcar 'org-normalize-color
19569 (color-values color-name))))
19571 (defun org-latex-color (attr)
19572 "Return a RGB color for the LaTeX color package."
19573 (apply 'format "%s,%s,%s"
19574 (mapcar 'org-normalize-color
19575 (if (featurep 'xemacs)
19576 (color-rgb-components
19577 (face-property 'default
19578 (cond ((eq attr :foreground) 'foreground)
19579 ((eq attr :background) 'background))))
19580 (color-values (face-attribute 'default attr nil))))))
19582 (defun org-latex-color-format (color-name)
19583 "Convert COLOR-NAME to a RGB color value."
19584 (apply 'format "%s,%s,%s"
19585 (mapcar 'org-normalize-color
19586 (color-values color-name))))
19588 (defun org-normalize-color (value)
19589 "Return string to be used as color value for an RGB component."
19590 (format "%g" (/ value 65535.0)))
19594 ;; Image display
19596 (defvar org-inline-image-overlays nil)
19597 (make-variable-buffer-local 'org-inline-image-overlays)
19599 (defun org-toggle-inline-images (&optional include-linked)
19600 "Toggle the display of inline images.
19601 INCLUDE-LINKED is passed to `org-display-inline-images'."
19602 (interactive "P")
19603 (if org-inline-image-overlays
19604 (progn
19605 (org-remove-inline-images)
19606 (when (org-called-interactively-p 'interactive)
19607 (message "Inline image display turned off")))
19608 (org-display-inline-images include-linked)
19609 (when (org-called-interactively-p 'interactive)
19610 (message (if org-inline-image-overlays
19611 (format "%d images displayed inline"
19612 (length org-inline-image-overlays))
19613 "No images to display inline")))))
19615 (defun org-redisplay-inline-images ()
19616 "Refresh the display of inline images."
19617 (interactive)
19618 (if (not org-inline-image-overlays)
19619 (org-toggle-inline-images)
19620 (org-toggle-inline-images)
19621 (org-toggle-inline-images)))
19623 (defun org-display-inline-images (&optional include-linked refresh beg end)
19624 "Display inline images.
19626 An inline image is a link which follows either of these
19627 conventions:
19629 1. Its path is a file with an extension matching return value
19630 from `image-file-name-regexp' and it has no contents.
19632 2. Its description consists in a single link of the previous
19633 type.
19635 When optional argument INCLUDE-LINKED is non-nil, also links with
19636 a text description part will be inlined. This can be nice for
19637 a quick look at those images, but it does not reflect what
19638 exported files will look like.
19640 When optional argument REFRESH is non-nil, refresh existing
19641 images between BEG and END. This will create new image displays
19642 only if necessary. BEG and END default to the buffer
19643 boundaries."
19644 (interactive "P")
19645 (when (display-graphic-p)
19646 (unless refresh
19647 (org-remove-inline-images)
19648 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19649 (org-with-wide-buffer
19650 (goto-char (or beg (point-min)))
19651 (let ((case-fold-search t)
19652 (file-extension-re (org-image-file-name-regexp)))
19653 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19654 (let ((link (save-match-data (org-element-context))))
19655 ;; Check if we're at an inline image.
19656 (when (and (equal (org-element-property :type link) "file")
19657 (or include-linked
19658 (not (org-element-property :contents-begin link)))
19659 (let ((parent (org-element-property :parent link)))
19660 (or (not (eq (org-element-type parent) 'link))
19661 (not (cdr (org-element-contents parent)))))
19662 (org-string-match-p file-extension-re
19663 (org-element-property :path link)))
19664 (let ((file (expand-file-name
19665 (org-link-unescape
19666 (org-element-property :path link)))))
19667 (when (file-exists-p file)
19668 (let ((width
19669 ;; Apply `org-image-actual-width' specifications.
19670 (cond
19671 ((not (image-type-available-p 'imagemagick)) nil)
19672 ((eq org-image-actual-width t) nil)
19673 ((listp org-image-actual-width)
19675 ;; First try to find a width among
19676 ;; attributes associated to the paragraph
19677 ;; containing link.
19678 (let ((paragraph
19679 (let ((e link))
19680 (while (and (setq e (org-element-property
19681 :parent e))
19682 (not (eq (org-element-type e)
19683 'paragraph))))
19684 e)))
19685 (when paragraph
19686 (save-excursion
19687 (goto-char (org-element-property :begin paragraph))
19688 (when
19689 (re-search-forward
19690 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19691 (org-element-property
19692 :post-affiliated paragraph)
19694 (string-to-number (match-string 1))))))
19695 ;; Otherwise, fall-back to provided number.
19696 (car org-image-actual-width)))
19697 ((numberp org-image-actual-width)
19698 org-image-actual-width)))
19699 (old (get-char-property-and-overlay
19700 (org-element-property :begin link)
19701 'org-image-overlay)))
19702 (if (and (car-safe old) refresh)
19703 (image-refresh (overlay-get (cdr old) 'display))
19704 (let ((image (create-image file
19705 (and width 'imagemagick)
19707 :width width)))
19708 (when image
19709 (let* ((link
19710 ;; If inline image is the description
19711 ;; of another link, be sure to
19712 ;; consider the latter as the one to
19713 ;; apply the overlay on.
19714 (let ((parent
19715 (org-element-property :parent link)))
19716 (if (eq (org-element-type parent) 'link)
19717 parent
19718 link)))
19719 (ov (make-overlay
19720 (org-element-property :begin link)
19721 (progn
19722 (goto-char
19723 (org-element-property :end link))
19724 (skip-chars-backward " \t")
19725 (point)))))
19726 (overlay-put ov 'display image)
19727 (overlay-put ov 'face 'default)
19728 (overlay-put ov 'org-image-overlay t)
19729 (overlay-put
19730 ov 'modification-hooks
19731 (list 'org-display-inline-remove-overlay))
19732 (push ov org-inline-image-overlays)))))))))))))))
19734 (define-obsolete-function-alias
19735 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19737 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19738 "Remove inline-display overlay if a corresponding region is modified."
19739 (let ((inhibit-modification-hooks t))
19740 (when (and ov after)
19741 (delete ov org-inline-image-overlays)
19742 (delete-overlay ov))))
19744 (defun org-remove-inline-images ()
19745 "Remove inline display of images."
19746 (interactive)
19747 (mapc 'delete-overlay org-inline-image-overlays)
19748 (setq org-inline-image-overlays nil))
19750 ;;;; Key bindings
19752 ;; Outline functions from `outline-mode-prefix-map'
19753 ;; that can be remapped in Org:
19754 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19755 (define-key org-mode-map [remap outline-show-subtree] 'org-show-subtree)
19756 (define-key org-mode-map [remap outline-forward-same-level]
19757 'org-forward-heading-same-level)
19758 (define-key org-mode-map [remap outline-backward-same-level]
19759 'org-backward-heading-same-level)
19760 (define-key org-mode-map [remap outline-show-branches]
19761 'org-kill-note-or-show-branches)
19762 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19763 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19764 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19765 (define-key org-mode-map [remap outline-next-visible-heading]
19766 'org-next-visible-heading)
19767 (define-key org-mode-map [remap outline-previous-visible-heading]
19768 'org-previous-visible-heading)
19770 ;; Outline functions from `outline-mode-prefix-map' that can not
19771 ;; be remapped in Org:
19773 ;; - the column "key binding" shows whether the Outline function is still
19774 ;; available in Org mode on the same key that it has been bound to in
19775 ;; Outline mode:
19776 ;; - "overridden": key used for a different functionality in Org mode
19777 ;; - else: key still bound to the same Outline function in Org mode
19779 ;; | Outline function | key binding | Org replacement |
19780 ;; |------------------------------------+-------------+--------------------------|
19781 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19782 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19783 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19784 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19785 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19786 ;; | `show-entry' | overridden | no replacement |
19787 ;; | `show-children' | `C-c C-i' | visibility cycling |
19788 ;; | `show-branches' | `C-c C-k' | still same function |
19789 ;; | `show-subtree' | overridden | visibility cycling |
19790 ;; | `show-all' | overridden | no replacement |
19791 ;; | `hide-subtree' | overridden | visibility cycling |
19792 ;; | `hide-body' | overridden | no replacement |
19793 ;; | `hide-entry' | overridden | visibility cycling |
19794 ;; | `hide-leaves' | overridden | no replacement |
19795 ;; | `hide-sublevels' | overridden | no replacement |
19796 ;; | `hide-other' | overridden | no replacement |
19798 ;; Make `C-c C-x' a prefix key
19799 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19801 ;; TAB key with modifiers
19802 (org-defkey org-mode-map "\C-i" 'org-cycle)
19803 (org-defkey org-mode-map [(tab)] 'org-cycle)
19804 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19805 (org-defkey org-mode-map "\M-\t" #'pcomplete)
19806 ;; The following line is necessary under Suse GNU/Linux
19807 (unless (featurep 'xemacs)
19808 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19809 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19810 (define-key org-mode-map [backtab] 'org-shifttab)
19812 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19813 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19814 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19816 ;; Cursor keys with modifiers
19817 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19818 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19819 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19820 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19822 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19823 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19824 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19825 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19826 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19827 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19829 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19830 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19831 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19832 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19834 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19835 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19836 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19837 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19839 ;; Babel keys
19840 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19841 (mapc (lambda (pair)
19842 (define-key org-babel-map (car pair) (cdr pair)))
19843 org-babel-key-bindings)
19845 ;;; Extra keys for tty access.
19846 ;; We only set them when really needed because otherwise the
19847 ;; menus don't show the simple keys
19849 (when (or org-use-extra-keys
19850 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19851 (not window-system))
19852 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19853 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19854 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19855 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19856 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19857 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19858 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19859 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19860 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19861 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19862 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19863 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19864 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19865 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19866 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19867 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19868 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19869 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19870 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19871 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19872 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19873 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19874 (org-defkey org-mode-map [?\e (tab)] #'pcomplete)
19875 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19876 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19877 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19878 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19879 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19881 ;; All the other keys
19883 (org-defkey org-mode-map "\C-c\C-a" 'outline-show-all) ; in case allout messed up.
19884 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19885 (if (boundp 'narrow-map)
19886 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19887 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19888 (if (boundp 'narrow-map)
19889 (org-defkey narrow-map "b" 'org-narrow-to-block)
19890 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19891 (if (boundp 'narrow-map)
19892 (org-defkey narrow-map "e" 'org-narrow-to-element)
19893 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19894 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19895 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19896 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19897 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19898 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19899 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19900 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19901 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19902 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19903 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19904 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-archive-subtree)
19905 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19906 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19907 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19908 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19909 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19910 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19911 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19912 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19913 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19914 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19915 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19916 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19917 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19918 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19919 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19920 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19921 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19922 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19923 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19924 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19925 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19926 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19927 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19928 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19929 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19930 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19931 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19932 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19933 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19934 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19935 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19936 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19937 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19938 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19939 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19940 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19941 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19942 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19943 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19944 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19945 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19946 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19947 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19948 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19949 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19950 (org-defkey org-mode-map "\C-c^" 'org-sort)
19951 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19952 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19953 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19954 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19955 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19956 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19957 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19958 (org-defkey org-mode-map "\M-^" 'org-delete-indentation)
19959 (org-defkey org-mode-map "\C-m" 'org-return)
19960 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19961 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19962 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19963 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19964 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19965 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19966 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19967 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19968 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19969 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19970 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19971 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19972 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19973 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19974 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19975 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19976 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19977 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19978 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19979 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19980 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19981 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19982 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19983 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19984 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19986 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19987 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19988 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19990 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19991 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19992 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19993 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19994 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19995 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19996 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19997 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19998 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19999 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
20000 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
20001 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
20002 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
20003 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
20004 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
20005 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
20006 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
20007 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
20008 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
20009 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
20010 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
20011 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
20013 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
20014 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
20015 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
20016 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
20017 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
20019 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
20021 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
20023 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
20024 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
20026 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
20029 (when (featurep 'xemacs)
20030 (org-defkey org-mode-map 'button3 'popup-mode-menu))
20033 (defconst org-speed-commands-default
20035 ("Outline Navigation")
20036 ("n" . (org-speed-move-safe 'org-next-visible-heading))
20037 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
20038 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
20039 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
20040 ("F" . org-next-block)
20041 ("B" . org-previous-block)
20042 ("u" . (org-speed-move-safe 'outline-up-heading))
20043 ("j" . org-goto)
20044 ("g" . (org-refile t))
20045 ("Outline Visibility")
20046 ("c" . org-cycle)
20047 ("C" . org-shifttab)
20048 (" " . org-display-outline-path)
20049 ("s" . org-narrow-to-subtree)
20050 ("=" . org-columns)
20051 ("Outline Structure Editing")
20052 ("U" . org-metaup)
20053 ("D" . org-metadown)
20054 ("r" . org-metaright)
20055 ("l" . org-metaleft)
20056 ("R" . org-shiftmetaright)
20057 ("L" . org-shiftmetaleft)
20058 ("i" . (progn (forward-char 1) (call-interactively
20059 'org-insert-heading-respect-content)))
20060 ("^" . org-sort)
20061 ("w" . org-refile)
20062 ("a" . org-archive-subtree-default-with-confirmation)
20063 ("@" . org-mark-subtree)
20064 ("#" . org-toggle-comment)
20065 ("Clock Commands")
20066 ("I" . org-clock-in)
20067 ("O" . org-clock-out)
20068 ("Meta Data Editing")
20069 ("t" . org-todo)
20070 ("," . (org-priority))
20071 ("0" . (org-priority ?\ ))
20072 ("1" . (org-priority ?A))
20073 ("2" . (org-priority ?B))
20074 ("3" . (org-priority ?C))
20075 (":" . org-set-tags-command)
20076 ("e" . org-set-effort)
20077 ("E" . org-inc-effort)
20078 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
20079 (org-entry-put (point) "APPT_WARNTIME" m)))
20080 ("Agenda Views etc")
20081 ("v" . org-agenda)
20082 ("/" . org-sparse-tree)
20083 ("Misc")
20084 ("o" . org-open-at-point)
20085 ("?" . org-speed-command-help)
20086 ("<" . (org-agenda-set-restriction-lock 'subtree))
20087 (">" . (org-agenda-remove-restriction-lock))
20089 "The default speed commands.")
20091 (defun org-print-speed-command (e)
20092 (if (> (length (car e)) 1)
20093 (progn
20094 (princ "\n")
20095 (princ (car e))
20096 (princ "\n")
20097 (princ (make-string (length (car e)) ?-))
20098 (princ "\n"))
20099 (princ (car e))
20100 (princ " ")
20101 (if (symbolp (cdr e))
20102 (princ (symbol-name (cdr e)))
20103 (prin1 (cdr e)))
20104 (princ "\n")))
20106 (defun org-speed-command-help ()
20107 "Show the available speed commands."
20108 (interactive)
20109 (if (not org-use-speed-commands)
20110 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
20111 (with-output-to-temp-buffer "*Help*"
20112 (princ "User-defined Speed commands\n===========================\n")
20113 (mapc 'org-print-speed-command org-speed-commands-user)
20114 (princ "\n")
20115 (princ "Built-in Speed commands\n=======================\n")
20116 (mapc 'org-print-speed-command org-speed-commands-default))
20117 (with-current-buffer "*Help*"
20118 (setq truncate-lines t))))
20120 (defun org-speed-move-safe (cmd)
20121 "Execute CMD, but make sure that the cursor always ends up in a headline.
20122 If not, return to the original position and throw an error."
20123 (interactive)
20124 (let ((pos (point)))
20125 (call-interactively cmd)
20126 (unless (and (bolp) (org-at-heading-p))
20127 (goto-char pos)
20128 (error "Boundary reached while executing %s" cmd))))
20130 (defvar org-self-insert-command-undo-counter 0)
20132 (defvar org-table-auto-blank-field) ; defined in org-table.el
20133 (defvar org-speed-command nil)
20135 (define-obsolete-function-alias
20136 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
20138 (defun org-speed-command-activate (keys)
20139 "Hook for activating single-letter speed commands.
20140 `org-speed-commands-default' specifies a minimal command set.
20141 Use `org-speed-commands-user' for further customization."
20142 (when (or (and (bolp) (looking-at org-outline-regexp))
20143 (and (functionp org-use-speed-commands)
20144 (funcall org-use-speed-commands)))
20145 (cdr (assoc keys (append org-speed-commands-user
20146 org-speed-commands-default)))))
20148 (define-obsolete-function-alias
20149 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
20151 (defun org-babel-speed-command-activate (keys)
20152 "Hook for activating single-letter code block commands."
20153 (when (and (bolp) (looking-at org-babel-src-block-regexp))
20154 (cdr (assoc keys org-babel-key-bindings))))
20156 (defcustom org-speed-command-hook
20157 '(org-speed-command-default-hook org-babel-speed-command-hook)
20158 "Hook for activating speed commands at strategic locations.
20159 Hook functions are called in sequence until a valid handler is
20160 found.
20162 Each hook takes a single argument, a user-pressed command key
20163 which is also a `self-insert-command' from the global map.
20165 Within the hook, examine the cursor position and the command key
20166 and return nil or a valid handler as appropriate. Handler could
20167 be one of an interactive command, a function, or a form.
20169 Set `org-use-speed-commands' to non-nil value to enable this
20170 hook. The default setting is `org-speed-command-activate'."
20171 :group 'org-structure
20172 :version "24.1"
20173 :type 'hook)
20175 (defun org-self-insert-command (N)
20176 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
20177 If the cursor is in a table looking at whitespace, the whitespace is
20178 overwritten, and the table is not marked as requiring realignment."
20179 (interactive "p")
20180 (org-check-before-invisible-edit 'insert)
20181 (cond
20182 ((and org-use-speed-commands
20183 (let ((kv (this-command-keys-vector)))
20184 (setq org-speed-command
20185 (run-hook-with-args-until-success
20186 'org-speed-command-hook
20187 (make-string 1 (aref kv (1- (length kv))))))))
20188 (cond
20189 ((commandp org-speed-command)
20190 (setq this-command org-speed-command)
20191 (call-interactively org-speed-command))
20192 ((functionp org-speed-command)
20193 (funcall org-speed-command))
20194 ((and org-speed-command (listp org-speed-command))
20195 (eval org-speed-command))
20196 (t (let (org-use-speed-commands)
20197 (call-interactively 'org-self-insert-command)))))
20198 ((and
20199 (org-table-p)
20200 (progn
20201 ;; Check if we blank the field, and if that triggers align.
20202 (and (featurep 'org-table) org-table-auto-blank-field
20203 (memq last-command
20204 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
20205 (if (or (eq (char-after) ?\s) (looking-at "[^|\n]* |"))
20206 ;; Got extra space, this field does not determine
20207 ;; column width.
20208 (let (org-table-may-need-update) (org-table-blank-field))
20209 ;; No extra space, this field may determine column
20210 ;; width.
20211 (org-table-blank-field)))
20213 (eq N 1)
20214 (looking-at "[^|\n]* \\( \\)|"))
20215 ;; There is room for insertion without re-aligning the table.
20216 (delete-region (match-beginning 1) (match-end 1))
20217 (self-insert-command N))
20219 (setq org-table-may-need-update t)
20220 (self-insert-command N)
20221 (org-fix-tags-on-the-fly)
20222 (if org-self-insert-cluster-for-undo
20223 (if (not (eq last-command 'org-self-insert-command))
20224 (setq org-self-insert-command-undo-counter 1)
20225 (if (>= org-self-insert-command-undo-counter 20)
20226 (setq org-self-insert-command-undo-counter 1)
20227 (and (> org-self-insert-command-undo-counter 0)
20228 buffer-undo-list (listp buffer-undo-list)
20229 (not (cadr buffer-undo-list)) ; remove nil entry
20230 (setcdr buffer-undo-list (cddr buffer-undo-list)))
20231 (setq org-self-insert-command-undo-counter
20232 (1+ org-self-insert-command-undo-counter))))))))
20234 (defun org-check-before-invisible-edit (kind)
20235 "Check is editing if kind KIND would be dangerous with invisible text around.
20236 The detailed reaction depends on the user option `org-catch-invisible-edits'."
20237 ;; First, try to get out of here as quickly as possible, to reduce overhead
20238 (if (and org-catch-invisible-edits
20239 (or (not (boundp 'visible-mode)) (not visible-mode))
20240 (or (get-char-property (point) 'invisible)
20241 (get-char-property (max (point-min) (1- (point))) 'invisible)))
20242 ;; OK, we need to take a closer look
20243 (let* ((invisible-at-point (get-char-property (point) 'invisible))
20244 (invisible-before-point (if (bobp) nil (get-char-property
20245 (1- (point)) 'invisible)))
20246 (border-and-ok-direction
20248 ;; Check if we are acting predictably before invisible text
20249 (and invisible-at-point (not invisible-before-point)
20250 (memq kind '(insert delete-backward)))
20251 ;; Check if we are acting predictably after invisible text
20252 ;; This works not well, and I have turned it off. It seems
20253 ;; better to always show and stop after invisible text.
20254 ;; (and (not invisible-at-point) invisible-before-point
20255 ;; (memq kind '(insert delete)))
20257 (when (or (memq invisible-at-point '(outline org-hide-block t))
20258 (memq invisible-before-point '(outline org-hide-block t)))
20259 (if (eq org-catch-invisible-edits 'error)
20260 (user-error "Editing in invisible areas is prohibited, make them visible first"))
20261 (if (and org-custom-properties-overlays
20262 (y-or-n-p "Display invisible properties in this buffer? "))
20263 (org-toggle-custom-properties-visibility)
20264 ;; Make the area visible
20265 (save-excursion
20266 (if invisible-before-point
20267 (goto-char (previous-single-char-property-change
20268 (point) 'invisible)))
20269 (outline-show-subtree))
20270 (cond
20271 ((eq org-catch-invisible-edits 'show)
20272 ;; That's it, we do the edit after showing
20273 (message
20274 "Unfolding invisible region around point before editing")
20275 (sit-for 1))
20276 ((and (eq org-catch-invisible-edits 'smart)
20277 border-and-ok-direction)
20278 (message "Unfolding invisible region around point before editing"))
20280 ;; Don't do the edit, make the user repeat it in full visibility
20281 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
20283 (defun org-fix-tags-on-the-fly ()
20284 (when (and (equal (char-after (point-at-bol)) ?*)
20285 (org-at-heading-p))
20286 (org-align-tags-here org-tags-column)))
20288 (defun org-delete-backward-char (N)
20289 "Like `delete-backward-char', insert whitespace at field end in tables.
20290 When deleting backwards, in tables this function will insert whitespace in
20291 front of the next \"|\" separator, to keep the table aligned. The table will
20292 still be marked for re-alignment if the field did fill the entire column,
20293 because, in this case the deletion might narrow the column."
20294 (interactive "p")
20295 (save-match-data
20296 (org-check-before-invisible-edit 'delete-backward)
20297 (if (and (org-table-p)
20298 (eq N 1)
20299 (string-match "|" (buffer-substring (point-at-bol) (point)))
20300 (looking-at ".*?|"))
20301 (let ((pos (point))
20302 (noalign (looking-at "[^|\n\r]* |"))
20303 (c org-table-may-need-update))
20304 (backward-delete-char N)
20305 (if (not overwrite-mode)
20306 (progn
20307 (skip-chars-forward "^|")
20308 (insert " ")
20309 (goto-char (1- pos))))
20310 ;; noalign: if there were two spaces at the end, this field
20311 ;; does not determine the width of the column.
20312 (if noalign (setq org-table-may-need-update c)))
20313 (backward-delete-char N)
20314 (org-fix-tags-on-the-fly))))
20316 (defun org-delete-char (N)
20317 "Like `delete-char', but insert whitespace at field end in tables.
20318 When deleting characters, 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)
20325 (if (and (org-table-p)
20326 (not (bolp))
20327 (not (= (char-after) ?|))
20328 (eq N 1))
20329 (if (looking-at ".*?|")
20330 (let ((pos (point))
20331 (noalign (looking-at "[^|\n\r]* |"))
20332 (c org-table-may-need-update))
20333 (replace-match
20334 (concat (substring (match-string 0) 1 -1) " |") nil t)
20335 (goto-char pos)
20336 ;; noalign: if there were two spaces at the end, this field
20337 ;; does not determine the width of the column.
20338 (if noalign (setq org-table-may-need-update c)))
20339 (delete-char N))
20340 (delete-char N)
20341 (org-fix-tags-on-the-fly))))
20343 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20344 (put 'org-self-insert-command 'delete-selection
20345 (lambda ()
20346 (not (run-hook-with-args-until-success
20347 'self-insert-uses-region-functions))))
20348 (put 'orgtbl-self-insert-command 'delete-selection
20349 (lambda ()
20350 (not (run-hook-with-args-until-success
20351 'self-insert-uses-region-functions))))
20352 (put 'org-delete-char 'delete-selection 'supersede)
20353 (put 'org-delete-backward-char 'delete-selection 'supersede)
20354 (put 'org-yank 'delete-selection 'yank)
20356 ;; Make `flyspell-mode' delay after some commands
20357 (put 'org-self-insert-command 'flyspell-delayed t)
20358 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20359 (put 'org-delete-char 'flyspell-delayed t)
20360 (put 'org-delete-backward-char 'flyspell-delayed t)
20362 ;; Make pabbrev-mode expand after org-mode commands
20363 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20364 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20366 (defun org-remap (map &rest commands)
20367 "In MAP, remap the functions given in COMMANDS.
20368 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20369 (let (new old)
20370 (while commands
20371 (setq old (pop commands) new (pop commands))
20372 (if (fboundp 'command-remapping)
20373 (org-defkey map (vector 'remap old) new)
20374 (substitute-key-definition old new map global-map)))))
20376 (defun org-transpose-words ()
20377 "Transpose words for Org.
20378 This uses the `org-mode-transpose-word-syntax-table' syntax
20379 table, which interprets characters in `org-emphasis-alist' as
20380 word constituents."
20381 (interactive)
20382 (with-syntax-table org-mode-transpose-word-syntax-table
20383 (call-interactively 'transpose-words)))
20384 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20386 (when (eq org-enable-table-editor 'optimized)
20387 ;; If the user wants maximum table support, we need to hijack
20388 ;; some standard editing functions
20389 (org-remap org-mode-map
20390 'self-insert-command 'org-self-insert-command
20391 'delete-char 'org-delete-char
20392 'delete-backward-char 'org-delete-backward-char)
20393 (org-defkey org-mode-map "|" 'org-force-self-insert))
20395 (defvar org-ctrl-c-ctrl-c-hook nil
20396 "Hook for functions attaching themselves to `C-c C-c'.
20398 This can be used to add additional functionality to the C-c C-c
20399 key which executes context-dependent commands. This hook is run
20400 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20401 run after the last test.
20403 Each function will be called with no arguments. The function
20404 must check if the context is appropriate for it to act. If yes,
20405 it should do its thing and then return a non-nil value. If the
20406 context is wrong, just do nothing and return nil.")
20408 (defvar org-ctrl-c-ctrl-c-final-hook nil
20409 "Hook for functions attaching themselves to `C-c C-c'.
20411 This can be used to add additional functionality to the C-c C-c
20412 key which executes context-dependent commands. This hook is run
20413 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20414 before the first test.
20416 Each function will be called with no arguments. The function
20417 must check if the context is appropriate for it to act. If yes,
20418 it should do its thing and then return a non-nil value. If the
20419 context is wrong, just do nothing and return nil.")
20421 (defvar org-tab-first-hook nil
20422 "Hook for functions to attach themselves to TAB.
20423 See `org-ctrl-c-ctrl-c-hook' for more information.
20424 This hook runs as the first action when TAB is pressed, even before
20425 `org-cycle' messes around with the `outline-regexp' to cater for
20426 inline tasks and plain list item folding.
20427 If any function in this hook returns t, any other actions that
20428 would have been caused by TAB (such as table field motion or visibility
20429 cycling) will not occur.")
20431 (defvar org-tab-after-check-for-table-hook nil
20432 "Hook for functions to attach themselves to TAB.
20433 See `org-ctrl-c-ctrl-c-hook' for more information.
20434 This hook runs after it has been established that the cursor is not in a
20435 table, but before checking if the cursor is in a headline or if global cycling
20436 should be done.
20437 If any function in this hook returns t, not other actions like visibility
20438 cycling will be done.")
20440 (defvar org-tab-after-check-for-cycling-hook nil
20441 "Hook for functions to attach themselves to TAB.
20442 See `org-ctrl-c-ctrl-c-hook' for more information.
20443 This hook runs after it has been established that not table field motion and
20444 not visibility should be done because of current context. This is probably
20445 the place where a package like yasnippets can hook in.")
20447 (defvar org-tab-before-tab-emulation-hook nil
20448 "Hook for functions to attach themselves to TAB.
20449 See `org-ctrl-c-ctrl-c-hook' for more information.
20450 This hook runs after every other options for TAB have been exhausted, but
20451 before indentation and \t insertion takes place.")
20453 (defvar org-metaleft-hook nil
20454 "Hook for functions attaching themselves to `M-left'.
20455 See `org-ctrl-c-ctrl-c-hook' for more information.")
20456 (defvar org-metaright-hook nil
20457 "Hook for functions attaching themselves to `M-right'.
20458 See `org-ctrl-c-ctrl-c-hook' for more information.")
20459 (defvar org-metaup-hook nil
20460 "Hook for functions attaching themselves to `M-up'.
20461 See `org-ctrl-c-ctrl-c-hook' for more information.")
20462 (defvar org-metadown-hook nil
20463 "Hook for functions attaching themselves to `M-down'.
20464 See `org-ctrl-c-ctrl-c-hook' for more information.")
20465 (defvar org-shiftmetaleft-hook nil
20466 "Hook for functions attaching themselves to `M-S-left'.
20467 See `org-ctrl-c-ctrl-c-hook' for more information.")
20468 (defvar org-shiftmetaright-hook nil
20469 "Hook for functions attaching themselves to `M-S-right'.
20470 See `org-ctrl-c-ctrl-c-hook' for more information.")
20471 (defvar org-shiftmetaup-hook nil
20472 "Hook for functions attaching themselves to `M-S-up'.
20473 See `org-ctrl-c-ctrl-c-hook' for more information.")
20474 (defvar org-shiftmetadown-hook nil
20475 "Hook for functions attaching themselves to `M-S-down'.
20476 See `org-ctrl-c-ctrl-c-hook' for more information.")
20477 (defvar org-metareturn-hook nil
20478 "Hook for functions attaching themselves to `M-RET'.
20479 See `org-ctrl-c-ctrl-c-hook' for more information.")
20480 (defvar org-shiftup-hook nil
20481 "Hook for functions attaching themselves to `S-up'.
20482 See `org-ctrl-c-ctrl-c-hook' for more information.")
20483 (defvar org-shiftup-final-hook nil
20484 "Hook for functions attaching themselves to `S-up'.
20485 This one runs after all other options except shift-select have been excluded.
20486 See `org-ctrl-c-ctrl-c-hook' for more information.")
20487 (defvar org-shiftdown-hook nil
20488 "Hook for functions attaching themselves to `S-down'.
20489 See `org-ctrl-c-ctrl-c-hook' for more information.")
20490 (defvar org-shiftdown-final-hook nil
20491 "Hook for functions attaching themselves to `S-down'.
20492 This one runs after all other options except shift-select have been excluded.
20493 See `org-ctrl-c-ctrl-c-hook' for more information.")
20494 (defvar org-shiftleft-hook nil
20495 "Hook for functions attaching themselves to `S-left'.
20496 See `org-ctrl-c-ctrl-c-hook' for more information.")
20497 (defvar org-shiftleft-final-hook nil
20498 "Hook for functions attaching themselves to `S-left'.
20499 This one runs after all other options except shift-select have been excluded.
20500 See `org-ctrl-c-ctrl-c-hook' for more information.")
20501 (defvar org-shiftright-hook nil
20502 "Hook for functions attaching themselves to `S-right'.
20503 See `org-ctrl-c-ctrl-c-hook' for more information.")
20504 (defvar org-shiftright-final-hook nil
20505 "Hook for functions attaching themselves to `S-right'.
20506 This one runs after all other options except shift-select have been excluded.
20507 See `org-ctrl-c-ctrl-c-hook' for more information.")
20509 (defun org-modifier-cursor-error ()
20510 "Throw an error, a modified cursor command was applied in wrong context."
20511 (user-error "This command is active in special context like tables, headlines or items"))
20513 (defun org-shiftselect-error ()
20514 "Throw an error because Shift-Cursor command was applied in wrong context."
20515 (if (and (boundp 'shift-select-mode) shift-select-mode)
20516 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20517 (user-error "This command works only in special context like headlines or timestamps")))
20519 (defun org-call-for-shift-select (cmd)
20520 (let ((this-command-keys-shift-translated t))
20521 (call-interactively cmd)))
20523 (defun org-shifttab (&optional arg)
20524 "Global visibility cycling or move to previous table field.
20525 Call `org-table-previous-field' within a table.
20526 When ARG is nil, cycle globally through visibility states.
20527 When ARG is a numeric prefix, show contents of this level."
20528 (interactive "P")
20529 (cond
20530 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20531 ((integerp arg)
20532 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20533 (message "Content view to level: %d" arg)
20534 (org-content (prefix-numeric-value arg2))
20535 (org-cycle-show-empty-lines t)
20536 (setq org-cycle-global-status 'overview)))
20537 (t (call-interactively 'org-global-cycle))))
20539 (defun org-shiftmetaleft ()
20540 "Promote subtree or delete table column.
20541 Calls `org-promote-subtree', `org-outdent-item-tree', or
20542 `org-table-delete-column', depending on context. See the
20543 individual commands for more information."
20544 (interactive)
20545 (cond
20546 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20547 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20548 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20549 ((if (not (org-region-active-p)) (org-at-item-p)
20550 (save-excursion (goto-char (region-beginning))
20551 (org-at-item-p)))
20552 (call-interactively 'org-outdent-item-tree))
20553 (t (org-modifier-cursor-error))))
20555 (defun org-shiftmetaright ()
20556 "Demote subtree or insert table column.
20557 Calls `org-demote-subtree', `org-indent-item-tree', or
20558 `org-table-insert-column', depending on context. See the
20559 individual commands for more information."
20560 (interactive)
20561 (cond
20562 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20563 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20564 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20565 ((if (not (org-region-active-p)) (org-at-item-p)
20566 (save-excursion (goto-char (region-beginning))
20567 (org-at-item-p)))
20568 (call-interactively 'org-indent-item-tree))
20569 (t (org-modifier-cursor-error))))
20571 (defun org-shiftmetaup (&optional arg)
20572 "Drag the line at point up.
20573 In a table, kill the current row.
20574 On a clock timestamp, update the value of the timestamp like `S-<up>'
20575 but also adjust the previous clocked item in the clock history.
20576 Everywhere else, drag the line at point up."
20577 (interactive "P")
20578 (cond
20579 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20580 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20581 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20582 (call-interactively 'org-timestamp-up)))
20583 (t (call-interactively 'org-drag-line-backward))))
20585 (defun org-shiftmetadown (&optional arg)
20586 "Drag the line at point down.
20587 In a table, insert an empty row at the current line.
20588 On a clock timestamp, update the value of the timestamp like `S-<down>'
20589 but also adjust the previous clocked item in the clock history.
20590 Everywhere else, drag the line at point down."
20591 (interactive "P")
20592 (cond
20593 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20594 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20595 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20596 (call-interactively 'org-timestamp-down)))
20597 (t (call-interactively 'org-drag-line-forward))))
20599 (defsubst org-hidden-tree-error ()
20600 (user-error
20601 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20603 (defun org-metaleft (&optional arg)
20604 "Promote heading, list item at point or move table column left.
20606 Calls `org-do-promote', `org-outdent-item' or `org-table-move-column',
20607 depending on context. With no specific context, calls the Emacs
20608 default `backward-word'. See the individual commands for more
20609 information.
20611 This function runs the hook `org-metaleft-hook' as a first step,
20612 and returns at first non-nil value."
20613 (interactive "P")
20614 (cond
20615 ((run-hook-with-args-until-success 'org-metaleft-hook))
20616 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20617 ((org-with-limited-levels
20618 (or (org-at-heading-p)
20619 (and (org-region-active-p)
20620 (save-excursion
20621 (goto-char (region-beginning))
20622 (org-at-heading-p)))))
20623 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20624 (call-interactively 'org-do-promote))
20625 ;; At an inline task.
20626 ((org-at-heading-p)
20627 (call-interactively 'org-inlinetask-promote))
20628 ((or (org-at-item-p)
20629 (and (org-region-active-p)
20630 (save-excursion
20631 (goto-char (region-beginning))
20632 (org-at-item-p))))
20633 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20634 (call-interactively 'org-outdent-item))
20635 (t (call-interactively 'backward-word))))
20637 (defun org-metaright (&optional arg)
20638 "Demote heading, list item at point or move table column right.
20640 In front of a drawer or a block keyword, indent it correctly.
20642 Calls `org-do-demote', `org-indent-item', `org-table-move-column',
20643 `org-indnet-drawer' or `org-indent-block' depending on context.
20644 With no specific context, calls the Emacs default `forward-word'.
20645 See the individual commands for more information.
20647 This function runs the hook `org-metaright-hook' as a first step,
20648 and returns at first non-nil value."
20649 (interactive "P")
20650 (cond
20651 ((run-hook-with-args-until-success 'org-metaright-hook))
20652 ((org-at-table-p) (call-interactively 'org-table-move-column))
20653 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20654 ((org-at-block-p) (call-interactively 'org-indent-block))
20655 ((org-with-limited-levels
20656 (or (org-at-heading-p)
20657 (and (org-region-active-p)
20658 (save-excursion
20659 (goto-char (region-beginning))
20660 (org-at-heading-p)))))
20661 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20662 (call-interactively 'org-do-demote))
20663 ;; At an inline task.
20664 ((org-at-heading-p)
20665 (call-interactively 'org-inlinetask-demote))
20666 ((or (org-at-item-p)
20667 (and (org-region-active-p)
20668 (save-excursion
20669 (goto-char (region-beginning))
20670 (org-at-item-p))))
20671 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20672 (call-interactively 'org-indent-item))
20673 (t (call-interactively 'forward-word))))
20675 (defun org-check-for-hidden (what)
20676 "Check if there are hidden headlines/items in the current visual line.
20677 WHAT can be either `headlines' or `items'. If the current line is
20678 an outline or item heading and it has a folded subtree below it,
20679 this function returns t, nil otherwise."
20680 (let ((re (cond
20681 ((eq what 'headlines) org-outline-regexp-bol)
20682 ((eq what 'items) (org-item-beginning-re))
20683 (t (error "This should not happen"))))
20684 beg end)
20685 (save-excursion
20686 (catch 'exit
20687 (unless (org-region-active-p)
20688 (setq beg (point-at-bol))
20689 (beginning-of-line 2)
20690 (while (and (not (eobp)) ;; this is like `next-line'
20691 (get-char-property (1- (point)) 'invisible))
20692 (beginning-of-line 2))
20693 (setq end (point))
20694 (goto-char beg)
20695 (goto-char (point-at-eol))
20696 (setq end (max end (point)))
20697 (while (re-search-forward re end t)
20698 (if (get-char-property (match-beginning 0) 'invisible)
20699 (throw 'exit t))))
20700 nil))))
20702 (defun org-metaup (&optional arg)
20703 "Move subtree up or move table row up.
20704 Calls `org-move-subtree-up' or `org-table-move-row' or
20705 `org-move-item-up', depending on context. See the individual commands
20706 for more information."
20707 (interactive "P")
20708 (cond
20709 ((run-hook-with-args-until-success 'org-metaup-hook))
20710 ((org-region-active-p)
20711 (let* ((a (min (region-beginning) (region-end)))
20712 (b (1- (max (region-beginning) (region-end))))
20713 (c (save-excursion (goto-char a)
20714 (move-beginning-of-line 0)))
20715 (d (save-excursion (goto-char a)
20716 (move-end-of-line 0) (point))))
20717 (transpose-regions a b c d)
20718 (goto-char c)))
20719 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20720 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20721 ((org-at-item-p) (call-interactively 'org-move-item-up))
20722 (t (org-drag-element-backward))))
20724 (defun org-metadown (&optional arg)
20725 "Move subtree down or move table row down.
20726 Calls `org-move-subtree-down' or `org-table-move-row' or
20727 `org-move-item-down', depending on context. See the individual
20728 commands for more information."
20729 (interactive "P")
20730 (cond
20731 ((run-hook-with-args-until-success 'org-metadown-hook))
20732 ((org-region-active-p)
20733 (let* ((a (min (region-beginning) (region-end)))
20734 (b (max (region-beginning) (region-end)))
20735 (c (save-excursion (goto-char b)
20736 (move-beginning-of-line 1)))
20737 (d (save-excursion (goto-char b)
20738 (move-end-of-line 1) (1+ (point)))))
20739 (transpose-regions a b c d)
20740 (goto-char d)))
20741 ((org-at-table-p) (call-interactively 'org-table-move-row))
20742 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20743 ((org-at-item-p) (call-interactively 'org-move-item-down))
20744 (t (org-drag-element-forward))))
20746 (defun org-shiftup (&optional arg)
20747 "Increase item in timestamp or increase priority of current headline.
20748 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20749 depending on context. See the individual commands for more information."
20750 (interactive "P")
20751 (cond
20752 ((run-hook-with-args-until-success 'org-shiftup-hook))
20753 ((and org-support-shift-select (org-region-active-p))
20754 (org-call-for-shift-select 'previous-line))
20755 ((org-at-timestamp-p t)
20756 (call-interactively (if org-edit-timestamp-down-means-later
20757 'org-timestamp-down 'org-timestamp-up)))
20758 ((and (not (eq org-support-shift-select 'always))
20759 org-enable-priority-commands
20760 (org-at-heading-p))
20761 (call-interactively 'org-priority-up))
20762 ((and (not org-support-shift-select) (org-at-item-p))
20763 (call-interactively 'org-previous-item))
20764 ((org-clocktable-try-shift 'up arg))
20765 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20766 (org-support-shift-select
20767 (org-call-for-shift-select 'previous-line))
20768 (t (org-shiftselect-error))))
20770 (defun org-shiftdown (&optional arg)
20771 "Decrease item in timestamp or decrease priority of current headline.
20772 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20773 depending on context. See the individual commands for more information."
20774 (interactive "P")
20775 (cond
20776 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20777 ((and org-support-shift-select (org-region-active-p))
20778 (org-call-for-shift-select 'next-line))
20779 ((org-at-timestamp-p t)
20780 (call-interactively (if org-edit-timestamp-down-means-later
20781 'org-timestamp-up 'org-timestamp-down)))
20782 ((and (not (eq org-support-shift-select 'always))
20783 org-enable-priority-commands
20784 (org-at-heading-p))
20785 (call-interactively 'org-priority-down))
20786 ((and (not org-support-shift-select) (org-at-item-p))
20787 (call-interactively 'org-next-item))
20788 ((org-clocktable-try-shift 'down arg))
20789 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20790 (org-support-shift-select
20791 (org-call-for-shift-select 'next-line))
20792 (t (org-shiftselect-error))))
20794 (defun org-shiftright (&optional arg)
20795 "Cycle the thing at point or in the current line, depending on context.
20796 Depending on context, this does one of the following:
20798 - switch a timestamp at point one day into the future
20799 - on a headline, switch to the next TODO keyword.
20800 - on an item, switch entire list to the next bullet type
20801 - on a property line, switch to the next allowed value
20802 - on a clocktable definition line, move time block into the future"
20803 (interactive "P")
20804 (cond
20805 ((run-hook-with-args-until-success 'org-shiftright-hook))
20806 ((and org-support-shift-select (org-region-active-p))
20807 (org-call-for-shift-select 'forward-char))
20808 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20809 ((and (not (eq org-support-shift-select 'always))
20810 (org-at-heading-p))
20811 (let ((org-inhibit-logging
20812 (not org-treat-S-cursor-todo-selection-as-state-change))
20813 (org-inhibit-blocking
20814 (not org-treat-S-cursor-todo-selection-as-state-change)))
20815 (org-call-with-arg 'org-todo 'right)))
20816 ((or (and org-support-shift-select
20817 (not (eq org-support-shift-select 'always))
20818 (org-at-item-bullet-p))
20819 (and (not org-support-shift-select) (org-at-item-p)))
20820 (org-call-with-arg 'org-cycle-list-bullet nil))
20821 ((and (not (eq org-support-shift-select 'always))
20822 (org-at-property-p))
20823 (call-interactively 'org-property-next-allowed-value))
20824 ((org-clocktable-try-shift 'right arg))
20825 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20826 (org-support-shift-select
20827 (org-call-for-shift-select 'forward-char))
20828 (t (org-shiftselect-error))))
20830 (defun org-shiftleft (&optional arg)
20831 "Cycle the thing at point or in the current line, depending on context.
20832 Depending on context, this does one of the following:
20834 - switch a timestamp at point one day into the past
20835 - on a headline, switch to the previous TODO keyword.
20836 - on an item, switch entire list to the previous bullet type
20837 - on a property line, switch to the previous allowed value
20838 - on a clocktable definition line, move time block into the past"
20839 (interactive "P")
20840 (cond
20841 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20842 ((and org-support-shift-select (org-region-active-p))
20843 (org-call-for-shift-select 'backward-char))
20844 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20845 ((and (not (eq org-support-shift-select 'always))
20846 (org-at-heading-p))
20847 (let ((org-inhibit-logging
20848 (not org-treat-S-cursor-todo-selection-as-state-change))
20849 (org-inhibit-blocking
20850 (not org-treat-S-cursor-todo-selection-as-state-change)))
20851 (org-call-with-arg 'org-todo 'left)))
20852 ((or (and org-support-shift-select
20853 (not (eq org-support-shift-select 'always))
20854 (org-at-item-bullet-p))
20855 (and (not org-support-shift-select) (org-at-item-p)))
20856 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20857 ((and (not (eq org-support-shift-select 'always))
20858 (org-at-property-p))
20859 (call-interactively 'org-property-previous-allowed-value))
20860 ((org-clocktable-try-shift 'left arg))
20861 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20862 (org-support-shift-select
20863 (org-call-for-shift-select 'backward-char))
20864 (t (org-shiftselect-error))))
20866 (defun org-shiftcontrolright ()
20867 "Switch to next TODO set."
20868 (interactive)
20869 (cond
20870 ((and org-support-shift-select (org-region-active-p))
20871 (org-call-for-shift-select 'forward-word))
20872 ((and (not (eq org-support-shift-select 'always))
20873 (org-at-heading-p))
20874 (org-call-with-arg 'org-todo 'nextset))
20875 (org-support-shift-select
20876 (org-call-for-shift-select 'forward-word))
20877 (t (org-shiftselect-error))))
20879 (defun org-shiftcontrolleft ()
20880 "Switch to previous TODO set."
20881 (interactive)
20882 (cond
20883 ((and org-support-shift-select (org-region-active-p))
20884 (org-call-for-shift-select 'backward-word))
20885 ((and (not (eq org-support-shift-select 'always))
20886 (org-at-heading-p))
20887 (org-call-with-arg 'org-todo 'previousset))
20888 (org-support-shift-select
20889 (org-call-for-shift-select 'backward-word))
20890 (t (org-shiftselect-error))))
20892 (defun org-shiftcontrolup (&optional n)
20893 "Change timestamps synchronously up in CLOCK log lines.
20894 Optional argument N tells to change by that many units."
20895 (interactive "P")
20896 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20897 (let (org-support-shift-select)
20898 (org-clock-timestamps-up n))
20899 (user-error "Not at a clock log")))
20901 (defun org-shiftcontroldown (&optional n)
20902 "Change timestamps synchronously down in CLOCK log lines.
20903 Optional argument N tells to change by that many units."
20904 (interactive "P")
20905 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20906 (let (org-support-shift-select)
20907 (org-clock-timestamps-down n))
20908 (user-error "Not at a clock log")))
20910 (defun org-increase-number-at-point (&optional inc)
20911 "Increment the number at point.
20912 With an optional prefix numeric argument INC, increment using
20913 this numeric value."
20914 (interactive "p")
20915 (if (not (number-at-point))
20916 (user-error "Not on a number")
20917 (unless inc (setq inc 1))
20918 (let ((pos (point))
20919 (beg (skip-chars-backward "-+^/*0-9eE."))
20920 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20921 (setq nap (buffer-substring-no-properties
20922 (+ pos beg) (+ pos beg end)))
20923 (delete-region (+ pos beg) (+ pos beg end))
20924 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20925 (when (org-at-table-p)
20926 (org-table-align)
20927 (org-table-end-of-field 1))))
20929 (defun org-decrease-number-at-point (&optional inc)
20930 "Decrement the number at point.
20931 With an optional prefix numeric argument INC, decrement using
20932 this numeric value."
20933 (interactive "p")
20934 (org-increase-number-at-point (- (or inc 1))))
20936 (defun org-ctrl-c-ret ()
20937 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20938 (interactive)
20939 (cond
20940 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20941 (t (call-interactively 'org-insert-heading))))
20943 (defun org-find-visible ()
20944 (let ((s (point)))
20945 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20946 (get-char-property s 'invisible)))
20948 (defun org-find-invisible ()
20949 (let ((s (point)))
20950 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20951 (not (get-char-property s 'invisible))))
20954 (defun org-copy-visible (beg end)
20955 "Copy the visible parts of the region."
20956 (interactive "r")
20957 (let (snippets s)
20958 (save-excursion
20959 (save-restriction
20960 (narrow-to-region beg end)
20961 (setq s (goto-char (point-min)))
20962 (while (not (= (point) (point-max)))
20963 (goto-char (org-find-invisible))
20964 (push (buffer-substring s (point)) snippets)
20965 (setq s (goto-char (org-find-visible))))))
20966 (kill-new (apply 'concat (nreverse snippets)))))
20968 (defun org-copy-special ()
20969 "Copy region in table or copy current subtree.
20970 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20971 See the individual commands for more information."
20972 (interactive)
20973 (call-interactively
20974 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20976 (defun org-cut-special ()
20977 "Cut region in table or cut current subtree.
20978 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20979 See the individual commands for more information."
20980 (interactive)
20981 (call-interactively
20982 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20984 (defun org-paste-special (arg)
20985 "Paste rectangular region into table, or past subtree relative to level.
20986 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20987 See the individual commands for more information."
20988 (interactive "P")
20989 (if (org-at-table-p)
20990 (org-table-paste-rectangle)
20991 (org-paste-subtree arg)))
20993 (defsubst org-in-fixed-width-region-p ()
20994 "Is point in a fixed-width region?"
20995 (save-match-data
20996 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20998 (defun org-edit-special (&optional arg)
20999 "Call a special editor for the element at point.
21000 When at a table, call the formula editor with `org-table-edit-formulas'.
21001 When in a source code block, call `org-edit-src-code'.
21002 When in a fixed-width region, call `org-edit-fixed-width-region'.
21003 When in an export block, call `org-edit-export-block'.
21004 When at an #+INCLUDE keyword, visit the included file.
21005 When at a footnote reference, call `org-edit-footnote-reference'
21006 On a link, call `ffap' to visit the link at point.
21007 Otherwise, return a user error."
21008 (interactive "P")
21009 (let ((element (org-element-at-point)))
21010 (assert (not buffer-read-only) nil
21011 "Buffer is read-only: %s" (buffer-name))
21012 (case (org-element-type element)
21013 (src-block
21014 (if (not arg) (org-edit-src-code)
21015 (let* ((info (org-babel-get-src-block-info))
21016 (lang (nth 0 info))
21017 (params (nth 2 info))
21018 (session (cdr (assq :session params))))
21019 (if (not session) (org-edit-src-code)
21020 ;; At a src-block with a session and function called with
21021 ;; an ARG: switch to the buffer related to the inferior
21022 ;; process.
21023 (switch-to-buffer
21024 (funcall (intern (concat "org-babel-prep-session:" lang))
21025 session params))))))
21026 (keyword
21027 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
21028 (org-open-link-from-string
21029 (format "[[%s]]"
21030 (expand-file-name
21031 (let ((value (org-element-property :value element)))
21032 (cond ((not (org-string-nw-p value))
21033 (user-error "No file to edit"))
21034 ((string-match "\\`\"\\(.*?\\)\"" value)
21035 (match-string 1 value))
21036 ((string-match "\\`[^ \t\"]\\S-*" value)
21037 (match-string 0 value))
21038 (t (user-error "No valid file specified")))))))
21039 (user-error "No special environment to edit here")))
21040 (table
21041 (if (eq (org-element-property :type element) 'table.el)
21042 (org-edit-table.el)
21043 (call-interactively 'org-table-edit-formulas)))
21044 ;; Only Org tables contain `table-row' type elements.
21045 (table-row (call-interactively 'org-table-edit-formulas))
21046 (example-block (org-edit-src-code))
21047 (export-block (org-edit-export-block))
21048 (fixed-width (org-edit-fixed-width-region))
21049 (otherwise
21050 ;; No notable element at point. Though, we may be at a link or
21051 ;; a footnote reference, which are objects. Thus, scan deeper.
21052 (let ((context (org-element-context element)))
21053 (case (org-element-type context)
21054 (link (call-interactively #'ffap))
21055 (footnote-reference (org-edit-footnote-reference))
21056 (t (user-error "No special environment to edit here"))))))))
21058 (defvar org-table-coordinate-overlays) ; defined in org-table.el
21059 (defun org-ctrl-c-ctrl-c (&optional arg)
21060 "Set tags in headline, or update according to changed information at point.
21062 This command does many different things, depending on context:
21064 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
21065 this is what we do.
21067 - If the cursor is on a statistics cookie, update it.
21069 - If the cursor is in a headline, prompt for tags and insert them
21070 into the current line, aligned to `org-tags-column'. When called
21071 with prefix arg, realign all tags in the current buffer.
21073 - If the cursor is in one of the special #+KEYWORD lines, this
21074 triggers scanning the buffer for these lines and updating the
21075 information.
21077 - If the cursor is inside a table, realign the table. This command
21078 works even if the automatic table editor has been turned off.
21080 - If the cursor is on a #+TBLFM line, re-apply the formulas to
21081 the entire table.
21083 - If the cursor is at a footnote reference or definition, jump to
21084 the corresponding definition or references, respectively.
21086 - If the cursor is a the beginning of a dynamic block, update it.
21088 - If the current buffer is a capture buffer, close note and file it.
21090 - If the cursor is on a <<<target>>>, update radio targets and
21091 corresponding links in this buffer.
21093 - If the cursor is on a numbered item in a plain list, renumber the
21094 ordered list.
21096 - If the cursor is on a checkbox, toggle it.
21098 - If the cursor is on a code block, evaluate it. The variable
21099 `org-confirm-babel-evaluate' can be used to control prompting
21100 before code block evaluation, by default every code block
21101 evaluation requires confirmation. Code block evaluation can be
21102 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
21103 (interactive "P")
21104 (cond
21105 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
21106 org-occur-highlights)
21107 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
21108 (org-remove-occur-highlights)
21109 (message "Temporary highlights/overlays removed from current buffer"))
21110 ((and (local-variable-p 'org-finish-function (current-buffer))
21111 (fboundp org-finish-function))
21112 (funcall org-finish-function))
21113 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
21115 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
21116 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21117 (user-error "C-c C-c can do nothing useful at this location"))
21118 (let* ((context (org-element-context))
21119 (type (org-element-type context)))
21120 (case type
21121 ;; When at a link, act according to the parent instead.
21122 (link (setq context (org-element-property :parent context))
21123 (setq type (org-element-type context)))
21124 ;; Unsupported object types: refer to the first supported
21125 ;; element or object containing it.
21126 ((bold code entity export-snippet inline-babel-call inline-src-block
21127 italic latex-fragment line-break macro strike-through subscript
21128 superscript underline verbatim)
21129 (setq context
21130 (org-element-lineage
21131 context '(radio-target paragraph verse-block table-cell)))))
21132 ;; For convenience: at the first line of a paragraph on the
21133 ;; same line as an item, apply function on that item instead.
21134 (when (eq type 'paragraph)
21135 (let ((parent (org-element-property :parent context)))
21136 (when (and (eq (org-element-type parent) 'item)
21137 (= (line-beginning-position)
21138 (org-element-property :begin parent)))
21139 (setq context parent type 'item))))
21140 ;; Act according to type of element or object at point.
21141 (case type
21142 (clock (org-clock-update-time-maybe))
21143 (dynamic-block
21144 (save-excursion
21145 (goto-char (org-element-property :post-affiliated context))
21146 (org-update-dblock)))
21147 (footnote-definition
21148 (goto-char (org-element-property :post-affiliated context))
21149 (call-interactively 'org-footnote-action))
21150 (footnote-reference (call-interactively 'org-footnote-action))
21151 ((headline inlinetask)
21152 (save-excursion (goto-char (org-element-property :begin context))
21153 (call-interactively 'org-set-tags)))
21154 (item
21155 ;; At an item: a double C-u set checkbox to "[-]"
21156 ;; unconditionally, whereas a single one will toggle its
21157 ;; presence. Without a universal argument, if the item
21158 ;; has a checkbox, toggle it. Otherwise repair the list.
21159 (let* ((box (org-element-property :checkbox context))
21160 (struct (org-element-property :structure context))
21161 (old-struct (copy-tree struct))
21162 (parents (org-list-parents-alist struct))
21163 (prevs (org-list-prevs-alist struct))
21164 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
21165 (org-list-set-checkbox
21166 (org-element-property :begin context) struct
21167 (cond ((equal arg '(16)) "[-]")
21168 ((and (not box) (equal arg '(4))) "[ ]")
21169 ((or (not box) (equal arg '(4))) nil)
21170 ((eq box 'on) "[ ]")
21171 (t "[X]")))
21172 ;; Mimic `org-list-write-struct' but with grabbing
21173 ;; a return value from `org-list-struct-fix-box'.
21174 (org-list-struct-fix-ind struct parents 2)
21175 (org-list-struct-fix-item-end struct)
21176 (org-list-struct-fix-bul struct prevs)
21177 (org-list-struct-fix-ind struct parents)
21178 (let ((block-item
21179 (org-list-struct-fix-box struct parents prevs orderedp)))
21180 (if (and box (equal struct old-struct))
21181 (if (equal arg '(16))
21182 (message "Checkboxes already reset")
21183 (user-error "Cannot toggle this checkbox: %s"
21184 (if (eq box 'on)
21185 "all subitems checked"
21186 "unchecked subitems")))
21187 (org-list-struct-apply-struct struct old-struct)
21188 (org-update-checkbox-count-maybe))
21189 (when block-item
21190 (message "Checkboxes were removed due to empty box at line %d"
21191 (org-current-line block-item))))))
21192 (keyword
21193 (let ((org-inhibit-startup-visibility-stuff t)
21194 (org-startup-align-all-tables nil))
21195 (when (boundp 'org-table-coordinate-overlays)
21196 (mapc 'delete-overlay org-table-coordinate-overlays)
21197 (setq org-table-coordinate-overlays nil))
21198 (org-save-outline-visibility 'use-markers (org-mode-restart)))
21199 (message "Local setup has been refreshed"))
21200 (plain-list
21201 ;; At a plain list, with a double C-u argument, set
21202 ;; checkboxes of each item to "[-]", whereas a single one
21203 ;; will toggle their presence according to the state of the
21204 ;; first item in the list. Without an argument, repair the
21205 ;; list.
21206 (let* ((begin (org-element-property :contents-begin context))
21207 (beginm (move-marker (make-marker) begin))
21208 (struct (org-element-property :structure context))
21209 (old-struct (copy-tree struct))
21210 (first-box (save-excursion
21211 (goto-char begin)
21212 (looking-at org-list-full-item-re)
21213 (match-string-no-properties 3)))
21214 (new-box (cond ((equal arg '(16)) "[-]")
21215 ((equal arg '(4)) (unless first-box "[ ]"))
21216 ((equal first-box "[X]") "[ ]")
21217 (t "[X]"))))
21218 (cond
21219 (arg
21220 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
21221 (org-list-get-all-items
21222 begin struct (org-list-prevs-alist struct))))
21223 ((and first-box (eq (point) begin))
21224 ;; For convenience, when point is at bol on the first
21225 ;; item of the list and no argument is provided, simply
21226 ;; toggle checkbox of that item, if any.
21227 (org-list-set-checkbox begin struct new-box)))
21228 (org-list-write-struct
21229 struct (org-list-parents-alist struct) old-struct)
21230 (org-update-checkbox-count-maybe)
21231 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
21232 ((property-drawer node-property)
21233 (call-interactively 'org-property-action))
21234 ((radio-target target)
21235 (call-interactively 'org-update-radio-target-regexp))
21236 (statistics-cookie
21237 (call-interactively 'org-update-statistics-cookies))
21238 ((table table-cell table-row)
21239 ;; At a table, recalculate every field and align it. Also
21240 ;; send the table if necessary. If the table has
21241 ;; a `table.el' type, just give up. At a table row or
21242 ;; cell, maybe recalculate line but always align table.
21243 (if (eq (org-element-property :type context) 'table.el)
21244 (message "%s" (substitute-command-keys "\\<org-mode-map>\
21245 Use \\[org-edit-special] to edit table.el tables"))
21246 (let ((org-enable-table-editor t))
21247 (if (or (eq type 'table)
21248 ;; Check if point is at a TBLFM line.
21249 (and (eq type 'table-row)
21250 (= (point) (org-element-property :end context))))
21251 (save-excursion
21252 (if (org-at-TBLFM-p)
21253 (progn (require 'org-table)
21254 (org-table-calc-current-TBLFM))
21255 (goto-char (org-element-property :contents-begin context))
21256 (org-call-with-arg 'org-table-recalculate (or arg t))
21257 (orgtbl-send-table 'maybe)))
21258 (org-table-maybe-eval-formula)
21259 (cond (arg (call-interactively 'org-table-recalculate))
21260 ((org-table-maybe-recalculate-line))
21261 (t (org-table-align)))))))
21262 (timestamp (org-timestamp-change 0 'day))
21263 (otherwise
21264 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21265 (user-error
21266 "C-c C-c can do nothing useful at this location")))))))))
21268 (defun org-mode-restart ()
21269 (interactive)
21270 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
21271 (funcall major-mode)
21272 (hack-local-variables)
21273 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
21274 (org-indent-mode -1)))
21275 (message "%s restarted" major-mode))
21277 (defun org-kill-note-or-show-branches ()
21278 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
21279 (interactive)
21280 (if (not org-finish-function)
21281 (progn
21282 (outline-hide-subtree)
21283 (call-interactively 'outline-show-branches))
21284 (let ((org-note-abort t))
21285 (funcall org-finish-function))))
21287 (defun org-delete-indentation (&optional ARG)
21288 "Join current line to previous and fix whitespace at join.
21290 If previous line is a headline add to headline title. Otherwise
21291 the function calls `delete-indentation'.
21293 With argument, join this line to following line."
21294 (interactive "*P")
21295 (if (save-excursion
21296 (if ARG (beginning-of-line)
21297 (forward-line -1))
21298 (looking-at org-complex-heading-regexp))
21299 ;; At headline.
21300 (let ((tags-column (when (match-beginning 5)
21301 (save-excursion (goto-char (match-beginning 5))
21302 (current-column))))
21303 (string (concat " " (progn (when ARG (forward-line 1))
21304 (org-trim (delete-and-extract-region
21305 (line-beginning-position)
21306 (line-end-position)))))))
21307 (unless (bobp) (delete-region (point) (1- (point))))
21308 (goto-char (or (match-end 4)
21309 (match-beginning 5)
21310 (match-end 0)))
21311 (skip-chars-backward " \t")
21312 (save-excursion (insert string))
21313 ;; Adjust alignment of tags.
21314 (when tags-column
21315 (org-align-tags-here (if org-auto-align-tags
21316 org-tags-column
21317 tags-column))))
21318 (delete-indentation ARG)))
21320 (defun org-open-line (n)
21321 "Insert a new row in tables, call `open-line' elsewhere.
21322 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
21323 (interactive "*p")
21324 (cond
21325 ((not org-special-ctrl-o)
21326 (open-line n))
21327 ((org-at-table-p)
21328 (org-table-insert-row))
21330 (open-line n))))
21332 (defun org-return (&optional indent)
21333 "Goto next table row or insert a newline.
21335 Calls `org-table-next-row' or `newline', depending on context.
21337 When optional INDENT argument is non-nil, call
21338 `newline-and-indent' instead of `newline'.
21340 When `org-return-follows-link' is non-nil and point is on
21341 a timestamp or a link, call `org-open-at-point'. However, it
21342 will not happen if point is in a table or on a \"dead\"
21343 object (e.g., within a comment). In these case, you need to use
21344 `org-open-at-point' directly."
21345 (interactive)
21346 (let ((context (if org-return-follows-link (org-element-context)
21347 (org-element-at-point))))
21348 (cond
21349 ;; In a table, call `org-table-next-row'.
21350 ((or (and (eq (org-element-type context) 'table)
21351 (>= (point) (org-element-property :contents-begin context))
21352 (< (point) (org-element-property :contents-end context)))
21353 (org-element-lineage context '(table-row table-cell) t))
21354 (org-table-justify-field-maybe)
21355 (call-interactively #'org-table-next-row))
21356 ;; On a link or a timestamp, call `org-open-line' if
21357 ;; `org-return-follows-link' allows it. Tolerate fuzzy
21358 ;; locations, e.g., in a comment, as `org-open-line'.
21359 ((and org-return-follows-link
21360 (or (org-at-timestamp-p t)
21361 (org-at-date-range-p t)
21362 (org-in-regexp org-any-link-re)))
21363 (call-interactively #'org-open-at-point))
21364 ;; Insert newline in heading, but preserve tags.
21365 ((and (not (bolp))
21366 (save-excursion (beginning-of-line)
21367 (looking-at org-complex-heading-regexp)))
21368 ;; At headline. Split line. However, if point is on keyword,
21369 ;; priority cookie or tags, do not break any of them: add
21370 ;; a newline after the headline instead.
21371 (let ((tags-column (and (match-beginning 5)
21372 (save-excursion (goto-char (match-beginning 5))
21373 (current-column))))
21374 (string
21375 (when (and (match-end 4)
21376 (>= (point)
21377 (or (match-end 3) (match-end 2) (1+ (match-end 1))))
21378 (<= (point) (match-end 4)))
21379 (delete-and-extract-region (point) (match-end 4)))))
21380 (when (and tags-column string) ; Adjust tag alignment.
21381 (org-align-tags-here
21382 (if org-auto-align-tags org-tags-column tags-column)))
21383 (end-of-line)
21384 (org-show-entry)
21385 (if indent (newline-and-indent) (newline))
21386 (when string (save-excursion (insert (org-trim string))))))
21387 ;; In a list, make sure indenting keeps trailing text within.
21388 ((and indent
21389 (not (eolp))
21390 (org-element-lineage context '(item)))
21391 (let ((trailing-data
21392 (delete-and-extract-region (point) (line-end-position))))
21393 (newline-and-indent)
21394 (save-excursion (insert trailing-data))))
21395 (t (if indent (newline-and-indent) (newline))))))
21397 (defun org-return-indent ()
21398 "Goto next table row or insert a newline and indent.
21399 Calls `org-table-next-row' or `newline-and-indent', depending on
21400 context. See the individual commands for more information."
21401 (interactive)
21402 (org-return t))
21404 (defun org-ctrl-c-star ()
21405 "Compute table, or change heading status of lines.
21406 Calls `org-table-recalculate' or `org-toggle-heading',
21407 depending on context."
21408 (interactive)
21409 (cond
21410 ((org-at-table-p)
21411 (call-interactively 'org-table-recalculate))
21413 ;; Convert all lines in region to list items
21414 (call-interactively 'org-toggle-heading))))
21416 (defun org-ctrl-c-minus ()
21417 "Insert separator line in table or modify bullet status of line.
21418 Also turns a plain line or a region of lines into list items.
21419 Calls `org-table-insert-hline', `org-toggle-item', or
21420 `org-cycle-list-bullet', depending on context."
21421 (interactive)
21422 (cond
21423 ((org-at-table-p)
21424 (call-interactively 'org-table-insert-hline))
21425 ((org-region-active-p)
21426 (call-interactively 'org-toggle-item))
21427 ((org-in-item-p)
21428 (call-interactively 'org-cycle-list-bullet))
21430 (call-interactively 'org-toggle-item))))
21432 (defun org-toggle-item (arg)
21433 "Convert headings or normal lines to items, items to normal lines.
21434 If there is no active region, only the current line is considered.
21436 If the first non blank line in the region is a headline, convert
21437 all headlines to items, shifting text accordingly.
21439 If it is an item, convert all items to normal lines.
21441 If it is normal text, change region into a list of items.
21442 With a prefix argument ARG, change the region in a single item."
21443 (interactive "P")
21444 (let ((shift-text
21445 (function
21446 ;; Shift text in current section to IND, from point to END.
21447 ;; The function leaves point to END line.
21448 (lambda (ind end)
21449 (let ((min-i 1000) (end (copy-marker end)))
21450 ;; First determine the minimum indentation (MIN-I) of
21451 ;; the text.
21452 (save-excursion
21453 (catch 'exit
21454 (while (< (point) end)
21455 (let ((i (org-get-indentation)))
21456 (cond
21457 ;; Skip blank lines and inline tasks.
21458 ((looking-at "^[ \t]*$"))
21459 ((looking-at org-outline-regexp-bol))
21460 ;; We can't find less than 0 indentation.
21461 ((zerop i) (throw 'exit (setq min-i 0)))
21462 ((< i min-i) (setq min-i i))))
21463 (forward-line))))
21464 ;; Then indent each line so that a line indented to
21465 ;; MIN-I becomes indented to IND. Ignore blank lines
21466 ;; and inline tasks in the process.
21467 (let ((delta (- ind min-i)))
21468 (while (< (point) end)
21469 (unless (or (looking-at "^[ \t]*$")
21470 (looking-at org-outline-regexp-bol))
21471 (org-indent-line-to (+ (org-get-indentation) delta)))
21472 (forward-line)))))))
21473 (skip-blanks
21474 (function
21475 ;; Return beginning of first non-blank line, starting from
21476 ;; line at POS.
21477 (lambda (pos)
21478 (save-excursion
21479 (goto-char pos)
21480 (skip-chars-forward " \r\t\n")
21481 (point-at-bol)))))
21482 beg end)
21483 ;; Determine boundaries of changes.
21484 (if (org-region-active-p)
21485 (setq beg (funcall skip-blanks (region-beginning))
21486 end (copy-marker (region-end)))
21487 (setq beg (funcall skip-blanks (point-at-bol))
21488 end (copy-marker (point-at-eol))))
21489 ;; Depending on the starting line, choose an action on the text
21490 ;; between BEG and END.
21491 (org-with-limited-levels
21492 (save-excursion
21493 (goto-char beg)
21494 (cond
21495 ;; Case 1. Start at an item: de-itemize. Note that it only
21496 ;; happens when a region is active: `org-ctrl-c-minus'
21497 ;; would call `org-cycle-list-bullet' otherwise.
21498 ((org-at-item-p)
21499 (while (< (point) end)
21500 (when (org-at-item-p)
21501 (skip-chars-forward " \t")
21502 (delete-region (point) (match-end 0)))
21503 (forward-line)))
21504 ;; Case 2. Start at an heading: convert to items.
21505 ((org-at-heading-p)
21506 (let* ((bul (org-list-bullet-string "-"))
21507 (bul-len (length bul))
21508 (done (org-entry-is-done-p))
21509 (todo (org-entry-is-todo-p))
21510 ;; Indentation of the first heading. It should be
21511 ;; relative to the indentation of its parent, if any.
21512 (start-ind (save-excursion
21513 (cond
21514 ((not org-adapt-indentation) 0)
21515 ((not (outline-previous-heading)) 0)
21516 (t (length (match-string 0))))))
21517 ;; Level of first heading. Further headings will be
21518 ;; compared to it to determine hierarchy in the list.
21519 (ref-level (org-reduced-level (org-outline-level))))
21520 (when (or done todo) (org-todo ""))
21521 (while (< (point) end)
21522 (let* ((level (org-reduced-level (org-outline-level)))
21523 (delta (max 0 (- level ref-level))))
21524 ;; If current headline is less indented than the first
21525 ;; one, set it as reference, in order to preserve
21526 ;; subtrees.
21527 (when (< level ref-level) (setq ref-level level))
21528 (replace-match bul t t)
21529 (org-indent-line-to (+ start-ind (* delta bul-len)))
21530 (when (or done todo)
21531 (let* ((struct (org-list-struct))
21532 (old (copy-tree struct)))
21533 (org-list-set-checkbox (line-beginning-position)
21534 struct
21535 (if done "[X]" "[ ]"))
21536 (org-list-write-struct struct
21537 (org-list-parents-alist struct)
21538 old)))
21539 ;; Ensure all text down to END (or SECTION-END) belongs
21540 ;; to the newly created item.
21541 (let ((section-end (save-excursion
21542 (or (outline-next-heading) (point)))))
21543 (forward-line)
21544 (funcall shift-text
21545 (+ start-ind (* (1+ delta) bul-len))
21546 (min end section-end)))))))
21547 ;; Case 3. Normal line with ARG: make the first line of region
21548 ;; an item, and shift indentation of others lines to
21549 ;; set them as item's body.
21550 (arg (let* ((bul (org-list-bullet-string "-"))
21551 (bul-len (length bul))
21552 (ref-ind (org-get-indentation)))
21553 (skip-chars-forward " \t")
21554 (insert bul)
21555 (forward-line)
21556 (while (< (point) end)
21557 ;; Ensure that lines less indented than first one
21558 ;; still get included in item body.
21559 (funcall shift-text
21560 (+ ref-ind bul-len)
21561 (min end (save-excursion (or (outline-next-heading)
21562 (point)))))
21563 (forward-line))))
21564 ;; Case 4. Normal line without ARG: turn each non-item line
21565 ;; into an item.
21567 (while (< (point) end)
21568 (unless (or (org-at-heading-p) (org-at-item-p))
21569 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21570 (replace-match
21571 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21572 (forward-line))))))))
21574 (defun org-toggle-heading (&optional nstars)
21575 "Convert headings to normal text, or items or text to headings.
21576 If there is no active region, only convert the current line.
21578 With a \\[universal-argument] prefix, convert the whole list at
21579 point into heading.
21581 In a region:
21583 - If the first non blank line is a headline, remove the stars
21584 from all headlines in the region.
21586 - If it is a normal line, turn each and every normal line (i.e.,
21587 not an heading or an item) in the region into headings. If you
21588 want to convert only the first line of this region, use one
21589 universal prefix argument.
21591 - If it is a plain list item, turn all plain list items into headings.
21593 When converting a line into a heading, the number of stars is chosen
21594 such that the lines become children of the current entry. However,
21595 when a numeric prefix argument is given, its value determines the
21596 number of stars to add."
21597 (interactive "P")
21598 (let ((skip-blanks
21599 (function
21600 ;; Return beginning of first non-blank line, starting from
21601 ;; line at POS.
21602 (lambda (pos)
21603 (save-excursion
21604 (goto-char pos)
21605 (while (org-at-comment-p) (forward-line))
21606 (skip-chars-forward " \r\t\n")
21607 (point-at-bol)))))
21608 beg end toggled)
21609 ;; Determine boundaries of changes. If a universal prefix has
21610 ;; been given, put the list in a region. If region ends at a bol,
21611 ;; do not consider the last line to be in the region.
21613 (when (and current-prefix-arg (org-at-item-p))
21614 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21615 (org-mark-element))
21617 (if (org-region-active-p)
21618 (setq beg (funcall skip-blanks (region-beginning))
21619 end (copy-marker (save-excursion
21620 (goto-char (region-end))
21621 (if (bolp) (point) (point-at-eol)))))
21622 (setq beg (funcall skip-blanks (point-at-bol))
21623 end (copy-marker (point-at-eol))))
21624 ;; Ensure inline tasks don't count as headings.
21625 (org-with-limited-levels
21626 (save-excursion
21627 (goto-char beg)
21628 (cond
21629 ;; Case 1. Started at an heading: de-star headings.
21630 ((org-at-heading-p)
21631 (while (< (point) end)
21632 (when (org-at-heading-p t)
21633 (looking-at org-outline-regexp) (replace-match "")
21634 (setq toggled t))
21635 (forward-line)))
21636 ;; Case 2. Started at an item: change items into headlines.
21637 ;; One star will be added by `org-list-to-subtree'.
21638 ((org-at-item-p)
21639 (while (< (point) end)
21640 (when (org-at-item-p)
21641 ;; Pay attention to cases when region ends before list.
21642 (let* ((struct (org-list-struct))
21643 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21644 (save-restriction
21645 (narrow-to-region (point) list-end)
21646 (insert (org-list-to-subtree (org-list-parse-list t)))))
21647 (setq toggled t))
21648 (forward-line)))
21649 ;; Case 3. Started at normal text: make every line an heading,
21650 ;; skipping headlines and items.
21651 (t (let* ((stars
21652 (make-string
21653 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21654 (add-stars
21655 (cond (nstars "") ; stars from prefix only
21656 ((equal stars "") "*") ; before first heading
21657 (org-odd-levels-only "**") ; inside heading, odd
21658 (t "*"))) ; inside heading, oddeven
21659 (rpl (concat stars add-stars " "))
21660 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21661 (while (< (point) (if (equal nstars '(4)) lend end))
21662 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21663 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21664 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21665 (forward-line)))))))
21666 (unless toggled (message "Cannot toggle heading from here"))))
21668 (defun org-meta-return (&optional _arg)
21669 "Insert a new heading or wrap a region in a table.
21670 Calls `org-insert-heading' or `org-table-wrap-region', depending
21671 on context. See the individual commands for more information."
21672 (interactive)
21673 (org-check-before-invisible-edit 'insert)
21674 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21675 (call-interactively (if (org-at-table-p) #'org-table-wrap-region
21676 #'org-insert-heading))))
21678 ;;; Menu entries
21680 (defsubst org-in-subtree-not-table-p ()
21681 "Are we in a subtree and not in a table?"
21682 (and (not (org-before-first-heading-p))
21683 (not (org-at-table-p))))
21685 ;; Define the Org-mode menus
21686 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21687 '("Tbl"
21688 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21689 ["Next Field" org-cycle (org-at-table-p)]
21690 ["Previous Field" org-shifttab (org-at-table-p)]
21691 ["Next Row" org-return (org-at-table-p)]
21692 "--"
21693 ["Blank Field" org-table-blank-field (org-at-table-p)]
21694 ["Edit Field" org-table-edit-field (org-at-table-p)]
21695 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21696 "--"
21697 ("Column"
21698 ["Move Column Left" org-metaleft (org-at-table-p)]
21699 ["Move Column Right" org-metaright (org-at-table-p)]
21700 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21701 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21702 ("Row"
21703 ["Move Row Up" org-metaup (org-at-table-p)]
21704 ["Move Row Down" org-metadown (org-at-table-p)]
21705 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21706 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21707 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21708 "--"
21709 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21710 ("Rectangle"
21711 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21712 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21713 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21714 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21715 "--"
21716 ("Calculate"
21717 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21718 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21719 ["Edit Formulas" org-edit-special (org-at-table-p)]
21720 "--"
21721 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21722 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21723 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21724 "--"
21725 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21726 "--"
21727 ["Sum Column/Rectangle" org-table-sum
21728 (or (org-at-table-p) (org-region-active-p))]
21729 ["Which Column?" org-table-current-column (org-at-table-p)])
21730 ["Debug Formulas"
21731 org-table-toggle-formula-debugger
21732 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21733 ["Show Col/Row Numbers"
21734 org-table-toggle-coordinate-overlays
21735 :style toggle
21736 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21737 "--"
21738 ["Create" org-table-create (and (not (org-at-table-p))
21739 org-enable-table-editor)]
21740 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21741 ["Import from File" org-table-import (not (org-at-table-p))]
21742 ["Export to File" org-table-export (org-at-table-p)]
21743 "--"
21744 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21745 "--"
21746 ("Plot"
21747 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21748 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21750 (easy-menu-define org-org-menu org-mode-map "Org menu"
21751 '("Org"
21752 ("Show/Hide"
21753 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21754 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21755 ["Sparse Tree..." org-sparse-tree t]
21756 ["Reveal Context" org-reveal t]
21757 ["Show All" outline-show-all t]
21758 "--"
21759 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21760 "--"
21761 ["New Heading" org-insert-heading t]
21762 ("Navigate Headings"
21763 ["Up" outline-up-heading t]
21764 ["Next" outline-next-visible-heading t]
21765 ["Previous" outline-previous-visible-heading t]
21766 ["Next Same Level" outline-forward-same-level t]
21767 ["Previous Same Level" outline-backward-same-level t]
21768 "--"
21769 ["Jump" org-goto t])
21770 ("Edit Structure"
21771 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21772 "--"
21773 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21774 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21775 "--"
21776 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21777 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21778 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21779 "--"
21780 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21781 "--"
21782 ["Copy visible text" org-copy-visible t]
21783 "--"
21784 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21785 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21786 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21787 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21788 "--"
21789 ["Sort Region/Children" org-sort t]
21790 "--"
21791 ["Convert to odd levels" org-convert-to-odd-levels t]
21792 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21793 ("Editing"
21794 ["Emphasis..." org-emphasize t]
21795 ["Edit Source Example" org-edit-special t]
21796 "--"
21797 ["Footnote new/jump" org-footnote-action t]
21798 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21799 ("Archive"
21800 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21801 "--"
21802 ["Move Subtree to Archive file" org-archive-subtree (org-in-subtree-not-table-p)]
21803 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21804 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21806 "--"
21807 ("Hyperlinks"
21808 ["Store Link (Global)" org-store-link t]
21809 ["Find existing link to here" org-occur-link-in-agenda-files t]
21810 ["Insert Link" org-insert-link t]
21811 ["Follow Link" org-open-at-point t]
21812 "--"
21813 ["Next link" org-next-link t]
21814 ["Previous link" org-previous-link t]
21815 "--"
21816 ["Descriptive Links"
21817 org-toggle-link-display
21818 :style radio
21819 :selected org-descriptive-links
21821 ["Literal Links"
21822 org-toggle-link-display
21823 :style radio
21824 :selected (not org-descriptive-links)])
21825 "--"
21826 ("TODO Lists"
21827 ["TODO/DONE/-" org-todo t]
21828 ("Select keyword"
21829 ["Next keyword" org-shiftright (org-at-heading-p)]
21830 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21831 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21832 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21833 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21834 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21835 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21836 "--"
21837 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21838 :selected org-enforce-todo-dependencies :style toggle :active t]
21839 "Settings for tree at point"
21840 ["Do Children sequentially" org-toggle-ordered-property :style radio
21841 :selected (org-entry-get nil "ORDERED")
21842 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21843 ["Do Children parallel" org-toggle-ordered-property :style radio
21844 :selected (not (org-entry-get nil "ORDERED"))
21845 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21846 "--"
21847 ["Set Priority" org-priority t]
21848 ["Priority Up" org-shiftup t]
21849 ["Priority Down" org-shiftdown t]
21850 "--"
21851 ["Get news from all feeds" org-feed-update-all t]
21852 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21853 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21854 ("TAGS and Properties"
21855 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21856 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21857 "--"
21858 ["Set property" org-set-property (not (org-before-first-heading-p))]
21859 ["Column view of properties" org-columns t]
21860 ["Insert Column View DBlock" org-insert-columns-dblock t])
21861 ("Dates and Scheduling"
21862 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21863 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21864 ("Change Date"
21865 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21866 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21867 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21868 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21869 ["Compute Time Range" org-evaluate-time-range t]
21870 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21871 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21872 "--"
21873 ["Custom time format" org-toggle-time-stamp-overlays
21874 :style radio :selected org-display-custom-times]
21875 "--"
21876 ["Goto Calendar" org-goto-calendar t]
21877 ["Date from Calendar" org-date-from-calendar t]
21878 "--"
21879 ["Start/Restart Timer" org-timer-start t]
21880 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21881 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21882 ["Insert Timer String" org-timer t]
21883 ["Insert Timer Item" org-timer-item t])
21884 ("Logging work"
21885 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21886 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21887 ["Clock out" org-clock-out t]
21888 ["Clock cancel" org-clock-cancel t]
21889 "--"
21890 ["Mark as default task" org-clock-mark-default-task t]
21891 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21892 ["Goto running clock" org-clock-goto t]
21893 "--"
21894 ["Display times" org-clock-display t]
21895 ["Create clock table" org-clock-report t]
21896 "--"
21897 ["Record DONE time"
21898 (progn (setq org-log-done (not org-log-done))
21899 (message "Switching to %s will %s record a timestamp"
21900 (car org-done-keywords)
21901 (if org-log-done "automatically" "not")))
21902 :style toggle :selected org-log-done])
21903 "--"
21904 ["Agenda Command..." org-agenda t]
21905 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21906 ("File List for Agenda")
21907 ("Special views current file"
21908 ["TODO Tree" org-show-todo-tree t]
21909 ["Check Deadlines" org-check-deadlines t]
21910 ["Timeline" org-timeline t]
21911 ["Tags/Property tree" org-match-sparse-tree t])
21912 "--"
21913 ["Export/Publish..." org-export-dispatch t]
21914 ("LaTeX"
21915 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21916 :selected org-cdlatex-mode]
21917 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21918 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21919 ["Modify math symbol" org-cdlatex-math-modify
21920 (org-inside-LaTeX-fragment-p)]
21921 ["Insert citation" org-reftex-citation t]
21922 "--"
21923 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21924 "--"
21925 ("MobileOrg"
21926 ["Push Files and Views" org-mobile-push t]
21927 ["Get Captured and Flagged" org-mobile-pull t]
21928 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21929 "--"
21930 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21931 "--"
21932 ("Documentation"
21933 ["Show Version" org-version t]
21934 ["Info Documentation" org-info t])
21935 ("Customize"
21936 ["Browse Org Group" org-customize t]
21937 "--"
21938 ["Expand This Menu" org-create-customize-menu
21939 (fboundp 'customize-menu-create)])
21940 ["Send bug report" org-submit-bug-report t]
21941 "--"
21942 ("Refresh/Reload"
21943 ["Refresh setup current buffer" org-mode-restart t]
21944 ["Reload Org (after update)" org-reload t]
21945 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21948 (defun org-info (&optional node)
21949 "Read documentation for Org-mode in the info system.
21950 With optional NODE, go directly to that node."
21951 (interactive)
21952 (info (format "(org)%s" (or node ""))))
21954 ;;;###autoload
21955 (defun org-submit-bug-report ()
21956 "Submit a bug report on Org-mode via mail.
21958 Don't hesitate to report any problems or inaccurate documentation.
21960 If you don't have setup sending mail from (X)Emacs, please copy the
21961 output buffer into your mail program, as it gives us important
21962 information about your Org-mode version and configuration."
21963 (interactive)
21964 (require 'reporter)
21965 (defvar reporter-prompt-for-summary-p)
21966 (org-load-modules-maybe)
21967 (org-require-autoloaded-modules)
21968 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21969 (reporter-submit-bug-report
21970 "emacs-orgmode@gnu.org"
21971 (org-version nil 'full)
21972 (let (list)
21973 (save-window-excursion
21974 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21975 (delete-other-windows)
21976 (erase-buffer)
21977 (insert "You are about to submit a bug report to the Org-mode mailing list.
21979 We would like to add your full Org-mode and Outline configuration to the
21980 bug report. This greatly simplifies the work of the maintainer and
21981 other experts on the mailing list.
21983 HOWEVER, some variables you have customized may contain private
21984 information. The names of customers, colleagues, or friends, might
21985 appear in the form of file names, tags, todo states, or search strings.
21986 If you answer yes to the prompt, you might want to check and remove
21987 such private information before sending the email.")
21988 (add-text-properties (point-min) (point-max) '(face org-warning))
21989 (when (yes-or-no-p "Include your Org-mode configuration ")
21990 (mapatoms
21991 (lambda (v)
21992 (and (boundp v)
21993 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21994 (or (and (symbol-value v)
21995 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21996 (and
21997 (get v 'custom-type) (get v 'standard-value)
21998 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21999 (push v list)))))
22000 (kill-buffer (get-buffer "*Warn about privacy*"))
22001 list))
22002 nil nil
22003 "Remember to cover the basics, that is, what you expected to happen and
22004 what in fact did happen. You don't know how to make a good report? See
22006 http://orgmode.org/manual/Feedback.html#Feedback
22008 Your bug report will be posted to the Org-mode mailing list.
22009 ------------------------------------------------------------------------")
22010 (save-excursion
22011 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
22012 (replace-match "\\1Bug: \\3 [\\2]")))))
22015 (defun org-install-agenda-files-menu ()
22016 (let ((bl (buffer-list)))
22017 (save-excursion
22018 (while bl
22019 (set-buffer (pop bl))
22020 (if (derived-mode-p 'org-mode) (setq bl nil)))
22021 (when (derived-mode-p 'org-mode)
22022 (easy-menu-change
22023 '("Org") "File List for Agenda"
22024 (append
22025 (list
22026 ["Edit File List" (org-edit-agenda-file-list) t]
22027 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
22028 ["Remove Current File from List" org-remove-file t]
22029 ["Cycle through agenda files" org-cycle-agenda-files t]
22030 ["Occur in all agenda files" org-occur-in-agenda-files t]
22031 "--")
22032 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
22034 ;;;; Documentation
22036 (defun org-require-autoloaded-modules ()
22037 (interactive)
22038 (mapc 'require
22039 '(org-agenda org-archive org-attach org-clock org-colview org-id
22040 org-table org-timer)))
22042 ;;;###autoload
22043 (defun org-reload (&optional uncompiled)
22044 "Reload all org lisp files.
22045 With prefix arg UNCOMPILED, load the uncompiled versions."
22046 (interactive "P")
22047 (require 'loadhist)
22048 (let* ((org-dir (org-find-library-dir "org"))
22049 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
22050 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
22051 (remove-re (mapconcat 'identity
22052 (mapcar (lambda (f) (concat "^" f "$"))
22053 (list (if (featurep 'xemacs)
22054 "org-colview"
22055 "org-colview-xemacs")
22056 "org" "org-loaddefs" "org-version"))
22057 "\\|"))
22058 (feats (delete-dups
22059 (mapcar 'file-name-sans-extension
22060 (mapcar 'file-name-nondirectory
22061 (delq nil
22062 (mapcar 'feature-file
22063 features))))))
22064 (lfeat (append
22065 (sort
22066 (setq feats
22067 (delq nil (mapcar
22068 (lambda (f)
22069 (if (and (string-match feature-re f)
22070 (not (string-match remove-re f)))
22071 f nil))
22072 feats)))
22073 'string-lessp)
22074 (list "org-version" "org")))
22075 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
22076 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
22077 load-uncore load-misses)
22078 (setq load-misses
22079 (delq 't
22080 (mapcar (lambda (f)
22081 (or (org-load-noerror-mustsuffix (concat org-dir f))
22082 (and (string= org-dir contrib-dir)
22083 (org-load-noerror-mustsuffix (concat contrib-dir f)))
22084 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
22085 (add-to-list 'load-uncore f 'append)
22088 lfeat)))
22089 (if load-uncore
22090 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
22091 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
22092 (if load-misses
22093 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
22094 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
22095 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
22097 ;;;###autoload
22098 (defun org-customize ()
22099 "Call the customize function with org as argument."
22100 (interactive)
22101 (org-load-modules-maybe)
22102 (org-require-autoloaded-modules)
22103 (customize-browse 'org))
22105 (defun org-create-customize-menu ()
22106 "Create a full customization menu for Org-mode, insert it into the menu."
22107 (interactive)
22108 (org-load-modules-maybe)
22109 (org-require-autoloaded-modules)
22110 (if (fboundp 'customize-menu-create)
22111 (progn
22112 (easy-menu-change
22113 '("Org") "Customize"
22114 `(["Browse Org group" org-customize t]
22115 "--"
22116 ,(customize-menu-create 'org)
22117 ["Set" Custom-set t]
22118 ["Save" Custom-save t]
22119 ["Reset to Current" Custom-reset-current t]
22120 ["Reset to Saved" Custom-reset-saved t]
22121 ["Reset to Standard Settings" Custom-reset-standard t]))
22122 (message "\"Org\"-menu now contains full customization menu"))
22123 (error "Cannot expand menu (outdated version of cus-edit.el)")))
22125 ;;;; Miscellaneous stuff
22127 ;;; Generally useful functions
22129 (defsubst org-get-at-eol (property n)
22130 "Get text property PROPERTY at the end of line less N characters."
22131 (get-text-property (- (point-at-eol) n) property))
22133 (defun org-find-text-property-in-string (prop s)
22134 "Return the first non-nil value of property PROP in string S."
22135 (or (get-text-property 0 prop s)
22136 (get-text-property (or (next-single-property-change 0 prop s) 0)
22137 prop s)))
22139 (defun org-display-warning (message) ;; Copied from Emacs-Muse
22140 "Display the given MESSAGE as a warning."
22141 (if (fboundp 'display-warning)
22142 (display-warning 'org message
22143 (if (featurep 'xemacs) 'warning :warning))
22144 (let ((buf (get-buffer-create "*Org warnings*")))
22145 (with-current-buffer buf
22146 (goto-char (point-max))
22147 (insert "Warning (Org): " message)
22148 (unless (bolp)
22149 (newline)))
22150 (display-buffer buf)
22151 (sit-for 0))))
22153 (defun org-eval (form)
22154 "Eval FORM and return result."
22155 (condition-case error
22156 (eval form)
22157 (error (format "%%![Error: %s]" error))))
22159 (defun org-in-clocktable-p ()
22160 "Check if the cursor is in a clocktable."
22161 (let ((pos (point)) start)
22162 (save-excursion
22163 (end-of-line 1)
22164 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
22165 (setq start (match-beginning 0))
22166 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
22167 (>= (match-end 0) pos)
22168 start))))
22170 (defun org-in-verbatim-emphasis ()
22171 (save-match-data
22172 (and (org-in-regexp org-emph-re 2)
22173 (>= (point) (match-beginning 3))
22174 (<= (point) (match-end 4))
22175 (member (match-string 3) '("=" "~")))))
22177 (defun org-goto-marker-or-bmk (marker &optional bookmark)
22178 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
22179 (if (and marker (marker-buffer marker)
22180 (buffer-live-p (marker-buffer marker)))
22181 (progn
22182 (org-pop-to-buffer-same-window (marker-buffer marker))
22183 (if (or (> marker (point-max)) (< marker (point-min)))
22184 (widen))
22185 (goto-char marker)
22186 (org-show-context 'org-goto))
22187 (if bookmark
22188 (bookmark-jump bookmark)
22189 (error "Cannot find location"))))
22191 (defun org-quote-csv-field (s)
22192 "Quote field for inclusion in CSV material."
22193 (if (string-match "[\",]" s)
22194 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
22197 (defun org-force-self-insert (N)
22198 "Needed to enforce self-insert under remapping."
22199 (interactive "p")
22200 (self-insert-command N))
22202 (defun org-string-width (s)
22203 "Compute width of string, ignoring invisible characters.
22204 This ignores character with invisibility property `org-link', and also
22205 characters with property `org-cwidth', because these will become invisible
22206 upon the next fontification round."
22207 (let (b l)
22208 (when (or (eq t buffer-invisibility-spec)
22209 (assq 'org-link buffer-invisibility-spec))
22210 (while (setq b (text-property-any 0 (length s)
22211 'invisible 'org-link s))
22212 (setq s (concat (substring s 0 b)
22213 (substring s (or (next-single-property-change
22214 b 'invisible s)
22215 (length s)))))))
22216 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
22217 (setq s (concat (substring s 0 b)
22218 (substring s (or (next-single-property-change
22219 b 'org-cwidth s)
22220 (length s))))))
22221 (setq l (string-width s) b -1)
22222 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
22223 (setq l (- l (get-text-property b 'org-dwidth-n s))))
22226 (defun org-shorten-string (s maxlength)
22227 "Shorten string S so tht it is no longer than MAXLENGTH characters.
22228 If the string is shorter or has length MAXLENGTH, just return the
22229 original string. If it is longer, the functions finds a space in the
22230 string, breaks this string off at that locations and adds three dots
22231 as ellipsis. Including the ellipsis, the string will not be longer
22232 than MAXLENGTH. If finding a good breaking point in the string does
22233 not work, the string is just chopped off in the middle of a word
22234 if necessary."
22235 (if (<= (length s) maxlength)
22237 (let* ((n (max (- maxlength 4) 1))
22238 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
22239 (if (string-match re s)
22240 (concat (match-string 1 s) "...")
22241 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
22243 (defun org-get-indentation (&optional line)
22244 "Get the indentation of the current line, interpreting tabs.
22245 When LINE is given, assume it represents a line and compute its indentation."
22246 (if line
22247 (if (string-match "^ *" (org-remove-tabs line))
22248 (match-end 0))
22249 (save-excursion
22250 (beginning-of-line 1)
22251 (skip-chars-forward " \t")
22252 (current-column))))
22254 (defun org-get-string-indentation (s)
22255 "What indentation has S due to SPACE and TAB at the beginning of the string?"
22256 (let ((n -1) (i 0) (w tab-width) c)
22257 (catch 'exit
22258 (while (< (setq n (1+ n)) (length s))
22259 (setq c (aref s n))
22260 (cond ((= c ?\ ) (setq i (1+ i)))
22261 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
22262 (t (throw 'exit t)))))
22265 (defun org-remove-tabs (s &optional width)
22266 "Replace tabulators in S with spaces.
22267 Assumes that s is a single line, starting in column 0."
22268 (setq width (or width tab-width))
22269 (while (string-match "\t" s)
22270 (setq s (replace-match
22271 (make-string
22272 (- (* width (/ (+ (match-beginning 0) width) width))
22273 (match-beginning 0)) ?\ )
22274 t t s)))
22277 (defun org-fix-indentation (line ind)
22278 "Fix indentation in LINE.
22279 IND is a cons cell with target and minimum indentation.
22280 If the current indentation in LINE is smaller than the minimum,
22281 leave it alone. If it is larger than ind, set it to the target."
22282 (let* ((l (org-remove-tabs line))
22283 (i (org-get-indentation l))
22284 (i1 (car ind)) (i2 (cdr ind)))
22285 (if (>= i i2) (setq l (substring line i2)))
22286 (if (> i1 0)
22287 (concat (make-string i1 ?\ ) l)
22288 l)))
22290 (defun org-remove-indentation (code &optional n)
22291 "Remove the maximum common indentation from the lines in CODE.
22292 N may optionally be the number of spaces to remove."
22293 (with-temp-buffer
22294 (insert code)
22295 (org-do-remove-indentation n)
22296 (buffer-string)))
22298 (defun org-do-remove-indentation (&optional n)
22299 "Remove the maximum common indentation from the buffer."
22300 (untabify (point-min) (point-max))
22301 (let ((min 10000) re)
22302 (if n
22303 (setq min n)
22304 (goto-char (point-min))
22305 (while (re-search-forward "^ *[^ \n]" nil t)
22306 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
22307 (unless (or (= min 0) (= min 10000))
22308 (setq re (format "^ \\{%d\\}" min))
22309 (goto-char (point-min))
22310 (while (re-search-forward re nil t)
22311 (replace-match "")
22312 (end-of-line 1))
22313 min)))
22315 (defun org-fill-template (template alist)
22316 "Find each %key of ALIST in TEMPLATE and replace it."
22317 (let ((case-fold-search nil))
22318 (dolist (entry (sort (copy-sequence alist)
22319 (lambda (a b) (< (length (car a)) (length (car b))))))
22320 (setq template
22321 (replace-regexp-in-string
22322 (concat "%" (regexp-quote (car entry)))
22323 (or (cdr entry) "") template t t)))
22324 template))
22326 (defun org-base-buffer (buffer)
22327 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
22328 (if (not buffer)
22329 buffer
22330 (or (buffer-base-buffer buffer)
22331 buffer)))
22333 (defun org-wrap (string &optional width lines)
22334 "Wrap string to either a number of lines, or a width in characters.
22335 If WIDTH is non-nil, the string is wrapped to that width, however many lines
22336 that costs. If there is a word longer than WIDTH, the text is actually
22337 wrapped to the length of that word.
22338 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
22339 many lines, whatever width that takes.
22340 The return value is a list of lines, without newlines at the end."
22341 (let* ((words (org-split-string string "[ \t\n]+"))
22342 (maxword (apply 'max (mapcar 'org-string-width words)))
22343 w ll)
22344 (cond (width
22345 (org-do-wrap words (max maxword width)))
22346 (lines
22347 (setq w maxword)
22348 (setq ll (org-do-wrap words maxword))
22349 (if (<= (length ll) lines)
22351 (setq ll words)
22352 (while (> (length ll) lines)
22353 (setq w (1+ w))
22354 (setq ll (org-do-wrap words w)))
22355 ll))
22356 (t (error "Cannot wrap this")))))
22358 (defun org-do-wrap (words width)
22359 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
22360 (let (lines line)
22361 (while words
22362 (setq line (pop words))
22363 (while (and words (< (+ (length line) (length (car words))) width))
22364 (setq line (concat line " " (pop words))))
22365 (setq lines (push line lines)))
22366 (nreverse lines)))
22368 (defun org-split-string (string &optional separators)
22369 "Splits STRING into substrings at SEPARATORS.
22370 SEPARATORS is a regular expression.
22371 No empty strings are returned if there are matches at the beginning
22372 and end of string."
22373 ;; FIXME: why not use (split-string STRING SEPARATORS t)?
22374 (let ((start 0) notfirst list)
22375 (while (and (string-match (or separators "[ \f\t\n\r\v]+") string
22376 (if (and notfirst
22377 (= start (match-beginning 0))
22378 (< start (length string)))
22379 (1+ start) start))
22380 (< (match-beginning 0) (length string)))
22381 (setq notfirst t)
22382 (or (eq (match-beginning 0) 0)
22383 (and (eq (match-beginning 0) (match-end 0))
22384 (eq (match-beginning 0) start))
22385 (push (substring string start (match-beginning 0)) list))
22386 (setq start (match-end 0)))
22387 (or (eq start (length string))
22388 (push (substring string start) list))
22389 (nreverse list)))
22391 (defun org-quote-vert (s)
22392 "Replace \"|\" with \"\\vert\"."
22393 (while (string-match "|" s)
22394 (setq s (replace-match "\\vert" t t s)))
22397 (defun org-uuidgen-p (s)
22398 "Is S an ID created by UUIDGEN?"
22399 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22401 (defun org-in-src-block-p (&optional inside)
22402 "Whether point is in a code source block.
22403 When INSIDE is non-nil, don't consider we are within a src block
22404 when point is at #+BEGIN_SRC or #+END_SRC."
22405 (let ((case-fold-search t) ov)
22406 (or (and (eq (get-char-property (point) 'src-block) t))
22407 (and (not inside)
22408 (save-match-data
22409 (save-excursion
22410 (beginning-of-line)
22411 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22413 (defun org-context ()
22414 "Return a list of contexts of the current cursor position.
22415 If several contexts apply, all are returned.
22416 Each context entry is a list with a symbol naming the context, and
22417 two positions indicating start and end of the context. Possible
22418 contexts are:
22420 :headline anywhere in a headline
22421 :headline-stars on the leading stars in a headline
22422 :todo-keyword on a TODO keyword (including DONE) in a headline
22423 :tags on the TAGS in a headline
22424 :priority on the priority cookie in a headline
22425 :item on the first line of a plain list item
22426 :item-bullet on the bullet/number of a plain list item
22427 :checkbox on the checkbox in a plain list item
22428 :table in an org-mode table
22429 :table-special on a special filed in a table
22430 :table-table in a table.el table
22431 :clocktable in a clocktable
22432 :src-block in a source block
22433 :link on a hyperlink
22434 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22435 :target on a <<target>>
22436 :radio-target on a <<<radio-target>>>
22437 :latex-fragment on a LaTeX fragment
22438 :latex-preview on a LaTeX fragment with overlaid preview image
22440 This function expects the position to be visible because it uses font-lock
22441 faces as a help to recognize the following contexts: :table-special, :link,
22442 and :keyword."
22443 (let* ((f (get-text-property (point) 'face))
22444 (faces (if (listp f) f (list f)))
22445 (case-fold-search t)
22446 (p (point)) clist o)
22447 ;; First the large context
22448 (cond
22449 ((org-at-heading-p t)
22450 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22451 (when (progn
22452 (beginning-of-line 1)
22453 (looking-at org-todo-line-tags-regexp))
22454 (push (org-point-in-group p 1 :headline-stars) clist)
22455 (push (org-point-in-group p 2 :todo-keyword) clist)
22456 (push (org-point-in-group p 4 :tags) clist))
22457 (goto-char p)
22458 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22459 (if (looking-at "\\[#[A-Z0-9]\\]")
22460 (push (org-point-in-group p 0 :priority) clist)))
22462 ((org-at-item-p)
22463 (push (org-point-in-group p 2 :item-bullet) clist)
22464 (push (list :item (point-at-bol)
22465 (save-excursion (org-end-of-item) (point)))
22466 clist)
22467 (and (org-at-item-checkbox-p)
22468 (push (org-point-in-group p 0 :checkbox) clist)))
22470 ((org-at-table-p)
22471 (push (list :table (org-table-begin) (org-table-end)) clist)
22472 (if (memq 'org-formula faces)
22473 (push (list :table-special
22474 (previous-single-property-change p 'face)
22475 (next-single-property-change p 'face)) clist)))
22476 ((org-at-table-p 'any)
22477 (push (list :table-table) clist)))
22478 (goto-char p)
22480 (let ((case-fold-search t))
22481 ;; New the "medium" contexts: clocktables, source blocks
22482 (cond ((org-in-clocktable-p)
22483 (push (list :clocktable
22484 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22485 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22486 (match-beginning 1))
22487 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22488 (match-end 0))) clist))
22489 ((org-in-src-block-p)
22490 (push (list :src-block
22491 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22492 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22493 (match-beginning 1))
22494 (and (search-forward "#+END_SRC" nil t)
22495 (match-beginning 0))) clist))))
22496 (goto-char p)
22498 ;; Now the small context
22499 (cond
22500 ((org-at-timestamp-p)
22501 (push (org-point-in-group p 0 :timestamp) clist))
22502 ((memq 'org-link faces)
22503 (push (list :link
22504 (previous-single-property-change p 'face)
22505 (next-single-property-change p 'face)) clist))
22506 ((memq 'org-special-keyword faces)
22507 (push (list :keyword
22508 (previous-single-property-change p 'face)
22509 (next-single-property-change p 'face)) clist))
22510 ((org-at-target-p)
22511 (push (org-point-in-group p 0 :target) clist)
22512 (goto-char (1- (match-beginning 0)))
22513 (if (looking-at org-radio-target-regexp)
22514 (push (org-point-in-group p 0 :radio-target) clist))
22515 (goto-char p))
22516 ((setq o (car (delq nil
22517 (mapcar
22518 (lambda (x)
22519 (if (memq x org-latex-fragment-image-overlays) x))
22520 (overlays-at (point))))))
22521 (push (list :latex-fragment
22522 (overlay-start o) (overlay-end o)) clist)
22523 (push (list :latex-preview
22524 (overlay-start o) (overlay-end o)) clist))
22525 ((org-inside-LaTeX-fragment-p)
22526 ;; FIXME: positions wrong.
22527 (push (list :latex-fragment (point) (point)) clist)))
22529 (setq clist (nreverse (delq nil clist)))
22530 clist))
22532 (defun org-in-regexp (re &optional nlines visually)
22533 "Check if point is inside a match of RE.
22535 Normally only the current line is checked, but you can include
22536 NLINES extra lines after point into the search. If VISUALLY is
22537 set, require that the cursor is not after the match but really
22538 on, so that the block visually is on the match."
22539 (catch 'exit
22540 (let ((pos (point))
22541 (eol (point-at-eol (+ 1 (or nlines 0))))
22542 (inc (if visually 1 0)))
22543 (save-excursion
22544 (beginning-of-line (- 1 (or nlines 0)))
22545 (while (re-search-forward re eol t)
22546 (if (and (<= (match-beginning 0) pos)
22547 (>= (+ inc (match-end 0)) pos))
22548 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22549 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22550 "Org mode 8.3")
22552 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22553 "Non-nil when point is between matches of START-RE and END-RE.
22555 Also return a non-nil value when point is on one of the matches.
22557 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22558 buffer positions. Default values are the positions of headlines
22559 surrounding the point.
22561 The functions returns a cons cell whose car (resp. cdr) is the
22562 position before START-RE (resp. after END-RE)."
22563 (save-match-data
22564 (let ((pos (point))
22565 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22566 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22567 beg end)
22568 (save-excursion
22569 ;; Point is on a block when on START-RE or if START-RE can be
22570 ;; found before it...
22571 (and (or (org-in-regexp start-re)
22572 (re-search-backward start-re limit-up t))
22573 (setq beg (match-beginning 0))
22574 ;; ... and END-RE after it...
22575 (goto-char (match-end 0))
22576 (re-search-forward end-re limit-down t)
22577 (> (setq end (match-end 0)) pos)
22578 ;; ... without another START-RE in-between.
22579 (goto-char (match-beginning 0))
22580 (not (re-search-backward start-re (1+ beg) t))
22581 ;; Return value.
22582 (cons beg end))))))
22584 (defun org-in-block-p (names)
22585 "Non-nil when point belongs to a block whose name belongs to NAMES.
22587 NAMES is a list of strings containing names of blocks.
22589 Return first block name matched, or nil. Beware that in case of
22590 nested blocks, the returned name may not belong to the closest
22591 block from point."
22592 (save-match-data
22593 (catch 'exit
22594 (let ((case-fold-search t)
22595 (lim-up (save-excursion (outline-previous-heading)))
22596 (lim-down (save-excursion (outline-next-heading))))
22597 (mapc (lambda (name)
22598 (let ((n (regexp-quote name)))
22599 (when (org-between-regexps-p
22600 (concat "^[ \t]*#\\+begin_" n)
22601 (concat "^[ \t]*#\\+end_" n)
22602 lim-up lim-down)
22603 (throw 'exit n))))
22604 names))
22605 nil)))
22607 (defun org-occur-in-agenda-files (regexp &optional _nlines)
22608 "Call `multi-occur' with buffers for all agenda files."
22609 (interactive "sOrg-files matching: ")
22610 (let* ((files (org-agenda-files))
22611 (tnames (mapcar #'file-truename files))
22612 (extra org-agenda-text-search-extra-files))
22613 (when (eq (car extra) 'agenda-archives)
22614 (setq extra (cdr extra))
22615 (setq files (org-add-archive-files files)))
22616 (dolist (f extra)
22617 (unless (member (file-truename f) tnames)
22618 (unless (member f files) (setq files (append files (list f))))
22619 (setq tnames (append tnames (list (file-truename f))))))
22620 (multi-occur
22621 (mapcar (lambda (x)
22622 (with-current-buffer
22623 ;; FIXME: Why not just (find-file-noselect x)?
22624 ;; Is it to avoid the "revert buffer" prompt?
22625 (or (get-file-buffer x) (find-file-noselect x))
22626 (widen)
22627 (current-buffer)))
22628 files)
22629 regexp)))
22631 (if (boundp 'occur-mode-find-occurrence-hook)
22632 ;; Emacs 23
22633 (add-hook 'occur-mode-find-occurrence-hook
22634 (lambda ()
22635 (when (derived-mode-p 'org-mode)
22636 (org-reveal))))
22637 ;; Emacs 22
22638 (defadvice occur-mode-goto-occurrence
22639 (after org-occur-reveal activate)
22640 (and (derived-mode-p 'org-mode) (org-reveal)))
22641 (defadvice occur-mode-goto-occurrence-other-window
22642 (after org-occur-reveal activate)
22643 (and (derived-mode-p 'org-mode) (org-reveal)))
22644 (defadvice occur-mode-display-occurrence
22645 (after org-occur-reveal activate)
22646 (when (derived-mode-p 'org-mode)
22647 (let ((pos (occur-mode-find-occurrence)))
22648 (with-current-buffer (marker-buffer pos)
22649 (save-excursion
22650 (goto-char pos)
22651 (org-reveal)))))))
22653 (defun org-occur-link-in-agenda-files ()
22654 "Create a link and search for it in the agendas.
22655 The link is not stored in `org-stored-links', it is just created
22656 for the search purpose."
22657 (interactive)
22658 (let ((link (condition-case nil
22659 (org-store-link nil)
22660 (error "Unable to create a link to here"))))
22661 (org-occur-in-agenda-files (regexp-quote link))))
22663 (defun org-reverse-string (string)
22664 "Return the reverse of STRING."
22665 (apply 'string (reverse (string-to-list string))))
22667 ;; defsubst org-uniquify must be defined before first use
22669 (defun org-uniquify-alist (alist)
22670 "Merge elements of ALIST with the same key.
22672 For example, in this alist:
22674 \(org-uniquify-alist \\='((a 1) (b 2) (a 3)))
22675 => \\='((a 1 3) (b 2))
22677 merge (a 1) and (a 3) into (a 1 3).
22679 The function returns the new ALIST."
22680 (let (rtn)
22681 (mapc
22682 (lambda (e)
22683 (let (n)
22684 (if (not (assoc (car e) rtn))
22685 (push e rtn)
22686 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22687 (setq rtn (assq-delete-all (car e) rtn))
22688 (push n rtn))))
22689 alist)
22690 rtn))
22692 (defun org-delete-all (elts list)
22693 "Remove all elements in ELTS from LIST."
22694 (while elts
22695 (setq list (delete (pop elts) list)))
22696 list)
22698 (defun org-count (cl-item cl-seq)
22699 "Count the number of occurrences of ITEM in SEQ.
22700 Taken from `count' in cl-seq.el with all keyword arguments removed."
22701 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22702 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22703 (while (< cl-start cl-end)
22704 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22705 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22706 (setq cl-start (1+ cl-start)))
22707 cl-count))
22709 (defun org-remove-if (predicate seq)
22710 "Remove everything from SEQ that fulfills PREDICATE."
22711 (let (res e)
22712 (while seq
22713 (setq e (pop seq))
22714 (if (not (funcall predicate e)) (push e res)))
22715 (nreverse res)))
22717 (defun org-remove-if-not (predicate seq)
22718 "Remove everything from SEQ that does not fulfill PREDICATE."
22719 (let (res e)
22720 (while seq
22721 (setq e (pop seq))
22722 (if (funcall predicate e) (push e res)))
22723 (nreverse res)))
22725 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22726 "Reduce two-argument FUNCTION across SEQ.
22727 Taken from `reduce' in cl-seq.el with all keyword arguments but
22728 \":initial-value\" removed."
22729 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22730 (cadr (memq :initial-value cl-keys)))
22731 (cl-seq (pop cl-seq))
22732 (t (funcall cl-func)))))
22733 (while cl-seq
22734 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22735 cl-accum))
22737 (defun org-every (pred seq)
22738 "Return true if PREDICATE is true of every element of SEQ.
22739 Adapted from `every' in cl.el."
22740 (catch 'org-every
22741 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22744 (defun org-some (pred seq)
22745 "Return true if PREDICATE is true of any element of SEQ.
22746 Adapted from `some' in cl.el."
22747 (catch 'org-some
22748 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22749 nil))
22751 (defun org-back-over-empty-lines ()
22752 "Move backwards over whitespace, to the beginning of the first empty line.
22753 Returns the number of empty lines passed."
22754 (let ((pos (point)))
22755 (if (cdr (assoc 'heading org-blank-before-new-entry))
22756 (skip-chars-backward " \t\n\r")
22757 (unless (eobp)
22758 (forward-line -1)))
22759 (beginning-of-line 2)
22760 (goto-char (min (point) pos))
22761 (count-lines (point) pos)))
22763 (defun org-skip-whitespace ()
22764 (skip-chars-forward " \t\n\r"))
22766 (defun org-point-in-group (point group &optional context)
22767 "Check if POINT is in match-group GROUP.
22768 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22769 match. If the match group does not exist or point is not inside it,
22770 return nil."
22771 (and (match-beginning group)
22772 (>= point (match-beginning group))
22773 (<= point (match-end group))
22774 (if context
22775 (list context (match-beginning group) (match-end group))
22776 t)))
22778 (defun org-switch-to-buffer-other-window (&rest args)
22779 "Switch to buffer in a second window on the current frame.
22780 In particular, do not allow pop-up frames.
22781 Returns the newly created buffer."
22782 (org-no-popups
22783 (apply 'switch-to-buffer-other-window args)))
22785 (defun org-combine-plists (&rest plists)
22786 "Create a single property list from all plists in PLISTS.
22787 The process starts by copying the first list, and then setting properties
22788 from the other lists. Settings in the last list are the most significant
22789 ones and overrule settings in the other lists."
22790 (let ((rtn (copy-sequence (pop plists)))
22791 p v ls)
22792 (while plists
22793 (setq ls (pop plists))
22794 (while ls
22795 (setq p (pop ls) v (pop ls))
22796 (setq rtn (plist-put rtn p v))))
22797 rtn))
22799 (defun org-replace-escapes (string table)
22800 "Replace %-escapes in STRING with values in TABLE.
22801 TABLE is an association list with keys like \"%a\" and string values.
22802 The sequences in STRING may contain normal field width and padding information,
22803 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22804 so values can contain further %-escapes if they are define later in TABLE."
22805 (let ((tbl (copy-alist table))
22806 (case-fold-search nil)
22807 (pchg 0)
22808 e re rpl)
22809 (dolist (e tbl)
22810 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22811 (when (and (cdr e) (string-match re (cdr e)))
22812 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22813 (safe "SREF"))
22814 (add-text-properties 0 3 (list 'sref sref) safe)
22815 (setcdr e (replace-match safe t t (cdr e)))))
22816 (while (string-match re string)
22817 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22818 (cdr e)))
22819 (setq string (replace-match rpl t t string))))
22820 (while (setq pchg (next-property-change pchg string))
22821 (let ((sref (get-text-property pchg 'sref string)))
22822 (when (and sref (string-match "SREF" string pchg))
22823 (setq string (replace-match sref t t string)))))
22824 string))
22826 (defun org-sublist (list start end)
22827 "Return a section of LIST, from START to END.
22828 Counting starts at 1."
22829 (let (rtn (c start))
22830 (setq list (nthcdr (1- start) list))
22831 (while (and list (<= c end))
22832 (push (pop list) rtn)
22833 (setq c (1+ c)))
22834 (nreverse rtn)))
22836 (defun org-find-base-buffer-visiting (file)
22837 "Like `find-buffer-visiting' but always return the base buffer and
22838 not an indirect buffer."
22839 (let ((buf (or (get-file-buffer file)
22840 (find-buffer-visiting file))))
22841 (if buf
22842 (or (buffer-base-buffer buf) buf)
22843 nil)))
22845 (defun org-image-file-name-regexp (&optional extensions)
22846 "Return regexp matching the file names of images.
22847 If EXTENSIONS is given, only match these."
22848 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22849 (image-file-name-regexp)
22850 (let ((image-file-name-extensions
22851 (or extensions
22852 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22853 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22854 (concat "\\."
22855 (regexp-opt (nconc (mapcar 'upcase
22856 image-file-name-extensions)
22857 image-file-name-extensions)
22859 "\\'"))))
22861 (defun org-file-image-p (file &optional extensions)
22862 "Return non-nil if FILE is an image."
22863 (save-match-data
22864 (string-match (org-image-file-name-regexp extensions) file)))
22866 (defun org-get-cursor-date (&optional with-time)
22867 "Return the date at cursor in as a time.
22868 This works in the calendar and in the agenda, anywhere else it just
22869 returns the current time.
22870 If WITH-TIME is non-nil, returns the time of the event at point (in
22871 the agenda) or the current time of the day."
22872 (let (date day defd tp hod mod)
22873 (when with-time
22874 (setq tp (get-text-property (point) 'time))
22875 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22876 (setq hod (string-to-number (match-string 1 tp))
22877 mod (string-to-number (match-string 2 tp))))
22878 (or tp (let ((now (decode-time)))
22879 (setq hod (nth 2 now)
22880 mod (nth 1 now)))))
22881 (cond
22882 ((eq major-mode 'calendar-mode)
22883 (setq date (calendar-cursor-to-date)
22884 defd (encode-time 0 (or mod 0) (or hod 0)
22885 (nth 1 date) (nth 0 date) (nth 2 date))))
22886 ((eq major-mode 'org-agenda-mode)
22887 (setq day (get-text-property (point) 'day))
22888 (if day
22889 (setq date (calendar-gregorian-from-absolute day)
22890 defd (encode-time 0 (or mod 0) (or hod 0)
22891 (nth 1 date) (nth 0 date) (nth 2 date))))))
22892 (or defd (current-time))))
22894 (defun org-mark-subtree (&optional up)
22895 "Mark the current subtree.
22896 This puts point at the start of the current subtree, and mark at
22897 the end. If a numeric prefix UP is given, move up into the
22898 hierarchy of headlines by UP levels before marking the subtree."
22899 (interactive "P")
22900 (org-with-limited-levels
22901 (cond ((org-at-heading-p) (beginning-of-line))
22902 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22903 (t (outline-previous-visible-heading 1))))
22904 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22905 (if (org-called-interactively-p 'any)
22906 (call-interactively 'org-mark-element)
22907 (org-mark-element)))
22910 ;;; Indentation
22912 (defun org--get-expected-indentation (element contentsp)
22913 "Expected indentation column for current line, according to ELEMENT.
22914 ELEMENT is an element containing point. CONTENTSP is non-nil
22915 when indentation is to be computed according to contents of
22916 ELEMENT."
22917 (let ((type (org-element-type element))
22918 (start (org-element-property :begin element))
22919 (post-affiliated (org-element-property :post-affiliated element)))
22920 (org-with-wide-buffer
22921 (cond
22922 (contentsp
22923 (case type
22924 ((diary-sexp footnote-definition) 0)
22925 ((headline inlinetask nil)
22926 (if (not org-adapt-indentation) 0
22927 (let ((level (org-current-level)))
22928 (if level (1+ level) 0))))
22929 ((item plain-list) (org-list-item-body-column post-affiliated))
22931 (goto-char start)
22932 (org-get-indentation))))
22933 ((memq type '(headline inlinetask nil))
22934 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22935 (org--get-expected-indentation element t)
22937 ((memq type '(diary-sexp footnote-definition)) 0)
22938 ;; First paragraph of a footnote definition or an item.
22939 ;; Indent like parent.
22940 ((< (line-beginning-position) start)
22941 (org--get-expected-indentation
22942 (org-element-property :parent element) t))
22943 ;; At first line: indent according to previous sibling, if any,
22944 ;; ignoring footnote definitions and inline tasks, or parent's
22945 ;; contents.
22946 ((= (line-beginning-position) start)
22947 (catch 'exit
22948 (while t
22949 (if (= (point-min) start) (throw 'exit 0)
22950 (goto-char (1- start))
22951 (let* ((previous (org-element-at-point))
22952 (parent previous))
22953 (while (and parent (<= (org-element-property :end parent) start))
22954 (setq previous parent
22955 parent (org-element-property :parent parent)))
22956 (cond
22957 ((not previous) (throw 'exit 0))
22958 ((> (org-element-property :end previous) start)
22959 (throw 'exit (org--get-expected-indentation previous t)))
22960 ((memq (org-element-type previous)
22961 '(footnote-definition inlinetask))
22962 (setq start (org-element-property :begin previous)))
22963 (t (goto-char (org-element-property :begin previous))
22964 (throw 'exit
22965 (if (bolp) (org-get-indentation)
22966 ;; At first paragraph in an item or
22967 ;; a footnote definition.
22968 (org--get-expected-indentation
22969 (org-element-property :parent previous) t))))))))))
22970 ;; Otherwise, move to the first non-blank line above.
22972 (beginning-of-line)
22973 (let ((pos (point)))
22974 (skip-chars-backward " \r\t\n")
22975 (cond
22976 ;; Two blank lines end a footnote definition or a plain
22977 ;; list. When we indent an empty line after them, the
22978 ;; containing list or footnote definition is over, so it
22979 ;; qualifies as a previous sibling. Therefore, we indent
22980 ;; like its first line.
22981 ((and (memq type '(footnote-definition plain-list))
22982 (> (count-lines (point) pos) 2))
22983 (goto-char start)
22984 (org-get-indentation))
22985 ;; Line above is the first one of a paragraph at the
22986 ;; beginning of an item or a footnote definition. Indent
22987 ;; like parent.
22988 ((< (line-beginning-position) start)
22989 (org--get-expected-indentation
22990 (org-element-property :parent element) t))
22991 ;; Line above is the beginning of an element, i.e., point
22992 ;; was originally on the blank lines between element's start
22993 ;; and contents.
22994 ((= (line-beginning-position) post-affiliated)
22995 (org--get-expected-indentation element t))
22996 ;; POS is after contents in a greater element. Indent like
22997 ;; the beginning of the element.
22999 ;; As a special case, if point is at the end of a footnote
23000 ;; definition or an item, indent like the very last element
23001 ;; within.
23002 ((and (not (eq type 'paragraph))
23003 (let ((cend (org-element-property :contents-end element)))
23004 (and cend (<= cend pos))))
23005 (if (memq type '(footnote-definition item plain-list))
23006 (let ((last (org-element-at-point)))
23007 (org--get-expected-indentation
23008 last
23009 (memq (org-element-type last)
23010 '(footnote-definition item plain-list))))
23011 (goto-char start)
23012 (org-get-indentation)))
23013 ;; In any other case, indent like the current line.
23014 (t (org-get-indentation)))))))))
23016 (defun org--align-node-property ()
23017 "Align node property at point.
23018 Alignment is done according to `org-property-format', which see."
23019 (when (save-excursion
23020 (beginning-of-line)
23021 (looking-at org-property-re))
23022 (replace-match
23023 (concat (match-string 4)
23024 (org-trim
23025 (format org-property-format (match-string 1) (match-string 3))))
23026 t t)))
23028 (defun org-indent-line ()
23029 "Indent line depending on context.
23031 Indentation is done according to the following rules:
23033 - Footnote definitions, diary sexps, headlines and inline tasks
23034 have to start at column 0.
23036 - On the very first line of an element, consider, in order, the
23037 next rules until one matches:
23039 1. If there's a sibling element before, ignoring footnote
23040 definitions and inline tasks, indent like its first line.
23042 2. If element has a parent, indent like its contents. More
23043 precisely, if parent is an item, indent after the
23044 description part, if any, or the bullet (see
23045 `org-list-description-max-indent'). Else, indent like
23046 parent's first line.
23048 3. Otherwise, indent relatively to current level, if
23049 `org-adapt-indentation' is non-nil, or to left margin.
23051 - On a blank line at the end of an element, indent according to
23052 the type of the element. More precisely
23054 1. If element is a plain list, an item, or a footnote
23055 definition, indent like the very last element within.
23057 2. If element is a paragraph, indent like its last non blank
23058 line.
23060 3. Otherwise, indent like its very first line.
23062 - In the code part of a source block, use language major mode
23063 to indent current line if `org-src-tab-acts-natively' is
23064 non-nil. If it is nil, do nothing.
23066 - Otherwise, indent like the first non-blank line above.
23068 The function doesn't indent an item as it could break the whole
23069 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
23070 \\[org-shiftmetaright].
23072 Also align node properties according to `org-property-format'."
23073 (interactive)
23074 (cond
23075 (orgstruct-is-++
23076 (let ((indent-line-function
23077 (cadadr (assq 'indent-line-function org-fb-vars))))
23078 (indent-according-to-mode)))
23079 ((org-at-heading-p) 'noindent)
23081 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
23082 (type (org-element-type element)))
23083 (cond ((and (memq type '(plain-list item))
23084 (= (line-beginning-position)
23085 (org-element-property :post-affiliated element)))
23086 'noindent)
23087 ((and (eq type 'src-block)
23088 org-src-tab-acts-natively
23089 (> (line-beginning-position)
23090 (org-element-property :post-affiliated element))
23091 (< (line-beginning-position)
23092 (org-with-wide-buffer
23093 (goto-char (org-element-property :end element))
23094 (skip-chars-backward " \r\t\n")
23095 (line-beginning-position))))
23096 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
23098 (let ((column (org--get-expected-indentation element nil)))
23099 ;; Preserve current column.
23100 (if (<= (current-column) (current-indentation))
23101 (org-indent-line-to column)
23102 (save-excursion (org-indent-line-to column))))
23103 ;; Align node property. Also preserve current column.
23104 (when (eq type 'node-property)
23105 (let ((column (current-column)))
23106 (org--align-node-property)
23107 (org-move-to-column column)))))))))
23109 (defun org-indent-region (start end)
23110 "Indent each non-blank line in the region.
23111 Called from a program, START and END specify the region to
23112 indent. The function will not indent contents of example blocks,
23113 verse blocks and export blocks as leading white spaces are
23114 assumed to be significant there."
23115 (interactive "r")
23116 (save-excursion
23117 (goto-char start)
23118 (skip-chars-forward " \r\t\n")
23119 (unless (eobp) (beginning-of-line))
23120 (let ((indent-to
23121 (lambda (ind pos)
23122 ;; Set IND as indentation for all lines between point and
23123 ;; POS or END, whichever comes first. Blank lines are
23124 ;; ignored. Leave point after POS once done.
23125 (let ((limit (copy-marker (min end pos))))
23126 (while (< (point) limit)
23127 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
23128 (forward-line))
23129 (set-marker limit nil))))
23130 (end (copy-marker end)))
23131 (while (< (point) end)
23132 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
23133 (let* ((element (org-element-at-point))
23134 (type (org-element-type element))
23135 (element-end (copy-marker (org-element-property :end element)))
23136 (ind (org--get-expected-indentation element nil)))
23137 (cond
23138 ((or (memq type '(paragraph table table-row))
23139 (not (or (org-element-property :contents-begin element)
23140 (memq type
23141 '(example-block export-block src-block)))))
23142 ;; Elements here are indented as a single block. Also
23143 ;; align node properties.
23144 (when (eq type 'node-property)
23145 (org--align-node-property)
23146 (beginning-of-line))
23147 (funcall indent-to ind element-end))
23149 ;; Elements in this category consist of three parts:
23150 ;; before the contents, the contents, and after the
23151 ;; contents. The contents are treated specially,
23152 ;; according to the element type, or not indented at
23153 ;; all. Other parts are indented as a single block.
23154 (let* ((post (copy-marker
23155 (org-element-property :post-affiliated element)))
23156 (cbeg
23157 (copy-marker
23158 (cond
23159 ((not (org-element-property :contents-begin element))
23160 ;; Fake contents for source blocks.
23161 (org-with-wide-buffer
23162 (goto-char post)
23163 (forward-line)
23164 (point)))
23165 ((memq type '(footnote-definition item plain-list))
23166 ;; Contents in these elements could start on
23167 ;; the same line as the beginning of the
23168 ;; element. Make sure we start indenting
23169 ;; from the second line.
23170 (org-with-wide-buffer
23171 (goto-char post)
23172 (end-of-line)
23173 (skip-chars-forward " \r\t\n")
23174 (if (eobp) (point) (line-beginning-position))))
23175 (t (org-element-property :contents-begin element)))))
23176 (cend (copy-marker
23177 (or (org-element-property :contents-end element)
23178 ;; Fake contents for source blocks.
23179 (org-with-wide-buffer
23180 (goto-char element-end)
23181 (skip-chars-backward " \r\t\n")
23182 (line-beginning-position)))
23183 t)))
23184 ;; Do not change items indentation individually as it
23185 ;; might break the list as a whole. On the other
23186 ;; hand, when at a plain list, indent it as a whole.
23187 (cond ((eq type 'plain-list)
23188 (let ((offset (- ind (org-get-indentation))))
23189 (unless (zerop offset)
23190 (indent-rigidly (org-element-property :begin element)
23191 (org-element-property :end element)
23192 offset))
23193 (goto-char cbeg)))
23194 ((eq type 'item) (goto-char cbeg))
23195 (t (funcall indent-to ind cbeg)))
23196 (when (< (point) end)
23197 (case type
23198 ((example-block export-block verse-block))
23199 (src-block
23200 ;; In a source block, indent source code
23201 ;; according to language major mode, but only if
23202 ;; `org-src-tab-acts-natively' is non-nil.
23203 (when (and (< (point) end) org-src-tab-acts-natively)
23204 (ignore-errors
23205 (org-babel-do-in-edit-buffer
23206 (indent-region (point-min) (point-max))))))
23207 (t (org-indent-region (point) (min cend end))))
23208 (goto-char (min cend end))
23209 (when (< (point) end) (funcall indent-to ind element-end)))
23210 (set-marker post nil)
23211 (set-marker cbeg nil)
23212 (set-marker cend nil))))
23213 (set-marker element-end nil))))
23214 (set-marker end nil))))
23216 (defun org-indent-drawer ()
23217 "Indent the drawer at point."
23218 (interactive)
23219 (unless (save-excursion
23220 (beginning-of-line)
23221 (org-looking-at-p org-drawer-regexp))
23222 (user-error "Not at a drawer"))
23223 (let ((element (org-element-at-point)))
23224 (unless (memq (org-element-type element) '(drawer property-drawer))
23225 (user-error "Not at a drawer"))
23226 (org-with-wide-buffer
23227 (org-indent-region (org-element-property :begin element)
23228 (org-element-property :end element))))
23229 (message "Drawer at point indented"))
23231 (defun org-indent-block ()
23232 "Indent the block at point."
23233 (interactive)
23234 (unless (save-excursion
23235 (beginning-of-line)
23236 (let ((case-fold-search t))
23237 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
23238 (user-error "Not at a block"))
23239 (let ((element (org-element-at-point)))
23240 (unless (memq (org-element-type element)
23241 '(comment-block center-block dynamic-block example-block
23242 export-block quote-block special-block
23243 src-block verse-block))
23244 (user-error "Not at a block"))
23245 (org-with-wide-buffer
23246 (org-indent-region (org-element-property :begin element)
23247 (org-element-property :end element))))
23248 (message "Block at point indented"))
23251 ;;; Filling
23253 ;; We use our own fill-paragraph and auto-fill functions.
23255 ;; `org-fill-paragraph' relies on adaptive filling and context
23256 ;; checking. Appropriate `fill-prefix' is computed with
23257 ;; `org-adaptive-fill-function'.
23259 ;; `org-auto-fill-function' takes care of auto-filling. It calls
23260 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
23261 ;; `org-adaptive-fill-function' value. Internally,
23262 ;; `org-comment-line-break-function' breaks the line.
23264 ;; `org-setup-filling' installs filling and auto-filling related
23265 ;; variables during `org-mode' initialization.
23267 (defvar org-element-paragraph-separate) ; org-element.el
23268 (defun org-setup-filling ()
23269 (require 'org-element)
23270 ;; Prevent auto-fill from inserting unwanted new items.
23271 (when (boundp 'fill-nobreak-predicate)
23272 (org-set-local
23273 'fill-nobreak-predicate
23274 (org-uniquify
23275 (append fill-nobreak-predicate
23276 '(org-fill-line-break-nobreak-p
23277 org-fill-paragraph-with-timestamp-nobreak-p)))))
23278 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
23279 (org-set-local 'paragraph-start paragraph-ending)
23280 (org-set-local 'paragraph-separate paragraph-ending))
23281 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
23282 (org-set-local 'auto-fill-inhibit-regexp nil)
23283 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
23284 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
23285 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
23287 (defun org-fill-line-break-nobreak-p ()
23288 "Non-nil when a new line at point would create an Org line break."
23289 (save-excursion
23290 (skip-chars-backward "[ \t]")
23291 (skip-chars-backward "\\\\")
23292 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
23294 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
23295 "Non-nil when a new line at point would split a timestamp."
23296 (and (org-at-timestamp-p t)
23297 (not (looking-at org-ts-regexp-both))))
23299 (declare-function message-in-body-p "message" ())
23300 (defvar orgtbl-line-start-regexp) ; From org-table.el
23301 (defun org-adaptive-fill-function ()
23302 "Compute a fill prefix for the current line.
23303 Return fill prefix, as a string, or nil if current line isn't
23304 meant to be filled. For convenience, if `adaptive-fill-regexp'
23305 matches in paragraphs or comments, use it."
23306 (catch 'exit
23307 (when (derived-mode-p 'message-mode)
23308 (save-excursion
23309 (beginning-of-line)
23310 (cond ((not (message-in-body-p)) (throw 'exit nil))
23311 ((org-looking-at-p org-table-line-regexp) (throw 'exit nil))
23312 ((looking-at message-cite-prefix-regexp)
23313 (throw 'exit (match-string-no-properties 0)))
23314 ((looking-at org-outline-regexp)
23315 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
23316 (org-with-wide-buffer
23317 (unless (org-at-heading-p)
23318 (let* ((p (line-beginning-position))
23319 (element (save-excursion
23320 (beginning-of-line)
23321 (org-element-at-point)))
23322 (type (org-element-type element))
23323 (post-affiliated (org-element-property :post-affiliated element)))
23324 (unless (< p post-affiliated)
23325 (case type
23326 (comment
23327 (save-excursion
23328 (beginning-of-line)
23329 (looking-at "[ \t]*")
23330 (concat (match-string 0) "# ")))
23331 (footnote-definition "")
23332 ((item plain-list)
23333 (make-string (org-list-item-body-column post-affiliated) ?\s))
23334 (paragraph
23335 ;; Fill prefix is usually the same as the current line,
23336 ;; unless the paragraph is at the beginning of an item.
23337 (let ((parent (org-element-property :parent element)))
23338 (save-excursion
23339 (beginning-of-line)
23340 (cond ((eq (org-element-type parent) 'item)
23341 (make-string (org-list-item-body-column
23342 (org-element-property :begin parent))
23343 ?\s))
23344 ((and adaptive-fill-regexp
23345 ;; Locally disable
23346 ;; `adaptive-fill-function' to let
23347 ;; `fill-context-prefix' handle
23348 ;; `adaptive-fill-regexp' variable.
23349 (let (adaptive-fill-function)
23350 (fill-context-prefix
23351 post-affiliated
23352 (org-element-property :end element)))))
23353 ((looking-at "[ \t]+") (match-string 0))
23354 (t "")))))
23355 (comment-block
23356 ;; Only fill contents if P is within block boundaries.
23357 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23358 (forward-line)
23359 (point)))
23360 (cend (save-excursion
23361 (goto-char (org-element-property :end element))
23362 (skip-chars-backward " \r\t\n")
23363 (line-beginning-position))))
23364 (when (and (>= p cbeg) (< p cend))
23365 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23366 (match-string 0)
23367 "")))))))))))
23369 (declare-function message-goto-body "message" ())
23370 (defvar message-cite-prefix-regexp) ; From message.el
23371 (defun org-fill-paragraph (&optional justify)
23372 "Fill element at point, when applicable.
23374 This function only applies to comment blocks, comments, example
23375 blocks and paragraphs. Also, as a special case, re-align table
23376 when point is at one.
23378 If JUSTIFY is non-nil (interactively, with prefix argument),
23379 justify as well. If `sentence-end-double-space' is non-nil, then
23380 period followed by one space does not end a sentence, so don't
23381 break a line there. The variable `fill-column' controls the
23382 width for filling.
23384 For convenience, when point is at a plain list, an item or
23385 a footnote definition, try to fill the first paragraph within."
23386 (interactive)
23387 (if (and (derived-mode-p 'message-mode)
23388 (or (not (message-in-body-p))
23389 (save-excursion (move-beginning-of-line 1)
23390 (looking-at message-cite-prefix-regexp))))
23391 ;; First ensure filling is correct in message-mode.
23392 (let ((fill-paragraph-function
23393 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23394 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23395 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23396 (paragraph-separate
23397 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23398 (fill-paragraph nil))
23399 (with-syntax-table org-mode-transpose-word-syntax-table
23400 ;; Move to end of line in order to get the first paragraph
23401 ;; within a plain list or a footnote definition.
23402 (let ((element (save-excursion
23403 (end-of-line)
23404 (or (ignore-errors (org-element-at-point))
23405 (user-error "An element cannot be parsed line %d"
23406 (line-number-at-pos (point)))))))
23407 ;; First check if point is in a blank line at the beginning of
23408 ;; the buffer. In that case, ignore filling.
23409 (case (org-element-type element)
23410 ;; Use major mode filling function is src blocks.
23411 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23412 ;; Align Org tables, leave table.el tables as-is.
23413 (table-row (org-table-align) t)
23414 (table
23415 (when (eq (org-element-property :type element) 'org)
23416 (save-excursion
23417 (goto-char (org-element-property :post-affiliated element))
23418 (org-table-align)))
23420 (paragraph
23421 ;; Paragraphs may contain `line-break' type objects.
23422 (let ((beg (max (point-min)
23423 (org-element-property :contents-begin element)))
23424 (end (min (point-max)
23425 (org-element-property :contents-end element))))
23426 ;; Do nothing if point is at an affiliated keyword.
23427 (if (< (line-end-position) beg) t
23428 (when (derived-mode-p 'message-mode)
23429 ;; In `message-mode', do not fill following citation
23430 ;; in current paragraph nor text before message body.
23431 (let ((body-start (save-excursion (message-goto-body))))
23432 (when body-start (setq beg (max body-start beg))))
23433 (when (save-excursion
23434 (re-search-forward
23435 (concat "^" message-cite-prefix-regexp) end t))
23436 (setq end (match-beginning 0))))
23437 ;; Fill paragraph, taking line breaks into account.
23438 (save-excursion
23439 (goto-char beg)
23440 (let ((cuts (list beg)))
23441 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23442 (when (eq 'line-break
23443 (org-element-type
23444 (save-excursion (backward-char)
23445 (org-element-context))))
23446 (push (point) cuts)))
23447 (dolist (c (delq end cuts))
23448 (fill-region-as-paragraph c end justify)
23449 (setq end c))))
23450 t)))
23451 ;; Contents of `comment-block' type elements should be
23452 ;; filled as plain text, but only if point is within block
23453 ;; markers.
23454 (comment-block
23455 (let* ((case-fold-search t)
23456 (beg (save-excursion
23457 (goto-char (org-element-property :begin element))
23458 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23459 (forward-line)
23460 (point)))
23461 (end (save-excursion
23462 (goto-char (org-element-property :end element))
23463 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23464 (line-beginning-position))))
23465 (if (or (< (point) beg) (> (point) end)) t
23466 (fill-region-as-paragraph
23467 (save-excursion (end-of-line)
23468 (re-search-backward "^[ \t]*$" beg 'move)
23469 (line-beginning-position))
23470 (save-excursion (beginning-of-line)
23471 (re-search-forward "^[ \t]*$" end 'move)
23472 (line-beginning-position))
23473 justify))))
23474 ;; Fill comments.
23475 (comment
23476 (let ((begin (org-element-property :post-affiliated element))
23477 (end (org-element-property :end element)))
23478 (when (and (>= (point) begin) (<= (point) end))
23479 (let ((begin (save-excursion
23480 (end-of-line)
23481 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23482 (progn (forward-line) (point))
23483 begin)))
23484 (end (save-excursion
23485 (end-of-line)
23486 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23487 (1- (line-beginning-position))
23488 (skip-chars-backward " \r\t\n")
23489 (line-end-position)))))
23490 ;; Do not fill comments when at a blank line.
23491 (when (> end begin)
23492 (let ((fill-prefix
23493 (save-excursion
23494 (beginning-of-line)
23495 (looking-at "[ \t]*#")
23496 (let ((comment-prefix (match-string 0)))
23497 (goto-char (match-end 0))
23498 (if (looking-at adaptive-fill-regexp)
23499 (concat comment-prefix (match-string 0))
23500 (concat comment-prefix " "))))))
23501 (save-excursion
23502 (fill-region-as-paragraph begin end justify))))))
23504 ;; Ignore every other element.
23505 (otherwise t))))))
23507 (defun org-auto-fill-function ()
23508 "Auto-fill function."
23509 ;; Check if auto-filling is meaningful.
23510 (let ((fc (current-fill-column)))
23511 (when (and fc (> (current-column) fc))
23512 (let* ((fill-prefix (org-adaptive-fill-function))
23513 ;; Enforce empty fill prefix, if required. Otherwise, it
23514 ;; will be computed again.
23515 (adaptive-fill-mode (not (equal fill-prefix ""))))
23516 (when fill-prefix (do-auto-fill))))))
23518 (defun org-comment-line-break-function (&optional soft)
23519 "Break line at point and indent, continuing comment if within one.
23520 The inserted newline is marked hard if variable
23521 `use-hard-newlines' is true, unless optional argument SOFT is
23522 non-nil."
23523 (if soft (insert-and-inherit ?\n) (newline 1))
23524 (save-excursion (forward-char -1) (delete-horizontal-space))
23525 (delete-horizontal-space)
23526 (indent-to-left-margin)
23527 (insert-before-markers-and-inherit fill-prefix))
23530 ;;; Fixed Width Areas
23532 (defun org-toggle-fixed-width ()
23533 "Toggle fixed-width markup.
23535 Add or remove fixed-width markup on current line, whenever it
23536 makes sense. Return an error otherwise.
23538 If a region is active and if it contains only fixed-width areas
23539 or blank lines, remove all fixed-width markup in it. If the
23540 region contains anything else, convert all non-fixed-width lines
23541 to fixed-width ones.
23543 Blank lines at the end of the region are ignored unless the
23544 region only contains such lines."
23545 (interactive)
23546 (if (not (org-region-active-p))
23547 ;; No region:
23549 ;; Remove fixed width marker only in a fixed-with element.
23551 ;; Add fixed width maker in paragraphs, in blank lines after
23552 ;; elements or at the beginning of a headline or an inlinetask,
23553 ;; and before any one-line elements (e.g., a clock).
23554 (progn
23555 (beginning-of-line)
23556 (let* ((element (org-element-at-point))
23557 (type (org-element-type element)))
23558 (cond
23559 ((and (eq type 'fixed-width)
23560 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23561 (replace-match
23562 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23563 ((and (memq type '(babel-call clock comment diary-sexp headline
23564 horizontal-rule keyword paragraph
23565 planning))
23566 (<= (org-element-property :post-affiliated element) (point)))
23567 (skip-chars-forward " \t")
23568 (insert ": "))
23569 ((and (org-looking-at-p "[ \t]*$")
23570 (or (eq type 'inlinetask)
23571 (save-excursion
23572 (skip-chars-forward " \r\t\n")
23573 (<= (org-element-property :end element) (point)))))
23574 (delete-region (point) (line-end-position))
23575 (org-indent-line)
23576 (insert ": "))
23577 (t (user-error "Cannot insert a fixed-width line here")))))
23578 ;; Region active.
23579 (let* ((begin (save-excursion
23580 (goto-char (region-beginning))
23581 (line-beginning-position)))
23582 (end (copy-marker
23583 (save-excursion
23584 (goto-char (region-end))
23585 (unless (eolp) (beginning-of-line))
23586 (if (save-excursion (re-search-backward "\\S-" begin t))
23587 (progn (skip-chars-backward " \r\t\n") (point))
23588 (point)))))
23589 (all-fixed-width-p
23590 (catch 'not-all-p
23591 (save-excursion
23592 (goto-char begin)
23593 (skip-chars-forward " \r\t\n")
23594 (when (eobp) (throw 'not-all-p nil))
23595 (while (< (point) end)
23596 (let ((element (org-element-at-point)))
23597 (if (eq (org-element-type element) 'fixed-width)
23598 (goto-char (org-element-property :end element))
23599 (throw 'not-all-p nil))))
23600 t))))
23601 (if all-fixed-width-p
23602 (save-excursion
23603 (goto-char begin)
23604 (while (< (point) end)
23605 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23606 (replace-match
23607 "" nil nil nil
23608 (if (= (line-end-position) (match-end 0)) 0 1)))
23609 (forward-line)))
23610 (let ((min-ind (point-max)))
23611 ;; Find minimum indentation across all lines.
23612 (save-excursion
23613 (goto-char begin)
23614 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23615 (setq min-ind 0)
23616 (catch 'zerop
23617 (while (< (point) end)
23618 (unless (org-looking-at-p "[ \t]*$")
23619 (let ((ind (org-get-indentation)))
23620 (setq min-ind (min min-ind ind))
23621 (when (zerop ind) (throw 'zerop t))))
23622 (forward-line)))))
23623 ;; Loop over all lines and add fixed-width markup everywhere
23624 ;; but in fixed-width lines.
23625 (save-excursion
23626 (goto-char begin)
23627 (while (< (point) end)
23628 (cond
23629 ((org-at-heading-p)
23630 (insert ": ")
23631 (forward-line)
23632 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23633 (insert ":")
23634 (forward-line)))
23635 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23636 (let* ((element (org-element-at-point))
23637 (element-end (org-element-property :end element)))
23638 (if (eq (org-element-type element) 'fixed-width)
23639 (progn (goto-char element-end)
23640 (skip-chars-backward " \r\t\n")
23641 (forward-line))
23642 (let ((limit (min end element-end)))
23643 (while (< (point) limit)
23644 (org-move-to-column min-ind t)
23645 (insert ": ")
23646 (forward-line))))))
23648 (org-move-to-column min-ind t)
23649 (insert ": ")
23650 (forward-line)))))))
23651 (set-marker end nil))))
23654 ;;; Comments
23656 ;; Org comments syntax is quite complex. It requires the entire line
23657 ;; to be just a comment. Also, even with the right syntax at the
23658 ;; beginning of line, some some elements (i.e. verse-block or
23659 ;; example-block) don't accept comments. Usual Emacs comment commands
23660 ;; cannot cope with those requirements. Therefore, Org replaces them.
23662 ;; Org still relies on `comment-dwim', but cannot trust
23663 ;; `comment-only-p'. So, `comment-region-function' and
23664 ;; `uncomment-region-function' both point
23665 ;; to`org-comment-or-uncomment-region'. Eventually,
23666 ;; `org-insert-comment' takes care of insertion of comments at the
23667 ;; beginning of line.
23669 ;; `org-setup-comments-handling' install comments related variables
23670 ;; during `org-mode' initialization.
23672 (defun org-setup-comments-handling ()
23673 (interactive)
23674 (org-set-local 'comment-use-syntax nil)
23675 (org-set-local 'comment-start "# ")
23676 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23677 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23678 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23679 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23681 (defun org-insert-comment ()
23682 "Insert an empty comment above current line.
23683 If the line is empty, insert comment at its beginning. When
23684 point is within a source block, comment according to the related
23685 major mode."
23686 (if (let ((element (org-element-at-point)))
23687 (and (eq (org-element-type element) 'src-block)
23688 (< (save-excursion
23689 (goto-char (org-element-property :post-affiliated element))
23690 (line-end-position))
23691 (point))
23692 (> (save-excursion
23693 (goto-char (org-element-property :end element))
23694 (skip-chars-backward " \r\t\n")
23695 (line-beginning-position))
23696 (point))))
23697 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23698 (beginning-of-line)
23699 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23700 (open-line 1))
23701 (org-indent-line)
23702 (insert "# ")))
23704 (defvar comment-empty-lines) ; From newcomment.el.
23705 (defun org-comment-or-uncomment-region (beg end &rest _)
23706 "Comment or uncomment each non-blank line in the region.
23707 Uncomment each non-blank line between BEG and END if it only
23708 contains commented lines. Otherwise, comment them. If region is
23709 strictly within a source block, use appropriate comment syntax."
23710 (if (let ((element (org-element-at-point)))
23711 (and (eq (org-element-type element) 'src-block)
23712 (< (save-excursion
23713 (goto-char (org-element-property :post-affiliated element))
23714 (line-end-position))
23715 beg)
23716 (>= (save-excursion
23717 (goto-char (org-element-property :end element))
23718 (skip-chars-backward " \r\t\n")
23719 (line-beginning-position))
23720 end)))
23721 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23722 (save-restriction
23723 ;; Restrict region
23724 (narrow-to-region (save-excursion (goto-char beg)
23725 (skip-chars-forward " \r\t\n" end)
23726 (line-beginning-position))
23727 (save-excursion (goto-char end)
23728 (skip-chars-backward " \r\t\n" beg)
23729 (line-end-position)))
23730 (let ((uncommentp
23731 ;; UNCOMMENTP is non-nil when every non blank line between
23732 ;; BEG and END is a comment.
23733 (save-excursion
23734 (goto-char (point-min))
23735 (while (and (not (eobp))
23736 (let ((element (org-element-at-point)))
23737 (and (eq (org-element-type element) 'comment)
23738 (goto-char (min (point-max)
23739 (org-element-property
23740 :end element)))))))
23741 (eobp))))
23742 (if uncommentp
23743 ;; Only blank lines and comments in region: uncomment it.
23744 (save-excursion
23745 (goto-char (point-min))
23746 (while (not (eobp))
23747 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23748 (replace-match "" nil nil nil 1))
23749 (forward-line)))
23750 ;; Comment each line in region.
23751 (let ((min-indent (point-max)))
23752 ;; First find the minimum indentation across all lines.
23753 (save-excursion
23754 (goto-char (point-min))
23755 (while (and (not (eobp)) (not (zerop min-indent)))
23756 (unless (looking-at "[ \t]*$")
23757 (setq min-indent (min min-indent (current-indentation))))
23758 (forward-line)))
23759 ;; Then loop over all lines.
23760 (save-excursion
23761 (goto-char (point-min))
23762 (while (not (eobp))
23763 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23764 ;; Don't get fooled by invisible text (e.g. link path)
23765 ;; when moving to column MIN-INDENT.
23766 (let ((buffer-invisibility-spec nil))
23767 (org-move-to-column min-indent t))
23768 (insert comment-start))
23769 (forward-line)))))))))
23771 (defun org-comment-dwim (arg)
23772 "Call `comment-dwim' within a source edit buffer if needed."
23773 (interactive "*P")
23774 (if (org-in-src-block-p)
23775 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23776 (call-interactively 'comment-dwim)))
23779 ;;; Timestamps API
23781 ;; This section contains tools to operate on timestamp objects, as
23782 ;; returned by, e.g. `org-element-context'.
23784 (defun org-timestamp--to-internal-time (timestamp &optional end)
23785 "Encode TIMESTAMP object into Emacs internal time.
23786 Use end of date range or time range when END is non-nil."
23787 (apply #'encode-time
23788 (cons 0
23789 (mapcar
23790 (lambda (prop) (or (org-element-property prop timestamp) 0))
23791 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23792 '(:minute-start :hour-start :day-start :month-start
23793 :year-start))))))
23795 (defun org-timestamp-has-time-p (timestamp)
23796 "Non-nil when TIMESTAMP has a time specified."
23797 (org-element-property :hour-start timestamp))
23799 (defun org-timestamp-format (timestamp format &optional end utc)
23800 "Format a TIMESTAMP object into a string.
23802 FORMAT is a format specifier to be passed to
23803 `format-time-string'.
23805 When optional argument END is non-nil, use end of date-range or
23806 time-range, if possible.
23808 When optional argument UTC is non-nil, time will be expressed as
23809 Universal Time."
23810 (format-time-string
23811 format (org-timestamp--to-internal-time timestamp end) utc))
23813 (defun org-timestamp-split-range (timestamp &optional end)
23814 "Extract a TIMESTAMP object from a date or time range.
23816 END, when non-nil, means extract the end of the range.
23817 Otherwise, extract its start.
23819 Return a new timestamp object."
23820 (let ((type (org-element-property :type timestamp)))
23821 (if (memq type '(active inactive diary)) timestamp
23822 (let ((split-ts (org-element-copy timestamp)))
23823 ;; Set new type.
23824 (org-element-put-property
23825 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23826 ;; Copy start properties over end properties if END is
23827 ;; non-nil. Otherwise, copy end properties over `start' ones.
23828 (let ((p-alist '((:minute-start . :minute-end)
23829 (:hour-start . :hour-end)
23830 (:day-start . :day-end)
23831 (:month-start . :month-end)
23832 (:year-start . :year-end))))
23833 (dolist (p-cell p-alist)
23834 (org-element-put-property
23835 split-ts
23836 (funcall (if end #'car #'cdr) p-cell)
23837 (org-element-property
23838 (funcall (if end #'cdr #'car) p-cell) split-ts)))
23839 ;; Eventually refresh `:raw-value'.
23840 (org-element-put-property split-ts :raw-value nil)
23841 (org-element-put-property
23842 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23844 (defun org-timestamp-translate (timestamp &optional boundary)
23845 "Translate TIMESTAMP object to custom format.
23847 Format string is defined in `org-time-stamp-custom-formats',
23848 which see.
23850 When optional argument BOUNDARY is non-nil, it is either the
23851 symbol `start' or `end'. In this case, only translate the
23852 starting or ending part of TIMESTAMP if it is a date or time
23853 range. Otherwise, translate both parts.
23855 Return timestamp as-is if `org-display-custom-times' is nil or if
23856 it has a `diary' type."
23857 (let ((type (org-element-property :type timestamp)))
23858 (if (or (not org-display-custom-times) (eq type 'diary))
23859 (org-element-interpret-data timestamp)
23860 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23861 org-time-stamp-custom-formats)))
23862 (if (and (not boundary) (memq type '(active-range inactive-range)))
23863 (concat (org-timestamp-format timestamp fmt)
23864 "--"
23865 (org-timestamp-format timestamp fmt t))
23866 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23870 ;;; Other stuff.
23872 (defvar reftex-docstruct-symbol)
23873 (defvar reftex-cite-format)
23874 (defvar org--rds)
23876 (defun org-reftex-citation ()
23877 "Use reftex-citation to insert a citation into the buffer.
23878 This looks for a line like
23880 #+BIBLIOGRAPHY: foo plain option:-d
23882 and derives from it that foo.bib is the bibliography file relevant
23883 for this document. It then installs the necessary environment for RefTeX
23884 to work in this buffer and calls `reftex-citation' to insert a citation
23885 into the buffer.
23887 Export of such citations to both LaTeX and HTML is handled by the contributed
23888 package ox-bibtex by Taru Karttunen."
23889 (interactive)
23890 (let ((reftex-docstruct-symbol 'org--rds)
23891 (reftex-cite-format "\\cite{%l}")
23892 org--rds bib)
23893 (save-excursion
23894 (save-restriction
23895 (widen)
23896 (let ((case-fold-search t)
23897 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23898 (if (not (save-excursion
23899 (or (re-search-forward re nil t)
23900 (re-search-backward re nil t))))
23901 (user-error "No bibliography defined in file")
23902 (setq bib (concat (match-string 1) ".bib")
23903 org--rds (list (list 'bib bib)))))))
23904 (call-interactively 'reftex-citation)))
23906 ;;;; Functions extending outline functionality
23908 (defun org-beginning-of-line (&optional arg)
23909 "Go to the beginning of the current line. If that is invisible, continue
23910 to a visible line beginning. This makes the function of C-a more intuitive.
23911 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23912 first attempt, and only move to after the tags when the cursor is already
23913 beyond the end of the headline."
23914 (interactive "P")
23915 (let ((pos (point))
23916 (special (if (consp org-special-ctrl-a/e)
23917 (car org-special-ctrl-a/e)
23918 org-special-ctrl-a/e))
23919 deactivate-mark refpos)
23920 (if (org-bound-and-true-p visual-line-mode)
23921 (beginning-of-visual-line 1)
23922 (beginning-of-line 1))
23923 (if (and arg (fboundp 'move-beginning-of-line))
23924 (call-interactively 'move-beginning-of-line)
23925 (if (bobp)
23927 (backward-char 1)
23928 (if (org-truely-invisible-p)
23929 (while (and (not (bobp)) (org-truely-invisible-p))
23930 (backward-char 1)
23931 (beginning-of-line 1))
23932 (forward-char 1))))
23933 (when special
23934 (cond
23935 ((and (looking-at org-complex-heading-regexp)
23936 (eq (char-after (match-end 1)) ?\s))
23937 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23938 (point-at-eol)))
23939 (goto-char
23940 (if (eq special t)
23941 (cond ((> pos refpos) refpos)
23942 ((= pos (point)) refpos)
23943 (t (point)))
23944 (cond ((> pos (point)) (point))
23945 ((not (eq last-command this-command)) (point))
23946 (t refpos)))))
23947 ((org-at-item-p)
23948 ;; Being at an item and not looking at an the item means point
23949 ;; was previously moved to beginning of a visual line, which
23950 ;; doesn't contain the item. Therefore, do nothing special,
23951 ;; just stay here.
23952 (when (looking-at org-list-full-item-re)
23953 ;; Set special position at first white space character after
23954 ;; bullet, and check-box, if any.
23955 (let ((after-bullet
23956 (let ((box (match-end 3)))
23957 (if (not box) (match-end 1)
23958 (let ((after (char-after box)))
23959 (if (and after (= after ? )) (1+ box) box))))))
23960 ;; Special case: Move point to special position when
23961 ;; currently after it or at beginning of line.
23962 (if (eq special t)
23963 (when (or (> pos after-bullet) (= (point) pos))
23964 (goto-char after-bullet))
23965 ;; Reversed case: Move point to special position when
23966 ;; point was already at beginning of line and command is
23967 ;; repeated.
23968 (when (and (= (point) pos) (eq last-command this-command))
23969 (goto-char after-bullet))))))))
23970 (org-no-warnings
23971 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23972 (setq disable-point-adjustment
23973 (or (not (invisible-p (point)))
23974 (not (invisible-p (max (point-min) (1- (point))))))))
23976 (defun org-end-of-line (&optional arg)
23977 "Go to the end of the line.
23978 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23979 tags on the first attempt, and only move to after the tags when
23980 the cursor is already beyond the end of the headline."
23981 (interactive "P")
23982 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23983 org-special-ctrl-a/e))
23984 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23985 'end-of-visual-line)
23986 ((fboundp 'move-end-of-line) 'move-end-of-line)
23987 (t 'end-of-line)))
23988 deactivate-mark)
23989 (if (or (not special) arg) (call-interactively move-fun)
23990 (let* ((element (save-excursion (beginning-of-line)
23991 (org-element-at-point)))
23992 (type (org-element-type element)))
23993 (cond
23994 ((memq type '(headline inlinetask))
23995 (let ((pos (point)))
23996 (beginning-of-line 1)
23997 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23998 (if (eq special t)
23999 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
24000 (goto-char (match-beginning 1))
24001 (goto-char (match-end 0)))
24002 (if (or (< pos (match-end 0))
24003 (not (eq this-command last-command)))
24004 (goto-char (match-end 0))
24005 (goto-char (match-beginning 1))))
24006 (call-interactively move-fun))))
24007 ((outline-invisible-p (line-end-position))
24008 ;; If element is hidden, `move-end-of-line' would put point
24009 ;; after it. Use `end-of-line' to stay on current line.
24010 (call-interactively 'end-of-line))
24011 (t (call-interactively move-fun)))))
24012 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
24013 (setq disable-point-adjustment
24014 (or (not (invisible-p (point)))
24015 (not (invisible-p (max (point-min) (1- (point))))))))
24017 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
24018 (define-key org-mode-map "\C-e" 'org-end-of-line)
24020 (defun org-backward-sentence (&optional _arg)
24021 "Go to beginning of sentence, or beginning of table field.
24022 This will call `backward-sentence' or `org-table-beginning-of-field',
24023 depending on context."
24024 (interactive)
24025 (let* ((element (org-element-at-point))
24026 (contents-begin (org-element-property :contents-begin element))
24027 (table (org-element-lineage element '(table) t)))
24028 (if (and table
24029 (> (point) contents-begin)
24030 (<= (point) (org-element-property :contents-end table)))
24031 (call-interactively #'org-table-beginning-of-field)
24032 (save-restriction
24033 (when (and contents-begin
24034 (< (point-min) contents-begin)
24035 (> (point) contents-begin))
24036 (narrow-to-region contents-begin
24037 (org-element-property :contents-end element)))
24038 (call-interactively #'backward-sentence)))))
24040 (defun org-forward-sentence (&optional _arg)
24041 "Go to end of sentence, or end of table field.
24042 This will call `forward-sentence' or `org-table-end-of-field',
24043 depending on context."
24044 (interactive)
24045 (let* ((element (org-element-at-point))
24046 (contents-end (org-element-property :contents-end element))
24047 (table (org-element-lineage element '(table) t)))
24048 (if (and table
24049 (>= (point) (org-element-property :contents-begin table))
24050 (< (point) contents-end))
24051 (call-interactively #'org-table-end-of-field)
24052 (save-restriction
24053 (when (and contents-end
24054 (> (point-max) contents-end)
24055 ;; Skip blank lines between elements.
24056 (< (org-element-property :end element)
24057 (save-excursion (goto-char contents-end)
24058 (skip-chars-forward " \r\t\n"))))
24059 (narrow-to-region (org-element-property :contents-begin element)
24060 contents-end))
24061 (call-interactively #'forward-sentence)))))
24063 (define-key org-mode-map "\M-a" 'org-backward-sentence)
24064 (define-key org-mode-map "\M-e" 'org-forward-sentence)
24066 (defun org-kill-line (&optional _arg)
24067 "Kill line, to tags or end of line."
24068 (interactive)
24069 (cond
24070 ((or (not org-special-ctrl-k)
24071 (bolp)
24072 (not (org-at-heading-p)))
24073 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
24074 org-ctrl-k-protect-subtree)
24075 (if (or (eq org-ctrl-k-protect-subtree 'error)
24076 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
24077 (user-error "C-k aborted as it would kill a hidden subtree")))
24078 (call-interactively
24079 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
24080 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
24081 (kill-region (point) (match-beginning 1))
24082 (org-set-tags nil t))
24083 (t (kill-region (point) (point-at-eol)))))
24085 (define-key org-mode-map "\C-k" 'org-kill-line)
24087 (defun org-yank (&optional arg)
24088 "Yank. If the kill is a subtree, treat it specially.
24089 This command will look at the current kill and check if is a single
24090 subtree, or a series of subtrees[1]. If it passes the test, and if the
24091 cursor is at the beginning of a line or after the stars of a currently
24092 empty headline, then the yank is handled specially. How exactly depends
24093 on the value of the following variables, both set by default.
24095 `org-yank-folded-subtrees'
24096 When set, the subtree(s) will be folded after insertion, but only
24097 if doing so would now swallow text after the yanked text.
24099 `org-yank-adjusted-subtrees'
24100 When set, the subtree will be promoted or demoted in order to
24101 fit into the local outline tree structure, which means that the
24102 level will be adjusted so that it becomes the smaller one of the
24103 two *visible* surrounding headings.
24105 Any prefix to this command will cause `yank' to be called directly with
24106 no special treatment. In particular, a simple \\[universal-argument] prefix \
24107 will just
24108 plainly yank the text as it is.
24110 \[1] The test checks if the first non-white line is a heading
24111 and if there are no other headings with fewer stars."
24112 (interactive "P")
24113 (org-yank-generic 'yank arg))
24115 (defun org-yank-generic (command arg)
24116 "Perform some yank-like command.
24118 This function implements the behavior described in the `org-yank'
24119 documentation. However, it has been generalized to work for any
24120 interactive command with similar behavior."
24122 ;; pretend to be command COMMAND
24123 (setq this-command command)
24125 (if arg
24126 (call-interactively command)
24128 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
24129 (and (org-kill-is-subtree-p)
24130 (or (bolp)
24131 (and (looking-at "[ \t]*$")
24132 (string-match
24133 "\\`\\*+\\'"
24134 (buffer-substring (point-at-bol) (point)))))))
24135 swallowp)
24136 (cond
24137 ((and subtreep org-yank-folded-subtrees)
24138 (let ((beg (point))
24139 end)
24140 (if (and subtreep org-yank-adjusted-subtrees)
24141 (org-paste-subtree nil nil 'for-yank)
24142 (call-interactively command))
24144 (setq end (point))
24145 (goto-char beg)
24146 (when (and (bolp) subtreep
24147 (not (setq swallowp
24148 (org-yank-folding-would-swallow-text beg end))))
24149 (org-with-limited-levels
24150 (or (looking-at org-outline-regexp)
24151 (re-search-forward org-outline-regexp-bol end t))
24152 (while (and (< (point) end) (looking-at org-outline-regexp))
24153 (outline-hide-subtree)
24154 (org-cycle-show-empty-lines 'folded)
24155 (condition-case nil
24156 (outline-forward-same-level 1)
24157 (error (goto-char end))))))
24158 (when swallowp
24159 (message
24160 "Inserted text not folded because that would swallow text"))
24162 (goto-char end)
24163 (skip-chars-forward " \t\n\r")
24164 (beginning-of-line 1)
24165 (push-mark beg 'nomsg)))
24166 ((and subtreep org-yank-adjusted-subtrees)
24167 (let ((beg (point-at-bol)))
24168 (org-paste-subtree nil nil 'for-yank)
24169 (push-mark beg 'nomsg)))
24171 (call-interactively command))))))
24173 (defun org-yank-folding-would-swallow-text (beg end)
24174 "Would hide-subtree at BEG swallow any text after END?"
24175 (let (level)
24176 (org-with-limited-levels
24177 (save-excursion
24178 (goto-char beg)
24179 (when (or (looking-at org-outline-regexp)
24180 (re-search-forward org-outline-regexp-bol end t))
24181 (setq level (org-outline-level)))
24182 (goto-char end)
24183 (skip-chars-forward " \t\r\n\v\f")
24184 (if (or (eobp)
24185 (and (bolp) (looking-at org-outline-regexp)
24186 (<= (org-outline-level) level)))
24187 nil ; Nothing would be swallowed
24188 t))))) ; something would swallow
24190 (define-key org-mode-map "\C-y" 'org-yank)
24192 (defun org-truely-invisible-p ()
24193 "Check if point is at a character currently not visible.
24194 This version does not only check the character property, but also
24195 `visible-mode'."
24196 ;; Early versions of noutline don't have `outline-invisible-p'.
24197 (if (org-bound-and-true-p visible-mode)
24199 (outline-invisible-p)))
24201 (defun org-invisible-p2 ()
24202 "Check if point is at a character currently not visible."
24203 (save-excursion
24204 (if (and (eolp) (not (bobp))) (backward-char 1))
24205 ;; Early versions of noutline don't have `outline-invisible-p'.
24206 (outline-invisible-p)))
24208 (defun org-back-to-heading (&optional invisible-ok)
24209 "Call `outline-back-to-heading', but provide a better error message."
24210 (condition-case nil
24211 (outline-back-to-heading invisible-ok)
24212 (error (error "Before first headline at position %d in buffer %s"
24213 (point) (current-buffer)))))
24215 (defun org-before-first-heading-p ()
24216 "Before first heading?"
24217 (save-excursion
24218 (end-of-line)
24219 (null (re-search-backward org-outline-regexp-bol nil t))))
24221 (defun org-at-heading-p (&optional ignored)
24222 (outline-on-heading-p t))
24223 ;; Compatibility alias with Org versions < 7.8.03
24224 (defalias 'org-on-heading-p 'org-at-heading-p)
24226 (defun org-in-commented-heading-p (&optional no-inheritance)
24227 "Non-nil if point is under a commented heading.
24228 This function also checks ancestors of the current headline,
24229 unless optional argument NO-INHERITANCE is non-nil."
24230 (cond
24231 ((org-before-first-heading-p) nil)
24232 ((let ((headline (nth 4 (org-heading-components))))
24233 (and headline
24234 (let ((case-fold-search nil))
24235 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
24236 headline)))))
24237 (no-inheritance nil)
24239 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
24241 (defun org-at-comment-p nil
24242 "Is cursor in a commented line?"
24243 (save-excursion
24244 (save-match-data
24245 (beginning-of-line)
24246 (looking-at "^[ \t]*# "))))
24248 (defun org-at-drawer-p nil
24249 "Is cursor at a drawer keyword?"
24250 (save-excursion
24251 (move-beginning-of-line 1)
24252 (looking-at org-drawer-regexp)))
24254 (defun org-at-block-p nil
24255 "Is cursor at a block keyword?"
24256 (save-excursion
24257 (move-beginning-of-line 1)
24258 (looking-at org-block-regexp)))
24260 (defun org-point-at-end-of-empty-headline ()
24261 "If point is at the end of an empty headline, return t, else nil.
24262 If the heading only contains a TODO keyword, it is still still considered
24263 empty."
24264 (and (looking-at "[ \t]*$")
24265 (when org-todo-line-regexp
24266 (save-excursion
24267 (beginning-of-line 1)
24268 (let ((case-fold-search nil))
24269 (looking-at org-todo-line-regexp)
24270 (string= (match-string 3) ""))))))
24272 (defun org-at-heading-or-item-p ()
24273 (or (org-at-heading-p) (org-at-item-p)))
24275 (defun org-at-target-p ()
24276 (or (org-in-regexp org-radio-target-regexp)
24277 (org-in-regexp org-target-regexp)))
24278 ;; Compatibility alias with Org versions < 7.8.03
24279 (defalias 'org-on-target-p 'org-at-target-p)
24281 (defun org-up-heading-all (arg)
24282 "Move to the heading line of which the present line is a subheading.
24283 This function considers both visible and invisible heading lines.
24284 With argument, move up ARG levels."
24285 (if (fboundp 'outline-up-heading-all)
24286 (outline-up-heading-all arg) ; emacs 21 version of outline.el
24287 (outline-up-heading arg t))) ; emacs 22 version of outline.el
24289 (defun org-up-heading-safe ()
24290 "Move to the heading line of which the present line is a subheading.
24291 This version will not throw an error. It will return the level of the
24292 headline found, or nil if no higher level is found.
24294 Also, this function will be a lot faster than `outline-up-heading',
24295 because it relies on stars being the outline starters. This can really
24296 make a significant difference in outlines with very many siblings."
24297 (when (ignore-errors (org-back-to-heading t))
24298 (let ((level-up (1- (funcall outline-level))))
24299 (and (> level-up 0)
24300 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
24301 (funcall outline-level)))))
24303 (defun org-first-sibling-p ()
24304 "Is this heading the first child of its parents?"
24305 (interactive)
24306 (let ((re org-outline-regexp-bol)
24307 level l)
24308 (unless (org-at-heading-p t)
24309 (user-error "Not at a heading"))
24310 (setq level (funcall outline-level))
24311 (save-excursion
24312 (if (not (re-search-backward re nil t))
24314 (setq l (funcall outline-level))
24315 (< l level)))))
24317 (defun org-goto-sibling (&optional previous)
24318 "Goto the next sibling, even if it is invisible.
24319 When PREVIOUS is set, go to the previous sibling instead. Returns t
24320 when a sibling was found. When none is found, return nil and don't
24321 move point."
24322 (let ((fun (if previous 're-search-backward 're-search-forward))
24323 (pos (point))
24324 (re org-outline-regexp-bol)
24325 level l)
24326 (when (ignore-errors (org-back-to-heading t))
24327 (setq level (funcall outline-level))
24328 (catch 'exit
24329 (or previous (forward-char 1))
24330 (while (funcall fun re nil t)
24331 (setq l (funcall outline-level))
24332 (when (< l level) (goto-char pos) (throw 'exit nil))
24333 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
24334 (goto-char pos)
24335 nil))))
24337 (defun org-show-siblings ()
24338 "Show all siblings of the current headline."
24339 (save-excursion
24340 (while (org-goto-sibling) (org-flag-heading nil)))
24341 (save-excursion
24342 (while (org-goto-sibling 'previous)
24343 (org-flag-heading nil))))
24345 (defun org-goto-first-child ()
24346 "Goto the first child, even if it is invisible.
24347 Return t when a child was found. Otherwise don't move point and
24348 return nil."
24349 (let (level (pos (point)) (re org-outline-regexp-bol))
24350 (when (ignore-errors (org-back-to-heading t))
24351 (setq level (outline-level))
24352 (forward-char 1)
24353 (if (and (re-search-forward re nil t) (> (outline-level) level))
24354 (progn (goto-char (match-beginning 0)) t)
24355 (goto-char pos) nil))))
24357 (defun org-show-hidden-entry ()
24358 "Show an entry where even the heading is hidden."
24359 (save-excursion
24360 (org-show-entry)))
24362 (defun org-flag-heading (flag &optional entry)
24363 "Flag the current heading. FLAG non-nil means make invisible.
24364 When ENTRY is non-nil, show the entire entry."
24365 (save-excursion
24366 (org-back-to-heading t)
24367 ;; Check if we should show the entire entry
24368 (if entry
24369 (progn
24370 (org-show-entry)
24371 (save-excursion
24372 (and (outline-next-heading)
24373 (org-flag-heading nil))))
24374 (outline-flag-region (max (point-min) (1- (point)))
24375 (save-excursion (outline-end-of-heading) (point))
24376 flag))))
24378 (defun org-get-next-sibling ()
24379 "Move to next heading of the same level, and return point.
24380 If there is no such heading, return nil.
24381 This is like outline-next-sibling, but invisible headings are ok."
24382 (let ((level (funcall outline-level)))
24383 (outline-next-heading)
24384 (while (and (not (eobp)) (> (funcall outline-level) level))
24385 (outline-next-heading))
24386 (if (or (eobp) (< (funcall outline-level) level))
24388 (point))))
24390 (defun org-get-last-sibling ()
24391 "Move to previous heading of the same level, and return point.
24392 If there is no such heading, return nil."
24393 (let ((opoint (point))
24394 (level (funcall outline-level)))
24395 (outline-previous-heading)
24396 (when (and (/= (point) opoint) (outline-on-heading-p t))
24397 (while (and (> (funcall outline-level) level)
24398 (not (bobp)))
24399 (outline-previous-heading))
24400 (if (< (funcall outline-level) level)
24402 (point)))))
24404 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24405 "Goto to the end of a subtree."
24406 ;; This contains an exact copy of the original function, but it uses
24407 ;; `org-back-to-heading', to make it work also in invisible
24408 ;; trees. And is uses an invisible-ok argument.
24409 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24410 ;; Furthermore, when used inside Org, finding the end of a large subtree
24411 ;; with many children and grandchildren etc, this can be much faster
24412 ;; than the outline version.
24413 (org-back-to-heading invisible-ok)
24414 (let ((first t)
24415 (level (funcall outline-level)))
24416 (if (and (derived-mode-p 'org-mode) (< level 1000))
24417 ;; A true heading (not a plain list item), in Org-mode
24418 ;; This means we can easily find the end by looking
24419 ;; only for the right number of stars. Using a regexp to do
24420 ;; this is so much faster than using a Lisp loop.
24421 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24422 (forward-char 1)
24423 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24424 ;; something else, do it the slow way
24425 (while (and (not (eobp))
24426 (or first (> (funcall outline-level) level)))
24427 (setq first nil)
24428 (outline-next-heading)))
24429 (unless to-heading
24430 (if (memq (preceding-char) '(?\n ?\^M))
24431 (progn
24432 ;; Go to end of line before heading
24433 (forward-char -1)
24434 (if (memq (preceding-char) '(?\n ?\^M))
24435 ;; leave blank line before heading
24436 (forward-char -1))))))
24437 (point))
24439 (defun org-end-of-meta-data (&optional full)
24440 "Skip planning line and properties drawer in current entry.
24441 When optional argument FULL is non-nil, also skip empty lines,
24442 clocking lines and regular drawers at the beginning of the
24443 entry."
24444 (org-back-to-heading t)
24445 (forward-line)
24446 (when (org-looking-at-p org-planning-line-re) (forward-line))
24447 (when (looking-at org-property-drawer-re)
24448 (goto-char (match-end 0))
24449 (forward-line))
24450 (when (and full (not (org-at-heading-p)))
24451 (catch 'exit
24452 (let ((end (save-excursion (outline-next-heading) (point)))
24453 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24454 (while (not (eobp))
24455 (cond ((org-looking-at-p org-drawer-regexp)
24456 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24457 (forward-line)
24458 (throw 'exit t)))
24459 ((org-looking-at-p re) (forward-line))
24460 (t (throw 'exit t))))))))
24462 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24463 "Move forward to the ARG'th subheading at same level as this one.
24464 Stop at the first and last subheadings of a superior heading.
24465 Normally this only looks at visible headings, but when INVISIBLE-OK is
24466 non-nil it will also look at invisible ones."
24467 (interactive "p")
24468 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24469 (if (and arg (< arg 0))
24470 (goto-char (point-min))
24471 (outline-next-heading))
24472 (org-at-heading-p)
24473 (let ((level (- (match-end 0) (match-beginning 0) 1))
24474 (f (if (and arg (< arg 0))
24475 're-search-backward
24476 're-search-forward))
24477 (count (if arg (abs arg) 1))
24478 (result (point)))
24479 (while (and (prog1 (> count 0)
24480 (forward-char (if (and arg (< arg 0)) -1 1)))
24481 (funcall f org-outline-regexp-bol nil 'move))
24482 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24483 (cond ((< l level) (setq count 0))
24484 ((and (= l level)
24485 (or invisible-ok
24486 (progn
24487 (goto-char (line-beginning-position))
24488 (not (outline-invisible-p)))))
24489 (setq count (1- count))
24490 (when (eq l level)
24491 (setq result (point)))))))
24492 (goto-char result))
24493 (beginning-of-line 1)))
24495 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24496 "Move backward to the ARG'th subheading at same level as this one.
24497 Stop at the first and last subheadings of a superior heading."
24498 (interactive "p")
24499 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24501 (defun org-next-visible-heading (arg)
24502 "Move to the next visible heading.
24504 This function wraps `outline-next-visible-heading' with
24505 `org-with-limited-levels' in order to skip over inline tasks and
24506 respect customization of `org-odd-levels-only'."
24507 (interactive "p")
24508 (org-with-limited-levels
24509 (outline-next-visible-heading arg)))
24511 (defun org-previous-visible-heading (arg)
24512 "Move to the next visible heading.
24514 This function wraps `outline-previous-visible-heading' with
24515 `org-with-limited-levels' in order to skip over inline tasks and
24516 respect customization of `org-odd-levels-only'."
24517 (interactive "p")
24518 (org-with-limited-levels
24519 (outline-previous-visible-heading arg)))
24521 (defun org-next-block (arg &optional backward block-regexp)
24522 "Jump to the next block.
24524 With a prefix argument ARG, jump forward ARG many blocks.
24526 When BACKWARD is non-nil, jump to the previous block.
24528 When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
24529 Match data is set according to this regexp when the function
24530 returns.
24532 Return point at beginning of the opening line of found block.
24533 Throw an error if no block is found."
24534 (interactive "p")
24535 (let ((re (or block-regexp "^[ \t]*#\\+BEGIN"))
24536 (case-fold-search t)
24537 (search-fn (if backward #'re-search-backward #'re-search-forward))
24538 (count (or arg 1))
24539 (origin (point))
24540 last-element)
24541 (if backward (beginning-of-line) (end-of-line))
24542 (while (and (> count 0) (funcall search-fn re nil t))
24543 (let ((element (save-excursion
24544 (goto-char (match-beginning 0))
24545 (save-match-data (org-element-at-point)))))
24546 (when (and (memq (org-element-type element)
24547 '(center-block comment-block dynamic-block
24548 example-block export-block quote-block
24549 special-block src-block verse-block))
24550 (<= (match-beginning 0)
24551 (org-element-property :post-affiliated element)))
24552 (setq last-element element)
24553 (decf count))))
24554 (if (= count 0)
24555 (prog1 (goto-char (org-element-property :post-affiliated last-element))
24556 (save-match-data (org-show-context)))
24557 (goto-char origin)
24558 (user-error "No %s code blocks" (if backward "previous" "further")))))
24560 (defun org-previous-block (arg &optional block-regexp)
24561 "Jump to the previous block.
24562 With a prefix argument ARG, jump backward ARG many source blocks.
24563 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24564 (interactive "p")
24565 (org-next-block arg t block-regexp))
24567 (defun org-forward-paragraph ()
24568 "Move forward to beginning of next paragraph or equivalent.
24570 The function moves point to the beginning of the next visible
24571 structural element, which can be a paragraph, a table, a list
24572 item, etc. It also provides some special moves for convenience:
24574 - On an affiliated keyword, jump to the beginning of the
24575 relative element.
24576 - On an item or a footnote definition, move to the second
24577 element inside, if any.
24578 - On a table or a property drawer, jump after it.
24579 - On a verse or source block, stop after blank lines."
24580 (interactive)
24581 (when (eobp) (user-error "Cannot move further down"))
24582 (let* ((deactivate-mark nil)
24583 (element (org-element-at-point))
24584 (type (org-element-type element))
24585 (post-affiliated (org-element-property :post-affiliated element))
24586 (contents-begin (org-element-property :contents-begin element))
24587 (contents-end (org-element-property :contents-end element))
24588 (end (let ((end (org-element-property :end element)) (parent element))
24589 (while (and (setq parent (org-element-property :parent parent))
24590 (= (org-element-property :contents-end parent) end))
24591 (setq end (org-element-property :end parent)))
24592 end)))
24593 (cond ((not element)
24594 (skip-chars-forward " \r\t\n")
24595 (or (eobp) (beginning-of-line)))
24596 ;; On affiliated keywords, move to element's beginning.
24597 ((< (point) post-affiliated)
24598 (goto-char post-affiliated))
24599 ;; At a table row, move to the end of the table. Similarly,
24600 ;; at a node property, move to the end of the property
24601 ;; drawer.
24602 ((memq type '(node-property table-row))
24603 (goto-char (org-element-property
24604 :end (org-element-property :parent element))))
24605 ((memq type '(property-drawer table)) (goto-char end))
24606 ;; Consider blank lines as separators in verse and source
24607 ;; blocks to ease editing.
24608 ((memq type '(src-block verse-block))
24609 (when (eq type 'src-block)
24610 (setq contents-end
24611 (save-excursion (goto-char end)
24612 (skip-chars-backward " \r\t\n")
24613 (line-beginning-position))))
24614 (beginning-of-line)
24615 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24616 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24617 (goto-char end)
24618 (skip-chars-forward " \r\t\n")
24619 (if (= (point) contents-end) (goto-char end)
24620 (beginning-of-line))))
24621 ;; With no contents, just skip element.
24622 ((not contents-begin) (goto-char end))
24623 ;; If contents are invisible, skip the element altogether.
24624 ((outline-invisible-p (line-end-position))
24625 (case type
24626 (headline
24627 (org-with-limited-levels (outline-next-visible-heading 1)))
24628 ;; At a plain list, make sure we move to the next item
24629 ;; instead of skipping the whole list.
24630 (plain-list (forward-char)
24631 (org-forward-paragraph))
24632 (otherwise (goto-char end))))
24633 ((>= (point) contents-end) (goto-char end))
24634 ((>= (point) contents-begin)
24635 ;; This can only happen on paragraphs and plain lists.
24636 (case type
24637 (paragraph (goto-char end))
24638 ;; At a plain list, try to move to second element in
24639 ;; first item, if possible.
24640 (plain-list (end-of-line)
24641 (org-forward-paragraph))))
24642 ;; When contents start on the middle of a line (e.g. in
24643 ;; items and footnote definitions), try to reach first
24644 ;; element starting after current line.
24645 ((> (line-end-position) contents-begin)
24646 (end-of-line)
24647 (org-forward-paragraph))
24648 (t (goto-char contents-begin)))))
24650 (defun org-backward-paragraph ()
24651 "Move backward to start of previous paragraph or equivalent.
24653 The function moves point to the beginning of the current
24654 structural element, which can be a paragraph, a table, a list
24655 item, etc., or to the beginning of the previous visible one if
24656 point is already there. It also provides some special moves for
24657 convenience:
24659 - On an affiliated keyword, jump to the first one.
24660 - On a table or a property drawer, move to its beginning.
24661 - On a verse or source block, stop before blank lines."
24662 (interactive)
24663 (when (bobp) (user-error "Cannot move further up"))
24664 (let* ((deactivate-mark nil)
24665 (element (org-element-at-point))
24666 (type (org-element-type element))
24667 (contents-begin (org-element-property :contents-begin element))
24668 (contents-end (org-element-property :contents-end element))
24669 (post-affiliated (org-element-property :post-affiliated element))
24670 (begin (org-element-property :begin element)))
24671 (cond
24672 ((not element) (goto-char (point-min)))
24673 ((= (point) begin)
24674 (backward-char)
24675 (org-backward-paragraph))
24676 ((<= (point) post-affiliated) (goto-char begin))
24677 ((memq type '(node-property table-row))
24678 (goto-char (org-element-property
24679 :post-affiliated (org-element-property :parent element))))
24680 ((memq type '(property-drawer table)) (goto-char begin))
24681 ((memq type '(src-block verse-block))
24682 (when (eq type 'src-block)
24683 (setq contents-begin
24684 (save-excursion (goto-char begin) (forward-line) (point))))
24685 (if (= (point) contents-begin) (goto-char post-affiliated)
24686 ;; Inside a verse block, see blank lines as paragraph
24687 ;; separators.
24688 (let ((origin (point)))
24689 (skip-chars-backward " \r\t\n" contents-begin)
24690 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24691 (skip-chars-forward " \r\t\n" origin)
24692 (if (= (point) origin) (goto-char contents-begin)
24693 (beginning-of-line))))))
24694 ((not contents-begin) (goto-char (or post-affiliated begin)))
24695 ((eq type 'paragraph)
24696 (goto-char contents-begin)
24697 ;; When at first paragraph in an item or a footnote definition,
24698 ;; move directly to beginning of line.
24699 (let ((parent-contents
24700 (org-element-property
24701 :contents-begin (org-element-property :parent element))))
24702 (when (and parent-contents (= parent-contents contents-begin))
24703 (beginning-of-line))))
24704 ;; At the end of a greater element, move to the beginning of the
24705 ;; last element within.
24706 ((>= (point) contents-end)
24707 (goto-char (1- contents-end))
24708 (org-backward-paragraph))
24709 (t (goto-char (or post-affiliated begin))))
24710 ;; Ensure we never leave point invisible.
24711 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24713 (defun org-forward-element ()
24714 "Move forward by one element.
24715 Move to the next element at the same level, when possible."
24716 (interactive)
24717 (cond ((eobp) (user-error "Cannot move further down"))
24718 ((org-with-limited-levels (org-at-heading-p))
24719 (let ((origin (point)))
24720 (goto-char (org-end-of-subtree nil t))
24721 (unless (org-with-limited-levels (org-at-heading-p))
24722 (goto-char origin)
24723 (user-error "Cannot move further down"))))
24725 (let* ((elem (org-element-at-point))
24726 (end (org-element-property :end elem))
24727 (parent (org-element-property :parent elem)))
24728 (cond ((and parent (= (org-element-property :contents-end parent) end))
24729 (goto-char (org-element-property :end parent)))
24730 ((integer-or-marker-p end) (goto-char end))
24731 (t (message "No element at point")))))))
24733 (defun org-backward-element ()
24734 "Move backward by one element.
24735 Move to the previous element at the same level, when possible."
24736 (interactive)
24737 (cond ((bobp) (user-error "Cannot move further up"))
24738 ((org-with-limited-levels (org-at-heading-p))
24739 ;; At a headline, move to the previous one, if any, or stay
24740 ;; here.
24741 (let ((origin (point)))
24742 (org-with-limited-levels (org-backward-heading-same-level 1))
24743 ;; When current headline has no sibling above, move to its
24744 ;; parent.
24745 (when (= (point) origin)
24746 (or (org-with-limited-levels (org-up-heading-safe))
24747 (progn (goto-char origin)
24748 (user-error "Cannot move further up"))))))
24750 (let* ((elem (org-element-at-point))
24751 (beg (org-element-property :begin elem)))
24752 (cond
24753 ;; Move to beginning of current element if point isn't
24754 ;; there already.
24755 ((null beg) (message "No element at point"))
24756 ((/= (point) beg) (goto-char beg))
24757 (t (goto-char beg)
24758 (skip-chars-backward " \r\t\n")
24759 (unless (bobp)
24760 (let ((prev (org-element-at-point)))
24761 (goto-char (org-element-property :begin prev))
24762 (while (and (setq prev (org-element-property :parent prev))
24763 (<= (org-element-property :end prev) beg))
24764 (goto-char (org-element-property :begin prev)))))))))))
24766 (defun org-up-element ()
24767 "Move to upper element."
24768 (interactive)
24769 (if (org-with-limited-levels (org-at-heading-p))
24770 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24771 (let* ((elem (org-element-at-point))
24772 (parent (org-element-property :parent elem)))
24773 (if parent (goto-char (org-element-property :begin parent))
24774 (if (org-with-limited-levels (org-before-first-heading-p))
24775 (user-error "No surrounding element")
24776 (org-with-limited-levels (org-back-to-heading)))))))
24778 (defvar org-element-greater-elements)
24779 (defun org-down-element ()
24780 "Move to inner element."
24781 (interactive)
24782 (let ((element (org-element-at-point)))
24783 (cond
24784 ((memq (org-element-type element) '(plain-list table))
24785 (goto-char (org-element-property :contents-begin element))
24786 (forward-char))
24787 ((memq (org-element-type element) org-element-greater-elements)
24788 ;; If contents are hidden, first disclose them.
24789 (when (outline-invisible-p (line-end-position)) (org-cycle))
24790 (goto-char (or (org-element-property :contents-begin element)
24791 (user-error "No content for this element"))))
24792 (t (user-error "No inner element")))))
24794 (defun org-drag-element-backward ()
24795 "Move backward element at point."
24796 (interactive)
24797 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24798 (let* ((elem (org-element-at-point))
24799 (prev-elem
24800 (save-excursion
24801 (goto-char (org-element-property :begin elem))
24802 (skip-chars-backward " \r\t\n")
24803 (unless (bobp)
24804 (let* ((beg (org-element-property :begin elem))
24805 (prev (org-element-at-point))
24806 (up prev))
24807 (while (and (setq up (org-element-property :parent up))
24808 (<= (org-element-property :end up) beg))
24809 (setq prev up))
24810 prev)))))
24811 ;; Error out if no previous element or previous element is
24812 ;; a parent of the current one.
24813 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24814 (user-error "Cannot drag element backward")
24815 (let ((pos (point)))
24816 (org-element-swap-A-B prev-elem elem)
24817 (goto-char (+ (org-element-property :begin prev-elem)
24818 (- pos (org-element-property :begin elem)))))))))
24820 (defun org-drag-element-forward ()
24821 "Move forward element at point."
24822 (interactive)
24823 (let* ((pos (point))
24824 (elem (org-element-at-point)))
24825 (when (= (point-max) (org-element-property :end elem))
24826 (user-error "Cannot drag element forward"))
24827 (goto-char (org-element-property :end elem))
24828 (let ((next-elem (org-element-at-point)))
24829 (when (or (org-element-nested-p elem next-elem)
24830 (and (eq (org-element-type next-elem) 'headline)
24831 (not (eq (org-element-type elem) 'headline))))
24832 (goto-char pos)
24833 (user-error "Cannot drag element forward"))
24834 ;; Compute new position of point: it's shifted by NEXT-ELEM
24835 ;; body's length (without final blanks) and by the length of
24836 ;; blanks between ELEM and NEXT-ELEM.
24837 (let ((size-next (- (save-excursion
24838 (goto-char (org-element-property :end next-elem))
24839 (skip-chars-backward " \r\t\n")
24840 (forward-line)
24841 ;; Small correction if buffer doesn't end
24842 ;; with a newline character.
24843 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24844 (org-element-property :begin next-elem)))
24845 (size-blank (- (org-element-property :end elem)
24846 (save-excursion
24847 (goto-char (org-element-property :end elem))
24848 (skip-chars-backward " \r\t\n")
24849 (forward-line)
24850 (point)))))
24851 (org-element-swap-A-B elem next-elem)
24852 (goto-char (+ pos size-next size-blank))))))
24854 (defun org-drag-line-forward (arg)
24855 "Drag the line at point ARG lines forward."
24856 (interactive "p")
24857 (dotimes (n (abs arg))
24858 (let ((c (current-column)))
24859 (if (< 0 arg)
24860 (progn
24861 (beginning-of-line 2)
24862 (transpose-lines 1)
24863 (beginning-of-line 0))
24864 (transpose-lines 1)
24865 (beginning-of-line -1))
24866 (org-move-to-column c))))
24868 (defun org-drag-line-backward (arg)
24869 "Drag the line at point ARG lines backward."
24870 (interactive "p")
24871 (org-drag-line-forward (- arg)))
24873 (defun org-mark-element ()
24874 "Put point at beginning of this element, mark at end.
24876 Interactively, if this command is repeated or (in Transient Mark
24877 mode) if the mark is active, it marks the next element after the
24878 ones already marked."
24879 (interactive)
24880 (let (deactivate-mark)
24881 (if (and (org-called-interactively-p 'any)
24882 (or (and (eq last-command this-command) (mark t))
24883 (and transient-mark-mode mark-active)))
24884 (set-mark
24885 (save-excursion
24886 (goto-char (mark))
24887 (goto-char (org-element-property :end (org-element-at-point)))))
24888 (let ((element (org-element-at-point)))
24889 (end-of-line)
24890 (push-mark (org-element-property :end element) t t)
24891 (goto-char (org-element-property :begin element))))))
24893 (defun org-narrow-to-element ()
24894 "Narrow buffer to current element."
24895 (interactive)
24896 (let ((elem (org-element-at-point)))
24897 (cond
24898 ((eq (car elem) 'headline)
24899 (narrow-to-region
24900 (org-element-property :begin elem)
24901 (org-element-property :end elem)))
24902 ((memq (car elem) org-element-greater-elements)
24903 (narrow-to-region
24904 (org-element-property :contents-begin elem)
24905 (org-element-property :contents-end elem)))
24907 (narrow-to-region
24908 (org-element-property :begin elem)
24909 (org-element-property :end elem))))))
24911 (defun org-transpose-element ()
24912 "Transpose current and previous elements, keeping blank lines between.
24913 Point is moved after both elements."
24914 (interactive)
24915 (org-skip-whitespace)
24916 (let ((end (org-element-property :end (org-element-at-point))))
24917 (org-drag-element-backward)
24918 (goto-char end)))
24920 (defun org-unindent-buffer ()
24921 "Un-indent the visible part of the buffer.
24922 Relative indentation (between items, inside blocks, etc.) isn't
24923 modified."
24924 (interactive)
24925 (unless (eq major-mode 'org-mode)
24926 (user-error "Cannot un-indent a buffer not in Org mode"))
24927 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24928 unindent-tree ; For byte-compiler.
24929 (unindent-tree
24930 (function
24931 (lambda (contents)
24932 (mapc
24933 (lambda (element)
24934 (if (memq (org-element-type element) '(headline section))
24935 (funcall unindent-tree (org-element-contents element))
24936 (save-excursion
24937 (save-restriction
24938 (narrow-to-region
24939 (org-element-property :begin element)
24940 (org-element-property :end element))
24941 (org-do-remove-indentation)))))
24942 (reverse contents))))))
24943 (funcall unindent-tree (org-element-contents parse-tree))))
24945 (defun org-show-subtree ()
24946 "Show everything after this heading at deeper levels."
24947 (interactive)
24948 (outline-flag-region
24949 (point)
24950 (save-excursion
24951 (org-end-of-subtree t t))
24952 nil))
24954 (defun org-show-entry ()
24955 "Show the body directly following this heading.
24956 Show the heading too, if it is currently invisible."
24957 (interactive)
24958 (save-excursion
24959 (ignore-errors
24960 (org-back-to-heading t)
24961 (outline-flag-region
24962 (max (point-min) (1- (point)))
24963 (save-excursion
24964 (if (re-search-forward
24965 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24966 (match-beginning 1)
24967 (point-max)))
24968 nil)
24969 (org-cycle-hide-drawers 'children))))
24971 (defun org-make-options-regexp (kwds &optional extra)
24972 "Make a regular expression for keyword lines.
24973 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24974 when non-nil, is a regexp matching keywords names."
24975 (concat "^[ \t]*#\\+\\("
24976 (regexp-opt kwds)
24977 (and extra (concat (and kwds "\\|") extra))
24978 "\\):[ \t]*\\(.*\\)"))
24980 ;; Make isearch reveal the necessary context
24981 (defun org-isearch-end ()
24982 "Reveal context after isearch exits."
24983 (when isearch-success ; only if search was successful
24984 (if (featurep 'xemacs)
24985 ;; Under XEmacs, the hook is run in the correct place,
24986 ;; we directly show the context.
24987 (org-show-context 'isearch)
24988 ;; In Emacs the hook runs *before* restoring the overlays.
24989 ;; So we have to use a one-time post-command-hook to do this.
24990 ;; (Emacs 22 has a special variable, see function `org-mode')
24991 (unless (and (boundp 'isearch-mode-end-hook-quit)
24992 isearch-mode-end-hook-quit)
24993 ;; Only when the isearch was not quitted.
24994 (org-add-hook 'post-command-hook 'org-isearch-post-command
24995 'append 'local)))))
24997 (defun org-isearch-post-command ()
24998 "Remove self from hook, and show context."
24999 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
25000 (org-show-context 'isearch))
25003 ;;;; Integration with and fixes for other packages
25005 ;;; Imenu support
25007 (defvar org-imenu-markers nil
25008 "All markers currently used by Imenu.")
25009 (make-variable-buffer-local 'org-imenu-markers)
25011 (defun org-imenu-new-marker (&optional pos)
25012 "Return a new marker for use by Imenu, and remember the marker."
25013 (let ((m (make-marker)))
25014 (move-marker m (or pos (point)))
25015 (push m org-imenu-markers)
25018 (defun org-imenu-get-tree ()
25019 "Produce the index for Imenu."
25020 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
25021 (setq org-imenu-markers nil)
25022 (let* ((n org-imenu-depth)
25023 (re (concat "^" (org-get-limited-outline-regexp)))
25024 (subs (make-vector (1+ n) nil))
25025 (last-level 0)
25026 m level head0 head)
25027 (save-excursion
25028 (save-restriction
25029 (widen)
25030 (goto-char (point-max))
25031 (while (re-search-backward re nil t)
25032 (setq level (org-reduced-level (funcall outline-level)))
25033 (when (and (<= level n)
25034 (looking-at org-complex-heading-regexp)
25035 (setq head0 (org-match-string-no-properties 4)))
25036 (setq head (org-link-display-format head0)
25037 m (org-imenu-new-marker))
25038 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
25039 (if (>= level last-level)
25040 (push (cons head m) (aref subs level))
25041 (push (cons head (aref subs (1+ level))) (aref subs level))
25042 (loop for i from (1+ level) to n do (aset subs i nil)))
25043 (setq last-level level)))))
25044 (aref subs 1)))
25046 (eval-after-load "imenu"
25047 '(progn
25048 (add-hook 'imenu-after-jump-hook
25049 (lambda ()
25050 (if (derived-mode-p 'org-mode)
25051 (org-show-context 'org-goto))))))
25053 (defun org-link-display-format (link)
25054 "Replace a link with its the description.
25055 If there is no description, use the link target."
25056 (save-match-data
25057 (if (string-match org-bracket-link-analytic-regexp link)
25058 (replace-match (if (match-end 5)
25059 (match-string 5 link)
25060 (concat (match-string 1 link)
25061 (match-string 3 link)))
25062 nil t link)
25063 link)))
25065 (defun org-toggle-link-display ()
25066 "Toggle the literal or descriptive display of links."
25067 (interactive)
25068 (if org-descriptive-links
25069 (progn (org-remove-from-invisibility-spec '(org-link))
25070 (org-restart-font-lock)
25071 (setq org-descriptive-links nil))
25072 (progn (add-to-invisibility-spec '(org-link))
25073 (org-restart-font-lock)
25074 (setq org-descriptive-links t))))
25076 ;; Speedbar support
25078 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
25079 "Overlay marking the agenda restriction line in speedbar.")
25080 (overlay-put org-speedbar-restriction-lock-overlay
25081 'face 'org-agenda-restriction-lock)
25082 (overlay-put org-speedbar-restriction-lock-overlay
25083 'help-echo "Agendas are currently limited to this item.")
25084 (org-detach-overlay org-speedbar-restriction-lock-overlay)
25086 (defun org-speedbar-set-agenda-restriction ()
25087 "Restrict future agenda commands to the location at point in speedbar.
25088 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
25089 (interactive)
25090 (require 'org-agenda)
25091 (let (p m tp np dir txt)
25092 (cond
25093 ((setq p (text-property-any (point-at-bol) (point-at-eol)
25094 'org-imenu t))
25095 (setq m (get-text-property p 'org-imenu-marker))
25096 (with-current-buffer (marker-buffer m)
25097 (goto-char m)
25098 (org-agenda-set-restriction-lock 'subtree)))
25099 ((setq p (text-property-any (point-at-bol) (point-at-eol)
25100 'speedbar-function 'speedbar-find-file))
25101 (setq tp (previous-single-property-change
25102 (1+ p) 'speedbar-function)
25103 np (next-single-property-change
25104 tp 'speedbar-function)
25105 dir (speedbar-line-directory)
25106 txt (buffer-substring-no-properties (or tp (point-min))
25107 (or np (point-max))))
25108 (with-current-buffer (find-file-noselect
25109 (let ((default-directory dir))
25110 (expand-file-name txt)))
25111 (unless (derived-mode-p 'org-mode)
25112 (user-error "Cannot restrict to non-Org-mode file"))
25113 (org-agenda-set-restriction-lock 'file)))
25114 (t (user-error "Don't know how to restrict Org-mode's agenda")))
25115 (move-overlay org-speedbar-restriction-lock-overlay
25116 (point-at-bol) (point-at-eol))
25117 (setq current-prefix-arg nil)
25118 (org-agenda-maybe-redo)))
25120 (defvar speedbar-file-key-map)
25121 (declare-function speedbar-add-supported-extension "speedbar" (extension))
25122 (eval-after-load "speedbar"
25123 '(progn
25124 (speedbar-add-supported-extension ".org")
25125 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
25126 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
25127 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
25128 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
25129 (add-hook 'speedbar-visiting-tag-hook
25130 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
25132 ;;; Fixes and Hacks for problems with other packages
25134 (defun org--flyspell-object-check-p (element)
25135 "Non-nil when Flyspell can check object at point.
25136 ELEMENT is the element at point."
25137 (let ((object (save-excursion
25138 (when (org-looking-at-p "\\>") (backward-char))
25139 (org-element-context element))))
25140 (case (org-element-type object)
25141 ;; Prevent checks in links due to keybinding conflict with
25142 ;; Flyspell.
25143 ((code entity export-snippet inline-babel-call
25144 inline-src-block line-break latex-fragment link macro
25145 statistics-cookie target timestamp verbatim)
25146 nil)
25147 (footnote-reference
25148 ;; Only in inline footnotes, within the definition.
25149 (and (eq (org-element-property :type object) 'inline)
25150 (< (save-excursion
25151 (goto-char (org-element-property :begin object))
25152 (search-forward ":" nil t 2))
25153 (point))))
25154 (otherwise t))))
25156 (defun org-mode-flyspell-verify ()
25157 "Function used for `flyspell-generic-check-word-predicate'."
25158 (if (org-at-heading-p)
25159 ;; At a headline or an inlinetask, check title only. This is
25160 ;; faster than relying on `org-element-at-point'.
25161 (and (save-excursion (beginning-of-line)
25162 (and (let ((case-fold-search t))
25163 (not (looking-at "\\*+ END[ \t]*$")))
25164 (looking-at org-complex-heading-regexp)))
25165 (match-beginning 4)
25166 (>= (point) (match-beginning 4))
25167 (or (not (match-beginning 5))
25168 (< (point) (match-beginning 5))))
25169 (let* ((element (org-element-at-point))
25170 (post-affiliated (org-element-property :post-affiliated element)))
25171 (cond
25172 ;; Ignore checks in all affiliated keywords but captions.
25173 ((< (point) post-affiliated)
25174 (and (save-excursion
25175 (beginning-of-line)
25176 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
25177 (> (point) (match-end 0))
25178 (org--flyspell-object-check-p element)))
25179 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
25180 ((let ((log (org-log-into-drawer)))
25181 (and log
25182 (let ((drawer (org-element-lineage element '(drawer))))
25183 (and drawer
25184 (eq (compare-strings
25185 log nil nil
25186 (org-element-property :drawer-name drawer) nil nil t)
25187 t)))))
25188 nil)
25190 (case (org-element-type element)
25191 ((comment quote-section) t)
25192 (comment-block
25193 ;; Allow checks between block markers, not on them.
25194 (and (> (line-beginning-position) post-affiliated)
25195 (save-excursion
25196 (end-of-line)
25197 (skip-chars-forward " \r\t\n")
25198 (< (point) (org-element-property :end element)))))
25199 ;; Arbitrary list of keywords where checks are meaningful.
25200 ;; Make sure point is on the value part of the element.
25201 (keyword
25202 (and (member (org-element-property :key element)
25203 '("DESCRIPTION" "TITLE"))
25204 (save-excursion
25205 (search-backward ":" (line-beginning-position) t))))
25206 ;; Check is globally allowed in paragraphs verse blocks and
25207 ;; table rows (after affiliated keywords) but some objects
25208 ;; must not be affected.
25209 ((paragraph table-row verse-block)
25210 (let ((cbeg (org-element-property :contents-begin element))
25211 (cend (org-element-property :contents-end element)))
25212 (and cbeg (>= (point) cbeg) (< (point) cend)
25213 (org--flyspell-object-check-p element))))))))))
25214 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
25216 (defun org-remove-flyspell-overlays-in (beg end)
25217 "Remove flyspell overlays in region."
25218 (and (org-bound-and-true-p flyspell-mode)
25219 (fboundp 'flyspell-delete-region-overlays)
25220 (flyspell-delete-region-overlays beg end)))
25222 (defvar flyspell-delayed-commands)
25223 (eval-after-load "flyspell"
25224 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
25226 ;; Make `bookmark-jump' shows the jump location if it was hidden.
25227 (eval-after-load "bookmark"
25228 '(if (boundp 'bookmark-after-jump-hook)
25229 ;; We can use the hook
25230 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
25231 ;; Hook not available, use advice
25232 (defadvice bookmark-jump (after org-make-visible activate)
25233 "Make the position visible."
25234 (org-bookmark-jump-unhide))))
25236 ;; Make sure saveplace shows the location if it was hidden
25237 (eval-after-load "saveplace"
25238 '(defadvice save-place-find-file-hook (after org-make-visible activate)
25239 "Make the position visible."
25240 (org-bookmark-jump-unhide)))
25242 ;; Make sure ecb shows the location if it was hidden
25243 (eval-after-load "ecb"
25244 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
25245 "Make hierarchy visible when jumping into location from ECB tree buffer."
25246 (if (derived-mode-p 'org-mode)
25247 (org-show-context))))
25249 (defun org-bookmark-jump-unhide ()
25250 "Unhide the current position, to show the bookmark location."
25251 (and (derived-mode-p 'org-mode)
25252 (or (outline-invisible-p)
25253 (save-excursion (goto-char (max (point-min) (1- (point))))
25254 (outline-invisible-p)))
25255 (org-show-context 'bookmark-jump)))
25257 (defun org-mark-jump-unhide ()
25258 "Make the point visible with `org-show-context' after jumping to the mark."
25259 (when (and (derived-mode-p 'org-mode)
25260 (outline-invisible-p))
25261 (org-show-context 'mark-goto)))
25263 (eval-after-load "simple"
25264 '(defadvice pop-to-mark-command (after org-make-visible activate)
25265 "Make the point visible with `org-show-context'."
25266 (org-mark-jump-unhide)))
25268 (eval-after-load "simple"
25269 '(defadvice exchange-point-and-mark (after org-make-visible activate)
25270 "Make the point visible with `org-show-context'."
25271 (org-mark-jump-unhide)))
25273 (eval-after-load "simple"
25274 '(defadvice pop-global-mark (after org-make-visible activate)
25275 "Make the point visible with `org-show-context'."
25276 (org-mark-jump-unhide)))
25278 ;; Make session.el ignore our circular variable
25279 (defvar session-globals-exclude)
25280 (eval-after-load "session"
25281 '(add-to-list 'session-globals-exclude 'org-mark-ring))
25283 ;;;; Finish up
25285 (provide 'org)
25287 (run-hooks 'org-load-hook)
25289 ;;; org.el ends here