Add missing argument
[org-mode.git] / lisp / org.el
blob2e5b91d070347802c59f16584044598ea994115f
1 ;;; org.el --- Outline-based notes management and organizer
3 ;; Carstens outline-mode for keeping track of everything.
4 ;; Copyright (C) 2004-2015 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 only 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 a capture note is filed away in an interactive way (when exiting the
2305 note buffer with `C-1 C-c C-c'. The user is prompted for an org file,
2306 with `org-directory' as the default path."
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 (1- (match-beginning 0)) 'face)))
5856 (not (org-in-src-block-p)))
5857 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5858 (setq f (get-text-property (match-beginning 0) 'face))
5859 (setq hl (org-match-string-no-properties 0))
5860 (if (or (eq f 'org-tag)
5861 (and (listp f) (memq 'org-tag f)))
5863 (add-text-properties (match-beginning 0) (match-end 0)
5864 (list 'mouse-face 'highlight
5865 'face 'org-link
5866 'htmlize-link `(:uri ,hl)
5867 'keymap org-mouse-map))
5868 (org-rear-nonsticky-at (match-end 0)))
5869 t)))
5871 (defun org-activate-code (limit)
5872 (if (re-search-forward "^[ \t]*\\(:\\(?: .*\\|$\\)\n?\\)" limit t)
5873 (progn
5874 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5875 (remove-text-properties (match-beginning 0) (match-end 0)
5876 '(display t invisible t intangible t))
5877 t)))
5879 (defcustom org-src-fontify-natively t
5880 "When non-nil, fontify code in code blocks."
5881 :type 'boolean
5882 :version "24.4"
5883 :package-version '(Org . "8.3")
5884 :group 'org-appearance
5885 :group 'org-babel)
5887 (defcustom org-allow-promoting-top-level-subtree nil
5888 "When non-nil, allow promoting a top level subtree.
5889 The leading star of the top level headline will be replaced
5890 by a #."
5891 :type 'boolean
5892 :version "24.1"
5893 :group 'org-appearance)
5895 (defun org-fontify-meta-lines-and-blocks (limit)
5896 (condition-case nil
5897 (org-fontify-meta-lines-and-blocks-1 limit)
5898 (error (message "org-mode fontification error"))))
5900 (defun org-fontify-meta-lines-and-blocks-1 (limit)
5901 "Fontify #+ lines and blocks."
5902 (let ((case-fold-search t))
5903 (if (re-search-forward
5904 "^\\([ \t]*#\\(\\(\\+[a-zA-Z]+:?\\| \\|$\\)\\(_\\([a-zA-Z]+\\)\\)?\\)[ \t]*\\(\\([^ \t\n]*\\)[ \t]*\\(.*\\)\\)\\)"
5905 limit t)
5906 (let ((beg (match-beginning 0))
5907 (block-start (match-end 0))
5908 (block-end nil)
5909 (lang (match-string 7))
5910 (beg1 (line-beginning-position 2))
5911 (dc1 (downcase (match-string 2)))
5912 (dc3 (downcase (match-string 3)))
5913 end end1 quoting block-type ovl)
5914 (cond
5915 ((and (match-end 4) (equal dc3 "+begin"))
5916 ;; Truly a block
5917 (setq block-type (downcase (match-string 5))
5918 quoting (member block-type org-protecting-blocks))
5919 (when (re-search-forward
5920 (concat "^[ \t]*#\\+end" (match-string 4) "\\>.*")
5921 nil t) ;; on purpose, we look further than LIMIT
5922 (setq end (min (point-max) (match-end 0))
5923 end1 (min (point-max) (1- (match-beginning 0))))
5924 (setq block-end (match-beginning 0))
5925 (when quoting
5926 (org-remove-flyspell-overlays-in beg1 end1)
5927 (remove-text-properties beg end
5928 '(display t invisible t intangible t)))
5929 (add-text-properties
5930 beg end '(font-lock-fontified t font-lock-multiline t))
5931 (add-text-properties beg beg1 '(face org-meta-line))
5932 (org-remove-flyspell-overlays-in beg beg1)
5933 (add-text-properties ; For end_src
5934 end1 (min (point-max) (1+ end)) '(face org-meta-line))
5935 (org-remove-flyspell-overlays-in end1 end)
5936 (cond
5937 ((and lang (not (string= lang "")) org-src-fontify-natively)
5938 (org-src-font-lock-fontify-block lang block-start block-end)
5939 (add-text-properties beg1 block-end '(src-block t)))
5940 (quoting
5941 (add-text-properties beg1 (min (point-max) (1+ end1))
5942 '(face org-block))) ; end of source block
5943 ((not org-fontify-quote-and-verse-blocks))
5944 ((string= block-type "quote")
5945 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-quote)))
5946 ((string= block-type "verse")
5947 (add-text-properties beg1 (min (point-max) (1+ end1)) '(face org-verse))))
5948 (add-text-properties beg beg1 '(face org-block-begin-line))
5949 (add-text-properties (min (point-max) (1+ end)) (min (point-max) (1+ end1))
5950 '(face org-block-end-line))
5952 ((member dc1 '("+title:" "+author:" "+email:" "+date:"))
5953 (org-remove-flyspell-overlays-in
5954 (match-beginning 0)
5955 (if (equal "+title:" dc1) (match-end 2) (match-end 0)))
5956 (add-text-properties
5957 beg (match-end 3)
5958 (if (member (intern (substring dc1 1 -1)) org-hidden-keywords)
5959 '(font-lock-fontified t invisible t)
5960 '(font-lock-fontified t face org-document-info-keyword)))
5961 (add-text-properties
5962 (match-beginning 6) (min (point-max) (1+ (match-end 6)))
5963 (if (string-equal dc1 "+title:")
5964 '(font-lock-fontified t face org-document-title)
5965 '(font-lock-fontified t face org-document-info))))
5966 ((equal dc1 "+caption:")
5967 (org-remove-flyspell-overlays-in (match-end 2) (match-end 0))
5968 (remove-text-properties (match-beginning 0) (match-end 0)
5969 '(display t invisible t intangible t))
5970 (add-text-properties (match-beginning 1) (match-end 3)
5971 '(font-lock-fontified t face org-meta-line))
5972 (add-text-properties (match-beginning 6) (+ (match-end 6) 1)
5973 '(font-lock-fontified t face org-block))
5975 ((member dc3 '(" " ""))
5976 (org-remove-flyspell-overlays-in beg (match-end 0))
5977 (add-text-properties
5978 beg (match-end 0)
5979 '(font-lock-fontified t face font-lock-comment-face)))
5980 (t ;; just any other in-buffer setting, but not indented
5981 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5982 (remove-text-properties (match-beginning 0) (match-end 0)
5983 '(display t invisible t intangible t))
5984 (add-text-properties beg (match-end 0)
5985 '(font-lock-fontified t face org-meta-line))
5986 t))))))
5988 (defun org-fontify-drawers (limit)
5989 "Fontify drawers."
5990 (when (re-search-forward org-drawer-regexp limit t)
5991 (add-text-properties
5992 (match-beginning 0) (match-end 0)
5993 '(font-lock-fontified t face org-special-keyword))
5994 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
5997 (defun org-fontify-macros (limit)
5998 "Fontify macros."
5999 (when (re-search-forward "\\({{{\\).+?\\(}}}\\)" limit t)
6000 (add-text-properties
6001 (match-beginning 0) (match-end 0)
6002 '(font-lock-fontified t face org-macro))
6003 (when org-hide-macro-markers
6004 (add-text-properties (match-end 2) (match-beginning 2)
6005 '(invisible t))
6006 (add-text-properties (match-beginning 1) (match-end 1)
6007 '(invisible t)))
6008 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6011 (defun org-activate-angle-links (limit)
6012 "Add text properties for angle links."
6013 (if (and (re-search-forward org-angle-link-re limit t)
6014 (not (org-in-src-block-p)))
6015 (progn
6016 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6017 (add-text-properties (match-beginning 0) (match-end 0)
6018 (list 'mouse-face 'highlight
6019 'keymap org-mouse-map
6020 'font-lock-multiline t))
6021 (org-rear-nonsticky-at (match-end 0))
6022 t)))
6024 (defun org-activate-footnote-links (limit)
6025 "Add text properties for footnotes."
6026 (let ((fn (org-footnote-next-reference-or-definition limit)))
6027 (when fn
6028 (let* ((beg (nth 1 fn))
6029 (end (nth 2 fn))
6030 (label (car fn))
6031 (referencep (/= (line-beginning-position) beg)))
6032 (when (and referencep (nth 3 fn))
6033 (save-excursion
6034 (goto-char beg)
6035 (search-forward (or label "fn:"))
6036 (org-remove-flyspell-overlays-in beg (match-end 0))))
6037 (add-text-properties beg end
6038 (list 'mouse-face 'highlight
6039 'keymap org-mouse-map
6040 'help-echo
6041 (if referencep "Footnote reference"
6042 "Footnote definition")
6043 'font-lock-fontified t
6044 'font-lock-multiline t
6045 'face 'org-footnote))))))
6047 (defun org-activate-bracket-links (limit)
6048 "Add text properties for bracketed links."
6049 (if (and (re-search-forward org-bracket-link-regexp limit t)
6050 (not (org-in-src-block-p)))
6051 (let* ((hl (org-match-string-no-properties 1))
6052 (help (concat "LINK: " (save-match-data (org-link-unescape hl))))
6053 (ip (org-maybe-intangible
6054 (list 'invisible 'org-link
6055 'keymap org-mouse-map 'mouse-face 'highlight
6056 'font-lock-multiline t 'help-echo help
6057 'htmlize-link `(:uri ,hl))))
6058 (vp (list 'keymap org-mouse-map 'mouse-face 'highlight
6059 'font-lock-multiline t 'help-echo help
6060 'htmlize-link `(:uri ,hl))))
6061 ;; We need to remove the invisible property here. Table narrowing
6062 ;; may have made some of this invisible.
6063 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6064 (remove-text-properties (match-beginning 0) (match-end 0)
6065 '(invisible nil))
6066 (if (match-end 3)
6067 (progn
6068 (add-text-properties (match-beginning 0) (match-beginning 3) ip)
6069 (org-rear-nonsticky-at (match-beginning 3))
6070 (add-text-properties (match-beginning 3) (match-end 3) vp)
6071 (org-rear-nonsticky-at (match-end 3))
6072 (add-text-properties (match-end 3) (match-end 0) ip)
6073 (org-rear-nonsticky-at (match-end 0)))
6074 (add-text-properties (match-beginning 0) (match-beginning 1) ip)
6075 (org-rear-nonsticky-at (match-beginning 1))
6076 (add-text-properties (match-beginning 1) (match-end 1) vp)
6077 (org-rear-nonsticky-at (match-end 1))
6078 (add-text-properties (match-end 1) (match-end 0) ip)
6079 (org-rear-nonsticky-at (match-end 0)))
6080 t)))
6082 (defun org-activate-dates (limit)
6083 "Add text properties for dates."
6084 (if (and (re-search-forward org-tsr-regexp-both limit t)
6085 (not (equal (char-before (match-beginning 0)) 91)))
6086 (progn
6087 (org-remove-flyspell-overlays-in (match-beginning 0) (match-end 0))
6088 (add-text-properties (match-beginning 0) (match-end 0)
6089 (list 'mouse-face 'highlight
6090 'keymap org-mouse-map))
6091 (org-rear-nonsticky-at (match-end 0))
6092 (when org-display-custom-times
6093 (if (match-end 3)
6094 (org-display-custom-time (match-beginning 3) (match-end 3)))
6095 (org-display-custom-time (match-beginning 1) (match-end 1)))
6096 t)))
6098 (defvar org-target-link-regexp nil
6099 "Regular expression matching radio targets in plain text.")
6100 (make-variable-buffer-local 'org-target-link-regexp)
6102 (defconst org-target-regexp (let ((border "[^<>\n\r \t]"))
6103 (format "<<\\(%s\\|%s[^<>\n\r]*%s\\)>>"
6104 border border border))
6105 "Regular expression matching a link target.")
6107 (defconst org-radio-target-regexp (format "<%s>" org-target-regexp)
6108 "Regular expression matching a radio target.")
6110 (defconst org-any-target-regexp
6111 (format "%s\\|%s" org-radio-target-regexp org-target-regexp)
6112 "Regular expression matching any target.")
6114 (defun org-activate-target-links (limit)
6115 "Add text properties for target matches."
6116 (when org-target-link-regexp
6117 (let ((case-fold-search t))
6118 (if (re-search-forward org-target-link-regexp limit t)
6119 (progn
6120 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6121 (add-text-properties (match-beginning 1) (match-end 1)
6122 (list 'mouse-face 'highlight
6123 'keymap org-mouse-map
6124 'help-echo "Radio target link"
6125 'org-linked-text t))
6126 (org-rear-nonsticky-at (match-end 1))
6127 t)))))
6129 (defun org-update-radio-target-regexp ()
6130 "Find all radio targets in this file and update the regular expression.
6131 Also refresh fontification if needed."
6132 (interactive)
6133 (let ((old-regexp org-target-link-regexp)
6134 (before-re "\\(?:^\\|[^[:alnum:]]\\)\\(")
6135 (after-re "\\)\\(?:$\\|[^[:alnum:]]\\)")
6136 (targets
6137 (org-with-wide-buffer
6138 (goto-char (point-min))
6139 (let (rtn)
6140 (while (re-search-forward org-radio-target-regexp nil t)
6141 ;; Make sure point is really within the object.
6142 (backward-char)
6143 (let ((obj (org-element-context)))
6144 (when (eq (org-element-type obj) 'radio-target)
6145 (add-to-list 'rtn (org-element-property :value obj)))))
6146 rtn))))
6147 (setq org-target-link-regexp
6148 (and targets
6149 (concat before-re
6150 (mapconcat
6151 (lambda (x)
6152 (replace-regexp-in-string
6153 " +" "\\s-+" (regexp-quote x) t t))
6154 targets
6155 "\\|")
6156 after-re)))
6157 (unless (equal old-regexp org-target-link-regexp)
6158 ;; Clean-up cache.
6159 (let ((regexp (cond ((not old-regexp) org-target-link-regexp)
6160 ((not org-target-link-regexp) old-regexp)
6162 (concat before-re
6163 (mapconcat
6164 (lambda (re)
6165 (substring re (length before-re)
6166 (- (length after-re))))
6167 (list old-regexp org-target-link-regexp)
6168 "\\|")
6169 after-re)))))
6170 (org-with-wide-buffer
6171 (goto-char (point-min))
6172 (while (re-search-forward regexp nil t)
6173 (org-element-cache-refresh (match-beginning 1)))))
6174 ;; Re fontify buffer.
6175 (when (memq 'radio org-highlight-links)
6176 (org-restart-font-lock)))))
6178 (defun org-hide-wide-columns (limit)
6179 (let (s e)
6180 (setq s (text-property-any (point) (or limit (point-max))
6181 'org-cwidth t))
6182 (when s
6183 (setq e (next-single-property-change s 'org-cwidth))
6184 (add-text-properties s e (org-maybe-intangible '(invisible org-cwidth)))
6185 (goto-char e)
6186 t)))
6188 (defvar org-latex-and-related-regexp nil
6189 "Regular expression for highlighting LaTeX, entities and sub/superscript.")
6191 (defun org-compute-latex-and-related-regexp ()
6192 "Compute regular expression for LaTeX, entities and sub/superscript.
6193 Result depends on variable `org-highlight-latex-and-related'."
6194 (org-set-local
6195 'org-latex-and-related-regexp
6196 (let* ((re-sub
6197 (cond ((not (memq 'script org-highlight-latex-and-related)) nil)
6198 ((eq org-use-sub-superscripts '{})
6199 (list org-match-substring-with-braces-regexp))
6200 (org-use-sub-superscripts (list org-match-substring-regexp))))
6201 (re-latex
6202 (when (memq 'latex org-highlight-latex-and-related)
6203 (let ((matchers (plist-get org-format-latex-options :matchers)))
6204 (delq nil
6205 (mapcar (lambda (x)
6206 (and (member (car x) matchers) (nth 1 x)))
6207 org-latex-regexps)))))
6208 (re-entities
6209 (when (memq 'entities org-highlight-latex-and-related)
6210 (list "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]]\\)"))))
6211 (mapconcat 'identity (append re-latex re-entities re-sub) "\\|"))))
6213 (defun org-do-latex-and-related (limit)
6214 "Highlight LaTeX snippets and environments, entities and sub/superscript.
6215 LIMIT bounds the search for syntax to highlight. Stop at first
6216 highlighted object, if any. Return t if some highlighting was
6217 done, nil otherwise."
6218 (when (org-string-nw-p org-latex-and-related-regexp)
6219 (catch 'found
6220 (while (re-search-forward org-latex-and-related-regexp limit t)
6221 (unless (memq (car-safe (get-text-property (1+ (match-beginning 0))
6222 'face))
6223 '(org-code org-verbatim underline))
6224 (let ((offset (if (memq (char-after (1+ (match-beginning 0)))
6225 '(?_ ?^))
6227 0)))
6228 (font-lock-prepend-text-property
6229 (+ offset (match-beginning 0)) (match-end 0)
6230 'face 'org-latex-and-related)
6231 (add-text-properties (+ offset (match-beginning 0)) (match-end 0)
6232 '(font-lock-multiline t)))
6233 (throw 'found t)))
6234 nil)))
6236 (defun org-restart-font-lock ()
6237 "Restart `font-lock-mode', to force refontification."
6238 (when (and (boundp 'font-lock-mode) font-lock-mode)
6239 (font-lock-mode -1)
6240 (font-lock-mode 1)))
6242 (defun org-activate-tags (limit)
6243 (if (re-search-forward (org-re "^\\*+.*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \r\n]") limit t)
6244 (progn
6245 (org-remove-flyspell-overlays-in (match-beginning 1) (match-end 1))
6246 (add-text-properties (match-beginning 1) (match-end 1)
6247 (list 'mouse-face 'highlight
6248 'keymap org-mouse-map))
6249 (org-rear-nonsticky-at (match-end 1))
6250 t)))
6252 (defun org-outline-level ()
6253 "Compute the outline level of the heading at point.
6255 If this is called at a normal headline, the level is the number
6256 of stars. Use `org-reduced-level' to remove the effect of
6257 `org-odd-levels'. Unlike to `org-current-level', this function
6258 takes into consideration inlinetasks."
6259 (org-with-wide-buffer
6260 (end-of-line)
6261 (if (re-search-backward org-outline-regexp-bol nil t)
6262 (1- (- (match-end 0) (match-beginning 0)))
6263 0)))
6265 (defvar org-font-lock-keywords nil)
6267 (defsubst org-re-property (property &optional literal allow-null value)
6268 "Return a regexp matching a PROPERTY line.
6270 When optional argument LITERAL is non-nil, do not quote PROPERTY.
6271 This is useful when PROPERTY is a regexp. When ALLOW-NULL is
6272 non-nil, match properties even without a value.
6274 Match group 3 is set to the value when it exists. If there is no
6275 value and ALLOW-NULL is non-nil, it is set to the empty string.
6277 With optional argument VALUE, match only property lines with
6278 that value; in this case, ALLOW-NULL is ignored. VALUE is quoted
6279 unless LITERAL is non-nil."
6280 (concat
6281 "^\\(?4:[ \t]*\\)"
6282 (format "\\(?1::\\(?2:%s\\):\\)"
6283 (if literal property (regexp-quote property)))
6284 (cond (value
6285 (format "[ \t]+\\(?3:%s\\)\\(?5:[ \t]*\\)$"
6286 (if literal value (regexp-quote value))))
6287 (allow-null
6288 "\\(?:\\(?3:$\\)\\|[ \t]+\\(?3:.*?\\)\\)\\(?5:[ \t]*\\)$")
6290 "[ \t]+\\(?3:[^ \r\t\n]+.*?\\)\\(?5:[ \t]*\\)$"))))
6292 (defconst org-property-re
6293 (org-re-property "\\S-+" 'literal t)
6294 "Regular expression matching a property line.
6295 There are four matching groups:
6296 1: :PROPKEY: including the leading and trailing colon,
6297 2: PROPKEY without the leading and trailing colon,
6298 3: PROPVAL without leading or trailing spaces,
6299 4: the indentation of the current line,
6300 5: trailing whitespace.")
6302 (defvar org-font-lock-hook nil
6303 "Functions to be called for special font lock stuff.")
6305 (defvar org-font-lock-set-keywords-hook nil
6306 "Functions that can manipulate `org-font-lock-extra-keywords'.
6307 This is called after `org-font-lock-extra-keywords' is defined, but before
6308 it is installed to be used by font lock. This can be useful if something
6309 needs to be inserted at a specific position in the font-lock sequence.")
6311 (defun org-font-lock-hook (limit)
6312 "Run `org-font-lock-hook' within LIMIT."
6313 (run-hook-with-args 'org-font-lock-hook limit))
6315 (defun org-set-font-lock-defaults ()
6316 "Set font lock defaults for the current buffer."
6317 (let* ((em org-fontify-emphasized-text)
6318 (lk org-highlight-links)
6319 (org-font-lock-extra-keywords
6320 (list
6321 ;; Call the hook
6322 '(org-font-lock-hook)
6323 ;; Headlines
6324 `(,(if org-fontify-whole-heading-line
6325 "^\\(\\**\\)\\(\\* \\)\\(.*\n?\\)"
6326 "^\\(\\**\\)\\(\\* \\)\\(.*\\)")
6327 (1 (org-get-level-face 1))
6328 (2 (org-get-level-face 2))
6329 (3 (org-get-level-face 3)))
6330 ;; Table lines
6331 '("^[ \t]*\\(\\(|\\|\\+-[-+]\\).*\\S-\\)"
6332 (1 'org-table t))
6333 ;; Table internals
6334 '("^[ \t]*|\\(?:.*?|\\)? *\\(:?=[^|\n]*\\)" (1 'org-formula t))
6335 '("^[ \t]*| *\\([#*]\\) *|" (1 'org-formula t))
6336 '("^[ \t]*|\\( *\\([$!_^/]\\) *|.*\\)|" (1 'org-formula t))
6337 '("| *\\(<[lrc]?[0-9]*>\\)" (1 'org-formula t))
6338 ;; Drawers
6339 '(org-fontify-drawers)
6340 ;; Properties
6341 (list org-property-re
6342 '(1 'org-special-keyword t)
6343 '(3 'org-property-value t))
6344 ;; Links
6345 (if (memq 'tag lk) '(org-activate-tags (1 'org-tag prepend)))
6346 (if (memq 'angle lk) '(org-activate-angle-links (0 'org-link t)))
6347 (if (memq 'plain lk) '(org-activate-plain-links (0 'org-link t)))
6348 (if (memq 'bracket lk) '(org-activate-bracket-links (0 'org-link t)))
6349 (if (memq 'radio lk) '(org-activate-target-links (1 'org-link t)))
6350 (if (memq 'date lk) '(org-activate-dates (0 'org-date t)))
6351 (if (memq 'footnote lk) '(org-activate-footnote-links))
6352 ;; Targets.
6353 (list org-any-target-regexp '(0 'org-target t))
6354 ;; Diary sexps.
6355 '("^&?%%(.*\\|<%%([^>\n]*?>" (0 'org-sexp-date t))
6356 ;; Macro
6357 '(org-fontify-macros)
6358 '(org-hide-wide-columns (0 nil append))
6359 ;; TODO keyword
6360 (list (format org-heading-keyword-regexp-format
6361 org-todo-regexp)
6362 '(2 (org-get-todo-face 2) t))
6363 ;; DONE
6364 (if org-fontify-done-headline
6365 (list (format org-heading-keyword-regexp-format
6366 (concat
6367 "\\(?:"
6368 (mapconcat 'regexp-quote org-done-keywords "\\|")
6369 "\\)"))
6370 '(2 'org-headline-done t))
6371 nil)
6372 ;; Priorities
6373 '(org-font-lock-add-priority-faces)
6374 ;; Tags
6375 '(org-font-lock-add-tag-faces)
6376 ;; Tags groups
6377 (if (and org-group-tags org-tag-groups-alist)
6378 (list (concat org-outline-regexp-bol ".+\\(:"
6379 (regexp-opt (mapcar 'car org-tag-groups-alist))
6380 ":\\).*$")
6381 '(1 'org-tag-group prepend)))
6382 ;; Special keywords
6383 (list (concat "\\<" org-deadline-string) '(0 'org-special-keyword t))
6384 (list (concat "\\<" org-scheduled-string) '(0 'org-special-keyword t))
6385 (list (concat "\\<" org-closed-string) '(0 'org-special-keyword t))
6386 (list (concat "\\<" org-clock-string) '(0 'org-special-keyword t))
6387 ;; Emphasis
6388 (if em
6389 (if (featurep 'xemacs)
6390 '(org-do-emphasis-faces (0 nil append))
6391 '(org-do-emphasis-faces)))
6392 ;; Checkboxes
6393 '("^[ \t]*\\(?:[-+*]\\|[0-9]+[.)]\\)[ \t]+\\(?:\\[@\\(?:start:\\)?[0-9]+\\][ \t]*\\)?\\(\\[[- X]\\]\\)"
6394 1 'org-checkbox prepend)
6395 (if (cdr (assq 'checkbox org-list-automatic-rules))
6396 '("\\[\\([0-9]*%\\)\\]\\|\\[\\([0-9]*\\)/\\([0-9]*\\)\\]"
6397 (0 (org-get-checkbox-statistics-face) t)))
6398 ;; Description list items
6399 '("^[ \t]*[-+*][ \t]+\\(.*?[ \t]+::\\)\\([ \t]+\\|$\\)"
6400 1 'org-list-dt prepend)
6401 ;; ARCHIVEd headings
6402 (list (concat
6403 org-outline-regexp-bol
6404 "\\(.*:" org-archive-tag ":.*\\)")
6405 '(1 'org-archived prepend))
6406 ;; Specials
6407 '(org-do-latex-and-related)
6408 '(org-fontify-entities)
6409 '(org-raise-scripts)
6410 ;; Code
6411 '(org-activate-code (1 'org-code t))
6412 ;; COMMENT
6413 (list (format
6414 "^\\*+\\(?: +%s\\)?\\(?: +\\[#[A-Z0-9]\\]\\)? +\\(?9:%s\\)\\(?: \\|$\\)"
6415 org-todo-regexp
6416 org-comment-string)
6417 '(9 'org-special-keyword t))
6418 ;; Blocks and meta lines
6419 '(org-fontify-meta-lines-and-blocks))))
6420 (setq org-font-lock-extra-keywords (delq nil org-font-lock-extra-keywords))
6421 (run-hooks 'org-font-lock-set-keywords-hook)
6422 ;; Now set the full font-lock-keywords
6423 (org-set-local 'org-font-lock-keywords org-font-lock-extra-keywords)
6424 (org-set-local 'font-lock-defaults
6425 '(org-font-lock-keywords t nil nil backward-paragraph))
6426 (kill-local-variable 'font-lock-keywords) nil))
6428 (defun org-toggle-pretty-entities ()
6429 "Toggle the composition display of entities as UTF8 characters."
6430 (interactive)
6431 (org-set-local 'org-pretty-entities (not org-pretty-entities))
6432 (org-restart-font-lock)
6433 (if org-pretty-entities
6434 (message "Entities are now displayed as UTF8 characters")
6435 (save-restriction
6436 (widen)
6437 (org-decompose-region (point-min) (point-max))
6438 (message "Entities are now displayed as plain text"))))
6440 (defvar org-custom-properties-overlays nil
6441 "List of overlays used for custom properties.")
6442 (make-variable-buffer-local 'org-custom-properties-overlays)
6444 (defun org-toggle-custom-properties-visibility ()
6445 "Display or hide properties in `org-custom-properties'."
6446 (interactive)
6447 (if org-custom-properties-overlays
6448 (progn (mapc #'delete-overlay org-custom-properties-overlays)
6449 (setq org-custom-properties-overlays nil))
6450 (when org-custom-properties
6451 (org-with-wide-buffer
6452 (goto-char (point-min))
6453 (let ((regexp (org-re-property (regexp-opt org-custom-properties) t t)))
6454 (while (re-search-forward regexp nil t)
6455 (let ((end (cdr (save-match-data (org-get-property-block)))))
6456 (when (and end (< (point) end))
6457 ;; Hide first custom property in current drawer.
6458 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6459 (overlay-put o 'invisible t)
6460 (overlay-put o 'org-custom-property t)
6461 (push o org-custom-properties-overlays))
6462 ;; Hide additional custom properties in the same drawer.
6463 (while (re-search-forward regexp end t)
6464 (let ((o (make-overlay (match-beginning 0) (1+ (match-end 0)))))
6465 (overlay-put o 'invisible t)
6466 (overlay-put o 'org-custom-property t)
6467 (push o org-custom-properties-overlays)))))
6468 ;; Each entry is limited to a single property drawer.
6469 (outline-next-heading)))))))
6471 (defun org-fontify-entities (limit)
6472 "Find an entity to fontify."
6473 (let (ee)
6474 (when org-pretty-entities
6475 (catch 'match
6476 ;; "\_ "-family is left out on purpose. Only the first one,
6477 ;; i.e., "\_ ", could be fontified anyway, and it would be
6478 ;; confusing when adding a second white space character.
6479 (while (re-search-forward
6480 "\\\\\\(there4\\|sup[123]\\|frac[13][24]\\|[a-zA-Z]+\\)\\($\\|{}\\|[^[:alpha:]\n]\\)"
6481 limit t)
6482 (if (and (not (org-at-comment-p))
6483 (setq ee (org-entity-get (match-string 1)))
6484 (= (length (nth 6 ee)) 1))
6485 (let*
6486 ((end (if (equal (match-string 2) "{}")
6487 (match-end 2)
6488 (match-end 1))))
6489 (add-text-properties
6490 (match-beginning 0) end
6491 (list 'font-lock-fontified t))
6492 (compose-region (match-beginning 0) end
6493 (nth 6 ee) nil)
6494 (backward-char 1)
6495 (throw 'match t))))
6496 nil))))
6498 (defun org-fontify-like-in-org-mode (s &optional odd-levels)
6499 "Fontify string S like in Org-mode."
6500 (with-temp-buffer
6501 (insert s)
6502 (let ((org-odd-levels-only odd-levels))
6503 (org-mode)
6504 (font-lock-ensure)
6505 (buffer-string))))
6507 (defvar org-m nil)
6508 (defvar org-l nil)
6509 (defvar org-f nil)
6510 (defun org-get-level-face (n)
6511 "Get the right face for match N in font-lock matching of headlines."
6512 (setq org-l (- (match-end 2) (match-beginning 1) 1))
6513 (if org-odd-levels-only (setq org-l (1+ (/ org-l 2))))
6514 (if org-cycle-level-faces
6515 (setq org-f (nth (% (1- org-l) org-n-level-faces) org-level-faces))
6516 (setq org-f (nth (1- (min org-l org-n-level-faces)) org-level-faces)))
6517 (cond
6518 ((eq n 1) (if org-hide-leading-stars 'org-hide org-f))
6519 ((eq n 2) org-f)
6520 (t (if org-level-color-stars-only nil org-f))))
6522 (defun org-face-from-face-or-color (context inherit face-or-color)
6523 "Create a face list that inherits INHERIT, but sets the foreground color.
6524 When FACE-OR-COLOR is not a string, just return it."
6525 (if (stringp face-or-color)
6526 (list :inherit inherit
6527 (cdr (assoc context org-faces-easy-properties))
6528 face-or-color)
6529 face-or-color))
6531 (defun org-get-todo-face (kwd)
6532 "Get the right face for a TODO keyword KWD.
6533 If KWD is a number, get the corresponding match group."
6534 (if (numberp kwd) (setq kwd (match-string kwd)))
6535 (or (org-face-from-face-or-color
6536 'todo 'org-todo (cdr (assoc kwd org-todo-keyword-faces)))
6537 (and (member kwd org-done-keywords) 'org-done)
6538 'org-todo))
6540 (defun org-get-priority-face (priority)
6541 "Get the right face for PRIORITY.
6542 PRIORITY is a character."
6543 (or (org-face-from-face-or-color
6544 'priority 'org-priority (cdr (assq priority org-priority-faces)))
6545 'org-priority))
6547 (defun org-get-tag-face (tag)
6548 "Get the right face for TAG.
6549 If TAG is a number, get the corresponding match group."
6550 (let ((tag (if (wholenump tag) (match-string tag) tag)))
6551 (or (org-face-from-face-or-color
6552 'tag 'org-tag (cdr (assoc tag org-tag-faces)))
6553 'org-tag)))
6555 (defun org-font-lock-add-priority-faces (limit)
6556 "Add the special priority faces."
6557 (while (re-search-forward "^\\*+ .*?\\(\\[#\\(.\\)\\]\\)" limit t)
6558 (add-text-properties
6559 (match-beginning 1) (match-end 1)
6560 (list 'face (org-get-priority-face (string-to-char (match-string 2)))
6561 'font-lock-fontified t))))
6563 (defun org-font-lock-add-tag-faces (limit)
6564 "Add the special tag faces."
6565 (when (and org-tag-faces org-tags-special-faces-re)
6566 (while (re-search-forward org-tags-special-faces-re limit t)
6567 (add-text-properties (match-beginning 1) (match-end 1)
6568 (list 'face (org-get-tag-face 1)
6569 'font-lock-fontified t))
6570 (backward-char 1))))
6572 (defun org-unfontify-region (beg end &optional maybe_loudly)
6573 "Remove fontification and activation overlays from links."
6574 (font-lock-default-unfontify-region beg end)
6575 (let* ((buffer-undo-list t)
6576 (inhibit-read-only t) (inhibit-point-motion-hooks t)
6577 (inhibit-modification-hooks t)
6578 deactivate-mark buffer-file-name buffer-file-truename)
6579 (org-decompose-region beg end)
6580 (remove-text-properties beg end
6581 '(mouse-face t keymap t org-linked-text t
6582 invisible t intangible t
6583 org-emphasis t))
6584 (org-remove-font-lock-display-properties beg end)))
6586 (defconst org-script-display '(((raise -0.3) (height 0.7))
6587 ((raise 0.3) (height 0.7))
6588 ((raise -0.5))
6589 ((raise 0.5)))
6590 "Display properties for showing superscripts and subscripts.")
6592 (defun org-remove-font-lock-display-properties (beg end)
6593 "Remove specific display properties that have been added by font lock.
6594 The will remove the raise properties that are used to show superscripts
6595 and subscripts."
6596 (let (next prop)
6597 (while (< beg end)
6598 (setq next (next-single-property-change beg 'display nil end)
6599 prop (get-text-property beg 'display))
6600 (if (member prop org-script-display)
6601 (put-text-property beg next 'display nil))
6602 (setq beg next))))
6604 (defun org-raise-scripts (limit)
6605 "Add raise properties to sub/superscripts."
6606 (when (and org-pretty-entities org-pretty-entities-include-sub-superscripts)
6607 (if (re-search-forward
6608 (if (eq org-use-sub-superscripts t)
6609 org-match-substring-regexp
6610 org-match-substring-with-braces-regexp)
6611 limit t)
6612 (let* ((pos (point)) table-p comment-p
6613 (mpos (match-beginning 3))
6614 (emph-p (get-text-property mpos 'org-emphasis))
6615 (link-p (get-text-property mpos 'mouse-face))
6616 (keyw-p (eq 'org-special-keyword (get-text-property mpos 'face))))
6617 (goto-char (point-at-bol))
6618 (setq table-p (org-looking-at-p org-table-dataline-regexp)
6619 comment-p (org-looking-at-p "^[ \t]*#[ +]"))
6620 (goto-char pos)
6621 ;; Handle a_b^c
6622 (if (member (char-after) '(?_ ?^)) (goto-char (1- pos)))
6623 (if (or comment-p emph-p link-p keyw-p)
6625 (put-text-property (match-beginning 3) (match-end 0)
6626 'display
6627 (if (equal (char-after (match-beginning 2)) ?^)
6628 (nth (if table-p 3 1) org-script-display)
6629 (nth (if table-p 2 0) org-script-display)))
6630 (add-text-properties (match-beginning 2) (match-end 2)
6631 (list 'invisible t
6632 'org-dwidth t 'org-dwidth-n 1))
6633 (if (and (eq (char-after (match-beginning 3)) ?{)
6634 (eq (char-before (match-end 3)) ?}))
6635 (progn
6636 (add-text-properties
6637 (match-beginning 3) (1+ (match-beginning 3))
6638 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))
6639 (add-text-properties
6640 (1- (match-end 3)) (match-end 3)
6641 (list 'invisible t 'org-dwidth t 'org-dwidth-n 1))))
6642 t)))))
6644 ;;;; Visibility cycling, including org-goto and indirect buffer
6646 ;;; Cycling
6648 (defvar org-cycle-global-status nil)
6649 (make-variable-buffer-local 'org-cycle-global-status)
6650 (put 'org-cycle-global-status 'org-state t)
6651 (defvar org-cycle-subtree-status nil)
6652 (make-variable-buffer-local 'org-cycle-subtree-status)
6653 (put 'org-cycle-subtree-status 'org-state t)
6655 (defvar org-inlinetask-min-level)
6657 (defun org-unlogged-message (&rest args)
6658 "Display a message, but avoid logging it in the *Messages* buffer."
6659 (let ((message-log-max nil))
6660 (apply 'message args)))
6662 ;;;###autoload
6663 (defun org-cycle (&optional arg)
6664 "TAB-action and visibility cycling for Org-mode.
6666 This is the command invoked in Org-mode by the TAB key. Its main purpose
6667 is outline visibility cycling, but it also invokes other actions
6668 in special contexts.
6670 - When this function is called with a prefix argument, rotate the entire
6671 buffer through 3 states (global cycling)
6672 1. OVERVIEW: Show only top-level headlines.
6673 2. CONTENTS: Show all headlines of all levels, but no body text.
6674 3. SHOW ALL: Show everything.
6675 With a double \\[universal-argument] prefix argument, \
6676 switch to the startup visibility,
6677 determined by the variable `org-startup-folded', and by any VISIBILITY
6678 properties in the buffer.
6679 With a triple \\[universal-argument] prefix argument, \
6680 show the entire buffer, including any drawers.
6682 - When inside a table, re-align the table and move to the next field.
6684 - When point is at the beginning of a headline, rotate the subtree started
6685 by this line through 3 different states (local cycling)
6686 1. FOLDED: Only the main headline is shown.
6687 2. CHILDREN: The main headline and the direct children are shown.
6688 From this state, you can move to one of the children
6689 and zoom in further.
6690 3. SUBTREE: Show the entire subtree, including body text.
6691 If there is no subtree, switch directly from CHILDREN to FOLDED.
6693 - When point is at the beginning of an empty headline and the variable
6694 `org-cycle-level-after-item/entry-creation' is set, cycle the level
6695 of the headline by demoting and promoting it to likely levels. This
6696 speeds up creation document structure by pressing TAB once or several
6697 times right after creating a new headline.
6699 - When there is a numeric prefix, go up to a heading with level ARG, do
6700 a `show-subtree' and return to the previous cursor position. If ARG
6701 is negative, go up that many levels.
6703 - When point is not at the beginning of a headline, execute the global
6704 binding for TAB, which is re-indenting the line. See the option
6705 `org-cycle-emulate-tab' for details.
6707 - Special case: if point is at the beginning of the buffer and there is
6708 no headline in line 1, this function will act as if called with prefix arg
6709 (\\[universal-argument] TAB, same as S-TAB) also when called without prefix arg.
6710 But only if also the variable `org-cycle-global-at-bob' is t."
6711 (interactive "P")
6712 (org-load-modules-maybe)
6713 (unless (or (run-hook-with-args-until-success 'org-tab-first-hook)
6714 (and org-cycle-level-after-item/entry-creation
6715 (or (org-cycle-level)
6716 (org-cycle-item-indentation))))
6717 (let* ((limit-level
6718 (or org-cycle-max-level
6719 (and (boundp 'org-inlinetask-min-level)
6720 org-inlinetask-min-level
6721 (1- org-inlinetask-min-level))))
6722 (nstars (and limit-level
6723 (if org-odd-levels-only
6724 (and limit-level (1- (* limit-level 2)))
6725 limit-level)))
6726 (org-outline-regexp
6727 (if (not (derived-mode-p 'org-mode))
6728 outline-regexp
6729 (concat "\\*" (if nstars (format "\\{1,%d\\} " nstars) "+ "))))
6730 (bob-special (and org-cycle-global-at-bob (not arg) (bobp)
6731 (not (looking-at org-outline-regexp))))
6732 (org-cycle-hook
6733 (if bob-special
6734 (delq 'org-optimize-window-after-visibility-change
6735 (copy-sequence org-cycle-hook))
6736 org-cycle-hook))
6737 (pos (point)))
6739 (if (or bob-special (equal arg '(4)))
6740 ;; special case: use global cycling
6741 (setq arg t))
6743 (cond
6745 ((equal arg '(16))
6746 (setq last-command 'dummy)
6747 (org-set-startup-visibility)
6748 (org-unlogged-message "Startup visibility, plus VISIBILITY properties"))
6750 ((equal arg '(64))
6751 (outline-show-all)
6752 (org-unlogged-message "Entire buffer visible, including drawers"))
6754 ;; Try cdlatex TAB completion
6755 ((org-try-cdlatex-tab))
6757 ;; Table: enter it or move to the next field.
6758 ((org-at-table-p 'any)
6759 (if (org-at-table.el-p)
6760 (message "%s" (substitute-command-keys "\\<org-mode-map>\
6761 Use \\[org-edit-special] to edit table.el tables"))
6762 (if arg (org-table-edit-field t)
6763 (org-table-justify-field-maybe)
6764 (call-interactively 'org-table-next-field))))
6766 ((run-hook-with-args-until-success
6767 'org-tab-after-check-for-table-hook))
6769 ;; Global cycling: delegate to `org-cycle-internal-global'.
6770 ((eq arg t) (org-cycle-internal-global))
6772 ;; Drawers: delegate to `org-flag-drawer'.
6773 ((save-excursion
6774 (beginning-of-line 1)
6775 (looking-at org-drawer-regexp))
6776 (org-flag-drawer ; toggle block visibility
6777 (not (get-char-property (match-end 0) 'invisible))))
6779 ;; Show-subtree, ARG levels up from here.
6780 ((integerp arg)
6781 (save-excursion
6782 (org-back-to-heading)
6783 (outline-up-heading (if (< arg 0) (- arg)
6784 (- (funcall outline-level) arg)))
6785 (org-show-subtree)))
6787 ;; Inline task: delegate to `org-inlinetask-toggle-visibility'.
6788 ((and (featurep 'org-inlinetask)
6789 (org-inlinetask-at-task-p)
6790 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6791 (org-inlinetask-toggle-visibility))
6793 ;; At an item/headline: delegate to `org-cycle-internal-local'.
6794 ((and (or (and org-cycle-include-plain-lists (org-at-item-p))
6795 (save-excursion (move-beginning-of-line 1)
6796 (looking-at org-outline-regexp)))
6797 (or (bolp) (not (eq org-cycle-emulate-tab 'exc-hl-bol))))
6798 (org-cycle-internal-local))
6800 ;; From there: TAB emulation and template completion.
6801 (buffer-read-only (org-back-to-heading))
6803 ((run-hook-with-args-until-success
6804 'org-tab-after-check-for-cycling-hook))
6806 ((org-try-structure-completion))
6808 ((run-hook-with-args-until-success
6809 'org-tab-before-tab-emulation-hook))
6811 ((and (eq org-cycle-emulate-tab 'exc-hl-bol)
6812 (or (not (bolp))
6813 (not (looking-at org-outline-regexp))))
6814 (call-interactively (global-key-binding "\t")))
6816 ((if (and (memq org-cycle-emulate-tab '(white whitestart))
6817 (save-excursion (beginning-of-line 1) (looking-at "[ \t]*"))
6818 (or (and (eq org-cycle-emulate-tab 'white)
6819 (= (match-end 0) (point-at-eol)))
6820 (and (eq org-cycle-emulate-tab 'whitestart)
6821 (>= (match-end 0) pos))))
6823 (eq org-cycle-emulate-tab t))
6824 (call-interactively (global-key-binding "\t")))
6826 (t (save-excursion
6827 (org-back-to-heading)
6828 (org-cycle)))))))
6830 (defun org-cycle-internal-global ()
6831 "Do the global cycling action."
6832 ;; Hack to avoid display of messages for .org attachments in Gnus
6833 (let ((ga (string-match "\\*fontification" (buffer-name))))
6834 (cond
6835 ((and (eq last-command this-command)
6836 (eq org-cycle-global-status 'overview))
6837 ;; We just created the overview - now do table of contents
6838 ;; This can be slow in very large buffers, so indicate action
6839 (run-hook-with-args 'org-pre-cycle-hook 'contents)
6840 (unless ga (org-unlogged-message "CONTENTS..."))
6841 (org-content)
6842 (unless ga (org-unlogged-message "CONTENTS...done"))
6843 (setq org-cycle-global-status 'contents)
6844 (run-hook-with-args 'org-cycle-hook 'contents))
6846 ((and (eq last-command this-command)
6847 (eq org-cycle-global-status 'contents))
6848 ;; We just showed the table of contents - now show everything
6849 (run-hook-with-args 'org-pre-cycle-hook 'all)
6850 (outline-show-all)
6851 (unless ga (org-unlogged-message "SHOW ALL"))
6852 (setq org-cycle-global-status 'all)
6853 (run-hook-with-args 'org-cycle-hook 'all))
6856 ;; Default action: go to overview
6857 (run-hook-with-args 'org-pre-cycle-hook 'overview)
6858 (org-overview)
6859 (unless ga (org-unlogged-message "OVERVIEW"))
6860 (setq org-cycle-global-status 'overview)
6861 (run-hook-with-args 'org-cycle-hook 'overview)))))
6863 (defvar org-called-with-limited-levels nil
6864 "Non-nil when `org-with-limited-levels' is currently active.")
6866 (defun org-cycle-internal-local ()
6867 "Do the local cycling action."
6868 (let ((goal-column 0) eoh eol eos has-children children-skipped struct)
6869 ;; First, determine end of headline (EOH), end of subtree or item
6870 ;; (EOS), and if item or heading has children (HAS-CHILDREN).
6871 (save-excursion
6872 (if (org-at-item-p)
6873 (progn
6874 (beginning-of-line)
6875 (setq struct (org-list-struct))
6876 (setq eoh (point-at-eol))
6877 (setq eos (org-list-get-item-end-before-blank (point) struct))
6878 (setq has-children (org-list-has-child-p (point) struct)))
6879 (org-back-to-heading)
6880 (setq eoh (save-excursion (outline-end-of-heading) (point)))
6881 (setq eos (save-excursion (org-end-of-subtree t t)
6882 (when (bolp) (backward-char)) (point)))
6883 (setq has-children
6884 (or (save-excursion
6885 (let ((level (funcall outline-level)))
6886 (outline-next-heading)
6887 (and (org-at-heading-p t)
6888 (> (funcall outline-level) level))))
6889 (save-excursion
6890 (org-list-search-forward (org-item-beginning-re) eos t)))))
6891 ;; Determine end invisible part of buffer (EOL)
6892 (beginning-of-line 2)
6893 ;; XEmacs doesn't have `next-single-char-property-change'
6894 (if (featurep 'xemacs)
6895 (while (and (not (eobp)) ;; this is like `next-line'
6896 (get-char-property (1- (point)) 'invisible))
6897 (beginning-of-line 2))
6898 (while (and (not (eobp)) ;; this is like `next-line'
6899 (get-char-property (1- (point)) 'invisible))
6900 (goto-char (next-single-char-property-change (point) 'invisible))
6901 (and (eolp) (beginning-of-line 2))))
6902 (setq eol (point)))
6903 ;; Find out what to do next and set `this-command'
6904 (cond
6905 ((= eos eoh)
6906 ;; Nothing is hidden behind this heading
6907 (unless (org-before-first-heading-p)
6908 (run-hook-with-args 'org-pre-cycle-hook 'empty))
6909 (org-unlogged-message "EMPTY ENTRY")
6910 (setq org-cycle-subtree-status nil)
6911 (save-excursion
6912 (goto-char eos)
6913 (outline-next-heading)
6914 (if (outline-invisible-p) (org-flag-heading nil))))
6915 ((and (or (>= eol eos)
6916 (not (string-match "\\S-" (buffer-substring eol eos))))
6917 (or has-children
6918 (not (setq children-skipped
6919 org-cycle-skip-children-state-if-no-children))))
6920 ;; Entire subtree is hidden in one line: children view
6921 (unless (org-before-first-heading-p)
6922 (run-hook-with-args 'org-pre-cycle-hook 'children))
6923 (if (org-at-item-p)
6924 (org-list-set-item-visibility (point-at-bol) struct 'children)
6925 (org-show-entry)
6926 (org-with-limited-levels (outline-show-children))
6927 ;; FIXME: This slows down the func way too much.
6928 ;; How keep drawers hidden in subtree anyway?
6929 ;; (when (memq 'org-cycle-hide-drawers org-cycle-hook)
6930 ;; (org-cycle-hide-drawers 'subtree))
6932 ;; Fold every list in subtree to top-level items.
6933 (when (eq org-cycle-include-plain-lists 'integrate)
6934 (save-excursion
6935 (org-back-to-heading)
6936 (while (org-list-search-forward (org-item-beginning-re) eos t)
6937 (beginning-of-line 1)
6938 (let* ((struct (org-list-struct))
6939 (prevs (org-list-prevs-alist struct))
6940 (end (org-list-get-bottom-point struct)))
6941 (mapc (lambda (e) (org-list-set-item-visibility e struct 'folded))
6942 (org-list-get-all-items (point) struct prevs))
6943 (goto-char (if (< end eos) end eos)))))))
6944 (org-unlogged-message "CHILDREN")
6945 (save-excursion
6946 (goto-char eos)
6947 (outline-next-heading)
6948 (if (outline-invisible-p) (org-flag-heading nil)))
6949 (setq org-cycle-subtree-status 'children)
6950 (unless (org-before-first-heading-p)
6951 (run-hook-with-args 'org-cycle-hook 'children)))
6952 ((or children-skipped
6953 (and (eq last-command this-command)
6954 (eq org-cycle-subtree-status 'children)))
6955 ;; We just showed the children, or no children are there,
6956 ;; now show everything.
6957 (unless (org-before-first-heading-p)
6958 (run-hook-with-args 'org-pre-cycle-hook 'subtree))
6959 (outline-flag-region eoh eos nil)
6960 (org-unlogged-message
6961 (if children-skipped "SUBTREE (NO CHILDREN)" "SUBTREE"))
6962 (setq org-cycle-subtree-status 'subtree)
6963 (unless (org-before-first-heading-p)
6964 (run-hook-with-args 'org-cycle-hook 'subtree)))
6966 ;; Default action: hide the subtree.
6967 (run-hook-with-args 'org-pre-cycle-hook 'folded)
6968 (outline-flag-region eoh eos t)
6969 (org-unlogged-message "FOLDED")
6970 (setq org-cycle-subtree-status 'folded)
6971 (unless (org-before-first-heading-p)
6972 (run-hook-with-args 'org-cycle-hook 'folded))))))
6974 ;;;###autoload
6975 (defun org-global-cycle (&optional arg)
6976 "Cycle the global visibility. For details see `org-cycle'.
6977 With \\[universal-argument] prefix arg, switch to startup visibility.
6978 With a numeric prefix, show all headlines up to that level."
6979 (interactive "P")
6980 (let ((org-cycle-include-plain-lists
6981 (if (derived-mode-p 'org-mode) org-cycle-include-plain-lists nil)))
6982 (cond
6983 ((integerp arg)
6984 (outline-show-all)
6985 (outline-hide-sublevels arg)
6986 (setq org-cycle-global-status 'contents))
6987 ((equal arg '(4))
6988 (org-set-startup-visibility)
6989 (org-unlogged-message "Startup visibility, plus VISIBILITY properties."))
6991 (org-cycle '(4))))))
6993 (defun org-set-startup-visibility ()
6994 "Set the visibility required by startup options and properties."
6995 (cond
6996 ((eq org-startup-folded t)
6997 (org-overview))
6998 ((eq org-startup-folded 'content)
6999 (org-content))
7000 ((or (eq org-startup-folded 'showeverything)
7001 (eq org-startup-folded nil))
7002 (outline-show-all)))
7003 (unless (eq org-startup-folded 'showeverything)
7004 (if org-hide-block-startup (org-hide-block-all))
7005 (org-set-visibility-according-to-property 'no-cleanup)
7006 (org-cycle-hide-archived-subtrees 'all)
7007 (org-cycle-hide-drawers 'all)
7008 (org-cycle-show-empty-lines t)))
7010 (defun org-set-visibility-according-to-property (&optional no-cleanup)
7011 "Switch subtree visibilities according to :VISIBILITY: property."
7012 (interactive)
7013 (let (org-show-entry-below)
7014 (org-with-wide-buffer
7015 (goto-char (point-min))
7016 (while (re-search-forward "^[ \t]*:VISIBILITY:" nil t)
7017 (if (not (org-at-property-p)) (outline-next-heading)
7018 (let ((state (match-string 3)))
7019 (save-excursion
7020 (org-back-to-heading t)
7021 (outline-hide-subtree)
7022 (org-reveal)
7023 (cond
7024 ((equal state "folded")
7025 (outline-hide-subtree))
7026 ((equal state "children")
7027 (org-show-hidden-entry)
7028 (outline-show-children))
7029 ((equal state "content")
7030 (save-excursion
7031 (save-restriction
7032 (org-narrow-to-subtree)
7033 (org-content))))
7034 ((member state '("all" "showall"))
7035 (outline-show-subtree)))))))
7036 (unless no-cleanup
7037 (org-cycle-hide-archived-subtrees 'all)
7038 (org-cycle-hide-drawers 'all)
7039 (org-cycle-show-empty-lines 'all)))))
7041 ;; This function uses outline-regexp instead of the more fundamental
7042 ;; org-outline-regexp so that org-cycle-global works outside of Org
7043 ;; buffers, where outline-regexp is needed.
7044 (defun org-overview ()
7045 "Switch to overview mode, showing only top-level headlines.
7046 This shows all headlines with a level equal or greater than the level
7047 of the first headline in the buffer. This is important, because if the
7048 first headline is not level one, then (hide-sublevels 1) gives confusing
7049 results."
7050 (interactive)
7051 (save-excursion
7052 (let ((level
7053 (save-excursion
7054 (goto-char (point-min))
7055 (if (re-search-forward (concat "^" outline-regexp) nil t)
7056 (progn
7057 (goto-char (match-beginning 0))
7058 (funcall outline-level))))))
7059 (and level (outline-hide-sublevels level)))))
7061 (defun org-content (&optional arg)
7062 "Show all headlines in the buffer, like a table of contents.
7063 With numerical argument N, show content up to level N."
7064 (interactive "P")
7065 (org-overview)
7066 (save-excursion
7067 ;; Visit all headings and show their offspring
7068 (and (integerp arg) (org-overview))
7069 (goto-char (point-max))
7070 (catch 'exit
7071 (while (and (progn (condition-case nil
7072 (outline-previous-visible-heading 1)
7073 (error (goto-char (point-min))))
7075 (looking-at org-outline-regexp))
7076 (if (integerp arg)
7077 (outline-show-children (1- arg))
7078 (outline-show-branches))
7079 (if (bobp) (throw 'exit nil))))))
7081 (defun org-optimize-window-after-visibility-change (state)
7082 "Adjust the window after a change in outline visibility.
7083 This function is the default value of the hook `org-cycle-hook'."
7084 (when (get-buffer-window (current-buffer))
7085 (cond
7086 ((eq state 'content) nil)
7087 ((eq state 'all) nil)
7088 ((eq state 'folded) nil)
7089 ((eq state 'children) (or (org-subtree-end-visible-p) (recenter 1)))
7090 ((eq state 'subtree) (or (org-subtree-end-visible-p) (recenter 1))))))
7092 (defun org-remove-empty-overlays-at (pos)
7093 "Remove outline overlays that do not contain non-white stuff."
7094 (mapc
7095 (lambda (o)
7096 (and (eq 'outline (overlay-get o 'invisible))
7097 (not (string-match "\\S-" (buffer-substring (overlay-start o)
7098 (overlay-end o))))
7099 (delete-overlay o)))
7100 (overlays-at pos)))
7102 (defun org-clean-visibility-after-subtree-move ()
7103 "Fix visibility issues after moving a subtree."
7104 ;; First, find a reasonable region to look at:
7105 ;; Start two siblings above, end three below
7106 (let* ((beg (save-excursion
7107 (and (org-get-last-sibling)
7108 (org-get-last-sibling))
7109 (point)))
7110 (end (save-excursion
7111 (and (org-get-next-sibling)
7112 (org-get-next-sibling)
7113 (org-get-next-sibling))
7114 (if (org-at-heading-p)
7115 (point-at-eol)
7116 (point))))
7117 (level (looking-at "\\*+"))
7118 (re (if level (concat "^" (regexp-quote (match-string 0)) " "))))
7119 (save-excursion
7120 (save-restriction
7121 (narrow-to-region beg end)
7122 (when re
7123 ;; Properly fold already folded siblings
7124 (goto-char (point-min))
7125 (while (re-search-forward re nil t)
7126 (if (and (not (outline-invisible-p))
7127 (save-excursion
7128 (goto-char (point-at-eol)) (outline-invisible-p)))
7129 (outline-hide-entry))))
7130 (org-cycle-show-empty-lines 'overview)
7131 (org-cycle-hide-drawers 'overview)))))
7133 (defun org-cycle-show-empty-lines (state)
7134 "Show empty lines above all visible headlines.
7135 The region to be covered depends on STATE when called through
7136 `org-cycle-hook'. Lisp program can use t for STATE to get the
7137 entire buffer covered. Note that an empty line is only shown if there
7138 are at least `org-cycle-separator-lines' empty lines before the headline."
7139 (when (/= org-cycle-separator-lines 0)
7140 (save-excursion
7141 (let* ((n (abs org-cycle-separator-lines))
7142 (re (cond
7143 ((= n 1) "\\(\n[ \t]*\n\\*+\\) ")
7144 ((= n 2) "^[ \t]*\\(\n[ \t]*\n\\*+\\) ")
7145 (t (let ((ns (number-to-string (- n 2))))
7146 (concat "^\\(?:[ \t]*\n\\)\\{" ns "," ns "\\}"
7147 "[ \t]*\\(\n[ \t]*\n\\*+\\) ")))))
7148 beg end)
7149 (cond
7150 ((memq state '(overview contents t))
7151 (setq beg (point-min) end (point-max)))
7152 ((memq state '(children folded))
7153 (setq beg (point)
7154 end (progn (org-end-of-subtree t t)
7155 (line-beginning-position 2)))))
7156 (when beg
7157 (goto-char beg)
7158 (while (re-search-forward re end t)
7159 (unless (get-char-property (match-end 1) 'invisible)
7160 (let ((e (match-end 1))
7161 (b (if (>= org-cycle-separator-lines 0)
7162 (match-beginning 1)
7163 (save-excursion
7164 (goto-char (match-beginning 0))
7165 (skip-chars-backward " \t\n")
7166 (line-end-position)))))
7167 (outline-flag-region b e nil))))))))
7168 ;; Never hide empty lines at the end of the file.
7169 (save-excursion
7170 (goto-char (point-max))
7171 (outline-previous-heading)
7172 (outline-end-of-heading)
7173 (if (and (looking-at "[ \t\n]+")
7174 (= (match-end 0) (point-max)))
7175 (outline-flag-region (point) (match-end 0) nil))))
7177 (defun org-show-empty-lines-in-parent ()
7178 "Move to the parent and re-show empty lines before visible headlines."
7179 (save-excursion
7180 (let ((context (if (org-up-heading-safe) 'children 'overview)))
7181 (org-cycle-show-empty-lines context))))
7183 (defun org-files-list ()
7184 "Return `org-agenda-files' list, plus all open org-mode files.
7185 This is useful for operations that need to scan all of a user's
7186 open and agenda-wise Org files."
7187 (let ((files (mapcar 'expand-file-name (org-agenda-files))))
7188 (dolist (buf (buffer-list))
7189 (with-current-buffer buf
7190 (if (and (derived-mode-p 'org-mode) (buffer-file-name))
7191 (let ((file (expand-file-name (buffer-file-name))))
7192 (unless (member file files)
7193 (push file files))))))
7194 files))
7196 (defsubst org-entry-beginning-position ()
7197 "Return the beginning position of the current entry."
7198 (save-excursion (outline-back-to-heading t) (point)))
7200 (defsubst org-entry-end-position ()
7201 "Return the end position of the current entry."
7202 (save-excursion (outline-next-heading) (point)))
7204 (defun org-cycle-hide-drawers (state &optional exceptions)
7205 "Re-hide all drawers after a visibility state change.
7206 When non-nil, optional argument EXCEPTIONS is a list of strings
7207 specifying which drawers should not be hidden."
7208 (when (and (derived-mode-p 'org-mode)
7209 (not (memq state '(overview folded contents))))
7210 (save-excursion
7211 (let* ((globalp (memq state '(contents all)))
7212 (beg (if globalp (point-min) (point)))
7213 (end (if globalp (point-max)
7214 (if (eq state 'children)
7215 (save-excursion (outline-next-heading) (point))
7216 (org-end-of-subtree t)))))
7217 (goto-char beg)
7218 (while (re-search-forward org-drawer-regexp (max end (point)) t)
7219 (unless (member-ignore-case (match-string 1) exceptions)
7220 (let ((drawer (org-element-at-point)))
7221 (when (memq (org-element-type drawer) '(drawer property-drawer))
7222 (org-flag-drawer t drawer)
7223 ;; Make sure to skip drawer entirely or we might flag
7224 ;; it another time when matching its ending line with
7225 ;; `org-drawer-regexp'.
7226 (goto-char (org-element-property :end drawer))))))))))
7228 (defun org-flag-drawer (flag &optional element)
7229 "When FLAG is non-nil, hide the drawer we are at.
7230 Otherwise make it visible. When optional argument ELEMENT is
7231 a parsed drawer, as returned by `org-element-at-point', hide or
7232 show that drawer instead."
7233 (when (save-excursion
7234 (beginning-of-line)
7235 (org-looking-at-p org-drawer-regexp))
7236 (let ((drawer (or element (org-element-at-point))))
7237 (when (memq (org-element-type drawer) '(drawer property-drawer))
7238 (let ((post (org-element-property :post-affiliated drawer)))
7239 (save-excursion
7240 (outline-flag-region
7241 (progn (goto-char post) (line-end-position))
7242 (progn (goto-char (org-element-property :end drawer))
7243 (skip-chars-backward " \r\t\n")
7244 (line-end-position))
7245 flag))
7246 ;; When the drawer is hidden away, make sure point lies in
7247 ;; a visible part of the buffer.
7248 (when (and flag (> (line-beginning-position) post))
7249 (goto-char post)))))))
7251 (defun org-subtree-end-visible-p ()
7252 "Is the end of the current subtree visible?"
7253 (pos-visible-in-window-p
7254 (save-excursion (org-end-of-subtree t) (point))))
7256 (defun org-first-headline-recenter ()
7257 "Move cursor to the first headline and recenter the headline."
7258 (goto-char (point-min))
7259 (when (re-search-forward (concat "^\\(" org-outline-regexp "\\)") nil t)
7260 (set-window-start (selected-window) (point-at-bol))))
7262 ;;; Saving and restoring visibility
7264 (defun org-outline-overlay-data (&optional use-markers)
7265 "Return a list of the locations of all outline overlays.
7266 These are overlays with the `invisible' property value `outline'.
7267 The return value is a list of cons cells, with start and stop
7268 positions for each overlay.
7269 If USE-MARKERS is set, return the positions as markers."
7270 (let (beg end)
7271 (save-excursion
7272 (save-restriction
7273 (widen)
7274 (delq nil
7275 (mapcar (lambda (o)
7276 (when (eq (overlay-get o 'invisible) 'outline)
7277 (setq beg (overlay-start o)
7278 end (overlay-end o))
7279 (and beg end (> end beg)
7280 (if use-markers
7281 (cons (copy-marker beg)
7282 (copy-marker end t))
7283 (cons beg end)))))
7284 (overlays-in (point-min) (point-max))))))))
7286 (defun org-set-outline-overlay-data (data)
7287 "Create visibility overlays for all positions in DATA.
7288 DATA should have been made by `org-outline-overlay-data'."
7289 (let (o)
7290 (save-excursion
7291 (save-restriction
7292 (widen)
7293 (outline-show-all)
7294 (mapc (lambda (c)
7295 (outline-flag-region (car c) (cdr c) t))
7296 data)))))
7298 ;;; Folding of blocks
7300 (defvar org-hide-block-overlays nil
7301 "Overlays hiding blocks.")
7302 (make-variable-buffer-local 'org-hide-block-overlays)
7304 (defun org-block-map (function &optional start end)
7305 "Call FUNCTION at the head of all source blocks in the current buffer.
7306 Optional arguments START and END can be used to limit the range."
7307 (let ((start (or start (point-min)))
7308 (end (or end (point-max))))
7309 (save-excursion
7310 (goto-char start)
7311 (while (and (< (point) end) (re-search-forward org-block-regexp end t))
7312 (save-excursion
7313 (save-match-data
7314 (goto-char (match-beginning 0))
7315 (funcall function)))))))
7317 (defun org-hide-block-toggle-all ()
7318 "Toggle the visibility of all blocks in the current buffer."
7319 (org-block-map 'org-hide-block-toggle))
7321 (defun org-hide-block-all ()
7322 "Fold all blocks in the current buffer."
7323 (interactive)
7324 (org-show-block-all)
7325 (org-block-map 'org-hide-block-toggle-maybe))
7327 (defun org-show-block-all ()
7328 "Unfold all blocks in the current buffer."
7329 (interactive)
7330 (mapc 'delete-overlay org-hide-block-overlays)
7331 (setq org-hide-block-overlays nil))
7333 (defun org-hide-block-toggle-maybe ()
7334 "Toggle visibility of block at point.
7335 Unlike to `org-hide-block-toggle', this function does not throw
7336 an error. Return a non-nil value when toggling is successful."
7337 (interactive)
7338 (ignore-errors (org-hide-block-toggle)))
7340 (defun org-hide-block-toggle (&optional force)
7341 "Toggle the visibility of the current block.
7342 When optional argument FORCE is `off', make block visible. If it
7343 is non-nil, hide it unconditionally. Throw an error when not at
7344 a block. Return a non-nil value when toggling is successful."
7345 (interactive)
7346 (let ((element (org-element-at-point)))
7347 (unless (memq (org-element-type element)
7348 '(center-block comment-block dynamic-block example-block
7349 export-block quote-block special-block
7350 src-block verse-block))
7351 (user-error "Not at a block"))
7352 (let* ((start (save-excursion
7353 (goto-char (org-element-property :post-affiliated element))
7354 (line-end-position)))
7355 (end (save-excursion
7356 (goto-char (org-element-property :end element))
7357 (skip-chars-backward " \r\t\n")
7358 (line-end-position)))
7359 (overlays (overlays-at start)))
7360 (cond
7361 ;; Do nothing when not before or at the block opening line or
7362 ;; at the block closing line.
7363 ((let ((eol (line-end-position))) (and (> eol start) (/= eol end))) nil)
7364 ((and (not (eq force 'off))
7365 (not (memq t (mapcar
7366 (lambda (o)
7367 (eq (overlay-get o 'invisible) 'org-hide-block))
7368 overlays))))
7369 (let ((ov (make-overlay start end)))
7370 (overlay-put ov 'invisible 'org-hide-block)
7371 ;; Make the block accessible to `isearch'.
7372 (overlay-put
7373 ov 'isearch-open-invisible
7374 (lambda (ov)
7375 (when (memq ov org-hide-block-overlays)
7376 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7377 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7378 (delete-overlay ov))))
7379 (push ov org-hide-block-overlays)
7380 ;; When the block is hidden away, make sure point is left in
7381 ;; a visible part of the buffer.
7382 (when (> (line-beginning-position) start)
7383 (goto-char start)
7384 (beginning-of-line))
7385 ;; Signal successful toggling.
7387 ((or (not force) (eq force 'off))
7388 (dolist (ov overlays t)
7389 (when (memq ov org-hide-block-overlays)
7390 (setq org-hide-block-overlays (delq ov org-hide-block-overlays)))
7391 (when (eq (overlay-get ov 'invisible) 'org-hide-block)
7392 (delete-overlay ov))))))))
7394 ;; org-tab-after-check-for-cycling-hook
7395 (add-hook 'org-tab-first-hook 'org-hide-block-toggle-maybe)
7396 ;; Remove overlays when changing major mode
7397 (add-hook 'org-mode-hook
7398 (lambda () (org-add-hook 'change-major-mode-hook
7399 'org-show-block-all 'append 'local)))
7401 ;;; Org-goto
7403 (defvar org-goto-window-configuration nil)
7404 (defvar org-goto-marker nil)
7405 (defvar org-goto-map)
7406 (defun org-goto-map ()
7407 "Set the keymap `org-goto'."
7408 (setq org-goto-map
7409 (let ((map (make-sparse-keymap)))
7410 (let ((cmds '(isearch-forward isearch-backward kill-ring-save set-mark-command
7411 mouse-drag-region universal-argument org-occur)))
7412 (dolist (cmd cmds)
7413 (substitute-key-definition cmd cmd map global-map)))
7414 (suppress-keymap map)
7415 (org-defkey map "\C-m" 'org-goto-ret)
7416 (org-defkey map [(return)] 'org-goto-ret)
7417 (org-defkey map [(left)] 'org-goto-left)
7418 (org-defkey map [(right)] 'org-goto-right)
7419 (org-defkey map [(control ?g)] 'org-goto-quit)
7420 (org-defkey map "\C-i" 'org-cycle)
7421 (org-defkey map [(tab)] 'org-cycle)
7422 (org-defkey map [(down)] 'outline-next-visible-heading)
7423 (org-defkey map [(up)] 'outline-previous-visible-heading)
7424 (if org-goto-auto-isearch
7425 (if (fboundp 'define-key-after)
7426 (define-key-after map [t] 'org-goto-local-auto-isearch)
7427 nil)
7428 (org-defkey map "q" 'org-goto-quit)
7429 (org-defkey map "n" 'outline-next-visible-heading)
7430 (org-defkey map "p" 'outline-previous-visible-heading)
7431 (org-defkey map "f" 'outline-forward-same-level)
7432 (org-defkey map "b" 'outline-backward-same-level)
7433 (org-defkey map "u" 'outline-up-heading))
7434 (org-defkey map "/" 'org-occur)
7435 (org-defkey map "\C-c\C-n" 'outline-next-visible-heading)
7436 (org-defkey map "\C-c\C-p" 'outline-previous-visible-heading)
7437 (org-defkey map "\C-c\C-f" 'outline-forward-same-level)
7438 (org-defkey map "\C-c\C-b" 'outline-backward-same-level)
7439 (org-defkey map "\C-c\C-u" 'outline-up-heading)
7440 map)))
7442 (defconst org-goto-help
7443 "Browse buffer copy, to find location or copy text.%s
7444 RET=jump to location C-g=quit and return to previous location
7445 \[Up]/[Down]=next/prev headline TAB=cycle visibility [/] org-occur")
7447 (defvar org-goto-start-pos) ; dynamically scoped parameter
7449 (defun org-goto (&optional alternative-interface)
7450 "Look up a different location in the current file, keeping current visibility.
7452 When you want look-up or go to a different location in a
7453 document, the fastest way is often to fold the entire buffer and
7454 then dive into the tree. This method has the disadvantage, that
7455 the previous location will be folded, which may not be what you
7456 want.
7458 This command works around this by showing a copy of the current
7459 buffer in an indirect buffer, in overview mode. You can dive
7460 into the tree in that copy, use org-occur and incremental search
7461 to find a location. When pressing RET or `Q', the command
7462 returns to the original buffer in which the visibility is still
7463 unchanged. After RET it will also jump to the location selected
7464 in the indirect buffer and expose the headline hierarchy above.
7466 With a prefix argument, use the alternative interface: e.g., if
7467 `org-goto-interface' is `outline' use `outline-path-completion'."
7468 (interactive "P")
7469 (org-goto-map)
7470 (let* ((org-refile-targets `((nil . (:maxlevel . ,org-goto-max-level))))
7471 (org-refile-use-outline-path t)
7472 (org-refile-target-verify-function nil)
7473 (interface
7474 (if (not alternative-interface)
7475 org-goto-interface
7476 (if (eq org-goto-interface 'outline)
7477 'outline-path-completion
7478 'outline)))
7479 (org-goto-start-pos (point))
7480 (selected-point
7481 (if (eq interface 'outline)
7482 (car (org-get-location (current-buffer) org-goto-help))
7483 (let ((pa (org-refile-get-location "Goto" nil nil t)))
7484 (org-refile-check-position pa)
7485 (nth 3 pa)))))
7486 (if selected-point
7487 (progn
7488 (org-mark-ring-push org-goto-start-pos)
7489 (goto-char selected-point)
7490 (if (or (outline-invisible-p) (org-invisible-p2))
7491 (org-show-context 'org-goto)))
7492 (message "Quit"))))
7494 (defvar org-goto-selected-point nil) ; dynamically scoped parameter
7495 (defvar org-goto-exit-command nil) ; dynamically scoped parameter
7496 (defvar org-goto-local-auto-isearch-map) ; defined below
7498 (defun org-get-location (buf help)
7499 "Let the user select a location in the Org-mode buffer BUF.
7500 This function uses a recursive edit. It returns the selected position
7501 or nil."
7502 (org-no-popups
7503 (let ((isearch-mode-map org-goto-local-auto-isearch-map)
7504 (isearch-hide-immediately nil)
7505 (isearch-search-fun-function
7506 (lambda () 'org-goto-local-search-headings))
7507 (org-goto-selected-point org-goto-exit-command))
7508 (save-excursion
7509 (save-window-excursion
7510 (delete-other-windows)
7511 (and (get-buffer "*org-goto*") (kill-buffer "*org-goto*"))
7512 (org-pop-to-buffer-same-window
7513 (condition-case nil
7514 (make-indirect-buffer (current-buffer) "*org-goto*")
7515 (error (make-indirect-buffer (current-buffer) "*org-goto*"))))
7516 (with-output-to-temp-buffer "*Org Help*"
7517 (princ (format help (if org-goto-auto-isearch
7518 " Just type for auto-isearch."
7519 " n/p/f/b/u to navigate, q to quit."))))
7520 (org-fit-window-to-buffer (get-buffer-window "*Org Help*"))
7521 (setq buffer-read-only nil)
7522 (let ((org-startup-truncated t)
7523 (org-startup-folded nil)
7524 (org-startup-align-all-tables nil))
7525 (org-mode)
7526 (org-overview))
7527 (setq buffer-read-only t)
7528 (if (and (boundp 'org-goto-start-pos)
7529 (integer-or-marker-p org-goto-start-pos))
7530 (progn (goto-char org-goto-start-pos)
7531 (when (outline-invisible-p)
7532 (org-show-set-visibility 'lineage)))
7533 (goto-char (point-min)))
7534 (let (org-special-ctrl-a/e) (org-beginning-of-line))
7535 (message "Select location and press RET")
7536 (use-local-map org-goto-map)
7537 (recursive-edit)))
7538 (kill-buffer "*org-goto*")
7539 (cons org-goto-selected-point org-goto-exit-command))))
7541 (defvar org-goto-local-auto-isearch-map (make-sparse-keymap))
7542 (set-keymap-parent org-goto-local-auto-isearch-map isearch-mode-map)
7543 ;; `isearch-other-control-char' was removed in Emacs 24.4.
7544 (if (fboundp 'isearch-other-control-char)
7545 (progn
7546 (define-key org-goto-local-auto-isearch-map "\C-i" 'isearch-other-control-char)
7547 (define-key org-goto-local-auto-isearch-map "\C-m" 'isearch-other-control-char))
7548 (define-key org-goto-local-auto-isearch-map "\C-i" nil)
7549 (define-key org-goto-local-auto-isearch-map "\C-m" nil)
7550 (define-key org-goto-local-auto-isearch-map [return] nil))
7552 (defun org-goto-local-search-headings (string bound noerror)
7553 "Search and make sure that any matches are in headlines."
7554 (catch 'return
7555 (while (if isearch-forward
7556 (search-forward string bound noerror)
7557 (search-backward string bound noerror))
7558 (when (save-match-data
7559 (and (save-excursion
7560 (beginning-of-line)
7561 (looking-at org-complex-heading-regexp))
7562 (or (not (match-beginning 5))
7563 (< (point) (match-beginning 5)))))
7564 (throw 'return (point))))))
7566 (defun org-goto-local-auto-isearch ()
7567 "Start isearch."
7568 (interactive)
7569 (goto-char (point-min))
7570 (let ((keys (this-command-keys)))
7571 (when (eq (lookup-key isearch-mode-map keys) 'isearch-printing-char)
7572 (isearch-mode t)
7573 (isearch-process-search-char (string-to-char keys)))))
7575 (defun org-goto-ret (&optional arg)
7576 "Finish `org-goto' by going to the new location."
7577 (interactive "P")
7578 (setq org-goto-selected-point (point)
7579 org-goto-exit-command 'return)
7580 (throw 'exit nil))
7582 (defun org-goto-left ()
7583 "Finish `org-goto' by going to the new location."
7584 (interactive)
7585 (if (org-at-heading-p)
7586 (progn
7587 (beginning-of-line 1)
7588 (setq org-goto-selected-point (point)
7589 org-goto-exit-command 'left)
7590 (throw 'exit nil))
7591 (user-error "Not on a heading")))
7593 (defun org-goto-right ()
7594 "Finish `org-goto' by going to the new location."
7595 (interactive)
7596 (if (org-at-heading-p)
7597 (progn
7598 (setq org-goto-selected-point (point)
7599 org-goto-exit-command 'right)
7600 (throw 'exit nil))
7601 (user-error "Not on a heading")))
7603 (defun org-goto-quit ()
7604 "Finish `org-goto' without cursor motion."
7605 (interactive)
7606 (setq org-goto-selected-point nil)
7607 (setq org-goto-exit-command 'quit)
7608 (throw 'exit nil))
7610 ;;; Indirect buffer display of subtrees
7612 (defvar org-indirect-dedicated-frame nil
7613 "This is the frame being used for indirect tree display.")
7614 (defvar org-last-indirect-buffer nil)
7616 (defun org-tree-to-indirect-buffer (&optional arg)
7617 "Create indirect buffer and narrow it to current subtree.
7618 With a numerical prefix ARG, go up to this level and then take that tree.
7619 If ARG is negative, go up that many levels.
7621 If `org-indirect-buffer-display' is not `new-frame', the command removes the
7622 indirect buffer previously made with this command, to avoid proliferation of
7623 indirect buffers. However, when you call the command with a \
7624 \\[universal-argument] prefix, or
7625 when `org-indirect-buffer-display' is `new-frame', the last buffer
7626 is kept so that you can work with several indirect buffers at the same time.
7627 If `org-indirect-buffer-display' is `dedicated-frame', the \
7628 \\[universal-argument] prefix also
7629 requests that a new frame be made for the new buffer, so that the dedicated
7630 frame is not changed."
7631 (interactive "P")
7632 (let ((cbuf (current-buffer))
7633 (cwin (selected-window))
7634 (pos (point))
7635 beg end level heading ibuf)
7636 (save-excursion
7637 (org-back-to-heading t)
7638 (when (numberp arg)
7639 (setq level (org-outline-level))
7640 (if (< arg 0) (setq arg (+ level arg)))
7641 (while (> (setq level (org-outline-level)) arg)
7642 (org-up-heading-safe)))
7643 (setq beg (point)
7644 heading (org-get-heading))
7645 (org-end-of-subtree t t)
7646 (if (org-at-heading-p) (backward-char 1))
7647 (setq end (point)))
7648 (if (and (buffer-live-p org-last-indirect-buffer)
7649 (not (eq org-indirect-buffer-display 'new-frame))
7650 (not arg))
7651 (kill-buffer org-last-indirect-buffer))
7652 (setq ibuf (org-get-indirect-buffer cbuf heading)
7653 org-last-indirect-buffer ibuf)
7654 (cond
7655 ((or (eq org-indirect-buffer-display 'new-frame)
7656 (and arg (eq org-indirect-buffer-display 'dedicated-frame)))
7657 (select-frame (make-frame))
7658 (delete-other-windows)
7659 (org-pop-to-buffer-same-window ibuf)
7660 (org-set-frame-title heading))
7661 ((eq org-indirect-buffer-display 'dedicated-frame)
7662 (raise-frame
7663 (select-frame (or (and org-indirect-dedicated-frame
7664 (frame-live-p org-indirect-dedicated-frame)
7665 org-indirect-dedicated-frame)
7666 (setq org-indirect-dedicated-frame (make-frame)))))
7667 (delete-other-windows)
7668 (org-pop-to-buffer-same-window ibuf)
7669 (org-set-frame-title (concat "Indirect: " heading)))
7670 ((eq org-indirect-buffer-display 'current-window)
7671 (org-pop-to-buffer-same-window ibuf))
7672 ((eq org-indirect-buffer-display 'other-window)
7673 (pop-to-buffer ibuf))
7674 (t (error "Invalid value")))
7675 (if (featurep 'xemacs)
7676 (save-excursion (org-mode) (turn-on-font-lock)))
7677 (narrow-to-region beg end)
7678 (outline-show-all)
7679 (goto-char pos)
7680 (run-hook-with-args 'org-cycle-hook 'all)
7681 (and (window-live-p cwin) (select-window cwin))))
7683 (defun org-get-indirect-buffer (&optional buffer heading)
7684 (setq buffer (or buffer (current-buffer)))
7685 (let ((n 1) (base (buffer-name buffer)) bname)
7686 (while (buffer-live-p
7687 (get-buffer
7688 (setq bname
7689 (concat base "-"
7690 (if heading (concat heading "-" (number-to-string n))
7691 (number-to-string n))))))
7692 (setq n (1+ n)))
7693 (condition-case nil
7694 (make-indirect-buffer buffer bname 'clone)
7695 (error (make-indirect-buffer buffer bname)))))
7697 (defun org-set-frame-title (title)
7698 "Set the title of the current frame to the string TITLE."
7699 ;; FIXME: how to name a single frame in XEmacs???
7700 (unless (featurep 'xemacs)
7701 (modify-frame-parameters (selected-frame) (list (cons 'name title)))))
7703 ;;;; Structure editing
7705 ;;; Inserting headlines
7707 (defun org-previous-line-empty-p (&optional next)
7708 "Is the previous line a blank line?
7709 When NEXT is non-nil, check the next line instead."
7710 (save-excursion
7711 (and (not (bobp))
7712 (or (beginning-of-line (if next 2 0)) t)
7713 (save-match-data
7714 (looking-at "[ \t]*$")))))
7716 (defun org-insert-heading (&optional arg invisible-ok top-level)
7717 "Insert a new heading or an item with the same depth at point.
7719 If point is at the beginning of a heading or a list item, insert
7720 a new heading or a new item above the current one. If point is
7721 at the beginning of a normal line, turn the line into a heading.
7723 If point is in the middle of a headline or a list item, split the
7724 headline or the item and create a new headline/item with the text
7725 in the current line after point \(see `org-M-RET-may-split-line'
7726 on how to modify this behavior).
7728 With one universal prefix argument, set the user option
7729 `org-insert-heading-respect-content' to t for the duration of
7730 the command. This modifies the behavior described above in this
7731 ways: on list items and at the beginning of normal lines, force
7732 the insertion of a heading after the current subtree.
7734 With two universal prefix arguments, insert the heading at the
7735 end of the grandparent subtree. For example, if point is within
7736 a 2nd-level heading, then it will insert a 2nd-level heading at
7737 the end of the 1st-level parent heading.
7739 If point is at the beginning of a headline, insert a sibling
7740 before the current headline. If point is not at the beginning,
7741 split the line and create a new headline with the text in the
7742 current line after point \(see `org-M-RET-may-split-line' on how
7743 to modify this behavior).
7745 If point is at the beginning of a normal line, turn this line
7746 into a heading.
7748 When INVISIBLE-OK is set, stop at invisible headlines when going
7749 back. This is important for non-interactive uses of the
7750 command.
7752 When optional argument TOP-LEVEL is non-nil, insert a level 1
7753 heading, unconditionally."
7754 (interactive "P")
7755 (if (org-called-interactively-p 'any) (org-reveal))
7756 (let ((itemp (and (not top-level) (org-in-item-p)))
7757 (may-split (org-get-alist-option org-M-RET-may-split-line 'headline))
7758 (respect-content (or org-insert-heading-respect-content
7759 (equal arg '(4))))
7760 (initial-content ""))
7762 (cond
7764 ((or (= (buffer-size) 0)
7765 (and (not (save-excursion
7766 (and (ignore-errors (org-back-to-heading invisible-ok))
7767 (org-at-heading-p))))
7768 (or arg (not itemp))))
7769 ;; At beginning of buffer or so high up that only a heading
7770 ;; makes sense.
7771 (cond ((and (bolp) (not respect-content)) (insert "* "))
7772 ((not respect-content)
7773 (unless may-split (end-of-line))
7774 (insert "\n* "))
7775 ((re-search-forward org-outline-regexp-bol nil t)
7776 (beginning-of-line)
7777 (insert "* \n")
7778 (backward-char))
7779 (t (goto-char (point-max))
7780 (insert "\n* ")))
7781 (run-hooks 'org-insert-heading-hook))
7783 ((and itemp (not (member arg '((4) (16)))) (org-insert-item)))
7786 ;; Maybe move at the end of the subtree
7787 (when (equal arg '(16))
7788 (org-up-heading-safe)
7789 (org-end-of-subtree t))
7790 ;; Insert a heading
7791 (save-restriction
7792 (widen)
7793 (let* ((level nil)
7794 (on-heading (org-at-heading-p))
7795 (empty-line-p (if on-heading
7796 (org-previous-line-empty-p)
7797 ;; We will decide later
7798 nil))
7799 ;; Get a level string to fall back on.
7800 (fix-level
7801 (if (org-before-first-heading-p) "*"
7802 (save-excursion
7803 (org-back-to-heading t)
7804 (if (org-previous-line-empty-p) (setq empty-line-p t))
7805 (looking-at org-outline-regexp)
7806 (make-string (1- (length (match-string 0))) ?*))))
7807 (stars
7808 (save-excursion
7809 (condition-case nil
7810 (if top-level "* "
7811 (org-back-to-heading invisible-ok)
7812 (when (and (not on-heading)
7813 (featurep 'org-inlinetask)
7814 (integerp org-inlinetask-min-level)
7815 (>= (length (match-string 0))
7816 org-inlinetask-min-level))
7817 ;; Find a heading level before the inline
7818 ;; task.
7819 (while (and (setq level (org-up-heading-safe))
7820 (>= level org-inlinetask-min-level)))
7821 (if (org-at-heading-p)
7822 (org-back-to-heading invisible-ok)
7823 (error "This should not happen")))
7824 (unless (and (save-excursion
7825 (save-match-data
7826 (org-backward-heading-same-level
7827 1 invisible-ok))
7828 (= (point) (match-beginning 0)))
7829 (not (org-previous-line-empty-p t)))
7830 (setq empty-line-p (or empty-line-p
7831 (org-previous-line-empty-p))))
7832 (match-string 0))
7833 (error (or fix-level "* ")))))
7834 (blank-a (cdr (assq 'heading org-blank-before-new-entry)))
7835 (blank (if (eq blank-a 'auto) empty-line-p blank-a))
7836 pos hide-previous previous-pos)
7838 ;; If we insert after content, move there and clean up
7839 ;; whitespace.
7840 (when (and respect-content
7841 (not (org-looking-at-p org-outline-regexp-bol)))
7842 (if (not (org-before-first-heading-p))
7843 (org-end-of-subtree nil t)
7844 (re-search-forward org-outline-regexp-bol)
7845 (beginning-of-line 0))
7846 (skip-chars-backward " \r\t\n")
7847 (and (not (org-looking-back "^\\*+" (line-beginning-position)))
7848 (looking-at "[ \t]+") (replace-match ""))
7849 (unless (eobp) (forward-char 1))
7850 (when (looking-at "^\\*")
7851 (unless (bobp) (backward-char 1))
7852 (insert "\n")))
7854 ;; If we are splitting, grab the text that should be moved
7855 ;; to the new headline.
7856 (when may-split
7857 (if (org-on-heading-p)
7858 ;; This is a heading: split intelligently (keeping
7859 ;; tags).
7860 (let ((pos (point)))
7861 (beginning-of-line)
7862 (unless (looking-at org-complex-heading-regexp)
7863 (error "This should not happen"))
7864 (when (and (match-beginning 4)
7865 (> pos (match-beginning 4))
7866 (< pos (match-end 4)))
7867 (setq initial-content (buffer-substring pos (match-end 4)))
7868 (goto-char pos)
7869 (delete-region (point) (match-end 4))
7870 (if (looking-at "[ \t]*$")
7871 (replace-match "")
7872 (insert (make-string (length initial-content) ?\s)))
7873 (setq initial-content (org-trim initial-content)))
7874 (goto-char pos))
7875 ;; A normal line.
7876 (setq initial-content
7877 (org-trim
7878 (delete-and-extract-region (point) (line-end-position))))))
7880 ;; If we are at the beginning of the line, insert before it.
7881 ;; Otherwise, after it.
7882 (cond
7883 ((and (bolp) (looking-at "[ \t]*$")))
7884 ((bolp) (save-excursion (insert "\n")))
7885 (t (end-of-line)
7886 (insert "\n")))
7888 ;; Insert the new heading
7889 (insert stars)
7890 (just-one-space)
7891 (insert initial-content)
7892 (unless (and blank (org-previous-line-empty-p))
7893 (org-N-empty-lines-before-current (if blank 1 0)))
7894 ;; Adjust visibility, which may be messed up if we removed
7895 ;; blank lines while previous entry was hidden.
7896 (let ((bol (line-beginning-position)))
7897 (dolist (o (overlays-at (1- bol)))
7898 (when (and (eq (overlay-get o 'invisible) 'outline)
7899 (eq (overlay-end o) bol))
7900 (move-overlay o (overlay-start o) (1- bol)))))
7901 (run-hooks 'org-insert-heading-hook)))))))
7903 (defun org-N-empty-lines-before-current (N)
7904 "Make the number of empty lines before current exactly N.
7905 So this will delete or add empty lines."
7906 (save-excursion
7907 (beginning-of-line)
7908 (let ((p (point)))
7909 (skip-chars-backward " \r\t\n")
7910 (unless (bolp) (forward-line))
7911 (delete-region (point) p))
7912 (when (> N 0) (insert (make-string N ?\n)))))
7914 (defun org-get-heading (&optional no-tags no-todo)
7915 "Return the heading of the current entry, without the stars.
7916 When NO-TAGS is non-nil, don't include tags.
7917 When NO-TODO is non-nil, don't include TODO keywords."
7918 (save-excursion
7919 (org-back-to-heading t)
7920 (cond
7921 ((and no-tags no-todo)
7922 (looking-at org-complex-heading-regexp)
7923 (match-string 4))
7924 (no-tags
7925 (looking-at (concat org-outline-regexp
7926 "\\(.*?\\)"
7927 "\\(?:[ \t]+:[[:alnum:]:_@#%]+:\\)?[ \t]*$"))
7928 (match-string 1))
7929 (no-todo
7930 (looking-at org-todo-line-regexp)
7931 (match-string 3))
7932 (t (looking-at org-heading-regexp)
7933 (match-string 2)))))
7935 (defvar orgstruct-mode) ; defined below
7937 (defun org-heading-components ()
7938 "Return the components of the current heading.
7939 This is a list with the following elements:
7940 - the level as an integer
7941 - the reduced level, different if `org-odd-levels-only' is set.
7942 - the TODO keyword, or nil
7943 - the priority character, like ?A, or nil if no priority is given
7944 - the headline text itself, or the tags string if no headline text
7945 - the tags string, or nil."
7946 (save-excursion
7947 (org-back-to-heading t)
7948 (if (let (case-fold-search)
7949 (looking-at
7950 (if orgstruct-mode
7951 org-heading-regexp
7952 org-complex-heading-regexp)))
7953 (if orgstruct-mode
7954 (list (length (match-string 1))
7955 (org-reduced-level (length (match-string 1)))
7958 (match-string 2)
7959 nil)
7960 (list (length (match-string 1))
7961 (org-reduced-level (length (match-string 1)))
7962 (org-match-string-no-properties 2)
7963 (and (match-end 3) (aref (match-string 3) 2))
7964 (org-match-string-no-properties 4)
7965 (org-match-string-no-properties 5))))))
7967 (defun org-get-entry ()
7968 "Get the entry text, after heading, entire subtree."
7969 (save-excursion
7970 (org-back-to-heading t)
7971 (buffer-substring (point-at-bol 2) (org-end-of-subtree t))))
7973 (defun org-insert-heading-after-current ()
7974 "Insert a new heading with same level as current, after current subtree."
7975 (interactive)
7976 (org-back-to-heading)
7977 (org-insert-heading)
7978 (org-move-subtree-down)
7979 (end-of-line 1))
7981 (defun org-insert-heading-respect-content (&optional invisible-ok)
7982 "Insert heading with `org-insert-heading-respect-content' set to t."
7983 (interactive)
7984 (org-insert-heading '(4) invisible-ok))
7986 (defun org-insert-todo-heading-respect-content (&optional force-state)
7987 "Insert TODO heading with `org-insert-heading-respect-content' set to t."
7988 (interactive)
7989 (org-insert-todo-heading force-state '(4)))
7991 (defun org-insert-todo-heading (arg &optional force-heading)
7992 "Insert a new heading with the same level and TODO state as current heading.
7993 If the heading has no TODO state, or if the state is DONE, use the first
7994 state (TODO by default). Also with one prefix arg, force first state. With
7995 two prefix args, force inserting at the end of the parent subtree."
7996 (interactive "P")
7997 (when (or force-heading (not (org-insert-item 'checkbox)))
7998 (org-insert-heading (or (and (equal arg '(16)) '(16))
7999 force-heading))
8000 (save-excursion
8001 (org-back-to-heading)
8002 (outline-previous-heading)
8003 (looking-at org-todo-line-regexp))
8004 (let*
8005 ((new-mark-x
8006 (if (or (equal arg '(4))
8007 (not (match-beginning 2))
8008 (member (match-string 2) org-done-keywords))
8009 (car org-todo-keywords-1)
8010 (match-string 2)))
8011 (new-mark
8013 (run-hook-with-args-until-success
8014 'org-todo-get-default-hook new-mark-x nil)
8015 new-mark-x)))
8016 (beginning-of-line 1)
8017 (and (looking-at org-outline-regexp) (goto-char (match-end 0))
8018 (if org-treat-insert-todo-heading-as-state-change
8019 (org-todo new-mark)
8020 (insert new-mark " "))))
8021 (when org-provide-todo-statistics
8022 (org-update-parent-todo-statistics))))
8024 (defun org-insert-subheading (arg)
8025 "Insert a new subheading and demote it.
8026 Works for outline headings and for plain lists alike."
8027 (interactive "P")
8028 (org-insert-heading arg)
8029 (cond
8030 ((org-at-heading-p) (org-do-demote))
8031 ((org-at-item-p) (org-indent-item))))
8033 (defun org-insert-todo-subheading (arg)
8034 "Insert a new subheading with TODO keyword or checkbox and demote it.
8035 Works for outline headings and for plain lists alike."
8036 (interactive "P")
8037 (org-insert-todo-heading arg)
8038 (cond
8039 ((org-at-heading-p) (org-do-demote))
8040 ((org-at-item-p) (org-indent-item))))
8042 ;;; Promotion and Demotion
8044 (defvar org-after-demote-entry-hook nil
8045 "Hook run after an entry has been demoted.
8046 The cursor will be at the beginning of the entry.
8047 When a subtree is being demoted, the hook will be called for each node.")
8049 (defvar org-after-promote-entry-hook nil
8050 "Hook run after an entry has been promoted.
8051 The cursor will be at the beginning of the entry.
8052 When a subtree is being promoted, the hook will be called for each node.")
8054 (defun org-promote-subtree ()
8055 "Promote the entire subtree.
8056 See also `org-promote'."
8057 (interactive)
8058 (save-excursion
8059 (org-with-limited-levels (org-map-tree 'org-promote)))
8060 (org-fix-position-after-promote))
8062 (defun org-demote-subtree ()
8063 "Demote the entire subtree.
8064 See `org-demote' and `org-promote'."
8065 (interactive)
8066 (save-excursion
8067 (org-with-limited-levels (org-map-tree 'org-demote)))
8068 (org-fix-position-after-promote))
8070 (defun org-do-promote ()
8071 "Promote the current heading higher up the tree.
8072 If the region is active in `transient-mark-mode', promote all
8073 headings in the region."
8074 (interactive)
8075 (save-excursion
8076 (if (org-region-active-p)
8077 (org-map-region 'org-promote (region-beginning) (region-end))
8078 (org-promote)))
8079 (org-fix-position-after-promote))
8081 (defun org-do-demote ()
8082 "Demote the current heading lower down the tree.
8083 If the region is active in `transient-mark-mode', demote all
8084 headings in the region."
8085 (interactive)
8086 (save-excursion
8087 (if (org-region-active-p)
8088 (org-map-region 'org-demote (region-beginning) (region-end))
8089 (org-demote)))
8090 (org-fix-position-after-promote))
8092 (defun org-fix-position-after-promote ()
8093 "Fix cursor position and indentation after demoting/promoting."
8094 (let ((pos (point)))
8095 (when (save-excursion
8096 (beginning-of-line 1)
8097 (looking-at org-todo-line-regexp)
8098 (or (equal pos (match-end 1)) (equal pos (match-end 2))))
8099 (cond ((eobp) (insert " "))
8100 ((eolp) (insert " "))
8101 ((equal (char-after) ?\ ) (forward-char 1))))))
8103 (defun org-current-level ()
8104 "Return the level of the current entry, or nil if before the first headline.
8105 The level is the number of stars at the beginning of the
8106 headline. Use `org-reduced-level' to remove the effect of
8107 `org-odd-levels'. Unlike to `org-outline-level', this function
8108 ignores inlinetasks."
8109 (let ((level (org-with-limited-levels (org-outline-level))))
8110 (and (> level 0) level)))
8112 (defun org-get-previous-line-level ()
8113 "Return the outline depth of the last headline before the current line.
8114 Returns 0 for the first headline in the buffer, and nil if before the
8115 first headline."
8116 (and (org-current-level)
8117 (or (and (/= (line-beginning-position) (point-min))
8118 (save-excursion (beginning-of-line 0) (org-current-level)))
8119 0)))
8121 (defun org-reduced-level (l)
8122 "Compute the effective level of a heading.
8123 This takes into account the setting of `org-odd-levels-only'."
8124 (cond
8125 ((zerop l) 0)
8126 (org-odd-levels-only (1+ (floor (/ l 2))))
8127 (t l)))
8129 (defun org-level-increment ()
8130 "Return the number of stars that will be added or removed at a
8131 time to headlines when structure editing, based on the value of
8132 `org-odd-levels-only'."
8133 (if org-odd-levels-only 2 1))
8135 (defun org-get-valid-level (level &optional change)
8136 "Rectify a level change under the influence of `org-odd-levels-only'
8137 LEVEL is a current level, CHANGE is by how much the level should be
8138 modified. Even if CHANGE is nil, LEVEL may be returned modified because
8139 even level numbers will become the next higher odd number."
8140 (if org-odd-levels-only
8141 (cond ((or (not change) (= 0 change)) (1+ (* 2 (/ level 2))))
8142 ((> change 0) (1+ (* 2 (/ (+ level (* 2 change)) 2))))
8143 ((< change 0) (max 1 (1+ (* 2 (/ (+ level (* 2 change)) 2))))))
8144 (max 1 (+ level (or change 0)))))
8146 (if (boundp 'define-obsolete-function-alias)
8147 (if (or (featurep 'xemacs) (< emacs-major-version 23))
8148 (define-obsolete-function-alias 'org-get-legal-level
8149 'org-get-valid-level)
8150 (define-obsolete-function-alias 'org-get-legal-level
8151 'org-get-valid-level "23.1")))
8153 (defun org-promote ()
8154 "Promote the current heading higher up the tree."
8155 (org-with-wide-buffer
8156 (org-back-to-heading t)
8157 (let* ((after-change-functions (remq 'flyspell-after-change-function
8158 after-change-functions))
8159 (level (save-match-data (funcall outline-level)))
8160 (up-head (concat (make-string (org-get-valid-level level -1) ?*) " "))
8161 (diff (abs (- level (length up-head) -1))))
8162 (cond
8163 ((and (= level 1) org-allow-promoting-top-level-subtree)
8164 (replace-match "# " nil t))
8165 ((= level 1)
8166 (user-error "Cannot promote to level 0. UNDO to recover if necessary"))
8167 (t (replace-match up-head nil t)))
8168 (unless (= level 1)
8169 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8170 (when org-adapt-indentation (org-fixup-indentation (- diff))))
8171 (run-hooks 'org-after-promote-entry-hook))))
8173 (defun org-demote ()
8174 "Demote the current heading lower down the tree."
8175 (org-with-wide-buffer
8176 (org-back-to-heading t)
8177 (let* ((after-change-functions (remq 'flyspell-after-change-function
8178 after-change-functions))
8179 (level (save-match-data (funcall outline-level)))
8180 (down-head (concat (make-string (org-get-valid-level level 1) ?*) " "))
8181 (diff (abs (- level (length down-head) -1))))
8182 (replace-match down-head nil t)
8183 (when org-auto-align-tags (org-set-tags nil 'ignore-column))
8184 (when org-adapt-indentation (org-fixup-indentation diff))
8185 (run-hooks 'org-after-demote-entry-hook))))
8187 (defun org-cycle-level ()
8188 "Cycle the level of an empty headline through possible states.
8189 This goes first to child, then to parent, level, then up the hierarchy.
8190 After top level, it switches back to sibling level."
8191 (interactive)
8192 (let ((org-adapt-indentation nil))
8193 (when (org-point-at-end-of-empty-headline)
8194 (setq this-command 'org-cycle-level) ; Only needed for caching
8195 (let ((cur-level (org-current-level))
8196 (prev-level (org-get-previous-line-level)))
8197 (cond
8198 ;; If first headline in file, promote to top-level.
8199 ((= prev-level 0)
8200 (loop repeat (/ (- cur-level 1) (org-level-increment))
8201 do (org-do-promote)))
8202 ;; If same level as prev, demote one.
8203 ((= prev-level cur-level)
8204 (org-do-demote))
8205 ;; If parent is top-level, promote to top level if not already.
8206 ((= prev-level 1)
8207 (loop repeat (/ (- cur-level 1) (org-level-increment))
8208 do (org-do-promote)))
8209 ;; If top-level, return to prev-level.
8210 ((= cur-level 1)
8211 (loop repeat (/ (- prev-level 1) (org-level-increment))
8212 do (org-do-demote)))
8213 ;; If less than prev-level, promote one.
8214 ((< cur-level prev-level)
8215 (org-do-promote))
8216 ;; If deeper than prev-level, promote until higher than
8217 ;; prev-level.
8218 ((> cur-level prev-level)
8219 (loop repeat (+ 1 (/ (- cur-level prev-level) (org-level-increment)))
8220 do (org-do-promote))))
8221 t))))
8223 (defun org-map-tree (fun)
8224 "Call FUN for every heading underneath the current one."
8225 (org-back-to-heading)
8226 (let ((level (funcall outline-level)))
8227 (save-excursion
8228 (funcall fun)
8229 (while (and (progn
8230 (outline-next-heading)
8231 (> (funcall outline-level) level))
8232 (not (eobp)))
8233 (funcall fun)))))
8235 (defun org-map-region (fun beg end)
8236 "Call FUN for every heading between BEG and END."
8237 (let ((org-ignore-region t))
8238 (save-excursion
8239 (setq end (copy-marker end))
8240 (goto-char beg)
8241 (if (and (re-search-forward org-outline-regexp-bol nil t)
8242 (< (point) end))
8243 (funcall fun))
8244 (while (and (progn
8245 (outline-next-heading)
8246 (< (point) end))
8247 (not (eobp)))
8248 (funcall fun)))))
8250 (defun org-fixup-indentation (diff)
8251 "Change the indentation in the current entry by DIFF.
8253 DIFF is an integer. Indentation is done according to the
8254 following rules:
8256 - Planning information and property drawers are always indented
8257 according to the new level of the headline;
8259 - Footnote definitions and their contents are ignored;
8261 - Inlinetasks' boundaries are not shifted;
8263 - Empty lines are ignored;
8265 - Other lines' indentation are shifted by DIFF columns, unless
8266 it would introduce a structural change in the document, in
8267 which case no shifting is done at all.
8269 Assume point is at a heading or an inlinetask beginning."
8270 (org-with-wide-buffer
8271 (narrow-to-region (line-beginning-position)
8272 (save-excursion
8273 (if (org-with-limited-levels (org-at-heading-p))
8274 (org-with-limited-levels (outline-next-heading))
8275 (org-inlinetask-goto-end))
8276 (point)))
8277 (forward-line)
8278 ;; Indent properly planning info and property drawer.
8279 (when (org-looking-at-p org-planning-line-re)
8280 (org-indent-line)
8281 (forward-line))
8282 (when (looking-at org-property-drawer-re)
8283 (goto-char (match-end 0))
8284 (forward-line)
8285 (save-excursion (org-indent-region (match-beginning 0) (match-end 0))))
8286 (catch 'no-shift
8287 (when (zerop diff) (throw 'no-shift nil))
8288 ;; If DIFF is negative, first check if a shift is possible at all
8289 ;; (e.g., it doesn't break structure). This can only happen if
8290 ;; some contents are not properly indented.
8291 (let ((case-fold-search t))
8292 (when (< diff 0)
8293 (let ((diff (- diff))
8294 (forbidden-re (concat org-outline-regexp
8295 "\\|"
8296 (substring org-footnote-definition-re 1))))
8297 (save-excursion
8298 (while (not (eobp))
8299 (cond
8300 ((org-looking-at-p "[ \t]*$") (forward-line))
8301 ((and (org-looking-at-p org-footnote-definition-re)
8302 (let ((e (org-element-at-point)))
8303 (and (eq (org-element-type e) 'footnote-definition)
8304 (goto-char (org-element-property :end e))))))
8305 ((org-looking-at-p org-outline-regexp) (forward-line))
8306 ;; Give up if shifting would move before column 0 or
8307 ;; if it would introduce a headline or a footnote
8308 ;; definition.
8310 (skip-chars-forward " \t")
8311 (let ((ind (current-column)))
8312 (when (or (< ind diff)
8313 (and (= ind diff) (org-looking-at-p forbidden-re)))
8314 (throw 'no-shift nil)))
8315 ;; Ignore contents of example blocks and source
8316 ;; blocks if their indentation is meant to be
8317 ;; preserved. Jump to block's closing line.
8318 (beginning-of-line)
8319 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8320 (let ((e (org-element-at-point)))
8321 (and (memq (org-element-type e)
8322 '(example-block src-block))
8323 (or org-src-preserve-indentation
8324 (org-element-property :preserve-indent e))
8325 (goto-char (org-element-property :end e))
8326 (progn (skip-chars-backward " \r\t\n")
8327 (beginning-of-line)
8328 t))))
8329 (forward-line))))))))
8330 ;; Shift lines but footnote definitions, inlinetasks boundaries
8331 ;; by DIFF. Also skip contents of source or example blocks
8332 ;; when indentation is meant to be preserved.
8333 (while (not (eobp))
8334 (cond
8335 ((and (org-looking-at-p org-footnote-definition-re)
8336 (let ((e (org-element-at-point)))
8337 (and (eq (org-element-type e) 'footnote-definition)
8338 (goto-char (org-element-property :end e))))))
8339 ((org-looking-at-p org-outline-regexp) (forward-line))
8340 ((org-looking-at-p "[ \t]*$") (forward-line))
8342 (org-indent-line-to (+ (org-get-indentation) diff))
8343 (beginning-of-line)
8344 (or (and (org-looking-at-p "[ \t]*#\\+BEGIN_\\(EXAMPLE\\|SRC\\)")
8345 (let ((e (org-element-at-point)))
8346 (and (memq (org-element-type e)
8347 '(example-block src-block))
8348 (or org-src-preserve-indentation
8349 (org-element-property :preserve-indent e))
8350 (goto-char (org-element-property :end e))
8351 (progn (skip-chars-backward " \r\t\n")
8352 (beginning-of-line)
8353 t))))
8354 (forward-line)))))))))
8356 (defun org-convert-to-odd-levels ()
8357 "Convert an org-mode file with all levels allowed to one with odd levels.
8358 This will leave level 1 alone, convert level 2 to level 3, level 3 to
8359 level 5 etc."
8360 (interactive)
8361 (when (yes-or-no-p "Are you sure you want to globally change levels to odd? ")
8362 (let ((outline-level 'org-outline-level)
8363 (org-odd-levels-only nil) n)
8364 (save-excursion
8365 (goto-char (point-min))
8366 (while (re-search-forward "^\\*\\*+ " nil t)
8367 (setq n (- (length (match-string 0)) 2))
8368 (while (>= (setq n (1- n)) 0)
8369 (org-demote))
8370 (end-of-line 1))))))
8372 (defun org-convert-to-oddeven-levels ()
8373 "Convert an org-mode file with only odd levels to one with odd/even levels.
8374 This promotes level 3 to level 2, level 5 to level 3 etc. If the
8375 file contains a section with an even level, conversion would
8376 destroy the structure of the file. An error is signaled in this
8377 case."
8378 (interactive)
8379 (goto-char (point-min))
8380 ;; First check if there are no even levels
8381 (when (re-search-forward "^\\(\\*\\*\\)+ " nil t)
8382 (org-show-set-visibility 'canonical)
8383 (error "Not all levels are odd in this file. Conversion not possible"))
8384 (when (yes-or-no-p "Are you sure you want to globally change levels to odd-even? ")
8385 (let ((outline-regexp org-outline-regexp)
8386 (outline-level 'org-outline-level)
8387 (org-odd-levels-only nil) n)
8388 (save-excursion
8389 (goto-char (point-min))
8390 (while (re-search-forward "^\\*\\*+ " nil t)
8391 (setq n (/ (1- (length (match-string 0))) 2))
8392 (while (>= (setq n (1- n)) 0)
8393 (org-promote))
8394 (end-of-line 1))))))
8396 (defun org-tr-level (n)
8397 "Make N odd if required."
8398 (if org-odd-levels-only (1+ (/ n 2)) n))
8400 ;;; Vertical tree motion, cutting and pasting of subtrees
8402 (defun org-move-subtree-up (&optional arg)
8403 "Move the current subtree up past ARG headlines of the same level."
8404 (interactive "p")
8405 (org-move-subtree-down (- (prefix-numeric-value arg))))
8407 (defun org-move-subtree-down (&optional arg)
8408 "Move the current subtree down past ARG headlines of the same level."
8409 (interactive "p")
8410 (setq arg (prefix-numeric-value arg))
8411 (let ((movfunc (if (> arg 0) 'org-get-next-sibling
8412 'org-get-last-sibling))
8413 (ins-point (make-marker))
8414 (cnt (abs arg))
8415 (col (current-column))
8416 beg beg0 end txt folded ne-beg ne-end ne-ins ins-end)
8417 ;; Select the tree
8418 (org-back-to-heading)
8419 (setq beg0 (point))
8420 (save-excursion
8421 (setq ne-beg (org-back-over-empty-lines))
8422 (setq beg (point)))
8423 (save-match-data
8424 (save-excursion (outline-end-of-heading)
8425 (setq folded (outline-invisible-p)))
8426 (progn (org-end-of-subtree nil t)
8427 (unless (eobp) (backward-char))))
8428 (outline-next-heading)
8429 (setq ne-end (org-back-over-empty-lines))
8430 (setq end (point))
8431 (goto-char beg0)
8432 (when (and (> arg 0) (org-first-sibling-p) (< ne-end ne-beg))
8433 ;; include less whitespace
8434 (save-excursion
8435 (goto-char beg)
8436 (forward-line (- ne-beg ne-end))
8437 (setq beg (point))))
8438 ;; Find insertion point, with error handling
8439 (while (> cnt 0)
8440 (or (and (funcall movfunc) (looking-at org-outline-regexp))
8441 (progn (goto-char beg0)
8442 (user-error "Cannot move past superior level or buffer limit")))
8443 (setq cnt (1- cnt)))
8444 (if (> arg 0)
8445 ;; Moving forward - still need to move over subtree
8446 (progn (org-end-of-subtree t t)
8447 (save-excursion
8448 (org-back-over-empty-lines)
8449 (or (bolp) (newline)))))
8450 (setq ne-ins (org-back-over-empty-lines))
8451 (move-marker ins-point (point))
8452 (setq txt (buffer-substring beg end))
8453 (org-save-markers-in-region beg end)
8454 (delete-region beg end)
8455 (org-remove-empty-overlays-at beg)
8456 (or (= beg (point-min)) (outline-flag-region (1- beg) beg nil))
8457 (or (bobp) (outline-flag-region (1- (point)) (point) nil))
8458 (and (not (bolp)) (looking-at "\n") (forward-char 1))
8459 (let ((bbb (point)))
8460 (insert-before-markers txt)
8461 (org-reinstall-markers-in-region bbb)
8462 (move-marker ins-point bbb))
8463 (or (bolp) (insert "\n"))
8464 (setq ins-end (point))
8465 (goto-char ins-point)
8466 (org-skip-whitespace)
8467 (when (and (< arg 0)
8468 (org-first-sibling-p)
8469 (> ne-ins ne-beg))
8470 ;; Move whitespace back to beginning
8471 (save-excursion
8472 (goto-char ins-end)
8473 (let ((kill-whole-line t))
8474 (kill-line (- ne-ins ne-beg)) (point)))
8475 (insert (make-string (- ne-ins ne-beg) ?\n)))
8476 (move-marker ins-point nil)
8477 (if folded
8478 (outline-hide-subtree)
8479 (org-show-entry)
8480 (outline-show-children)
8481 (org-cycle-hide-drawers 'children))
8482 (org-clean-visibility-after-subtree-move)
8483 ;; move back to the initial column we were at
8484 (move-to-column col)))
8486 (defvar org-subtree-clip ""
8487 "Clipboard for cut and paste of subtrees.
8488 This is actually only a copy of the kill, because we use the normal kill
8489 ring. We need it to check if the kill was created by `org-copy-subtree'.")
8491 (defvar org-subtree-clip-folded nil
8492 "Was the last copied subtree folded?
8493 This is used to fold the tree back after pasting.")
8495 (defun org-cut-subtree (&optional n)
8496 "Cut the current subtree into the clipboard.
8497 With prefix arg N, cut this many sequential subtrees.
8498 This is a short-hand for marking the subtree and then cutting it."
8499 (interactive "p")
8500 (org-copy-subtree n 'cut))
8502 (defun org-copy-subtree (&optional n cut force-store-markers nosubtrees)
8503 "Copy the current subtree it in the clipboard.
8504 With prefix arg N, copy this many sequential subtrees.
8505 This is a short-hand for marking the subtree and then copying it.
8506 If CUT is non-nil, actually cut the subtree.
8507 If FORCE-STORE-MARKERS is non-nil, store the relative locations
8508 of some markers in the region, even if CUT is non-nil. This is
8509 useful if the caller implements cut-and-paste as copy-then-paste-then-cut."
8510 (interactive "p")
8511 (let (beg end folded (beg0 (point)))
8512 (if (org-called-interactively-p 'any)
8513 (org-back-to-heading nil) ; take what looks like a subtree
8514 (org-back-to-heading t)) ; take what is really there
8515 (setq beg (point))
8516 (skip-chars-forward " \t\r\n")
8517 (save-match-data
8518 (if nosubtrees
8519 (outline-next-heading)
8520 (save-excursion (outline-end-of-heading)
8521 (setq folded (outline-invisible-p)))
8522 (ignore-errors (org-forward-heading-same-level (1- n) t))
8523 (org-end-of-subtree t t)))
8524 ;; Include the end of an inlinetask
8525 (when (and (featurep 'org-inlinetask)
8526 (looking-at-p (concat (org-inlinetask-outline-regexp)
8527 "END[ \t]*$")))
8528 (end-of-line))
8529 (setq end (point))
8530 (goto-char beg0)
8531 (when (> end beg)
8532 (setq org-subtree-clip-folded folded)
8533 (when (or cut force-store-markers)
8534 (org-save-markers-in-region beg end))
8535 (if cut (kill-region beg end) (copy-region-as-kill beg end))
8536 (setq org-subtree-clip (current-kill 0))
8537 (message "%s: Subtree(s) with %d characters"
8538 (if cut "Cut" "Copied")
8539 (length org-subtree-clip)))))
8541 (defun org-paste-subtree (&optional level tree for-yank remove)
8542 "Paste the clipboard as a subtree, with modification of headline level.
8543 The entire subtree is promoted or demoted in order to match a new headline
8544 level.
8546 If the cursor is at the beginning of a headline, the same level as
8547 that headline is used to paste the tree.
8549 If not, the new level is derived from the *visible* headings
8550 before and after the insertion point, and taken to be the inferior headline
8551 level of the two. So if the previous visible heading is level 3 and the
8552 next is level 4 (or vice versa), level 4 will be used for insertion.
8553 This makes sure that the subtree remains an independent subtree and does
8554 not swallow low level entries.
8556 You can also force a different level, either by using a numeric prefix
8557 argument, or by inserting the heading marker by hand. For example, if the
8558 cursor is after \"*****\", then the tree will be shifted to level 5.
8560 If optional TREE is given, use this text instead of the kill ring.
8562 When FOR-YANK is set, this is called by `org-yank'. In this case, do not
8563 move back over whitespace before inserting, and move point to the end of
8564 the inserted text when done.
8566 When REMOVE is non-nil, remove the subtree from the clipboard."
8567 (interactive "P")
8568 (setq tree (or tree (and kill-ring (current-kill 0))))
8569 (unless (org-kill-is-subtree-p tree)
8570 (user-error "%s"
8571 (substitute-command-keys
8572 "The kill is not a (set of) tree(s) - please use \\[yank] to yank anyway")))
8573 (org-with-limited-levels
8574 (let* ((visp (not (outline-invisible-p)))
8575 (txt tree)
8576 (^re_ "\\(\\*+\\)[ \t]*")
8577 (old-level (if (string-match org-outline-regexp-bol txt)
8578 (- (match-end 0) (match-beginning 0) 1)
8579 -1))
8580 (force-level (cond (level (prefix-numeric-value level))
8581 ((and (looking-at "[ \t]*$")
8582 (string-match
8583 "^\\*+$" (buffer-substring
8584 (point-at-bol) (point))))
8585 (- (match-end 0) (match-beginning 0)))
8586 ((and (bolp)
8587 (looking-at org-outline-regexp))
8588 (- (match-end 0) (point) 1))))
8589 (previous-level (save-excursion
8590 (condition-case nil
8591 (progn
8592 (outline-previous-visible-heading 1)
8593 (if (looking-at ^re_)
8594 (- (match-end 0) (match-beginning 0) 1)
8596 (error 1))))
8597 (next-level (save-excursion
8598 (condition-case nil
8599 (progn
8600 (or (looking-at org-outline-regexp)
8601 (outline-next-visible-heading 1))
8602 (if (looking-at ^re_)
8603 (- (match-end 0) (match-beginning 0) 1)
8605 (error 1))))
8606 (new-level (or force-level (max previous-level next-level)))
8607 (shift (if (or (= old-level -1)
8608 (= new-level -1)
8609 (= old-level new-level))
8611 (- new-level old-level)))
8612 (delta (if (> shift 0) -1 1))
8613 (func (if (> shift 0) 'org-demote 'org-promote))
8614 (org-odd-levels-only nil)
8615 beg end newend)
8616 ;; Remove the forced level indicator
8617 (if force-level
8618 (delete-region (point-at-bol) (point)))
8619 ;; Paste
8620 (beginning-of-line (if (bolp) 1 2))
8621 (setq beg (point))
8622 (and (fboundp 'org-id-paste-tracker) (org-id-paste-tracker txt))
8623 (insert-before-markers txt)
8624 (unless (string-match "\n\\'" txt) (insert "\n"))
8625 (setq newend (point))
8626 (org-reinstall-markers-in-region beg)
8627 (setq end (point))
8628 (goto-char beg)
8629 (skip-chars-forward " \t\n\r")
8630 (setq beg (point))
8631 (if (and (outline-invisible-p) visp)
8632 (save-excursion (outline-show-heading)))
8633 ;; Shift if necessary
8634 (unless (= shift 0)
8635 (save-restriction
8636 (narrow-to-region beg end)
8637 (while (not (= shift 0))
8638 (org-map-region func (point-min) (point-max))
8639 (setq shift (+ delta shift)))
8640 (goto-char (point-min))
8641 (setq newend (point-max))))
8642 (when (or (org-called-interactively-p 'interactive) for-yank)
8643 (message "Clipboard pasted as level %d subtree" new-level))
8644 (if (and (not for-yank) ; in this case, org-yank will decide about folding
8645 kill-ring
8646 (eq org-subtree-clip (current-kill 0))
8647 org-subtree-clip-folded)
8648 ;; The tree was folded before it was killed/copied
8649 (outline-hide-subtree))
8650 (and for-yank (goto-char newend))
8651 (and remove (setq kill-ring (cdr kill-ring))))))
8653 (defun org-kill-is-subtree-p (&optional txt)
8654 "Check if the current kill is an outline subtree, or a set of trees.
8655 Returns nil if kill does not start with a headline, or if the first
8656 headline level is not the largest headline level in the tree.
8657 So this will actually accept several entries of equal levels as well,
8658 which is OK for `org-paste-subtree'.
8659 If optional TXT is given, check this string instead of the current kill."
8660 (let* ((kill (or txt (and kill-ring (current-kill 0)) ""))
8661 (re (org-get-limited-outline-regexp))
8662 (^re (concat "^" re))
8663 (start-level (and kill
8664 (string-match
8665 (concat "\\`\\([ \t\n\r]*?\n\\)?\\(" re "\\)")
8666 kill)
8667 (- (match-end 2) (match-beginning 2) 1)))
8668 (start (1+ (or (match-beginning 2) -1))))
8669 (if (not start-level)
8670 (progn
8671 nil) ;; does not even start with a heading
8672 (catch 'exit
8673 (while (setq start (string-match ^re kill (1+ start)))
8674 (when (< (- (match-end 0) (match-beginning 0) 1) start-level)
8675 (throw 'exit nil)))
8676 t))))
8678 (defvar org-markers-to-move nil
8679 "Markers that should be moved with a cut-and-paste operation.
8680 Those markers are stored together with their positions relative to
8681 the start of the region.")
8683 (defun org-save-markers-in-region (beg end)
8684 "Check markers in region.
8685 If these markers are between BEG and END, record their position relative
8686 to BEG, so that after moving the block of text, we can put the markers back
8687 into place.
8688 This function gets called just before an entry or tree gets cut from the
8689 buffer. After re-insertion, `org-reinstall-markers-in-region' must be
8690 called immediately, to move the markers with the entries."
8691 (setq org-markers-to-move nil)
8692 (when (featurep 'org-clock)
8693 (org-clock-save-markers-for-cut-and-paste beg end))
8694 (when (featurep 'org-agenda)
8695 (org-agenda-save-markers-for-cut-and-paste beg end)))
8697 (defun org-check-and-save-marker (marker beg end)
8698 "Check if MARKER is between BEG and END.
8699 If yes, remember the marker and the distance to BEG."
8700 (when (and (marker-buffer marker)
8701 (equal (marker-buffer marker) (current-buffer)))
8702 (if (and (>= marker beg) (< marker end))
8703 (push (cons marker (- marker beg)) org-markers-to-move))))
8705 (defun org-reinstall-markers-in-region (beg)
8706 "Move all remembered markers to their position relative to BEG."
8707 (mapc (lambda (x)
8708 (move-marker (car x) (+ beg (cdr x))))
8709 org-markers-to-move)
8710 (setq org-markers-to-move nil))
8712 (defun org-narrow-to-subtree ()
8713 "Narrow buffer to the current subtree."
8714 (interactive)
8715 (save-excursion
8716 (save-match-data
8717 (org-with-limited-levels
8718 (narrow-to-region
8719 (progn (org-back-to-heading t) (point))
8720 (progn (org-end-of-subtree t t)
8721 (if (and (org-at-heading-p) (not (eobp))) (backward-char 1))
8722 (point)))))))
8724 (defun org-narrow-to-block ()
8725 "Narrow buffer to the current block."
8726 (interactive)
8727 (let* ((case-fold-search t)
8728 (blockp (org-between-regexps-p "^[ \t]*#\\+begin_.*"
8729 "^[ \t]*#\\+end_.*")))
8730 (if blockp
8731 (narrow-to-region (car blockp) (cdr blockp))
8732 (user-error "Not in a block"))))
8734 (defun org-clone-subtree-with-time-shift (n &optional shift)
8735 "Clone the task (subtree) at point N times.
8736 The clones will be inserted as siblings.
8738 In interactive use, the user will be prompted for the number of
8739 clones to be produced. If the entry has a timestamp, the user
8740 will also be prompted for a time shift, which may be a repeater
8741 as used in time stamps, for example `+3d'. To disable this,
8742 you can call the function with a universal prefix argument.
8744 When a valid repeater is given and the entry contains any time
8745 stamps, the clones will become a sequence in time, with time
8746 stamps in the subtree shifted for each clone produced. If SHIFT
8747 is nil or the empty string, time stamps will be left alone. The
8748 ID property of the original subtree is removed.
8750 If the original subtree did contain time stamps with a repeater,
8751 the following will happen:
8752 - the repeater will be removed in each clone
8753 - an additional clone will be produced, with the current, unshifted
8754 date(s) in the entry.
8755 - the original entry will be placed *after* all the clones, with
8756 repeater intact.
8757 - the start days in the repeater in the original entry will be shifted
8758 to past the last clone.
8759 In this way you can spell out a number of instances of a repeating task,
8760 and still retain the repeater to cover future instances of the task.
8762 As described above, N+1 clones are produced when the original
8763 subtree has a repeater. Setting N to 0, then, can be used to
8764 remove the repeater from a subtree and create a shifted clone
8765 with the original repeater."
8766 (interactive "nNumber of clones to produce: ")
8767 (let ((shift
8768 (or shift
8769 (if (and (not (equal current-prefix-arg '(4)))
8770 (save-excursion
8771 (re-search-forward org-ts-regexp-both
8772 (save-excursion
8773 (org-end-of-subtree t)
8774 (point)) t)))
8775 (read-from-minibuffer
8776 "Date shift per clone (e.g. +1w, empty to copy unchanged): ")
8777 ""))) ;; No time shift
8778 (n-no-remove -1)
8779 (drawer-re org-drawer-regexp)
8780 (org-clock-re (format "^[ \t]*%s.*$" org-clock-string))
8781 beg end template task idprop
8782 shift-n shift-what doshift nmin nmax)
8783 (unless (wholenump n)
8784 (user-error "Invalid number of replications %s" n))
8785 (if (and (setq doshift (and (stringp shift) (string-match "\\S-" shift)))
8786 (not (string-match "\\`[ \t]*\\+?\\([0-9]+\\)\\([hdwmy]\\)[ \t]*\\'"
8787 shift)))
8788 (user-error "Invalid shift specification %s" shift))
8789 (when doshift
8790 (setq shift-n (string-to-number (match-string 1 shift))
8791 shift-what (cdr (assoc (match-string 2 shift)
8792 '(("d" . day) ("w" . week)
8793 ("m" . month) ("y" . year))))))
8794 (if (eq shift-what 'week) (setq shift-n (* 7 shift-n) shift-what 'day))
8795 (setq nmin 1 nmax n)
8796 (org-back-to-heading t)
8797 (setq beg (point))
8798 (setq idprop (org-entry-get nil "ID"))
8799 (org-end-of-subtree t t)
8800 (or (bolp) (insert "\n"))
8801 (setq end (point))
8802 (setq template (buffer-substring beg end))
8803 (when (and doshift
8804 (string-match "<[^<>\n]+ [.+]?\\+[0-9]+[hdwmy][^<>\n]*>" template))
8805 (delete-region beg end)
8806 (setq end beg)
8807 (setq nmin 0 nmax (1+ nmax) n-no-remove nmax))
8808 (goto-char end)
8809 (loop for n from nmin to nmax do
8810 ;; prepare clone
8811 (with-temp-buffer
8812 (insert template)
8813 (org-mode)
8814 (goto-char (point-min))
8815 (org-show-subtree)
8816 (and idprop (if org-clone-delete-id
8817 (org-entry-delete nil "ID")
8818 (org-id-get-create t)))
8819 (unless (= n 0)
8820 (while (re-search-forward org-clock-re nil t)
8821 (kill-whole-line))
8822 (goto-char (point-min))
8823 (while (re-search-forward drawer-re nil t)
8824 (org-remove-empty-drawer-at (point))))
8825 (goto-char (point-min))
8826 (when doshift
8827 (while (re-search-forward org-ts-regexp-both nil t)
8828 (org-timestamp-change (* n shift-n) shift-what))
8829 (unless (= n n-no-remove)
8830 (goto-char (point-min))
8831 (while (re-search-forward org-ts-regexp nil t)
8832 (save-excursion
8833 (goto-char (match-beginning 0))
8834 (if (looking-at "<[^<>\n]+\\( +[.+]?\\+[0-9]+[hdwmy]\\)")
8835 (delete-region (match-beginning 1) (match-end 1)))))))
8836 (setq task (buffer-string)))
8837 (insert task))
8838 (goto-char beg)))
8840 ;;; Outline Sorting
8842 (defun org-sort (with-case)
8843 "Call `org-sort-entries', `org-table-sort-lines' or `org-sort-list'.
8844 Optional argument WITH-CASE means sort case-sensitively."
8845 (interactive "P")
8846 (cond
8847 ((org-at-table-p) (org-call-with-arg 'org-table-sort-lines with-case))
8848 ((org-at-item-p) (org-call-with-arg 'org-sort-list with-case))
8850 (org-call-with-arg 'org-sort-entries with-case))))
8852 (defun org-sort-remove-invisible (s)
8853 "Remove invisible links from string S."
8854 (remove-text-properties 0 (length s) org-rm-props s)
8855 (while (string-match org-bracket-link-regexp s)
8856 (setq s (replace-match (if (match-end 2)
8857 (match-string 3 s)
8858 (match-string 1 s))
8859 t t s)))
8860 (let ((st (format " %s " s)))
8861 (while (string-match org-emph-re st)
8862 (setq st (replace-match (format " %s " (match-string 4 st)) t t st)))
8863 (setq s (substring st 1 -1)))
8866 (defvar org-priority-regexp) ; defined later in the file
8868 (defvar org-after-sorting-entries-or-items-hook nil
8869 "Hook that is run after a bunch of entries or items have been sorted.
8870 When children are sorted, the cursor is in the parent line when this
8871 hook gets called. When a region or a plain list is sorted, the cursor
8872 will be in the first entry of the sorted region/list.")
8874 (defun org-sort-entries
8875 (&optional with-case sorting-type getkey-func compare-func property)
8876 "Sort entries on a certain level of an outline tree.
8877 If there is an active region, the entries in the region are sorted.
8878 Else, if the cursor is before the first entry, sort the top-level items.
8879 Else, the children of the entry at point are sorted.
8881 Sorting can be alphabetically, numerically, by date/time as given by
8882 a time stamp, by a property, by priority order, or by a custom function.
8884 The command prompts for the sorting type unless it has been given to the
8885 function through the SORTING-TYPE argument, which needs to be a character,
8886 \(?n ?N ?a ?A ?t ?T ?s ?S ?d ?D ?p ?P ?o ?O ?r ?R ?f ?F ?k ?K). Here is
8887 the precise meaning of each character:
8889 a Alphabetically, ignoring the TODO keyword and the priority, if any.
8890 c By creation time, which is assumed to be the first inactive time stamp
8891 at the beginning of a line.
8892 d By deadline date/time.
8893 k By clocking time.
8894 n Numerically, by converting the beginning of the entry/item to a number.
8895 o By order of TODO keywords.
8896 p By priority according to the cookie.
8897 r By the value of a property.
8898 s By scheduled date/time.
8899 t By date/time, either the first active time stamp in the entry, or, if
8900 none exist, by the first inactive one.
8902 Capital letters will reverse the sort order.
8904 If the SORTING-TYPE is ?f or ?F, then GETKEY-FUNC specifies a function to be
8905 called with point at the beginning of the record. It must return either
8906 a string or a number that should serve as the sorting key for that record.
8908 Comparing entries ignores case by default. However, with an optional argument
8909 WITH-CASE, the sorting considers case as well.
8911 Sorting is done against the visible part of the headlines, it ignores hidden
8912 links.
8914 When sorting is done, call `org-after-sorting-entries-or-items-hook'."
8915 (interactive "P")
8916 (let ((case-func (if with-case 'identity 'downcase))
8917 (cmstr
8918 ;; The clock marker is lost when using `sort-subr', let's
8919 ;; store the clocking string.
8920 (when (equal (marker-buffer org-clock-marker) (current-buffer))
8921 (save-excursion
8922 (goto-char org-clock-marker)
8923 (buffer-substring-no-properties (line-beginning-position)
8924 (point)))))
8925 start beg end stars re re2
8926 txt what tmp)
8927 ;; Find beginning and end of region to sort
8928 (cond
8929 ((org-region-active-p)
8930 ;; we will sort the region
8931 (setq end (region-end)
8932 what "region")
8933 (goto-char (region-beginning))
8934 (if (not (org-at-heading-p)) (outline-next-heading))
8935 (setq start (point)))
8936 ((or (org-at-heading-p)
8937 (ignore-errors (progn (org-back-to-heading) t)))
8938 ;; we will sort the children of the current headline
8939 (org-back-to-heading)
8940 (setq start (point)
8941 end (progn (org-end-of-subtree t t)
8942 (or (bolp) (insert "\n"))
8943 (when (>= (org-back-over-empty-lines) 1)
8944 (forward-line 1))
8945 (point))
8946 what "children")
8947 (goto-char start)
8948 (outline-show-subtree)
8949 (outline-next-heading))
8951 ;; we will sort the top-level entries in this file
8952 (goto-char (point-min))
8953 (or (org-at-heading-p) (outline-next-heading))
8954 (setq start (point))
8955 (goto-char (point-max))
8956 (beginning-of-line 1)
8957 (when (looking-at ".*?\\S-")
8958 ;; File ends in a non-white line
8959 (end-of-line 1)
8960 (insert "\n"))
8961 (setq end (point-max))
8962 (setq what "top-level")
8963 (goto-char start)
8964 (outline-show-all)))
8966 (setq beg (point))
8967 (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
8969 (looking-at "\\(\\*+\\)")
8970 (setq stars (match-string 1)
8971 re (concat "^" (regexp-quote stars) " +")
8972 re2 (concat "^" (regexp-quote (substring stars 0 -1)) "[ \t\n]")
8973 txt (buffer-substring beg end))
8974 (if (not (equal (substring txt -1) "\n")) (setq txt (concat txt "\n")))
8975 (if (and (not (equal stars "*")) (string-match re2 txt))
8976 (user-error "Region to sort contains a level above the first entry"))
8978 (unless sorting-type
8979 (message
8980 "Sort %s: [a]lpha [n]umeric [p]riority p[r]operty todo[o]rder [f]unc
8981 [t]ime [s]cheduled [d]eadline [c]reated cloc[k]ing
8982 A/N/P/R/O/F/T/S/D/C/K means reversed:"
8983 what)
8984 (setq sorting-type (read-char-exclusive))
8986 (unless getkey-func
8987 (and (= (downcase sorting-type) ?f)
8988 (setq getkey-func
8989 (org-icompleting-read "Sort using function: "
8990 obarray 'fboundp t nil nil))
8991 (setq getkey-func (intern getkey-func))))
8993 (and (= (downcase sorting-type) ?r)
8994 (not property)
8995 (setq property
8996 (org-icompleting-read "Property: "
8997 (mapcar 'list (org-buffer-property-keys t))
8998 nil t))))
9000 (when (member sorting-type '(?k ?K)) (org-clock-sum))
9001 (message "Sorting entries...")
9003 (save-restriction
9004 (narrow-to-region start end)
9005 (let ((dcst (downcase sorting-type))
9006 (case-fold-search nil)
9007 (now (current-time)))
9008 (sort-subr
9009 (/= dcst sorting-type)
9010 ;; This function moves to the beginning character of the "record" to
9011 ;; be sorted.
9012 (lambda nil
9013 (if (re-search-forward re nil t)
9014 (goto-char (match-beginning 0))
9015 (goto-char (point-max))))
9016 ;; This function moves to the last character of the "record" being
9017 ;; sorted.
9018 (lambda nil
9019 (save-match-data
9020 (condition-case nil
9021 (outline-forward-same-level 1)
9022 (error
9023 (goto-char (point-max))))))
9024 ;; This function returns the value that gets sorted against.
9025 (lambda nil
9026 (cond
9027 ((= dcst ?n)
9028 (if (looking-at org-complex-heading-regexp)
9029 (string-to-number (org-sort-remove-invisible (match-string 4)))
9030 nil))
9031 ((= dcst ?a)
9032 (if (looking-at org-complex-heading-regexp)
9033 (funcall case-func (org-sort-remove-invisible (match-string 4)))
9034 nil))
9035 ((= dcst ?k)
9036 (or (get-text-property (point) :org-clock-minutes) 0))
9037 ((= dcst ?t)
9038 (let ((end (save-excursion (outline-next-heading) (point))))
9039 (if (or (re-search-forward org-ts-regexp end t)
9040 (re-search-forward org-ts-regexp-both end t))
9041 (org-time-string-to-seconds (match-string 0))
9042 (org-float-time now))))
9043 ((= dcst ?c)
9044 (let ((end (save-excursion (outline-next-heading) (point))))
9045 (if (re-search-forward
9046 (concat "^[ \t]*\\[" org-ts-regexp1 "\\]")
9047 end t)
9048 (org-time-string-to-seconds (match-string 0))
9049 (org-float-time now))))
9050 ((= dcst ?s)
9051 (let ((end (save-excursion (outline-next-heading) (point))))
9052 (if (re-search-forward org-scheduled-time-regexp end t)
9053 (org-time-string-to-seconds (match-string 1))
9054 (org-float-time now))))
9055 ((= dcst ?d)
9056 (let ((end (save-excursion (outline-next-heading) (point))))
9057 (if (re-search-forward org-deadline-time-regexp end t)
9058 (org-time-string-to-seconds (match-string 1))
9059 (org-float-time now))))
9060 ((= dcst ?p)
9061 (if (re-search-forward org-priority-regexp (point-at-eol) t)
9062 (string-to-char (match-string 2))
9063 org-default-priority))
9064 ((= dcst ?r)
9065 (or (org-entry-get nil property) ""))
9066 ((= dcst ?o)
9067 (if (looking-at org-complex-heading-regexp)
9068 (let* ((m (match-string 2))
9069 (s (if (member m org-done-keywords) '- '+)))
9070 (- 99 (funcall s (length (member m org-todo-keywords-1)))))))
9071 ((= dcst ?f)
9072 (if getkey-func
9073 (progn
9074 (setq tmp (funcall getkey-func))
9075 (if (stringp tmp) (setq tmp (funcall case-func tmp)))
9076 tmp)
9077 (error "Invalid key function `%s'" getkey-func)))
9078 (t (error "Invalid sorting type `%c'" sorting-type))))
9080 (cond
9081 ((= dcst ?a) 'string<)
9082 ((= dcst ?f) compare-func)
9083 ((member dcst '(?p ?t ?s ?d ?c ?k)) '<)))))
9084 (run-hooks 'org-after-sorting-entries-or-items-hook)
9085 ;; Reset the clock marker if needed
9086 (when cmstr
9087 (save-excursion
9088 (goto-char start)
9089 (search-forward cmstr nil t)
9090 (move-marker org-clock-marker (point))))
9091 (message "Sorting entries...done")))
9093 ;;; The orgstruct minor mode
9095 ;; Define a minor mode which can be used in other modes in order to
9096 ;; integrate the org-mode structure editing commands.
9098 ;; This is really a hack, because the org-mode structure commands use
9099 ;; keys which normally belong to the major mode. Here is how it
9100 ;; works: The minor mode defines all the keys necessary to operate the
9101 ;; structure commands, but wraps the commands into a function which
9102 ;; tests if the cursor is currently at a headline or a plain list
9103 ;; item. If that is the case, the structure command is used,
9104 ;; temporarily setting many Org-mode variables like regular
9105 ;; expressions for filling etc. However, when any of those keys is
9106 ;; used at a different location, function uses `key-binding' to look
9107 ;; up if the key has an associated command in another currently active
9108 ;; keymap (minor modes, major mode, global), and executes that
9109 ;; command. There might be problems if any of the keys is otherwise
9110 ;; used as a prefix key.
9112 (defcustom orgstruct-heading-prefix-regexp ""
9113 "Regexp that matches the custom prefix of Org headlines in
9114 orgstruct(++)-mode."
9115 :group 'org
9116 :version "24.4"
9117 :package-version '(Org . "8.3")
9118 :type 'regexp)
9119 ;;;###autoload(put 'orgstruct-heading-prefix-regexp 'safe-local-variable 'stringp)
9121 (defcustom orgstruct-setup-hook nil
9122 "Hook run after orgstruct-mode-map is filled."
9123 :group 'org
9124 :version "24.4"
9125 :package-version '(Org . "8.0")
9126 :type 'hook)
9128 (defvar orgstruct-initialized nil)
9130 (defvar org-local-vars nil
9131 "List of local variables, for use by `orgstruct-mode'.")
9133 ;;;###autoload
9134 (define-minor-mode orgstruct-mode
9135 "Toggle the minor mode `orgstruct-mode'.
9136 This mode is for using Org-mode structure commands in other
9137 modes. The following keys behave as if Org-mode were active, if
9138 the cursor is on a headline, or on a plain list item (both as
9139 defined by Org-mode)."
9140 nil " OrgStruct" (make-sparse-keymap)
9141 (funcall (if orgstruct-mode
9142 'add-to-invisibility-spec
9143 'remove-from-invisibility-spec)
9144 '(outline . t))
9145 (when orgstruct-mode
9146 (org-load-modules-maybe)
9147 (unless orgstruct-initialized
9148 (orgstruct-setup)
9149 (setq orgstruct-initialized t))))
9151 ;;;###autoload
9152 (defun turn-on-orgstruct ()
9153 "Unconditionally turn on `orgstruct-mode'."
9154 (orgstruct-mode 1))
9156 (defvar org-fb-vars nil)
9157 (make-variable-buffer-local 'org-fb-vars)
9158 (defun orgstruct++-mode (&optional arg)
9159 "Toggle `orgstruct-mode', the enhanced version of it.
9160 In addition to setting orgstruct-mode, this also exports all
9161 indentation and autofilling variables from org-mode into the
9162 buffer. It will also recognize item context in multiline items."
9163 (interactive "P")
9164 (setq arg (prefix-numeric-value (or arg (if orgstruct-mode -1 1))))
9165 (if (< arg 1)
9166 (progn (orgstruct-mode -1)
9167 (mapc (lambda(v)
9168 (org-set-local (car v)
9169 (if (eq (car-safe (cadr v)) 'quote) (cadadr v) (cadr v))))
9170 org-fb-vars))
9171 (orgstruct-mode 1)
9172 (setq org-fb-vars nil)
9173 (unless org-local-vars
9174 (setq org-local-vars (org-get-local-variables)))
9175 (let (var val)
9176 (mapc
9177 (lambda (x)
9178 (when (string-match
9179 "^\\(paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|fill-prefix\\|indent-\\)"
9180 (symbol-name (car x)))
9181 (setq var (car x) val (nth 1 x))
9182 (push (list var `(quote ,(eval var))) org-fb-vars)
9183 (org-set-local var (if (eq (car-safe val) 'quote) (nth 1 val) val))))
9184 org-local-vars)
9185 (org-set-local 'orgstruct-is-++ t))))
9187 (defvar orgstruct-is-++ nil
9188 "Is `orgstruct-mode' in ++ version in the current-buffer?")
9189 (make-variable-buffer-local 'orgstruct-is-++)
9191 ;;;###autoload
9192 (defun turn-on-orgstruct++ ()
9193 "Unconditionally turn on `orgstruct++-mode'."
9194 (orgstruct++-mode 1))
9196 (defun orgstruct-error ()
9197 "Error when there is no default binding for a structure key."
9198 (interactive)
9199 (funcall (if (fboundp 'user-error)
9200 'user-error
9201 'error)
9202 "This key has no function outside structure elements"))
9204 (defun orgstruct-setup ()
9205 "Setup orgstruct keymap."
9206 (dolist (cell '((org-demote . t)
9207 (org-metaleft . t)
9208 (org-metaright . t)
9209 (org-promote . t)
9210 (org-shiftmetaleft . t)
9211 (org-shiftmetaright . t)
9212 org-backward-element
9213 org-backward-heading-same-level
9214 org-ctrl-c-ret
9215 org-ctrl-c-minus
9216 org-ctrl-c-star
9217 org-cycle
9218 org-forward-heading-same-level
9219 org-insert-heading
9220 org-insert-heading-respect-content
9221 org-kill-note-or-show-branches
9222 org-mark-subtree
9223 org-meta-return
9224 org-metadown
9225 org-metaup
9226 org-narrow-to-subtree
9227 org-promote-subtree
9228 org-reveal
9229 org-shiftdown
9230 org-shiftleft
9231 org-shiftmetadown
9232 org-shiftmetaup
9233 org-shiftright
9234 org-shifttab
9235 org-shifttab
9236 org-shiftup
9237 org-show-subtree
9238 org-sort
9239 org-up-element
9240 outline-demote
9241 outline-next-visible-heading
9242 outline-previous-visible-heading
9243 outline-promote
9244 outline-up-heading
9245 outline-show-children))
9246 (let ((f (or (car-safe cell) cell))
9247 (disable-when-heading-prefix (cdr-safe cell)))
9248 (when (fboundp f)
9249 (let ((new-bindings))
9250 (dolist (binding (nconc (where-is-internal f org-mode-map)
9251 (where-is-internal f outline-mode-map)))
9252 (push binding new-bindings)
9253 ;; TODO use local-function-key-map
9254 (dolist (rep '(("<tab>" . "TAB")
9255 ("<return>" . "RET")
9256 ("<escape>" . "ESC")
9257 ("<delete>" . "DEL")))
9258 (setq binding (read-kbd-macro
9259 (let ((case-fold-search))
9260 (replace-regexp-in-string
9261 (regexp-quote (cdr rep))
9262 (car rep)
9263 (key-description binding)))))
9264 (pushnew binding new-bindings :test 'equal)))
9265 (dolist (binding new-bindings)
9266 (let ((key (lookup-key orgstruct-mode-map binding)))
9267 (when (or (not key) (numberp key))
9268 (ignore-errors
9269 (org-defkey orgstruct-mode-map
9270 binding
9271 (orgstruct-make-binding
9272 f binding disable-when-heading-prefix))))))))))
9273 (run-hooks 'orgstruct-setup-hook))
9275 (defun orgstruct-make-binding (fun key disable-when-heading-prefix)
9276 "Create a function for binding in the structure minor mode.
9277 FUN is the command to call inside a table. KEY is the key that
9278 should be checked in for a command to execute outside of tables.
9279 Non-nil `disable-when-heading-prefix' means to disable the command
9280 if `orgstruct-heading-prefix-regexp' is not empty."
9281 (let ((name (concat "orgstruct-hijacker-" (symbol-name fun))))
9282 (let ((nname name)
9283 (i 0))
9284 (while (fboundp (intern nname))
9285 (setq nname (format "%s-%d" name (setq i (1+ i)))))
9286 (setq name (intern nname)))
9287 (eval
9288 (let ((bindings '((org-heading-regexp
9289 (concat "^"
9290 orgstruct-heading-prefix-regexp
9291 "\\(\\*+\\)\\(?: +\\(.*?\\)\\)?[ ]*$"))
9292 (org-outline-regexp
9293 (concat orgstruct-heading-prefix-regexp "\\*+ "))
9294 (org-outline-regexp-bol
9295 (concat "^" org-outline-regexp))
9296 (outline-regexp org-outline-regexp)
9297 (outline-heading-end-regexp "\n")
9298 (outline-level 'org-outline-level)
9299 (outline-heading-alist))))
9300 `(defun ,name (arg)
9301 ,(concat "In Structure, run `" (symbol-name fun) "'.\n"
9302 "Outside of structure, run the binding of `"
9303 (key-description key) "'."
9304 (when disable-when-heading-prefix
9305 (concat
9306 "\nIf `orgstruct-heading-prefix-regexp' is not empty, this command will always fall\n"
9307 "back to the default binding due to limitations of Org's implementation of\n"
9308 "`" (symbol-name fun) "'.")))
9309 (interactive "p")
9310 (let* ((disable
9311 ,(and disable-when-heading-prefix
9312 '(not (string= orgstruct-heading-prefix-regexp ""))))
9313 (fallback
9314 (or disable
9315 (not
9316 (let* ,bindings
9317 (org-context-p 'headline 'item
9318 ,(when (memq fun
9319 '(org-insert-heading
9320 org-insert-heading-respect-content
9321 org-meta-return))
9322 '(when orgstruct-is-++
9323 'item-body))))))))
9324 (if fallback
9325 (let* ((orgstruct-mode)
9326 (binding
9327 (let ((key ,key))
9328 (catch 'exit
9329 (dolist
9330 (rep
9331 '(nil
9332 ("<\\([^>]*\\)tab>" . "\\1TAB")
9333 ("<\\([^>]*\\)return>" . "\\1RET")
9334 ("<\\([^>]*\\)escape>" . "\\1ESC")
9335 ("<\\([^>]*\\)delete>" . "\\1DEL"))
9336 nil)
9337 (when rep
9338 (setq key (read-kbd-macro
9339 (let ((case-fold-search))
9340 (replace-regexp-in-string
9341 (car rep)
9342 (cdr rep)
9343 (key-description key))))))
9344 (when (key-binding key)
9345 (throw 'exit (key-binding key))))))))
9346 (if (keymapp binding)
9347 (org-set-transient-map binding)
9348 (let ((func (or binding
9349 (unless disable
9350 'orgstruct-error))))
9351 (when func
9352 (call-interactively func)))))
9353 (org-run-like-in-org-mode
9354 (lambda ()
9355 (interactive)
9356 (let* ,bindings
9357 (call-interactively ',fun)))))))))
9358 name))
9360 (defun org-contextualize-keys (alist contexts)
9361 "Return valid elements in ALIST depending on CONTEXTS.
9363 `org-agenda-custom-commands' or `org-capture-templates' are the
9364 values used for ALIST, and `org-agenda-custom-commands-contexts'
9365 or `org-capture-templates-contexts' are the associated contexts
9366 definitions."
9367 (let ((contexts
9368 ;; normalize contexts
9369 (mapcar
9370 (lambda(c) (cond ((listp (cadr c))
9371 (list (car c) (car c) (cadr c)))
9372 ((string= "" (cadr c))
9373 (list (car c) (car c) (caddr c)))
9374 (t c)))
9375 contexts))
9376 (a alist) r s)
9377 ;; loop over all commands or templates
9378 (dolist (c a)
9379 (let (vrules repl)
9380 (cond
9381 ((not (assoc (car c) contexts))
9382 (push c r))
9383 ((and (assoc (car c) contexts)
9384 (setq vrules (org-contextualize-validate-key
9385 (car c) contexts)))
9386 (mapc (lambda (vr)
9387 (when (not (equal (car vr) (cadr vr)))
9388 (setq repl vr)))
9389 vrules)
9390 (if (not repl) (push c r)
9391 (push (cadr repl) s)
9392 (push
9393 (cons (car c)
9394 (cdr (or (assoc (cadr repl) alist)
9395 (error "Undefined key `%s' as contextual replacement for `%s'"
9396 (cadr repl) (car c)))))
9397 r))))))
9398 ;; Return limited ALIST, possibly with keys modified, and deduplicated
9399 (delq
9401 (delete-dups
9402 (mapcar (lambda (x)
9403 (let ((tpl (car x)))
9404 (when (not (delq
9406 (mapcar (lambda (y)
9407 (equal y tpl))
9408 s)))
9409 x)))
9410 (reverse r))))))
9412 (defun org-contextualize-validate-key (key contexts)
9413 "Check CONTEXTS for agenda or capture KEY."
9414 (let (rr res)
9415 (dolist (r contexts)
9416 (mapc
9417 (lambda (rr)
9418 (when
9419 (and (equal key (car r))
9420 (if (functionp rr) (funcall rr)
9421 (or (and (eq (car rr) 'in-file)
9422 (buffer-file-name)
9423 (string-match (cdr rr) (buffer-file-name)))
9424 (and (eq (car rr) 'in-mode)
9425 (string-match (cdr rr) (symbol-name major-mode)))
9426 (and (eq (car rr) 'in-buffer)
9427 (string-match (cdr rr) (buffer-name)))
9428 (when (and (eq (car rr) 'not-in-file)
9429 (buffer-file-name))
9430 (not (string-match (cdr rr) (buffer-file-name))))
9431 (when (eq (car rr) 'not-in-mode)
9432 (not (string-match (cdr rr) (symbol-name major-mode))))
9433 (when (eq (car rr) 'not-in-buffer)
9434 (not (string-match (cdr rr) (buffer-name)))))))
9435 (push r res)))
9436 (car (last r))))
9437 (delete-dups (delq nil res))))
9439 (defun org-context-p (&rest contexts)
9440 "Check if local context is any of CONTEXTS.
9441 Possible values in the list of contexts are `table', `headline', and `item'."
9442 (let ((pos (point)))
9443 (goto-char (point-at-bol))
9444 (prog1 (or (and (memq 'table contexts)
9445 (looking-at "[ \t]*|"))
9446 (and (memq 'headline contexts)
9447 (looking-at org-outline-regexp))
9448 (and (memq 'item contexts)
9449 (looking-at "[ \t]*\\([-+*] \\|[0-9]+[.)] \\)"))
9450 (and (memq 'item-body contexts)
9451 (org-in-item-p)))
9452 (goto-char pos))))
9454 (defun org-get-local-variables ()
9455 "Return a list of all local variables in an Org mode buffer."
9456 (let (varlist)
9457 (with-current-buffer (get-buffer-create "*Org tmp*")
9458 (erase-buffer)
9459 (org-mode)
9460 (setq varlist (buffer-local-variables)))
9461 (kill-buffer "*Org tmp*")
9462 (delq nil
9463 (mapcar
9464 (lambda (x)
9465 (setq x
9466 (if (symbolp x)
9467 (list x)
9468 (list (car x) (cdr x))))
9469 (if (and (not (get (car x) 'org-state))
9470 (string-match
9471 "^\\(org-\\|orgtbl-\\|outline-\\|comment-\\|paragraph-\\|auto-fill\\|normal-auto-fill\\|fill-paragraph\\|indent-\\)"
9472 (symbol-name (car x))))
9473 x nil))
9474 varlist))))
9476 (defun org-clone-local-variables (from-buffer &optional regexp)
9477 "Clone local variables from FROM-BUFFER.
9478 Optional argument REGEXP selects variables to clone."
9479 (mapc
9480 (lambda (pair)
9481 (and (symbolp (car pair))
9482 (or (null regexp)
9483 (string-match regexp (symbol-name (car pair))))
9484 (set (make-local-variable (car pair))
9485 (cdr pair))))
9486 (buffer-local-variables from-buffer)))
9488 ;;;###autoload
9489 (defun org-run-like-in-org-mode (cmd)
9490 "Run a command, pretending that the current buffer is in Org-mode.
9491 This will temporarily bind local variables that are typically bound in
9492 Org-mode to the values they have in Org-mode, and then interactively
9493 call CMD."
9494 (org-load-modules-maybe)
9495 (unless org-local-vars
9496 (setq org-local-vars (org-get-local-variables)))
9497 (let (binds)
9498 (dolist (var org-local-vars)
9499 (when (or (not (boundp (car var)))
9500 (eq (symbol-value (car var))
9501 (default-value (car var))))
9502 (push (list (car var) `(quote ,(cadr var))) binds)))
9503 (eval `(let ,binds
9504 (call-interactively (quote ,cmd))))))
9506 (defun org-get-category (&optional pos force-refresh)
9507 "Get the category applying to position POS."
9508 (save-match-data
9509 (if force-refresh (org-refresh-category-properties))
9510 (let ((pos (or pos (point))))
9511 (or (get-text-property pos 'org-category)
9512 (progn (org-refresh-category-properties)
9513 (get-text-property pos 'org-category))))))
9515 ;;; Refresh properties
9517 (defun org-refresh-properties (dprop tprop)
9518 "Refresh buffer text properties.
9519 DPROP is the drawer property and TPROP is either the
9520 corresponding text property to set, or an alist with each element
9521 being a text property (as a symbol) and a function to apply to
9522 the value of the drawer property."
9523 (let ((case-fold-search t)
9524 (inhibit-read-only t))
9525 (org-with-silent-modifications
9526 (save-excursion
9527 (save-restriction
9528 (widen)
9529 (goto-char (point-min))
9530 (while (re-search-forward (concat "^[ \t]*:" dprop ": +\\(.*\\)[ \t]*$") nil t)
9531 (org-refresh-property tprop (org-match-string-no-properties 1))))))))
9533 (defun org-refresh-property (tprop p)
9534 "Refresh the buffer text property TPROP from the drawer property P.
9535 The refresh happens only for the current tree (not subtree)."
9536 (unless (org-before-first-heading-p)
9537 (save-excursion
9538 (org-back-to-heading t)
9539 (if (symbolp tprop)
9540 ;; TPROP is a text property symbol
9541 (put-text-property
9542 (point) (or (outline-next-heading) (point-max)) tprop p)
9543 ;; TPROP is an alist with (properties . function) elements
9544 (dolist (al tprop)
9545 (save-excursion
9546 (put-text-property
9547 (line-beginning-position) (or (outline-next-heading) (point-max))
9548 (car al)
9549 (funcall (cdr al) p))))))))
9551 (defun org-refresh-category-properties ()
9552 "Refresh category text properties in the buffer."
9553 (let ((case-fold-search t)
9554 (inhibit-read-only t)
9555 (default-category
9556 (cond ((null org-category)
9557 (if buffer-file-name
9558 (file-name-sans-extension
9559 (file-name-nondirectory buffer-file-name))
9560 "???"))
9561 ((symbolp org-category) (symbol-name org-category))
9562 (t org-category))))
9563 (org-with-silent-modifications
9564 (org-with-wide-buffer
9565 ;; Set buffer-wide category. Search last #+CATEGORY keyword.
9566 ;; This is the default category for the buffer. If none is
9567 ;; found, fall-back to `org-category' or buffer file name.
9568 (put-text-property
9569 (point-min) (point-max)
9570 'org-category
9571 (catch 'buffer-category
9572 (goto-char (point-max))
9573 (while (re-search-backward "^[ \t]*#\\+CATEGORY:" (point-min) t)
9574 (let ((element (org-element-at-point)))
9575 (when (eq (org-element-type element) 'keyword)
9576 (throw 'buffer-category
9577 (org-element-property :value element)))))
9578 default-category))
9579 ;; Set sub-tree specific categories.
9580 (goto-char (point-min))
9581 (let ((regexp (org-re-property "CATEGORY")))
9582 (while (re-search-forward regexp nil t)
9583 (let ((value (org-match-string-no-properties 3)))
9584 (when (org-at-property-p)
9585 (put-text-property
9586 (save-excursion (org-back-to-heading t) (point))
9587 (save-excursion (org-end-of-subtree t t) (point))
9588 'org-category
9589 value)))))))))
9591 (defun org-refresh-stats-properties ()
9592 "Refresh stats text properties in the buffer."
9593 (let (stats)
9594 (org-with-silent-modifications
9595 (save-excursion
9596 (save-restriction
9597 (widen)
9598 (goto-char (point-min))
9599 (while (re-search-forward
9600 (concat org-outline-regexp-bol ".*"
9601 "\\(?:\\[\\([0-9]+\\)%\\|\\([0-9]+\\)/\\([0-9]+\\)\\]\\)")
9602 nil t)
9603 (setq stats (cond ((equal (match-string 3) "0") 0)
9604 ((match-string 2)
9605 (/ (* (string-to-number (match-string 2)) 100)
9606 (string-to-number (match-string 3))))
9607 (t (string-to-number (match-string 1)))))
9608 (org-back-to-heading t)
9609 (put-text-property (point) (progn (org-end-of-subtree t t) (point))
9610 'org-stats stats)))))))
9612 (defun org-refresh-effort-properties ()
9613 "Refresh effort properties"
9614 (org-refresh-properties
9615 org-effort-property
9616 '((effort . identity)
9617 (effort-minutes . org-duration-string-to-minutes))))
9619 ;;;; Link Stuff
9621 ;;; Link abbreviations
9623 (defun org-link-expand-abbrev (link)
9624 "Apply replacements as defined in `org-link-abbrev-alist'."
9625 (if (string-match "^\\([^:]*\\)\\(::?\\(.*\\)\\)?$" link)
9626 (let* ((key (match-string 1 link))
9627 (as (or (assoc key org-link-abbrev-alist-local)
9628 (assoc key org-link-abbrev-alist)))
9629 (tag (and (match-end 2) (match-string 3 link)))
9630 rpl)
9631 (if (not as)
9632 link
9633 (setq rpl (cdr as))
9634 (cond
9635 ((symbolp rpl) (funcall rpl tag))
9636 ((string-match "%(\\([^)]+\\))" rpl)
9637 (replace-match
9638 (save-match-data
9639 (funcall (intern-soft (match-string 1 rpl)) tag)) t t rpl))
9640 ((string-match "%s" rpl) (replace-match (or tag "") t t rpl))
9641 ((string-match "%h" rpl)
9642 (replace-match (url-hexify-string (or tag "")) t t rpl))
9643 (t (concat rpl tag)))))
9644 link))
9646 ;;; Storing and inserting links
9648 (defvar org-insert-link-history nil
9649 "Minibuffer history for links inserted with `org-insert-link'.")
9651 (defvar org-stored-links nil
9652 "Contains the links stored with `org-store-link'.")
9654 (defvar org-store-link-plist nil
9655 "Plist with info about the most recently link created with `org-store-link'.")
9657 (defvar org-link-protocols nil
9658 "Link protocols added to Org-mode using `org-add-link-type'.")
9660 (defvar org-store-link-functions nil
9661 "List of functions that are called to create and store a link.
9662 Each function will be called in turn until one returns a non-nil
9663 value. Each function should check if it is responsible for creating
9664 this link (for example by looking at the major mode).
9665 If not, it must exit and return nil.
9666 If yes, it should return a non-nil value after a calling
9667 `org-store-link-props' with a list of properties and values.
9668 Special properties are:
9670 :type The link prefix, like \"http\". This must be given.
9671 :link The link, like \"http://www.astro.uva.nl/~dominik\".
9672 This is obligatory as well.
9673 :description Optional default description for the second pair
9674 of brackets in an Org-mode link. The user can still change
9675 this when inserting this link into an Org-mode buffer.
9677 In addition to these, any additional properties can be specified
9678 and then used in capture templates.")
9680 (defun org-add-link-type (type &optional follow export)
9681 "Add TYPE to the list of `org-link-types'.
9682 Re-compute all regular expressions depending on `org-link-types'
9684 FOLLOW and EXPORT are two functions.
9686 FOLLOW should take the link path as the single argument and do whatever
9687 is necessary to follow the link, for example find a file or display
9688 a mail message.
9690 EXPORT should format the link path for export to one of the export formats.
9691 It should be a function accepting three arguments:
9693 path the path of the link, the text after the prefix (like \"http:\")
9694 desc the description of the link, if any
9695 format the export format, a symbol like `html' or `latex' or `ascii'.
9697 The function may use the FORMAT information to return different values
9698 depending on the format. The return value will be put literally into
9699 the exported file. If the return value is nil, this means Org should
9700 do what it normally does with links which do not have EXPORT defined.
9702 Org mode has a built-in default for exporting links. If you are happy with
9703 this default, there is no need to define an export function for the link
9704 type. For a simple example of an export function, see `org-bbdb.el'."
9705 (add-to-list 'org-link-types type t)
9706 (org-make-link-regexps)
9707 (org-element-update-syntax)
9708 (if (assoc type org-link-protocols)
9709 (setcdr (assoc type org-link-protocols) (list follow export))
9710 (push (list type follow export) org-link-protocols)))
9712 (defvar org-agenda-buffer-name) ; Defined in org-agenda.el
9713 (defvar org-id-link-to-org-use-id) ; Defined in org-id.el
9715 ;;;###autoload
9716 (defun org-store-link (arg)
9717 "\\<org-mode-map>Store an org-link to the current location.
9718 This link is added to `org-stored-links' and can later be inserted
9719 into an Org buffer with \\[org-insert-link].
9721 For some link types, a prefix ARG is interpreted.
9722 For links to Usenet articles, ARG negates `org-gnus-prefer-web-links'.
9723 For file links, ARG negates `org-context-in-file-links'.
9725 A double prefix ARG force skipping storing functions that are not
9726 part of Org's core.
9728 A triple prefix ARG force storing a link for each line in the
9729 active region."
9730 (interactive "P")
9731 (org-load-modules-maybe)
9732 (if (and (equal arg '(64)) (org-region-active-p))
9733 (save-excursion
9734 (let ((end (region-end)))
9735 (goto-char (region-beginning))
9736 (set-mark (point))
9737 (while (< (point-at-eol) end)
9738 (move-end-of-line 1) (activate-mark)
9739 (let (current-prefix-arg)
9740 (call-interactively 'org-store-link))
9741 (move-beginning-of-line 2)
9742 (set-mark (point)))))
9743 (org-with-limited-levels
9744 (setq org-store-link-plist nil)
9745 (let (link cpltxt desc description search
9746 txt custom-id agenda-link sfuns sfunsn)
9747 (cond
9749 ;; Store a link using an external link type
9750 ((and (not (equal arg '(16)))
9751 (setq sfuns
9752 (delq
9753 nil (mapcar (lambda (f)
9754 (let (fs) (if (funcall f) (push f fs))))
9755 org-store-link-functions))
9756 sfunsn (mapcar (lambda (fu) (symbol-name (car fu))) sfuns))
9757 (or (and (cdr sfuns)
9758 (funcall (intern
9759 (completing-read
9760 "Which function for creating the link? "
9761 sfunsn nil t (car sfunsn)))))
9762 (funcall (caar sfuns)))
9763 (setq link (plist-get org-store-link-plist :link)
9764 desc (or (plist-get org-store-link-plist
9765 :description)
9766 link))))
9768 ;; Store a link from a source code buffer.
9769 ((org-src-edit-buffer-p)
9770 (cond
9771 ((save-excursion
9772 (beginning-of-line)
9773 (looking-at (concat (format org-coderef-label-format "\\(.*?\\)")
9774 "[ \t]*$")))
9775 (setq link (format "(%s)" (org-match-string-no-properties 1))))
9776 ((org-called-interactively-p 'any)
9777 (let (label)
9778 (while (or (not label)
9779 (org-with-wide-buffer
9780 (goto-char (point-min))
9781 (re-search-forward
9782 (regexp-quote (format org-coderef-label-format label))
9783 nil t)))
9784 (when label (message "Label exists already") (sit-for 2))
9785 (setq label (read-string "Code line label: " label)))
9786 (end-of-line)
9787 (setq link (format org-coderef-label-format label))
9788 (let ((gc (- 79 (length link))))
9789 (if (< (current-column) gc) (org-move-to-column gc t)
9790 (insert " ")))
9791 (insert link)
9792 (setq link (concat "(" label ")") desc nil)))
9793 (t (setq link nil))))
9795 ;; We are in the agenda, link to referenced location
9796 ((equal (org-bound-and-true-p org-agenda-buffer-name) (buffer-name))
9797 (let ((m (or (get-text-property (point) 'org-hd-marker)
9798 (get-text-property (point) 'org-marker))))
9799 (when m
9800 (org-with-point-at m
9801 (setq agenda-link
9802 (if (org-called-interactively-p 'any)
9803 (call-interactively 'org-store-link)
9804 (org-store-link nil)))))))
9806 ((eq major-mode 'calendar-mode)
9807 (let ((cd (calendar-cursor-to-date)))
9808 (setq link
9809 (format-time-string
9810 (car org-time-stamp-formats)
9811 (apply 'encode-time
9812 (list 0 0 0 (nth 1 cd) (nth 0 cd) (nth 2 cd)
9813 nil nil nil))))
9814 (org-store-link-props :type "calendar" :date cd)))
9816 ((eq major-mode 'help-mode)
9817 (setq link (concat "help:" (save-excursion
9818 (goto-char (point-min))
9819 (looking-at "^[^ ]+")
9820 (match-string 0))))
9821 (org-store-link-props :type "help"))
9823 ((eq major-mode 'w3-mode)
9824 (setq cpltxt (if (and (buffer-name)
9825 (not (string-match "Untitled" (buffer-name))))
9826 (buffer-name)
9827 (url-view-url t))
9828 link (url-view-url t))
9829 (org-store-link-props :type "w3" :url (url-view-url t)))
9831 ((eq major-mode 'image-mode)
9832 (setq cpltxt (concat "file:"
9833 (abbreviate-file-name buffer-file-name))
9834 link cpltxt)
9835 (org-store-link-props :type "image" :file buffer-file-name))
9837 ;; In dired, store a link to the file of the current line
9838 ((derived-mode-p 'dired-mode)
9839 (let ((file (dired-get-filename nil t)))
9840 (setq file (if file
9841 (abbreviate-file-name
9842 (expand-file-name (dired-get-filename nil t)))
9843 ;; otherwise, no file so use current directory.
9844 default-directory))
9845 (setq cpltxt (concat "file:" file)
9846 link cpltxt)))
9848 ((setq search (run-hook-with-args-until-success
9849 'org-create-file-search-functions))
9850 (setq link (concat "file:" (abbreviate-file-name buffer-file-name)
9851 "::" search))
9852 (setq cpltxt (or description link)))
9854 ((and (buffer-file-name (buffer-base-buffer)) (derived-mode-p 'org-mode))
9855 (setq custom-id (org-entry-get nil "CUSTOM_ID"))
9856 (cond
9857 ;; Store a link using the target at point
9858 ((org-in-regexp "[^<]<<\\([^<>]+\\)>>[^>]" 1)
9859 (setq cpltxt
9860 (concat "file:"
9861 (abbreviate-file-name
9862 (buffer-file-name (buffer-base-buffer)))
9863 "::" (match-string 1))
9864 link cpltxt))
9865 ((and (featurep 'org-id)
9866 (or (eq org-id-link-to-org-use-id t)
9867 (and (org-called-interactively-p 'any)
9868 (or (eq org-id-link-to-org-use-id 'create-if-interactive)
9869 (and (eq org-id-link-to-org-use-id
9870 'create-if-interactive-and-no-custom-id)
9871 (not custom-id))))
9872 (and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
9873 ;; Store a link using the ID at point
9874 (setq link (condition-case nil
9875 (prog1 (org-id-store-link)
9876 (setq desc (or (plist-get org-store-link-plist
9877 :description)
9878 "")))
9879 (error
9880 ;; Probably before first headline, link only to file
9881 (concat "file:"
9882 (abbreviate-file-name
9883 (buffer-file-name (buffer-base-buffer))))))))
9885 ;; Just link to current headline
9886 (setq cpltxt (concat "file:"
9887 (abbreviate-file-name
9888 (buffer-file-name (buffer-base-buffer)))))
9889 ;; Add a context search string
9890 (when (org-xor org-context-in-file-links arg)
9891 (let* ((ee (org-element-at-point))
9892 (et (org-element-type ee))
9893 (ev (plist-get (cadr ee) :value))
9894 (ek (plist-get (cadr ee) :key))
9895 (eok (and (stringp ek) (string-match "name" ek))))
9896 (setq txt (cond
9897 ((org-at-heading-p) nil)
9898 ((and (eq et 'keyword) eok) ev)
9899 ((org-region-active-p)
9900 (buffer-substring (region-beginning) (region-end)))))
9901 (when (or (null txt) (string-match "\\S-" txt))
9902 (setq cpltxt
9903 (concat cpltxt "::"
9904 (condition-case nil
9905 (org-make-org-heading-search-string txt)
9906 (error "")))
9907 desc (or (and (eq et 'keyword) eok ev)
9908 (nth 4 (ignore-errors (org-heading-components)))
9909 "NONE")))))
9910 (if (string-match "::\\'" cpltxt)
9911 (setq cpltxt (substring cpltxt 0 -2)))
9912 (setq link cpltxt))))
9914 ((buffer-file-name (buffer-base-buffer))
9915 ;; Just link to this file here.
9916 (setq cpltxt (concat "file:"
9917 (abbreviate-file-name
9918 (buffer-file-name (buffer-base-buffer)))))
9919 ;; Add a context string.
9920 (when (org-xor org-context-in-file-links arg)
9921 (setq txt (if (org-region-active-p)
9922 (buffer-substring (region-beginning) (region-end))
9923 (buffer-substring (point-at-bol) (point-at-eol))))
9924 ;; Only use search option if there is some text.
9925 (when (string-match "\\S-" txt)
9926 (setq cpltxt
9927 (concat cpltxt "::" (org-make-org-heading-search-string txt))
9928 desc "NONE")))
9929 (setq link cpltxt))
9931 ((org-called-interactively-p 'interactive)
9932 (user-error "No method for storing a link from this buffer"))
9934 (t (setq link nil)))
9936 ;; We're done setting link and desc, clean up
9937 (if (consp link) (setq cpltxt (car link) link (cdr link)))
9938 (setq link (or link cpltxt)
9939 desc (or desc cpltxt))
9940 (cond ((equal desc "NONE") (setq desc nil))
9941 ((and desc (string-match org-bracket-link-analytic-regexp desc))
9942 (let ((d0 (match-string 3 desc))
9943 (p0 (match-string 5 desc)))
9944 (setq desc
9945 (replace-regexp-in-string
9946 org-bracket-link-regexp
9947 (concat (or p0 d0)
9948 (if (equal (length (match-string 0 desc))
9949 (length desc)) "*" "")) desc)))))
9951 ;; Return the link
9952 (if (not (and (or (org-called-interactively-p 'any)
9953 executing-kbd-macro)
9954 link))
9955 (or agenda-link (and link (org-make-link-string link desc)))
9956 (push (list link desc) org-stored-links)
9957 (message "Stored: %s" (or desc link))
9958 (when custom-id
9959 (setq link (concat "file:" (abbreviate-file-name
9960 (buffer-file-name)) "::#" custom-id))
9961 (push (list link desc) org-stored-links))
9962 (car org-stored-links))))))
9964 (defun org-store-link-props (&rest plist)
9965 "Store link properties, extract names and addresses."
9966 (let (x adr)
9967 (when (setq x (plist-get plist :from))
9968 (setq adr (mail-extract-address-components x))
9969 (setq plist (plist-put plist :fromname (car adr)))
9970 (setq plist (plist-put plist :fromaddress (nth 1 adr))))
9971 (when (setq x (plist-get plist :to))
9972 (setq adr (mail-extract-address-components x))
9973 (setq plist (plist-put plist :toname (car adr)))
9974 (setq plist (plist-put plist :toaddress (nth 1 adr)))))
9975 (let ((from (plist-get plist :from))
9976 (to (plist-get plist :to)))
9977 (when (and from to org-from-is-user-regexp)
9978 (setq plist
9979 (plist-put plist :fromto
9980 (if (string-match org-from-is-user-regexp from)
9981 (concat "to %t")
9982 (concat "from %f"))))))
9983 (setq org-store-link-plist plist))
9985 (defun org-add-link-props (&rest plist)
9986 "Add these properties to the link property list."
9987 (let (key value)
9988 (while plist
9989 (setq key (pop plist) value (pop plist))
9990 (setq org-store-link-plist
9991 (plist-put org-store-link-plist key value)))))
9993 (defun org-email-link-description (&optional fmt)
9994 "Return the description part of an email link.
9995 This takes information from `org-store-link-plist' and formats it
9996 according to FMT (default from `org-email-link-description-format')."
9997 (setq fmt (or fmt org-email-link-description-format))
9998 (let* ((p org-store-link-plist)
9999 (to (plist-get p :toaddress))
10000 (from (plist-get p :fromaddress))
10001 (table
10002 (list
10003 (cons "%c" (plist-get p :fromto))
10004 (cons "%F" (plist-get p :from))
10005 (cons "%f" (or (plist-get p :fromname) (plist-get p :fromaddress) "?"))
10006 (cons "%T" (plist-get p :to))
10007 (cons "%t" (or (plist-get p :toname) (plist-get p :toaddress) "?"))
10008 (cons "%s" (plist-get p :subject))
10009 (cons "%d" (plist-get p :date))
10010 (cons "%m" (plist-get p :message-id)))))
10011 (when (string-match "%c" fmt)
10012 ;; Check if the user wrote this message
10013 (if (and org-from-is-user-regexp from to
10014 (save-match-data (string-match org-from-is-user-regexp from)))
10015 (setq fmt (replace-match "to %t" t t fmt))
10016 (setq fmt (replace-match "from %f" t t fmt))))
10017 (org-replace-escapes fmt table)))
10019 (defun org-make-org-heading-search-string (&optional string)
10020 "Make search string for the current headline or STRING."
10021 (let ((s (or string
10022 (and (derived-mode-p 'org-mode)
10023 (save-excursion
10024 (org-back-to-heading t)
10025 (org-element-property :raw-value (org-element-at-point))))))
10026 (lines org-context-in-file-links))
10027 (or string (setq s (concat "*" s))) ; Add * for headlines
10028 (setq s (replace-regexp-in-string "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" "" s))
10029 (when (and string (integerp lines) (> lines 0))
10030 (let ((slines (org-split-string s "\n")))
10031 (when (< lines (length slines))
10032 (setq s (mapconcat
10033 'identity
10034 (reverse (nthcdr (- (length slines) lines)
10035 (reverse slines))) "\n")))))
10036 (mapconcat 'identity (org-split-string s "[ \t]+") " ")))
10038 (defun org-make-link-string (link &optional description)
10039 "Make a link with brackets, consisting of LINK and DESCRIPTION."
10040 (unless (org-string-nw-p link) (error "Empty link"))
10041 (let ((uri (cond ((string-match org-link-types-re link)
10042 (concat (match-string 1 link)
10043 (org-link-escape (substring link (match-end 1)))))
10044 ;; For readability, url-encode internal links only
10045 ;; when absolutely needed (i.e, when they contain
10046 ;; square brackets). File links however, are
10047 ;; encoded since, e.g., spaces are significant.
10048 ((or (file-name-absolute-p link)
10049 (org-string-match-p "\\`\\.\\.?/\\|[][]" link))
10050 (org-link-escape link))
10051 (t link)))
10052 (description
10053 (and (org-string-nw-p description)
10054 ;; Remove brackets from description, as they are fatal.
10055 (replace-regexp-in-string
10056 "[][]" (lambda (m) (if (equal "[" m) "{" "}"))
10057 (org-trim description)))))
10058 (format "[[%s]%s]"
10060 (if description (format "[%s]" description) ""))))
10062 (defconst org-link-escape-chars
10063 ;;%20 %5B %5D %25
10064 '(?\s ?\[ ?\] ?%)
10065 "List of characters that should be escaped in a link when stored to Org.
10066 This is the list that is used for internal purposes.")
10068 (defconst org-link-escape-chars-browser
10069 ;;%20 %22
10070 '(?\s ?\")
10071 "List of characters to be escaped before handing over to the browser.
10072 If you consider using this constant then you probably want to use
10073 the function `org-link-escape-browser' instead. See there why
10074 this constant is a candidate to be removed once Org drops support
10075 for Emacs 24.1 and 24.2.")
10077 (defun org-link-escape (text &optional table merge)
10078 "Return percent escaped representation of TEXT.
10079 TEXT is a string with the text to escape.
10080 Optional argument TABLE is a list with characters that should be
10081 escaped. When nil, `org-link-escape-chars' is used.
10082 If optional argument MERGE is set, merge TABLE into
10083 `org-link-escape-chars'."
10084 (let ((characters-to-encode
10085 (cond ((null table) org-link-escape-chars)
10086 (merge (append org-link-escape-chars table))
10087 (t table))))
10088 (mapconcat
10089 (lambda (c)
10090 (if (or (memq c characters-to-encode)
10091 (and org-url-hexify-p (or (< c 32) (> c 126))))
10092 (mapconcat (lambda (e) (format "%%%.2X" e))
10093 (or (encode-coding-char c 'utf-8)
10094 (error "Unable to percent escape character: %c" c))
10096 (char-to-string c)))
10097 text "")))
10099 (defun org-link-escape-browser (text)
10100 "Escape some characters before handing over to the browser.
10101 This function is a candidate to be removed together with the
10102 constant `org-link-escape-chars-browser' once Org drops support
10103 for Emacs 24.1 and 24.2. All calls to this function will have to
10104 be replaced with `url-encode-url' which is available since Emacs
10105 24.3.1."
10106 ;; Example with the Org link
10107 ;; [[http://lists.gnu.org/archive/cgi-bin/namazu.cgi?idxname=emacs-orgmode&query=%252Bsubject:"Release+8.2"]]
10108 ;; to open the browser with +subject:"Release 8.2" filled into the
10109 ;; query field: In this case the variable TEXT contains the
10110 ;; unescaped [...]=%2Bsubject:"Release+8.2". Then `url-encode-url'
10111 ;; converts correctly to [...]=%2Bsubject:%22Release+8.2%22 or
10112 ;; `org-link-escape' with `org-link-escape-chars-browser' converts
10113 ;; wrongly to [...]=%252Bsubject:%22Release+8.2%22.
10114 (if (fboundp 'url-encode-url)
10115 (url-encode-url text)
10116 (if (org-string-match-p
10117 (concat "[[:nonascii:]" org-link-escape-chars-browser "]")
10118 text)
10119 (org-link-escape text org-link-escape-chars-browser)
10120 text)))
10122 (defun org-link-unescape (str)
10123 "Unhex hexified Unicode parts in string STR.
10124 E.g. `%C3%B6' becomes the german o-Umlaut. This is the
10125 reciprocal of `org-link-escape', which see."
10126 (if (org-string-nw-p str)
10127 (replace-regexp-in-string
10128 "\\(%[0-9A-Za-z]\\{2\\}\\)+" #'org-link-unescape-compound str t t)
10129 str))
10131 (defun org-link-unescape-compound (hex)
10132 "Unhexify Unicode hex-chars. E.g. `%C3%B6' is the German o-Umlaut.
10133 Note: this function also decodes single byte encodings like
10134 `%E1' (a-acute) if not followed by another `%[A-F0-9]{2}' group."
10135 (save-match-data
10136 (let* ((bytes (cdr (split-string hex "%")))
10137 (ret "")
10138 (eat 0)
10139 (sum 0))
10140 (while bytes
10141 (let* ((val (string-to-number (pop bytes) 16))
10142 (shift-xor
10143 (if (= 0 eat)
10144 (cond
10145 ((>= val 252) (cons 6 252))
10146 ((>= val 248) (cons 5 248))
10147 ((>= val 240) (cons 4 240))
10148 ((>= val 224) (cons 3 224))
10149 ((>= val 192) (cons 2 192))
10150 (t (cons 0 0)))
10151 (cons 6 128))))
10152 (if (>= val 192) (setq eat (car shift-xor)))
10153 (setq val (logxor val (cdr shift-xor)))
10154 (setq sum (+ (lsh sum (car shift-xor)) val))
10155 (if (> eat 0) (setq eat (- eat 1)))
10156 (cond
10157 ((= 0 eat) ;multi byte
10158 (setq ret (concat ret (org-char-to-string sum)))
10159 (setq sum 0))
10160 ((not bytes) ; single byte(s)
10161 (setq ret (org-link-unescape-single-byte-sequence hex))))))
10162 ret)))
10164 (defun org-link-unescape-single-byte-sequence (hex)
10165 "Unhexify hex-encoded single byte character sequences."
10166 (mapconcat (lambda (byte)
10167 (char-to-string (string-to-number byte 16)))
10168 (cdr (split-string hex "%")) ""))
10170 (defun org-xor (a b)
10171 "Exclusive or."
10172 (if a (not b) b))
10174 (defun org-fixup-message-id-for-http (s)
10175 "Replace special characters in a message id, so it can be used in an http query."
10176 (when (string-match "%" s)
10177 (setq s (mapconcat (lambda (c)
10178 (if (eq c ?%)
10179 "%25"
10180 (char-to-string c)))
10181 s "")))
10182 (while (string-match "<" s)
10183 (setq s (replace-match "%3C" t t s)))
10184 (while (string-match ">" s)
10185 (setq s (replace-match "%3E" t t s)))
10186 (while (string-match "@" s)
10187 (setq s (replace-match "%40" t t s)))
10190 (defun org-link-prettify (link)
10191 "Return a human-readable representation of LINK.
10192 The car of LINK must be a raw link.
10193 The cdr of LINK must be either a link description or nil."
10194 (let ((desc (or (cadr link) "<no description>")))
10195 (concat (format "%-45s" (substring desc 0 (min (length desc) 40)))
10196 "<" (car link) ">")))
10198 ;;;###autoload
10199 (defun org-insert-link-global ()
10200 "Insert a link like Org-mode does.
10201 This command can be called in any mode to insert a link in Org-mode syntax."
10202 (interactive)
10203 (org-load-modules-maybe)
10204 (org-run-like-in-org-mode 'org-insert-link))
10206 (defun org-insert-all-links (arg &optional pre post)
10207 "Insert all links in `org-stored-links'.
10208 When a universal prefix, do not delete the links from `org-stored-links'.
10209 When `ARG' is a number, insert the last N link(s).
10210 `PRE' and `POST' are optional arguments to define a string to
10211 prepend or to append."
10212 (interactive "P")
10213 (let ((org-keep-stored-link-after-insertion (equal arg '(4)))
10214 (links (copy-seq org-stored-links))
10215 (pr (or pre "- "))
10216 (po (or post "\n"))
10217 (cnt 1) l)
10218 (if (null org-stored-links)
10219 (message "No link to insert")
10220 (while (and (or (listp arg) (>= arg cnt))
10221 (setq l (if (listp arg)
10222 (pop links)
10223 (pop org-stored-links))))
10224 (setq cnt (1+ cnt))
10225 (insert pr)
10226 (org-insert-link nil (car l) (or (cadr l) "<no description>"))
10227 (insert po)))))
10229 (defun org-insert-last-stored-link (arg)
10230 "Insert the last link stored in `org-stored-links'."
10231 (interactive "p")
10232 (org-insert-all-links arg "" "\n"))
10234 (defun org-link-fontify-links-to-this-file ()
10235 "Fontify links to the current file in `org-stored-links'."
10236 (let ((f (buffer-file-name)) a b)
10237 (setq a (mapcar (lambda(l)
10238 (let ((ll (car l)))
10239 (when (and (string-match "^file:\\(.+\\)::" ll)
10240 (equal f (expand-file-name (match-string 1 ll))))
10241 ll)))
10242 org-stored-links))
10243 (when (featurep 'org-id)
10244 (setq b (mapcar (lambda(l)
10245 (let ((ll (car l)))
10246 (when (and (string-match "^id:\\(.+\\)$" ll)
10247 (equal f (expand-file-name
10248 (or (org-id-find-id-file
10249 (match-string 1 ll)) ""))))
10250 ll)))
10251 org-stored-links)))
10252 (mapcar (lambda(l)
10253 (put-text-property 0 (length l) 'face 'font-lock-comment-face l))
10254 (delq nil (append a b)))))
10256 (defvar org-link-links-in-this-file nil)
10257 (defun org-insert-link (&optional complete-file link-location default-description)
10258 "Insert a link. At the prompt, enter the link.
10260 Completion can be used to insert any of the link protocol prefixes like
10261 http or ftp in use.
10263 The history can be used to select a link previously stored with
10264 `org-store-link'. When the empty string is entered (i.e. if you just
10265 press RET at the prompt), the link defaults to the most recently
10266 stored link. As SPC triggers completion in the minibuffer, you need to
10267 use M-SPC or C-q SPC to force the insertion of a space character.
10269 You will also be prompted for a description, and if one is given, it will
10270 be displayed in the buffer instead of the link.
10272 If there is already a link at point, this command will allow you to edit link
10273 and description parts.
10275 With a \\[universal-argument] prefix, prompts for a file to link to. The file name can
10276 be selected using completion. The path to the file will be relative to the
10277 current directory if the file is in the current directory or a subdirectory.
10278 Otherwise, the link will be the absolute path as completed in the minibuffer
10279 \(i.e. normally ~/path/to/file). You can configure this behavior using the
10280 option `org-link-file-path-type'.
10282 With two \\[universal-argument] prefixes, enforce an absolute path even if the file is in
10283 the current directory or below.
10285 With three \\[universal-argument] prefixes, negate the meaning of
10286 `org-keep-stored-link-after-insertion'.
10288 If `org-make-link-description-function' is non-nil, this function will be
10289 called with the link target, and the result will be the default
10290 link description.
10292 If the LINK-LOCATION parameter is non-nil, this value will be
10293 used as the link location instead of reading one interactively.
10295 If the DEFAULT-DESCRIPTION parameter is non-nil, this value will
10296 be used as the default description."
10297 (interactive "P")
10298 (let* ((wcf (current-window-configuration))
10299 (origbuf (current-buffer))
10300 (region (if (org-region-active-p)
10301 (buffer-substring (region-beginning) (region-end))))
10302 (remove (and region (list (region-beginning) (region-end))))
10303 (desc region)
10304 tmphist ; byte-compile incorrectly complains about this
10305 (link link-location)
10306 (abbrevs org-link-abbrev-alist-local)
10307 entry file all-prefixes auto-desc)
10308 (cond
10309 (link-location) ; specified by arg, just use it.
10310 ((org-in-regexp org-bracket-link-regexp 1)
10311 ;; We do have a link at point, and we are going to edit it.
10312 (setq remove (list (match-beginning 0) (match-end 0)))
10313 (setq desc (if (match-end 3) (org-match-string-no-properties 3)))
10314 (setq link (read-string "Link: "
10315 (org-link-unescape
10316 (org-match-string-no-properties 1)))))
10317 ((or (org-in-regexp org-angle-link-re)
10318 (org-in-regexp org-plain-link-re))
10319 ;; Convert to bracket link
10320 (setq remove (list (match-beginning 0) (match-end 0))
10321 link (read-string "Link: "
10322 (org-remove-angle-brackets (match-string 0)))))
10323 ((member complete-file '((4) (16)))
10324 ;; Completing read for file names.
10325 (setq link (org-file-complete-link complete-file)))
10327 ;; Read link, with completion for stored links.
10328 (org-link-fontify-links-to-this-file)
10329 (org-switch-to-buffer-other-window "*Org Links*")
10330 (with-current-buffer "*Org Links*"
10331 (erase-buffer)
10332 (insert "Insert a link.
10333 Use TAB to complete link prefixes, then RET for type-specific completion support\n")
10334 (when org-stored-links
10335 (insert "\nStored links are available with <up>/<down> or M-p/n (most recent with RET):\n\n")
10336 (insert (mapconcat 'org-link-prettify
10337 (reverse org-stored-links) "\n")))
10338 (goto-char (point-min)))
10339 (let ((cw (selected-window)))
10340 (select-window (get-buffer-window "*Org Links*" 'visible))
10341 (with-current-buffer "*Org Links*" (setq truncate-lines t))
10342 (unless (pos-visible-in-window-p (point-max))
10343 (org-fit-window-to-buffer))
10344 (and (window-live-p cw) (select-window cw)))
10345 ;; Fake a link history, containing the stored links.
10346 (setq tmphist (append (mapcar 'car org-stored-links)
10347 org-insert-link-history))
10348 (setq all-prefixes (append (mapcar 'car abbrevs)
10349 (mapcar 'car org-link-abbrev-alist)
10350 org-link-types))
10351 (unwind-protect
10352 (progn
10353 (setq link
10354 (org-completing-read
10355 "Link: "
10356 (append
10357 (mapcar (lambda (x) (concat x ":"))
10358 all-prefixes)
10359 (mapcar 'car org-stored-links))
10360 nil nil nil
10361 'tmphist
10362 (caar org-stored-links)))
10363 (if (not (string-match "\\S-" link))
10364 (user-error "No link selected"))
10365 (mapc (lambda(l)
10366 (when (equal link (cadr l)) (setq link (car l) auto-desc t)))
10367 org-stored-links)
10368 (if (or (member link all-prefixes)
10369 (and (equal ":" (substring link -1))
10370 (member (substring link 0 -1) all-prefixes)
10371 (setq link (substring link 0 -1))))
10372 (setq link (with-current-buffer origbuf
10373 (org-link-try-special-completion link)))))
10374 (set-window-configuration wcf)
10375 (kill-buffer "*Org Links*"))
10376 (setq entry (assoc link org-stored-links))
10377 (or entry (push link org-insert-link-history))
10378 (setq desc (or desc (nth 1 entry)))))
10380 (if (funcall (if (equal complete-file '(64)) 'not 'identity)
10381 (not org-keep-stored-link-after-insertion))
10382 (setq org-stored-links (delq (assoc link org-stored-links)
10383 org-stored-links)))
10385 (if (and (string-match org-plain-link-re link)
10386 (not (string-match org-ts-regexp link)))
10387 ;; URL-like link, normalize the use of angular brackets.
10388 (setq link (org-remove-angle-brackets link)))
10390 ;; Check if we are linking to the current file with a search
10391 ;; option If yes, simplify the link by using only the search
10392 ;; option.
10393 (when (and buffer-file-name
10394 (string-match "^file:\\(.+?\\)::\\(.+\\)" link))
10395 (let* ((path (match-string 1 link))
10396 (case-fold-search nil)
10397 (search (match-string 2 link)))
10398 (save-match-data
10399 (if (equal (file-truename buffer-file-name) (file-truename path))
10400 ;; We are linking to this same file, with a search option
10401 (setq link search)))))
10403 ;; Check if we can/should use a relative path. If yes, simplify the link
10404 (when (string-match "^\\(file:\\|docview:\\)\\(.*\\)" link)
10405 (let* ((type (match-string 1 link))
10406 (path (match-string 2 link))
10407 (origpath path)
10408 (case-fold-search nil))
10409 (cond
10410 ((or (eq org-link-file-path-type 'absolute)
10411 (equal complete-file '(16)))
10412 (setq path (abbreviate-file-name (expand-file-name path))))
10413 ((eq org-link-file-path-type 'noabbrev)
10414 (setq path (expand-file-name path)))
10415 ((eq org-link-file-path-type 'relative)
10416 (setq path (file-relative-name path)))
10418 (save-match-data
10419 (if (string-match (concat "^" (regexp-quote
10420 (expand-file-name
10421 (file-name-as-directory
10422 default-directory))))
10423 (expand-file-name path))
10424 ;; We are linking a file with relative path name.
10425 (setq path (substring (expand-file-name path)
10426 (match-end 0)))
10427 (setq path (abbreviate-file-name (expand-file-name path)))))))
10428 (setq link (concat type path))
10429 (if (equal desc origpath)
10430 (setq desc path))))
10432 (if org-make-link-description-function
10433 (setq desc
10434 (or (condition-case nil
10435 (funcall org-make-link-description-function link desc)
10436 (error (progn (message "Can't get link description from `%s'"
10437 (symbol-name org-make-link-description-function))
10438 (sit-for 2) nil)))
10439 (read-string "Description: " default-description)))
10440 (if default-description (setq desc default-description)
10441 (setq desc (or (and auto-desc desc)
10442 (read-string "Description: " desc)))))
10444 (unless (string-match "\\S-" desc) (setq desc nil))
10445 (if remove (apply 'delete-region remove))
10446 (insert (org-make-link-string link desc))
10447 ;; Redisplay so as the new link has proper invisible characters.
10448 (sit-for 0)))
10450 (defun org-link-try-special-completion (type)
10451 "If there is completion support for link type TYPE, offer it."
10452 (let ((fun (intern (concat "org-" type "-complete-link"))))
10453 (if (functionp fun)
10454 (funcall fun)
10455 (read-string "Link (no completion support): " (concat type ":")))))
10457 (defun org-file-complete-link (&optional arg)
10458 "Create a file link using completion."
10459 (let ((file (org-iread-file-name "File: "))
10460 (pwd (file-name-as-directory (expand-file-name ".")))
10461 (pwd1 (file-name-as-directory (abbreviate-file-name
10462 (expand-file-name ".")))))
10463 (cond ((equal arg '(16))
10464 (concat "file:"
10465 (abbreviate-file-name (expand-file-name file))))
10466 ((string-match
10467 (concat "^" (regexp-quote pwd1) "\\(.+\\)") file)
10468 (concat "file:" (match-string 1 file)))
10469 ((string-match
10470 (concat "^" (regexp-quote pwd) "\\(.+\\)")
10471 (expand-file-name file))
10472 (concat "file:"
10473 (match-string 1 (expand-file-name file))))
10474 (t (concat "file:" file)))))
10476 (defun org-iread-file-name (&rest args)
10477 "Read-file-name using `ido-mode' speedup if available.
10478 ARGS are arguments that may be passed to `ido-read-file-name' or `read-file-name'.
10479 See `read-file-name' for a description of parameters."
10480 (org-without-partial-completion
10481 (if (and org-completion-use-ido
10482 (fboundp 'ido-read-file-name)
10483 (org-bound-and-true-p ido-mode)
10484 (listp (nth 1 args)))
10485 (let ((ido-enter-matching-directory nil))
10486 (apply #'ido-read-file-name args))
10487 (apply #'read-file-name args))))
10489 (defun org-completing-read (&rest args)
10490 "Completing-read with SPACE being a normal character."
10491 (let ((enable-recursive-minibuffers t)
10492 (minibuffer-local-completion-map
10493 (copy-keymap minibuffer-local-completion-map)))
10494 (org-defkey minibuffer-local-completion-map " " 'self-insert-command)
10495 (org-defkey minibuffer-local-completion-map "?" 'self-insert-command)
10496 (org-defkey minibuffer-local-completion-map (kbd "C-c !") 'org-time-stamp-inactive)
10497 (apply 'org-icompleting-read args)))
10499 (defun org-completing-read-no-i (&rest args)
10500 (let (org-completion-use-ido org-completion-use-iswitchb)
10501 (apply 'org-completing-read args)))
10503 (defun org-iswitchb-completing-read (prompt choices &rest args)
10504 "Use iswitch as a completing-read replacement to choose from choices.
10505 PROMPT is a string to prompt with. CHOICES is a list of strings to choose
10506 from."
10507 (let* ((iswitchb-use-virtual-buffers nil)
10508 (iswitchb-make-buflist-hook
10509 (lambda ()
10510 (setq iswitchb-temp-buflist choices))))
10511 (iswitchb-read-buffer prompt)))
10513 (defun org-icompleting-read (&rest args)
10514 "Completing-read using `ido-mode' or `iswitchb' speedups if available.
10515 Should be called like `completing-read'."
10516 (org-without-partial-completion
10517 (if (not (listp (nth 1 args)))
10518 ;; Ido only supports lists as the COLLECTION argument. Use
10519 ;; default completion function when second argument is not
10520 ;; a list.
10521 (apply #'completing-read args)
10522 (let ((ido-enter-matching-directory nil))
10523 (apply (cond ((and org-completion-use-ido
10524 (fboundp 'ido-completing-read)
10525 (org-bound-and-true-p ido-mode))
10526 #'ido-completing-read)
10527 ((and org-completion-use-iswitchb
10528 (org-bound-and-true-p iswitchb-mode))
10529 #'org-iswitchb-completing-read)
10530 (t #'completing-read))
10531 args)))))
10533 ;;; Opening/following a link
10535 (defvar org-link-search-failed nil)
10537 (defvar org-open-link-functions nil
10538 "Hook for functions finding a plain text link.
10539 These functions must take a single argument, the link content.
10540 They will be called for links that look like [[link text][description]]
10541 when LINK TEXT does not have a protocol like \"http:\" and does not look
10542 like a filename (e.g. \"./blue.png\").
10544 These functions will be called *before* Org attempts to resolve the
10545 link by doing text searches in the current buffer - so if you want a
10546 link \"[[target]]\" to still find \"<<target>>\", your function should
10547 handle this as a special case.
10549 When the function does handle the link, it must return a non-nil value.
10550 If it decides that it is not responsible for this link, it must return
10551 nil to indicate that that Org-mode can continue with other options
10552 like exact and fuzzy text search.")
10554 (defun org-next-link (&optional search-backward)
10555 "Move forward to the next link.
10556 If the link is in hidden text, expose it."
10557 (interactive "P")
10558 (when (and org-link-search-failed (eq this-command last-command))
10559 (goto-char (point-min))
10560 (message "Link search wrapped back to beginning of buffer"))
10561 (setq org-link-search-failed nil)
10562 (let* ((pos (point))
10563 (ct (org-context))
10564 (a (assoc :link ct))
10565 (srch-fun (if search-backward 're-search-backward 're-search-forward)))
10566 (cond (a (goto-char (nth (if search-backward 1 2) a)))
10567 ((looking-at org-any-link-re)
10568 ;; Don't stay stuck at link without an org-link face
10569 (forward-char (if search-backward -1 1))))
10570 (if (funcall srch-fun org-any-link-re nil t)
10571 (progn
10572 (goto-char (match-beginning 0))
10573 (if (outline-invisible-p) (org-show-context)))
10574 (goto-char pos)
10575 (setq org-link-search-failed t)
10576 (message "No further link found"))))
10578 (defun org-previous-link ()
10579 "Move backward to the previous link.
10580 If the link is in hidden text, expose it."
10581 (interactive)
10582 (funcall 'org-next-link t))
10584 (defun org-translate-link (s)
10585 "Translate a link string if a translation function has been defined."
10586 (with-temp-buffer
10587 (insert (org-trim s))
10588 (org-trim (org-element-interpret-data (org-element-context)))))
10590 (defun org-translate-link-from-planner (type path)
10591 "Translate a link from Emacs Planner syntax so that Org can follow it.
10592 This is still an experimental function, your mileage may vary."
10593 (cond
10594 ((member type '("http" "https" "news" "ftp"))
10595 ;; standard Internet links are the same.
10596 nil)
10597 ((and (equal type "irc") (string-match "^//" path))
10598 ;; Planner has two / at the beginning of an irc link, we have 1.
10599 ;; We should have zero, actually....
10600 (setq path (substring path 1)))
10601 ((and (equal type "lisp") (string-match "^/" path))
10602 ;; Planner has a slash, we do not.
10603 (setq type "elisp" path (substring path 1)))
10604 ((string-match "^//\\(.?*\\)/\\(<.*>\\)$" path)
10605 ;; A typical message link. Planner has the id after the final slash,
10606 ;; we separate it with a hash mark
10607 (setq path (concat (match-string 1 path) "#"
10608 (org-remove-angle-brackets (match-string 2 path))))))
10609 (cons type path))
10611 (defun org-find-file-at-mouse (ev)
10612 "Open file link or URL at mouse."
10613 (interactive "e")
10614 (mouse-set-point ev)
10615 (org-open-at-point 'in-emacs))
10617 (defun org-open-at-mouse (ev)
10618 "Open file link or URL at mouse.
10619 See the docstring of `org-open-file' for details."
10620 (interactive "e")
10621 (mouse-set-point ev)
10622 (if (eq major-mode 'org-agenda-mode)
10623 (org-agenda-copy-local-variable 'org-link-abbrev-alist-local))
10624 (org-open-at-point))
10626 (defvar org-window-config-before-follow-link nil
10627 "The window configuration before following a link.
10628 This is saved in case the need arises to restore it.")
10630 ;;;###autoload
10631 (defun org-open-at-point-global ()
10632 "Follow a link like Org-mode does.
10633 This command can be called in any mode to follow a link that has
10634 Org-mode syntax."
10635 (interactive)
10636 (org-run-like-in-org-mode 'org-open-at-point))
10638 ;;;###autoload
10639 (defun org-open-link-from-string (s &optional arg reference-buffer)
10640 "Open a link in the string S, as if it was in Org-mode."
10641 (interactive "sLink: \nP")
10642 (let ((reference-buffer (or reference-buffer (current-buffer))))
10643 (with-temp-buffer
10644 (let ((org-inhibit-startup (not reference-buffer)))
10645 (org-mode)
10646 (insert s)
10647 (goto-char (point-min))
10648 (when reference-buffer
10649 (setq org-link-abbrev-alist-local
10650 (with-current-buffer reference-buffer
10651 org-link-abbrev-alist-local)))
10652 (org-open-at-point arg reference-buffer)))))
10654 (defvar org-open-at-point-functions nil
10655 "Hook that is run when following a link at point.
10657 Functions in this hook must return t if they identify and follow
10658 a link at point. If they don't find anything interesting at point,
10659 they must return nil.")
10661 (defvar org-link-search-inhibit-query nil) ;; dynamically scoped
10662 (defvar clean-buffer-list-kill-buffer-names) ; Defined in midnight.el
10663 (defun org-open-at-point (&optional arg reference-buffer)
10664 "Open link, timestamp, footnote or tags at point.
10666 When point is on a link, follow it. Normally, files will be
10667 opened by an appropriate application. If the optional prefix
10668 argument ARG is non-nil, Emacs will visit the file. With
10669 a double prefix argument, try to open outside of Emacs, in the
10670 application the system uses for this file type.
10672 When point is on a timestamp, open the agenda at the day
10673 specified.
10675 When point is a footnote definition, move to the first reference
10676 found. If it is on a reference, move to the associated
10677 definition.
10679 When point is on a headline, display a list of every link in the
10680 entry, so it is possible to pick one, or all, of them. If point
10681 is on a tag, call `org-tags-view' instead.
10683 When optional argument REFERENCE-BUFFER is non-nil, it should
10684 specify a buffer from where the link search should happen. This
10685 is used internally by `org-open-link-from-string'.
10687 On top of syntactically correct links, this function will open
10688 the link at point in comments or comment blocks and the first
10689 link in a property drawer line."
10690 (interactive "P")
10691 ;; On a code block, open block's results.
10692 (unless (call-interactively 'org-babel-open-src-block-result)
10693 (org-load-modules-maybe)
10694 (setq org-window-config-before-follow-link (current-window-configuration))
10695 (org-remove-occur-highlights nil nil t)
10696 (unless (run-hook-with-args-until-success 'org-open-at-point-functions)
10697 (let* ((context
10698 ;; Only consider supported types, even if they are not
10699 ;; the closest one.
10700 (org-element-lineage
10701 (org-element-context)
10702 '(clock comment comment-block footnote-definition
10703 footnote-reference headline inlinetask keyword link
10704 node-property timestamp)
10706 (type (org-element-type context))
10707 (value (org-element-property :value context)))
10708 (cond
10709 ((not context) (user-error "No link found"))
10710 ;; Exception: open timestamps and links in properties
10711 ;; drawers, keywords and comments.
10712 ((memq type '(comment comment-block keyword node-property))
10713 (cond ((org-in-regexp org-any-link-re)
10714 (org-open-link-from-string (match-string-no-properties 0)))
10715 ((or (org-at-timestamp-p t) (org-at-date-range-p t))
10716 (org-follow-timestamp-link))
10717 (t (user-error "No link found"))))
10718 ;; On a headline or an inlinetask, but not on a timestamp,
10719 ;; a link, a footnote reference or on tags.
10720 ((and (memq type '(headline inlinetask))
10721 ;; Not on tags.
10722 (progn (save-excursion (beginning-of-line)
10723 (looking-at org-complex-heading-regexp))
10724 (or (not (match-beginning 5))
10725 (< (point) (match-beginning 5)))))
10726 (let* ((data (org-offer-links-in-entry (current-buffer) (point) arg))
10727 (links (car data))
10728 (links-end (cdr data)))
10729 (if links
10730 (dolist (link (if (stringp links) (list links) links))
10731 (search-forward link nil links-end)
10732 (goto-char (match-beginning 0))
10733 (org-open-at-point))
10734 (require 'org-attach)
10735 (org-attach-reveal 'if-exists))))
10736 ;; On a clock line, make sure point is on the timestamp
10737 ;; before opening it.
10738 ((and (eq type 'clock)
10739 value
10740 (>= (point) (org-element-property :begin value))
10741 (<= (point) (org-element-property :end value)))
10742 (org-follow-timestamp-link))
10743 ;; Do nothing on white spaces after an object, unless point
10744 ;; is right after it.
10745 ((> (point)
10746 (save-excursion
10747 (goto-char (org-element-property :end context))
10748 (skip-chars-backward " \t")
10749 (point)))
10750 (user-error "No link found"))
10751 ((eq type 'timestamp) (org-follow-timestamp-link))
10752 ;; On tags within a headline or an inlinetask.
10753 ((and (memq type '(headline inlinetask))
10754 (progn (save-excursion (beginning-of-line)
10755 (looking-at org-complex-heading-regexp))
10756 (and (match-beginning 5)
10757 (>= (point) (match-beginning 5)))))
10758 (org-tags-view arg (substring (match-string 5) 0 -1)))
10759 ((eq type 'link)
10760 ;; When link is located within the description of another
10761 ;; link (e.g., an inline image), always open the parent
10762 ;; link.
10763 (let*((link (let ((up (org-element-property :parent context)))
10764 (if (eq (org-element-type up) 'link) up context)))
10765 (type (org-element-property :type link))
10766 (path (org-link-unescape (org-element-property :path link))))
10767 ;; Switch back to REFERENCE-BUFFER needed when called in
10768 ;; a temporary buffer through `org-open-link-from-string'.
10769 (with-current-buffer (or reference-buffer (current-buffer))
10770 (cond
10771 ((equal type "file")
10772 (if (string-match "[*?{]" (file-name-nondirectory path))
10773 (dired path)
10774 ;; Look into `org-link-protocols' in order to find
10775 ;; a DEDICATED-FUNCTION to open file. The function
10776 ;; will be applied on raw link instead of parsed
10777 ;; link due to the limitation in `org-add-link-type'
10778 ;; ("open" function called with a single argument).
10779 ;; If no such function is found, fallback to
10780 ;; `org-open-file'.
10782 ;; Note : "file+emacs" and "file+sys" types are
10783 ;; hard-coded in order to escape the previous
10784 ;; limitation.
10785 (let* ((option (org-element-property :search-option link))
10786 (app (org-element-property :application link))
10787 (dedicated-function
10788 (nth 1 (assoc app org-link-protocols))))
10789 (if dedicated-function
10790 (funcall dedicated-function
10791 (concat path
10792 (and option (concat "::" option))))
10793 (apply #'org-open-file
10794 path
10795 (cond (arg)
10796 ((equal app "emacs") 'emacs)
10797 ((equal app "sys") 'system))
10798 (cond ((not option) nil)
10799 ((org-string-match-p "\\`[0-9]+\\'" option)
10800 (list (string-to-number option)))
10801 (t (list nil
10802 (org-link-unescape option)))))))))
10803 ((assoc type org-link-protocols)
10804 (funcall (nth 1 (assoc type org-link-protocols)) path))
10805 ((equal type "help")
10806 (let ((f-or-v (intern path)))
10807 (cond ((fboundp f-or-v) (describe-function f-or-v))
10808 ((boundp f-or-v) (describe-variable f-or-v))
10809 (t (error "Not a known function or variable")))))
10810 ((member type '("http" "https" "ftp" "mailto" "news"))
10811 (browse-url (org-link-escape-browser (concat type ":" path))))
10812 ((equal type "doi")
10813 (browse-url
10814 (org-link-escape-browser (concat org-doi-server-url path))))
10815 ((equal type "message") (browse-url (concat type ":" path)))
10816 ((equal type "shell")
10817 (let ((buf (generate-new-buffer "*Org Shell Output*"))
10818 (cmd path))
10819 (if (or (and (org-string-nw-p
10820 org-confirm-shell-link-not-regexp)
10821 (string-match
10822 org-confirm-shell-link-not-regexp cmd))
10823 (not org-confirm-shell-link-function)
10824 (funcall org-confirm-shell-link-function
10825 (format "Execute \"%s\" in shell? "
10826 (org-add-props cmd nil
10827 'face 'org-warning))))
10828 (progn
10829 (message "Executing %s" cmd)
10830 (shell-command cmd buf)
10831 (when (featurep 'midnight)
10832 (setq clean-buffer-list-kill-buffer-names
10833 (cons (buffer-name buf)
10834 clean-buffer-list-kill-buffer-names))))
10835 (user-error "Abort"))))
10836 ((equal type "elisp")
10837 (let ((cmd path))
10838 (if (or (and (org-string-nw-p
10839 org-confirm-elisp-link-not-regexp)
10840 (org-string-match-p
10841 org-confirm-elisp-link-not-regexp cmd))
10842 (not org-confirm-elisp-link-function)
10843 (funcall org-confirm-elisp-link-function
10844 (format "Execute \"%s\" as elisp? "
10845 (org-add-props cmd nil
10846 'face 'org-warning))))
10847 (message "%s => %s" cmd
10848 (if (eq (string-to-char cmd) ?\()
10849 (eval (read cmd))
10850 (call-interactively (read cmd))))
10851 (user-error "Abort"))))
10852 ((equal type "id")
10853 (require 'org-id)
10854 (funcall (nth 1 (assoc "id" org-link-protocols)) path))
10855 ((member type '("coderef" "custom-id" "fuzzy" "radio"))
10856 (unless (run-hook-with-args-until-success
10857 'org-open-link-functions path)
10858 (if (not arg) (org-mark-ring-push)
10859 (switch-to-buffer-other-window
10860 (org-get-buffer-for-internal-link (current-buffer))))
10861 (let ((destination
10862 (org-with-wide-buffer
10863 (if (equal type "radio")
10864 (org-search-radio-target
10865 (org-element-property :path link))
10866 (org-link-search
10867 (if (member type '("custom-id" "coderef"))
10868 (org-element-property :raw-link link)
10869 path)
10870 ;; Prevent fuzzy links from matching
10871 ;; themselves.
10872 (and (equal type "fuzzy")
10873 (+ 2 (org-element-property :begin link)))))
10874 (point))))
10875 (unless (and (<= (point-min) destination)
10876 (>= (point-max) destination))
10877 (widen))
10878 (goto-char destination))))
10879 (t (browse-url-at-point))))))
10880 ;; On a footnote reference or at a footnote definition's label.
10881 ((or (eq type 'footnote-reference)
10882 (and (eq type 'footnote-definition)
10883 (save-excursion
10884 ;; Do not validate action when point is on the
10885 ;; spaces right after the footnote label, in
10886 ;; order to be on par with behaviour on links.
10887 (skip-chars-forward " \t")
10888 (let ((begin
10889 (org-element-property :contents-begin context)))
10890 (if begin (< (point) begin)
10891 (= (org-element-property :post-affiliated context)
10892 (line-beginning-position)))))))
10893 (org-footnote-action))
10894 (t (user-error "No link found")))))
10895 (run-hook-with-args 'org-follow-link-hook)))
10897 (defun org-offer-links-in-entry (buffer marker &optional nth zero)
10898 "Offer links in the current entry and return the selected link.
10899 If there is only one link, return it.
10900 If NTH is an integer, return the NTH link found.
10901 If ZERO is a string, check also this string for a link, and if
10902 there is one, return it."
10903 (with-current-buffer buffer
10904 (save-excursion
10905 (save-restriction
10906 (widen)
10907 (goto-char marker)
10908 (let ((cnt ?0)
10909 (in-emacs (if (integerp nth) nil nth))
10910 have-zero end links link c)
10911 (when (and (stringp zero) (string-match org-bracket-link-regexp zero))
10912 (push (match-string 0 zero) links)
10913 (setq cnt (1- cnt) have-zero t))
10914 (save-excursion
10915 (org-back-to-heading t)
10916 (setq end (save-excursion (outline-next-heading) (point)))
10917 (while (re-search-forward org-any-link-re end t)
10918 (push (match-string 0) links))
10919 (setq links (org-uniquify (reverse links))))
10920 (cond
10921 ((null links)
10922 (message "No links"))
10923 ((equal (length links) 1)
10924 (setq link (car links)))
10925 ((and (integerp nth) (>= (length links) (if have-zero (1+ nth) nth)))
10926 (setq link (nth (if have-zero nth (1- nth)) links)))
10927 (t ; we have to select a link
10928 (save-excursion
10929 (save-window-excursion
10930 (delete-other-windows)
10931 (with-output-to-temp-buffer "*Select Link*"
10932 (mapc (lambda (l)
10933 (if (not (string-match org-bracket-link-regexp l))
10934 (princ (format "[%c] %s\n" (incf cnt)
10935 (org-remove-angle-brackets l)))
10936 (if (match-end 3)
10937 (princ (format "[%c] %s (%s)\n" (incf cnt)
10938 (match-string 3 l) (match-string 1 l)))
10939 (princ (format "[%c] %s\n" (incf cnt)
10940 (match-string 1 l))))))
10941 links))
10942 (org-fit-window-to-buffer (get-buffer-window "*Select Link*"))
10943 (message "Select link to open, RET to open all:")
10944 (setq c (read-char-exclusive))
10945 (and (get-buffer "*Select Link*") (kill-buffer "*Select Link*"))))
10946 (when (equal c ?q) (user-error "Abort"))
10947 (if (equal c ?\C-m)
10948 (setq link links)
10949 (setq nth (- c ?0))
10950 (if have-zero (setq nth (1+ nth)))
10951 (unless (and (integerp nth) (>= (length links) nth))
10952 (user-error "Invalid link selection"))
10953 (setq link (nth (1- nth) links)))))
10954 (cons link end))))))
10956 ;; TODO: These functions are deprecated since `org-open-at-point'
10957 ;; hard-codes behaviour for "file+emacs" and "file+sys" types.
10958 (defun org-open-file-with-system (path)
10959 "Open file at PATH using the system way of opening it."
10960 (org-open-file path 'system))
10961 (defun org-open-file-with-emacs (path)
10962 "Open file at PATH in Emacs."
10963 (org-open-file path 'emacs))
10966 ;;; File search
10968 (defvar org-create-file-search-functions nil
10969 "List of functions to construct the right search string for a file link.
10970 These functions are called in turn with point at the location to
10971 which the link should point.
10973 A function in the hook should first test if it would like to
10974 handle this file type, for example by checking the `major-mode'
10975 or the file extension. If it decides not to handle this file, it
10976 should just return nil to give other functions a chance. If it
10977 does handle the file, it must return the search string to be used
10978 when following the link. The search string will be part of the
10979 file link, given after a double colon, and `org-open-at-point'
10980 will automatically search for it. If special measures must be
10981 taken to make the search successful, another function should be
10982 added to the companion hook `org-execute-file-search-functions',
10983 which see.
10985 A function in this hook may also use `setq' to set the variable
10986 `description' to provide a suggestion for the descriptive text to
10987 be used for this link when it gets inserted into an Org-mode
10988 buffer with \\[org-insert-link].")
10990 (defvar org-execute-file-search-functions nil
10991 "List of functions to execute a file search triggered by a link.
10993 Functions added to this hook must accept a single argument, the
10994 search string that was part of the file link, the part after the
10995 double colon. The function must first check if it would like to
10996 handle this search, for example by checking the `major-mode' or
10997 the file extension. If it decides not to handle this search, it
10998 should just return nil to give other functions a chance. If it
10999 does handle the search, it must return a non-nil value to keep
11000 other functions from trying.
11002 Each function can access the current prefix argument through the
11003 variable `current-prefix-arg'. Note that a single prefix is used
11004 to force opening a link in Emacs, so it may be good to only use a
11005 numeric or double prefix to guide the search function.
11007 In case this is needed, a function in this hook can also restore
11008 the window configuration before `org-open-at-point' was called using:
11010 (set-window-configuration org-window-config-before-follow-link)")
11012 (defun org-search-radio-target (target)
11013 "Search a radio target matching TARGET in current buffer.
11014 White spaces are not significant."
11015 (let ((re (format "<<<%s>>>"
11016 (mapconcat #'regexp-quote
11017 (org-split-string target "[ \t\n]+")
11018 "[ \t]+\\(?:\n[ \t]*\\)?")))
11019 (origin (point)))
11020 (goto-char (point-min))
11021 (catch :radio-match
11022 (while (re-search-forward re nil t)
11023 (backward-char)
11024 (let ((object (org-element-context)))
11025 (when (eq (org-element-type object) 'radio-target)
11026 (goto-char (org-element-property :begin object))
11027 (org-show-context 'link-search)
11028 (throw :radio-match nil))))
11029 (goto-char origin)
11030 (user-error "No match for radio target: %s" target))))
11032 (defun org-link-search (s &optional avoid-pos stealth)
11033 "Search for a search string S.
11035 If S starts with \"#\", it triggers a custom ID search.
11037 If S is enclosed within parenthesis, it initiates a coderef
11038 search.
11040 If S is surrounded by forward slashes, it is interpreted as
11041 a regular expression. In Org mode files, this will create an
11042 `org-occur' sparse tree. In ordinary files, `occur' will be used
11043 to list matches. If the current buffer is in `dired-mode', grep
11044 will be used to search in all files.
11046 When AVOID-POS is given, ignore matches near that position.
11048 When optional argument STEALTH is non-nil, do not modify
11049 visibility around point, thus ignoring `org-show-context-detail'
11050 variable.
11052 Search is case-insensitive and ignores white spaces. Return type
11053 of matched result, with is either `dedicated' or `fuzzy'."
11054 (unless (org-string-nw-p s) (error "Invalid search string \"%s\"" s))
11055 (let* ((case-fold-search t)
11056 (origin (point))
11057 (normalized (replace-regexp-in-string "\n[ \t]*" " " s))
11058 (words (org-split-string s "[ \t\n]+"))
11059 (s-multi-re (mapconcat #'regexp-quote words "[ \t]+\\(?:\n[ \t]*\\)?"))
11060 (s-single-re (mapconcat #'regexp-quote words "[ \t]+"))
11061 type)
11062 (cond
11063 ;; Check if there are any special search functions.
11064 ((run-hook-with-args-until-success 'org-execute-file-search-functions s))
11065 ((eq (string-to-char s) ?#)
11066 ;; Look for a custom ID S if S starts with "#".
11067 (let* ((id (substring normalized 1))
11068 (match (org-find-property "CUSTOM_ID" id)))
11069 (if match (progn (goto-char match) (setf type 'dedicated))
11070 (error "No match for custom ID: %s" id))))
11071 ((string-match "\\`(\\(.*\\))\\'" normalized)
11072 ;; Look for coderef targets if S is enclosed within parenthesis.
11073 (let ((coderef (match-string-no-properties 1 normalized))
11074 (re (substring s-single-re 1 -1)))
11075 (goto-char (point-min))
11076 (catch :coderef-match
11077 (while (re-search-forward re nil t)
11078 (let ((element (org-element-at-point)))
11079 (when (and (memq (org-element-type element)
11080 '(example-block src-block))
11081 ;; Build proper regexp according to current
11082 ;; block's label format.
11083 (let ((label-fmt
11084 (regexp-quote
11085 (or (org-element-property :label-fmt element)
11086 org-coderef-label-format))))
11087 (save-excursion
11088 (beginning-of-line)
11089 (looking-at (format ".*?\\(%s\\)[ \t]*$"
11090 (format label-fmt coderef))))))
11091 (setq type 'dedicated)
11092 (goto-char (match-beginning 1))
11093 (throw :coderef-match nil))))
11094 (goto-char origin)
11095 (error "No match for coderef: %s" coderef))))
11096 ((string-match "\\`/\\(.*\\)/\\'" normalized)
11097 ;; Look for a regular expression.
11098 (funcall (if (derived-mode-p 'org-mode) #'org-occur #'org-do-occur)
11099 (match-string 1 s)))
11100 ;; Fuzzy links.
11102 (let* ((starred (eq (string-to-char normalized) ?*))
11103 (headline-search (and (derived-mode-p 'org-mode)
11104 (or org-link-search-must-match-exact-headline
11105 starred))))
11106 (cond
11107 ;; Look for targets, only if not in a headline search.
11108 ((and (not starred)
11109 (let ((target (format "<<%s>>" s-multi-re)))
11110 (catch :target-match
11111 (goto-char (point-min))
11112 (while (re-search-forward target nil t)
11113 (backward-char)
11114 (let ((context (org-element-context)))
11115 (when (eq (org-element-type context) 'target)
11116 (setq type 'dedicated)
11117 (goto-char (org-element-property :begin context))
11118 (throw :target-match t))))
11119 nil))))
11120 ;; Look for elements named after S, only if not in a headline
11121 ;; search.
11122 ((and (not starred)
11123 (let ((name (format "^[ \t]*#\\+NAME: +%s[ \t]*$" s-single-re)))
11124 (catch :name-match
11125 (goto-char (point-min))
11126 (while (re-search-forward name nil t)
11127 (let ((element (org-element-at-point)))
11128 (when (equal (org-split-string
11129 (org-element-property :name element)
11130 "[ \t]+")
11131 words)
11132 (setq type 'dedicated)
11133 (beginning-of-line)
11134 (throw :name-match t))))
11135 nil))))
11136 ;; Regular text search. Prefer headlines in Org mode
11137 ;; buffers.
11138 ((and (derived-mode-p 'org-mode)
11139 (let* ((wspace "[ \t]")
11140 (wspaceopt (concat wspace "*"))
11141 (cookie (concat "\\(?:"
11142 wspaceopt
11143 "\\[[0-9]*\\(?:%\\|/[0-9]*\\)\\]"
11144 wspaceopt
11145 "\\)"))
11146 (sep (concat "\\(?:\\(?:" wspace "\\|" cookie "\\)+\\)"))
11147 (re (concat
11148 org-outline-regexp-bol
11149 "\\(?:" org-todo-regexp "[ \t]+\\)?"
11150 "\\(?:\\[#.\\][ \t]+\\)?"
11151 "\\(?:" org-comment-string "[ \t]+\\)?"
11152 sep "?"
11153 (let ((title (mapconcat #'regexp-quote
11154 words
11155 sep)))
11156 (if starred (substring title 1) title))
11157 sep "?"
11158 (org-re "\\(?:[ \t]+:[[:alnum:]_@#%%:]+:\\)?")
11159 "[ \t]*$")))
11160 (goto-char (point-min))
11161 (re-search-forward re nil t)))
11162 (goto-char (match-beginning 0))
11163 (setq type 'dedicated))
11164 ;; Offer to create non-existent headline depending on
11165 ;; `org-link-search-must-match-exact-headline'.
11166 ((and (derived-mode-p 'org-mode)
11167 (not org-link-search-inhibit-query)
11168 (eq org-link-search-must-match-exact-headline 'query-to-create)
11169 (yes-or-no-p "No match - create this as a new heading? "))
11170 (goto-char (point-max))
11171 (unless (bolp) (newline))
11172 (org-insert-heading nil t t)
11173 (insert s "\n")
11174 (beginning-of-line 0))
11175 ;; Only headlines are looked after. No need to process
11176 ;; further: throw an error.
11177 ((and (derived-mode-p 'org-mode)
11178 (or starred org-link-search-must-match-exact-headline))
11179 (goto-char origin)
11180 (error "No match for fuzzy expression: %s" normalized))
11181 ;; Regular text search.
11182 ((catch :fuzzy-match
11183 (goto-char (point-min))
11184 (while (re-search-forward s-multi-re nil t)
11185 ;; Skip match if it contains AVOID-POS or it is included
11186 ;; in a link with a description but outside the
11187 ;; description.
11188 (unless (or (and avoid-pos
11189 (<= (match-beginning 0) avoid-pos)
11190 (> (match-end 0) avoid-pos))
11191 (and (save-match-data
11192 (org-in-regexp org-bracket-link-regexp))
11193 (match-beginning 3)
11194 (or (> (match-beginning 3) (point))
11195 (<= (match-end 3) (point)))
11196 (org-element-lineage
11197 (save-match-data (org-element-context))
11198 '(link) t)))
11199 (goto-char (match-beginning 0))
11200 (setq type 'fuzzy)
11201 (throw :fuzzy-match t)))
11202 nil))
11203 ;; All failed. Throw an error.
11204 (t (goto-char origin)
11205 (error "No match for fuzzy expression: %s" normalized))))))
11206 ;; Disclose surroundings of match, if appropriate.
11207 (when (and (derived-mode-p 'org-mode) (not stealth))
11208 (org-show-context 'link-search))
11209 type))
11211 (defun org-get-buffer-for-internal-link (buffer)
11212 "Return a buffer to be used for displaying the link target of internal links."
11213 (cond
11214 ((not org-display-internal-link-with-indirect-buffer)
11215 buffer)
11216 ((string-match "(Clone)$" (buffer-name buffer))
11217 (message "Buffer is already a clone, not making another one")
11218 ;; we also do not modify visibility in this case
11219 buffer)
11220 (t ; make a new indirect buffer for displaying the link
11221 (let* ((bn (buffer-name buffer))
11222 (ibn (concat bn "(Clone)"))
11223 (ib (or (get-buffer ibn) (make-indirect-buffer buffer ibn 'clone))))
11224 (with-current-buffer ib (org-overview))
11225 ib))))
11227 (defun org-do-occur (regexp &optional cleanup)
11228 "Call the Emacs command `occur'.
11229 If CLEANUP is non-nil, remove the printout of the regular expression
11230 in the *Occur* buffer. This is useful if the regex is long and not useful
11231 to read."
11232 (occur regexp)
11233 (when cleanup
11234 (let ((cwin (selected-window)) win beg end)
11235 (when (setq win (get-buffer-window "*Occur*"))
11236 (select-window win))
11237 (goto-char (point-min))
11238 (when (re-search-forward "match[a-z]+" nil t)
11239 (setq beg (match-end 0))
11240 (if (re-search-forward "^[ \t]*[0-9]+" nil t)
11241 (setq end (1- (match-beginning 0)))))
11242 (and beg end (let ((inhibit-read-only t)) (delete-region beg end)))
11243 (goto-char (point-min))
11244 (select-window cwin))))
11246 ;;; The mark ring for links jumps
11248 (defvar org-mark-ring nil
11249 "Mark ring for positions before jumps in Org-mode.")
11250 (defvar org-mark-ring-last-goto nil
11251 "Last position in the mark ring used to go back.")
11252 ;; Fill and close the ring
11253 (setq org-mark-ring nil org-mark-ring-last-goto nil) ;; in case file is reloaded
11254 (loop for i from 1 to org-mark-ring-length do
11255 (push (make-marker) org-mark-ring))
11256 (setcdr (nthcdr (1- org-mark-ring-length) org-mark-ring)
11257 org-mark-ring)
11259 (defun org-mark-ring-push (&optional pos buffer)
11260 "Put the current position or POS into the mark ring and rotate it."
11261 (interactive)
11262 (setq pos (or pos (point)))
11263 (setq org-mark-ring (nthcdr (1- org-mark-ring-length) org-mark-ring))
11264 (move-marker (car org-mark-ring)
11265 (or pos (point))
11266 (or buffer (current-buffer)))
11267 (message "%s"
11268 (substitute-command-keys
11269 "Position saved to mark ring, go back with \\[org-mark-ring-goto].")))
11271 (defun org-mark-ring-goto (&optional n)
11272 "Jump to the previous position in the mark ring.
11273 With prefix arg N, jump back that many stored positions. When
11274 called several times in succession, walk through the entire ring.
11275 Org-mode commands jumping to a different position in the current file,
11276 or to another Org-mode file, automatically push the old position
11277 onto the ring."
11278 (interactive "p")
11279 (let (p m)
11280 (if (eq last-command this-command)
11281 (setq p (nthcdr n (or org-mark-ring-last-goto org-mark-ring)))
11282 (setq p org-mark-ring))
11283 (setq org-mark-ring-last-goto p)
11284 (setq m (car p))
11285 (org-pop-to-buffer-same-window (marker-buffer m))
11286 (goto-char m)
11287 (if (or (outline-invisible-p) (org-invisible-p2)) (org-show-context 'mark-goto))))
11289 (defun org-remove-angle-brackets (s)
11290 (if (equal (substring s 0 1) "<") (setq s (substring s 1)))
11291 (if (equal (substring s -1) ">") (setq s (substring s 0 -1)))
11293 (defun org-add-angle-brackets (s)
11294 (if (equal (substring s 0 1) "<") nil (setq s (concat "<" s)))
11295 (if (equal (substring s -1) ">") nil (setq s (concat s ">")))
11297 (defun org-remove-double-quotes (s)
11298 (if (equal (substring s 0 1) "\"") (setq s (substring s 1)))
11299 (if (equal (substring s -1) "\"") (setq s (substring s 0 -1)))
11302 ;;; Following specific links
11304 (defun org-follow-timestamp-link ()
11305 "Open an agenda view for the time-stamp date/range at point."
11306 (cond
11307 ((org-at-date-range-p t)
11308 (let ((org-agenda-start-on-weekday)
11309 (t1 (match-string 1))
11310 (t2 (match-string 2)) tt1 tt2)
11311 (setq tt1 (time-to-days (org-time-string-to-time t1))
11312 tt2 (time-to-days (org-time-string-to-time t2)))
11313 (let ((org-agenda-buffer-tmp-name
11314 (format "*Org Agenda(a:%s)"
11315 (concat (substring t1 0 10) "--" (substring t2 0 10)))))
11316 (org-agenda-list nil tt1 (1+ (- tt2 tt1))))))
11317 ((org-at-timestamp-p t)
11318 (let ((org-agenda-buffer-tmp-name
11319 (format "*Org Agenda(a:%s)" (substring (match-string 1) 0 10))))
11320 (org-agenda-list nil (time-to-days (org-time-string-to-time
11321 (substring (match-string 1) 0 10)))
11322 1)))
11323 (t (error "This should not happen"))))
11326 ;;; Following file links
11327 (declare-function mailcap-parse-mailcaps "mailcap" (&optional path force))
11328 (declare-function mailcap-extension-to-mime "mailcap" (extn))
11329 (declare-function mailcap-mime-info
11330 "mailcap" (string &optional request no-decode))
11331 (defvar org-wait nil)
11332 (defun org-open-file (path &optional in-emacs line search)
11333 "Open the file at PATH.
11334 First, this expands any special file name abbreviations. Then the
11335 configuration variable `org-file-apps' is checked if it contains an
11336 entry for this file type, and if yes, the corresponding command is launched.
11338 If no application is found, Emacs simply visits the file.
11340 With optional prefix argument IN-EMACS, Emacs will visit the file.
11341 With a double \\[universal-argument] \\[universal-argument] \
11342 prefix arg, Org tries to avoid opening in Emacs
11343 and to use an external application to visit the file.
11345 Optional LINE specifies a line to go to, optional SEARCH a string
11346 to search for. If LINE or SEARCH is given, the file will be
11347 opened in Emacs, unless an entry from org-file-apps that makes
11348 use of groups in a regexp matches.
11350 If you want to change the way frames are used when following a
11351 link, please customize `org-link-frame-setup'.
11353 If the file does not exist, an error is thrown."
11354 (let* ((file (if (equal path "")
11355 buffer-file-name
11356 (substitute-in-file-name (expand-file-name path))))
11357 (file-apps (append org-file-apps (org-default-apps)))
11358 (apps (org-remove-if
11359 'org-file-apps-entry-match-against-dlink-p file-apps))
11360 (apps-dlink (org-remove-if-not
11361 'org-file-apps-entry-match-against-dlink-p file-apps))
11362 (remp (and (assq 'remote apps) (org-file-remote-p file)))
11363 (dirp (if remp nil (file-directory-p file)))
11364 (file (if (and dirp org-open-directory-means-index-dot-org)
11365 (concat (file-name-as-directory file) "index.org")
11366 file))
11367 (a-m-a-p (assq 'auto-mode apps))
11368 (dfile (downcase file))
11369 ;; reconstruct the original file: link from the PATH, LINE and SEARCH args
11370 (link (cond ((and (eq line nil)
11371 (eq search nil))
11372 file)
11373 (line
11374 (concat file "::" (number-to-string line)))
11375 (search
11376 (concat file "::" search))))
11377 (dlink (downcase link))
11378 (old-buffer (current-buffer))
11379 (old-pos (point))
11380 (old-mode major-mode)
11381 ext cmd link-match-data)
11382 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\.gz\\)$" dfile)
11383 (setq ext (match-string 1 dfile))
11384 (if (string-match "^.*\\.\\([a-zA-Z0-9]+\\)$" dfile)
11385 (setq ext (match-string 1 dfile))))
11386 (cond
11387 ((member in-emacs '((16) system))
11388 (setq cmd (cdr (assoc 'system apps))))
11389 (in-emacs (setq cmd 'emacs))
11391 (setq cmd (or (and remp (cdr (assoc 'remote apps)))
11392 (and dirp (cdr (assoc 'directory apps)))
11393 ; first, try matching against apps-dlink
11394 ; if we get a match here, store the match data for later
11395 (let ((match (assoc-default dlink apps-dlink
11396 'string-match)))
11397 (if match
11398 (progn (setq link-match-data (match-data))
11399 match)
11400 (progn (setq in-emacs (or in-emacs line search))
11401 nil))) ; if we have no match in apps-dlink,
11402 ; always open the file in emacs if line or search
11403 ; is given (for backwards compatibility)
11404 (assoc-default dfile (org-apps-regexp-alist apps a-m-a-p)
11405 'string-match)
11406 (cdr (assoc ext apps))
11407 (cdr (assoc t apps))))))
11408 (when (eq cmd 'system)
11409 (setq cmd (cdr (assoc 'system apps))))
11410 (when (eq cmd 'default)
11411 (setq cmd (cdr (assoc t apps))))
11412 (when (eq cmd 'mailcap)
11413 (require 'mailcap)
11414 (mailcap-parse-mailcaps)
11415 (let* ((mime-type (mailcap-extension-to-mime (or ext "")))
11416 (command (mailcap-mime-info mime-type)))
11417 (if (stringp command)
11418 (setq cmd command)
11419 (setq cmd 'emacs))))
11420 (if (and (not (eq cmd 'emacs)) ; Emacs has no problems with non-ex files
11421 (not (file-exists-p file))
11422 (not org-open-non-existing-files))
11423 (user-error "No such file: %s" file))
11424 (cond
11425 ((and (stringp cmd) (not (string-match "^\\s-*$" cmd)))
11426 ;; Remove quotes around the file name - we'll use shell-quote-argument.
11427 (while (string-match "['\"]%s['\"]" cmd)
11428 (setq cmd (replace-match "%s" t t cmd)))
11429 (while (string-match "%s" cmd)
11430 (setq cmd (replace-match
11431 (save-match-data
11432 (shell-quote-argument
11433 (convert-standard-filename file)))
11434 t t cmd)))
11436 ;; Replace "%1", "%2" etc. in command with group matches from regex
11437 (save-match-data
11438 (let ((match-index 1)
11439 (number-of-groups (- (/ (length link-match-data) 2) 1)))
11440 (set-match-data link-match-data)
11441 (while (<= match-index number-of-groups)
11442 (let ((regex (concat "%" (number-to-string match-index)))
11443 (replace-with (match-string match-index dlink)))
11444 (while (string-match regex cmd)
11445 (setq cmd (replace-match replace-with t t cmd))))
11446 (setq match-index (+ match-index 1)))))
11448 (save-window-excursion
11449 (message "Running %s...done" cmd)
11450 (start-process-shell-command cmd nil cmd)
11451 (and (boundp 'org-wait) (numberp org-wait) (sit-for org-wait))))
11452 ((or (stringp cmd)
11453 (eq cmd 'emacs))
11454 (funcall (cdr (assq 'file org-link-frame-setup)) file)
11455 (widen)
11456 (if line (progn (org-goto-line line)
11457 (if (derived-mode-p 'org-mode)
11458 (org-reveal)))
11459 (if search (org-link-search search))))
11460 ((consp cmd)
11461 (let ((file (convert-standard-filename file)))
11462 (save-match-data
11463 (set-match-data link-match-data)
11464 (eval cmd))))
11465 (t (funcall (cdr (assq 'file org-link-frame-setup)) file)))
11466 (and (derived-mode-p 'org-mode) (eq old-mode 'org-mode)
11467 (or (not (equal old-buffer (current-buffer)))
11468 (not (equal old-pos (point))))
11469 (org-mark-ring-push old-pos old-buffer))))
11471 (defun org-file-apps-entry-match-against-dlink-p (entry)
11472 "This function returns non-nil if `entry' uses a regular
11473 expression which should be matched against the whole link by
11474 org-open-file.
11476 It assumes that is the case when the entry uses a regular
11477 expression which has at least one grouping construct and the
11478 action is either a lisp form or a command string containing
11479 `%1', i.e. using at least one subexpression match as a
11480 parameter."
11481 (let ((selector (car entry))
11482 (action (cdr entry)))
11483 (if (stringp selector)
11484 (and (> (regexp-opt-depth selector) 0)
11485 (or (and (stringp action)
11486 (string-match "%[0-9]" action))
11487 (consp action)))
11488 nil)))
11490 (defun org-default-apps ()
11491 "Return the default applications for this operating system."
11492 (cond
11493 ((eq system-type 'darwin)
11494 org-file-apps-defaults-macosx)
11495 ((eq system-type 'windows-nt)
11496 org-file-apps-defaults-windowsnt)
11497 (t org-file-apps-defaults-gnu)))
11499 (defun org-apps-regexp-alist (list &optional add-auto-mode)
11500 "Convert extensions to regular expressions in the cars of LIST.
11501 Also, weed out any non-string entries, because the return value is used
11502 only for regexp matching.
11503 When ADD-AUTO-MODE is set, make all matches in `auto-mode-alist'
11504 point to the symbol `emacs', indicating that the file should
11505 be opened in Emacs."
11506 (append
11507 (delq nil
11508 (mapcar (lambda (x)
11509 (if (not (stringp (car x)))
11511 (if (string-match "\\W" (car x))
11513 (cons (concat "\\." (car x) "\\'") (cdr x)))))
11514 list))
11515 (if add-auto-mode
11516 (mapcar (lambda (x) (cons (car x) 'emacs)) auto-mode-alist))))
11518 (defvar ange-ftp-name-format) ; to silence the XEmacs compiler.
11519 (defun org-file-remote-p (file)
11520 "Test whether FILE specifies a location on a remote system.
11521 Return non-nil if the location is indeed remote.
11523 For example, the filename \"/user@host:/foo\" specifies a location
11524 on the system \"/user@host:\"."
11525 (cond ((fboundp 'file-remote-p)
11526 (file-remote-p file))
11527 ((fboundp 'tramp-handle-file-remote-p)
11528 (tramp-handle-file-remote-p file))
11529 ((and (boundp 'ange-ftp-name-format)
11530 (string-match (car ange-ftp-name-format) file))
11531 t)))
11534 ;;;; Refiling
11536 (defun org-get-org-file ()
11537 "Read a filename, with default directory `org-directory'."
11538 (let ((default (or org-default-notes-file remember-data-file)))
11539 (read-file-name (format "File name [%s]: " default)
11540 (file-name-as-directory org-directory)
11541 default)))
11543 (defun org-notes-order-reversed-p ()
11544 "Check if the current file should receive notes in reversed order."
11545 (cond
11546 ((not org-reverse-note-order) nil)
11547 ((eq t org-reverse-note-order) t)
11548 ((not (listp org-reverse-note-order)) nil)
11549 (t (catch 'exit
11550 (dolist (entry org-reverse-note-order)
11551 (if (string-match (car entry) buffer-file-name)
11552 (throw 'exit (cdr entry))))))))
11554 (defvar org-refile-target-table nil
11555 "The list of refile targets, created by `org-refile'.")
11557 (defvar org-agenda-new-buffers nil
11558 "Buffers created to visit agenda files.")
11560 (defvar org-refile-cache nil
11561 "Cache for refile targets.")
11563 (defvar org-refile-markers nil
11564 "All the markers used for caching refile locations.")
11566 (defun org-refile-marker (pos)
11567 "Get a new refile marker, but only if caching is in use."
11568 (if (not org-refile-use-cache)
11570 (let ((m (make-marker)))
11571 (move-marker m pos)
11572 (push m org-refile-markers)
11573 m)))
11575 (defun org-refile-cache-clear ()
11576 "Clear the refile cache and disable all the markers."
11577 (mapc (lambda (m) (move-marker m nil)) org-refile-markers)
11578 (setq org-refile-markers nil)
11579 (setq org-refile-cache nil)
11580 (message "Refile cache has been cleared"))
11582 (defun org-refile-cache-check-set (set)
11583 "Check if all the markers in the cache still have live buffers."
11584 (let (marker)
11585 (catch 'exit
11586 (while (and set (setq marker (nth 3 (pop set))))
11587 ;; If `org-refile-use-outline-path' is 'file, marker may be nil
11588 (when (and marker (null (marker-buffer marker)))
11589 (message "Please regenerate the refile cache with `C-0 C-c C-w'")
11590 (sit-for 3)
11591 (throw 'exit nil)))
11592 t)))
11594 (defun org-refile-cache-put (set &rest identifiers)
11595 "Push the refile targets SET into the cache, under IDENTIFIERS."
11596 (let* ((key (sha1 (prin1-to-string identifiers)))
11597 (entry (assoc key org-refile-cache)))
11598 (if entry
11599 (setcdr entry set)
11600 (push (cons key set) org-refile-cache))))
11602 (defun org-refile-cache-get (&rest identifiers)
11603 "Retrieve the cached value for refile targets given by IDENTIFIERS."
11604 (cond
11605 ((not org-refile-cache) nil)
11606 ((not org-refile-use-cache) (org-refile-cache-clear) nil)
11608 (let ((set (cdr (assoc (sha1 (prin1-to-string identifiers))
11609 org-refile-cache))))
11610 (and set (org-refile-cache-check-set set) set)))))
11612 (defun org-refile-get-targets (&optional default-buffer excluded-entries)
11613 "Produce a table with refile targets."
11614 (let ((case-fold-search nil)
11615 ;; otherwise org confuses "TODO" as a kw and "Todo" as a word
11616 (entries (or org-refile-targets '((nil . (:level . 1)))))
11617 targets tgs txt re files desc descre fast-path-p level pos0)
11618 (message "Getting targets...")
11619 (with-current-buffer (or default-buffer (current-buffer))
11620 (dolist (entry entries)
11621 (setq files (car entry) desc (cdr entry))
11622 (setq fast-path-p nil)
11623 (cond
11624 ((null files) (setq files (list (current-buffer))))
11625 ((eq files 'org-agenda-files)
11626 (setq files (org-agenda-files 'unrestricted)))
11627 ((and (symbolp files) (fboundp files))
11628 (setq files (funcall files)))
11629 ((and (symbolp files) (boundp files))
11630 (setq files (symbol-value files))))
11631 (if (stringp files) (setq files (list files)))
11632 (cond
11633 ((eq (car desc) :tag)
11634 (setq descre (concat "^\\*+[ \t]+.*?:" (regexp-quote (cdr desc)) ":")))
11635 ((eq (car desc) :todo)
11636 (setq descre (concat "^\\*+[ \t]+" (regexp-quote (cdr desc)) "[ \t]")))
11637 ((eq (car desc) :regexp)
11638 (setq descre (cdr desc)))
11639 ((eq (car desc) :level)
11640 (setq descre (concat "^\\*\\{" (number-to-string
11641 (if org-odd-levels-only
11642 (1- (* 2 (cdr desc)))
11643 (cdr desc)))
11644 "\\}[ \t]")))
11645 ((eq (car desc) :maxlevel)
11646 (setq fast-path-p t)
11647 (setq descre (concat "^\\*\\{1," (number-to-string
11648 (if org-odd-levels-only
11649 (1- (* 2 (cdr desc)))
11650 (cdr desc)))
11651 "\\}[ \t]")))
11652 (t (error "Bad refiling target description %s" desc)))
11653 (dolist (f files)
11654 (with-current-buffer
11655 (if (bufferp f) f (org-get-agenda-file-buffer f))
11657 (setq tgs (org-refile-cache-get (buffer-file-name) descre))
11658 (progn
11659 (if (bufferp f) (setq f (buffer-file-name
11660 (buffer-base-buffer f))))
11661 (setq f (and f (expand-file-name f)))
11662 (if (eq org-refile-use-outline-path 'file)
11663 (push (list (file-name-nondirectory f) f nil nil) tgs))
11664 (save-excursion
11665 (save-restriction
11666 (widen)
11667 (goto-char (point-min))
11668 (while (re-search-forward descre nil t)
11669 (goto-char (setq pos0 (point-at-bol)))
11670 (catch 'next
11671 (when org-refile-target-verify-function
11672 (save-match-data
11673 (or (funcall org-refile-target-verify-function)
11674 (throw 'next t))))
11675 (when (and (looking-at org-complex-heading-regexp)
11676 (not (member (match-string 4) excluded-entries))
11677 (match-string 4))
11678 (setq level (org-reduced-level
11679 (- (match-end 1) (match-beginning 1)))
11680 txt (org-link-display-format (match-string 4))
11681 txt (replace-regexp-in-string "\\( *[[0-9]+/?[0-9]*%?]\\)+$" "" txt)
11682 re (format org-complex-heading-regexp-format
11683 (regexp-quote (match-string 4))))
11684 (when org-refile-use-outline-path
11685 (setq txt (mapconcat
11686 'org-protect-slash
11687 (append
11688 (if (eq org-refile-use-outline-path
11689 'file)
11690 (list (file-name-nondirectory
11691 (buffer-file-name
11692 (buffer-base-buffer))))
11693 (if (eq org-refile-use-outline-path
11694 'full-file-path)
11695 (list (buffer-file-name
11696 (buffer-base-buffer)))))
11697 (org-get-outline-path fast-path-p
11698 level txt)
11699 (list txt))
11700 "/")))
11701 (push (list txt f re (org-refile-marker (point)))
11702 tgs)))
11703 (when (= (point) pos0)
11704 ;; verification function has not moved point
11705 (goto-char (point-at-eol))))))))
11706 (when org-refile-use-cache
11707 (org-refile-cache-put tgs (buffer-file-name) descre))
11708 (setq targets (append tgs targets))))))
11709 (message "Getting targets...done")
11710 (nreverse targets)))
11712 (defun org-protect-slash (s)
11713 (while (string-match "/" s)
11714 (setq s (replace-match "\\" t t s)))
11717 (defvar org-olpa (make-vector 20 nil))
11719 (defun org-get-outline-path (&optional fastp level heading)
11720 "Return the outline path to the current entry, as a list.
11722 The parameters FASTP, LEVEL, and HEADING are for use by a scanner
11723 routine which makes outline path derivations for an entire file,
11724 avoiding backtracing. Refile target collection makes use of that."
11725 (if fastp
11726 (progn
11727 (if (> level 19)
11728 (error "Outline path failure, more than 19 levels"))
11729 (loop for i from level upto 19 do
11730 (aset org-olpa i nil))
11731 (prog1
11732 (delq nil (append org-olpa nil))
11733 (aset org-olpa level heading)))
11734 (let (rtn case-fold-search)
11735 (save-excursion
11736 (save-restriction
11737 (widen)
11738 (while (org-up-heading-safe)
11739 (when (looking-at org-complex-heading-regexp)
11740 (push (org-trim
11741 (replace-regexp-in-string
11742 ;; Remove statistical/checkboxes cookies
11743 "\\[[0-9]+%\\]\\|\\[[0-9]+/[0-9]+\\]" ""
11744 (org-match-string-no-properties 4)))
11745 rtn)))
11746 rtn)))))
11748 (defun org-format-outline-path (path &optional width prefix separator)
11749 "Format the outline path PATH for display.
11750 WIDTH is the maximum number of characters that is available.
11751 PREFIX is a prefix to be included in the returned string,
11752 such as the file name.
11753 SEPARATOR is inserted between the different parts of the path,
11754 the default is \"/\"."
11755 (setq width (or width 79))
11756 (setq path (delq nil path))
11757 (unless (> width 0)
11758 (user-error "Argument `width' must be positive"))
11759 (setq separator (or separator "/"))
11760 (let* ((org-odd-levels-only nil)
11761 (fpath (concat
11762 prefix (and prefix path separator)
11763 (mapconcat
11764 (lambda (s) (replace-regexp-in-string "[ \t]+\\'" "" s))
11765 (loop for head in path
11766 for n from 0
11767 collect (org-add-props
11768 head nil 'face
11769 (nth (% n org-n-level-faces) org-level-faces)))
11770 separator))))
11771 (when (> (length fpath) width)
11772 (if (< width 7)
11773 ;; It's unlikely that `width' will be this small, but don't
11774 ;; waste characters by adding ".." if it is.
11775 (setq fpath (substring fpath 0 width))
11776 (setf (substring fpath (- width 2)) "..")))
11777 fpath))
11779 (defun org-display-outline-path (&optional file current separator just-return-string)
11780 "Display the current outline path in the echo area.
11782 If FILE is non-nil, prepend the output with the file name.
11783 If CURRENT is non-nil, append the current heading to the output.
11784 SEPARATOR is passed through to `org-format-outline-path'. It separates
11785 the different parts of the path and defaults to \"/\".
11786 If JUST-RETURN-STRING is non-nil, return a string, don't display a message."
11787 (interactive "P")
11788 (let* (case-fold-search
11789 (bfn (buffer-file-name (buffer-base-buffer)))
11790 (path (and (derived-mode-p 'org-mode) (org-get-outline-path)))
11791 res)
11792 (if current (setq path (append path
11793 (save-excursion
11794 (org-back-to-heading t)
11795 (if (looking-at org-complex-heading-regexp)
11796 (list (match-string 4)))))))
11797 (setq res
11798 (org-format-outline-path
11799 path
11800 (1- (frame-width))
11801 (and file bfn (concat (file-name-nondirectory bfn) separator))
11802 separator))
11803 (if just-return-string
11804 (org-no-properties res)
11805 (org-unlogged-message "%s" res))))
11807 (defvar org-refile-history nil
11808 "History for refiling operations.")
11810 (defvar org-after-refile-insert-hook nil
11811 "Hook run after `org-refile' has inserted its stuff at the new location.
11812 Note that this is still *before* the stuff will be removed from
11813 the *old* location.")
11815 (defvar org-capture-last-stored-marker)
11816 (defvar org-refile-keep nil
11817 "Non-nil means `org-refile' will copy instead of refile.")
11819 (defun org-copy ()
11820 "Like `org-refile', but copy."
11821 (interactive)
11822 (let ((org-refile-keep t))
11823 (funcall 'org-refile nil nil nil "Copy")))
11825 (defun org-refile (&optional arg default-buffer rfloc msg)
11826 "Move the entry or entries at point to another heading.
11827 The list of target headings is compiled using the information in
11828 `org-refile-targets', which see.
11830 At the target location, the entry is filed as a subitem of the
11831 target heading. Depending on `org-reverse-note-order', the new
11832 subitem will either be the first or the last subitem.
11834 If there is an active region, all entries in that region will be
11835 refiled. However, the region must fulfill the requirement that
11836 the first heading sets the top-level of the moved text.
11838 With prefix arg ARG, the command will only visit the target
11839 location and not actually move anything.
11841 With a double prefix arg \\[universal-argument] \\[universal-argument], go to the location where the last
11842 refiling operation has put the subtree.
11844 With a numeric prefix argument of `2', refile to the running clock.
11846 With a numeric prefix argument of `3', emulate `org-refile-keep'
11847 being set to t and copy to the target location, don't move it.
11848 Beware that keeping refiled entries may result in duplicated ID
11849 properties.
11851 RFLOC can be a refile location obtained in a different way.
11853 MSG is a string to replace \"Refile\" in the default prompt with
11854 another verb. E.g. `org-copy' sets this parameter to \"Copy\".
11856 See also `org-refile-use-outline-path' and `org-completion-use-ido'.
11858 If you are using target caching (see `org-refile-use-cache'), you
11859 have to clear the target cache in order to find new targets.
11860 This can be done with a 0 prefix (`C-0 C-c C-w') or a triple
11861 prefix argument (`C-u C-u C-u C-c C-w')."
11862 (interactive "P")
11863 (if (member arg '(0 (64)))
11864 (org-refile-cache-clear)
11865 (let* ((actionmsg (cond (msg msg)
11866 ((equal arg 3) "Refile (and keep)")
11867 (t "Refile")))
11868 (cbuf (current-buffer))
11869 (regionp (org-region-active-p))
11870 (region-start (and regionp (region-beginning)))
11871 (region-end (and regionp (region-end)))
11872 (filename (buffer-file-name (buffer-base-buffer cbuf)))
11873 (org-refile-keep (if (equal arg 3) t org-refile-keep))
11874 pos it nbuf file re level reversed)
11875 (setq last-command nil)
11876 (when regionp
11877 (goto-char region-start)
11878 (or (bolp) (goto-char (point-at-bol)))
11879 (setq region-start (point))
11880 (unless (or (org-kill-is-subtree-p
11881 (buffer-substring region-start region-end))
11882 (prog1 org-refile-active-region-within-subtree
11883 (let ((s (point-at-eol)))
11884 (org-toggle-heading)
11885 (setq region-end (+ (- (point-at-eol) s) region-end)))))
11886 (user-error "The region is not a (sequence of) subtree(s)")))
11887 (if (equal arg '(16))
11888 (org-refile-goto-last-stored)
11889 (when (or
11890 (and (equal arg 2)
11891 org-clock-hd-marker (marker-buffer org-clock-hd-marker)
11892 (prog1
11893 (setq it (list (or org-clock-heading "running clock")
11894 (buffer-file-name
11895 (marker-buffer org-clock-hd-marker))
11897 (marker-position org-clock-hd-marker)))
11898 (setq arg nil)))
11899 (setq it (or rfloc
11900 (let (heading-text)
11901 (save-excursion
11902 (unless (and arg (listp arg))
11903 (org-back-to-heading t)
11904 (setq heading-text
11905 (replace-regexp-in-string
11906 org-bracket-link-regexp
11907 "\\3"
11908 (nth 4 (org-heading-components)))))
11909 (org-refile-get-location
11910 (cond ((and arg (listp arg)) "Goto")
11911 (regionp (concat actionmsg " region to"))
11912 (t (concat actionmsg " subtree \""
11913 heading-text "\" to")))
11914 default-buffer
11915 (and (not (equal '(4) arg))
11916 org-refile-allow-creating-parent-nodes)
11917 arg))))))
11918 (setq file (nth 1 it)
11919 re (nth 2 it)
11920 pos (nth 3 it))
11921 (if (and (not arg)
11923 (equal (buffer-file-name) file)
11924 (if regionp
11925 (and (>= pos region-start)
11926 (<= pos region-end))
11927 (and (>= pos (point))
11928 (< pos (save-excursion
11929 (org-end-of-subtree t t))))))
11930 (error "Cannot refile to position inside the tree or region"))
11931 (setq nbuf (or (find-buffer-visiting file)
11932 (find-file-noselect file)))
11933 (if (and arg (not (equal arg 3)))
11934 (progn
11935 (org-pop-to-buffer-same-window nbuf)
11936 (goto-char pos)
11937 (org-show-context 'org-goto))
11938 (if regionp
11939 (progn
11940 (org-kill-new (buffer-substring region-start region-end))
11941 (org-save-markers-in-region region-start region-end))
11942 (org-copy-subtree 1 nil t))
11943 (with-current-buffer (setq nbuf (or (find-buffer-visiting file)
11944 (find-file-noselect file)))
11945 (setq reversed (org-notes-order-reversed-p))
11946 (save-excursion
11947 (save-restriction
11948 (widen)
11949 (if pos
11950 (progn
11951 (goto-char pos)
11952 (looking-at org-outline-regexp)
11953 (setq level (org-get-valid-level (funcall outline-level) 1))
11954 (goto-char
11955 (if reversed
11956 (or (outline-next-heading) (point-max))
11957 (or (save-excursion (org-get-next-sibling))
11958 (org-end-of-subtree t t)
11959 (point-max)))))
11960 (setq level 1)
11961 (if (not reversed)
11962 (goto-char (point-max))
11963 (goto-char (point-min))
11964 (or (outline-next-heading) (goto-char (point-max)))))
11965 (if (not (bolp)) (newline))
11966 (org-paste-subtree level nil nil t)
11967 (when org-log-refile
11968 (org-add-log-setup 'refile nil nil 'findpos org-log-refile)
11969 (unless (eq org-log-refile 'note)
11970 (save-excursion (org-add-log-note))))
11971 (and org-auto-align-tags
11972 (let ((org-loop-over-headlines-in-active-region nil))
11973 (org-set-tags nil t)))
11974 (let ((bookmark-name (plist-get org-bookmark-names-plist
11975 :last-refile)))
11976 (when bookmark-name
11977 (with-demoted-errors
11978 (bookmark-set bookmark-name))))
11979 ;; If we are refiling for capture, make sure that the
11980 ;; last-capture pointers point here
11981 (when (org-bound-and-true-p org-refile-for-capture)
11982 (let ((bookmark-name (plist-get org-bookmark-names-plist
11983 :last-capture-marker)))
11984 (when bookmark-name
11985 (with-demoted-errors
11986 (bookmark-set bookmark-name))))
11987 (move-marker org-capture-last-stored-marker (point)))
11988 (if (fboundp 'deactivate-mark) (deactivate-mark))
11989 (run-hooks 'org-after-refile-insert-hook))))
11990 (unless org-refile-keep
11991 (if regionp
11992 (delete-region (point) (+ (point) (- region-end region-start)))
11993 (delete-region
11994 (and (org-back-to-heading t) (point))
11995 (min (1+ (buffer-size)) (org-end-of-subtree t t) (point)))))
11996 (when (featurep 'org-inlinetask)
11997 (org-inlinetask-remove-END-maybe))
11998 (setq org-markers-to-move nil)
11999 (message (concat actionmsg " to \"%s\" in file %s: done") (car it) file)))))))
12001 (defun org-refile-goto-last-stored ()
12002 "Go to the location where the last refile was stored."
12003 (interactive)
12004 (bookmark-jump (plist-get org-bookmark-names-plist :last-refile))
12005 (message "This is the location of the last refile"))
12007 (defun org-refile--get-location (refloc tbl)
12008 "When user refile to REFLOC, find the associated target in TBL.
12009 Also check `org-refile-target-table'."
12010 (car (delq
12012 (mapcar
12013 (lambda (r) (or (assoc r tbl)
12014 (assoc r org-refile-target-table)))
12015 (list (replace-regexp-in-string "/$" "" refloc)
12016 (replace-regexp-in-string "\\([^/]\\)$" "\\1/" refloc))))))
12018 (defun org-refile-get-location (&optional prompt default-buffer new-nodes
12019 no-exclude)
12020 "Prompt the user for a refile location, using PROMPT.
12021 PROMPT should not be suffixed with a colon and a space, because
12022 this function appends the default value from
12023 `org-refile-history' automatically, if that is not empty.
12024 When NO-EXCLUDE is set, do not exclude headlines in the current subtree,
12025 this is used for the GOTO interface."
12026 (let ((org-refile-targets org-refile-targets)
12027 (org-refile-use-outline-path org-refile-use-outline-path)
12028 excluded-entries)
12029 (when (and (derived-mode-p 'org-mode)
12030 (not org-refile-use-cache)
12031 (not no-exclude))
12032 (org-map-tree
12033 (lambda()
12034 (setq excluded-entries
12035 (append excluded-entries (list (org-get-heading t t)))))))
12036 (setq org-refile-target-table
12037 (org-refile-get-targets default-buffer excluded-entries)))
12038 (unless org-refile-target-table
12039 (user-error "No refile targets"))
12040 (let* ((cbuf (current-buffer))
12041 (partial-completion-mode nil)
12042 (cfn (buffer-file-name (buffer-base-buffer cbuf)))
12043 (cfunc (if (and org-refile-use-outline-path
12044 org-outline-path-complete-in-steps)
12045 'org-olpath-completing-read
12046 'org-icompleting-read))
12047 (extra (if org-refile-use-outline-path "/" ""))
12048 (cbnex (concat (buffer-name) extra))
12049 (filename (and cfn (expand-file-name cfn)))
12050 (tbl (mapcar
12051 (lambda (x)
12052 (if (and (not (member org-refile-use-outline-path
12053 '(file full-file-path)))
12054 (not (equal filename (nth 1 x))))
12055 (cons (concat (car x) extra " ("
12056 (file-name-nondirectory (nth 1 x)) ")")
12057 (cdr x))
12058 (cons (concat (car x) extra) (cdr x))))
12059 org-refile-target-table))
12060 (completion-ignore-case t)
12061 cdef
12062 (prompt (concat prompt
12063 (or (and (car org-refile-history)
12064 (concat " (default " (car org-refile-history) ")"))
12065 (and (assoc cbnex tbl) (setq cdef cbnex)
12066 (concat " (default " cbnex ")"))) ": "))
12067 pa answ parent-target child parent old-hist)
12068 (setq old-hist org-refile-history)
12069 (setq answ (funcall cfunc prompt tbl nil (not new-nodes)
12070 nil 'org-refile-history (or cdef (car org-refile-history))))
12071 (if (setq pa (org-refile--get-location answ tbl))
12072 (progn
12073 (org-refile-check-position pa)
12074 (when (or (not org-refile-history)
12075 (not (eq old-hist org-refile-history))
12076 (not (equal (car pa) (car org-refile-history))))
12077 (setq org-refile-history
12078 (cons (car pa) (if (assoc (car org-refile-history) tbl)
12079 org-refile-history
12080 (cdr org-refile-history))))
12081 (if (equal (car org-refile-history) (nth 1 org-refile-history))
12082 (pop org-refile-history)))
12084 (if (string-match "\\`\\(.*\\)/\\([^/]+\\)\\'" answ)
12085 (progn
12086 (setq parent (match-string 1 answ)
12087 child (match-string 2 answ))
12088 (setq parent-target (org-refile--get-location parent tbl))
12089 (when (and parent-target
12090 (or (eq new-nodes t)
12091 (and (eq new-nodes 'confirm)
12092 (y-or-n-p (format "Create new node \"%s\"? "
12093 child)))))
12094 (org-refile-new-child parent-target child)))
12095 (user-error "Invalid target location")))))
12097 (declare-function org-string-nw-p "org-macs" (s))
12098 (defun org-refile-check-position (refile-pointer)
12099 "Check if the refile pointer matches the headline to which it points."
12100 (let* ((file (nth 1 refile-pointer))
12101 (re (nth 2 refile-pointer))
12102 (pos (nth 3 refile-pointer))
12103 buffer)
12104 (if (and (not (markerp pos)) (not file))
12105 (user-error "Please indicate a target file in the refile path")
12106 (when (org-string-nw-p re)
12107 (setq buffer (if (markerp pos)
12108 (marker-buffer pos)
12109 (or (find-buffer-visiting file)
12110 (find-file-noselect file))))
12111 (with-current-buffer buffer
12112 (save-excursion
12113 (save-restriction
12114 (widen)
12115 (goto-char pos)
12116 (beginning-of-line 1)
12117 (unless (org-looking-at-p re)
12118 (user-error "Invalid refile position, please clear the cache with `C-0 C-c C-w' before refiling")))))))))
12120 (defun org-refile-new-child (parent-target child)
12121 "Use refile target PARENT-TARGET to add new CHILD below it."
12122 (unless parent-target
12123 (error "Cannot find parent for new node"))
12124 (let ((file (nth 1 parent-target))
12125 (pos (nth 3 parent-target))
12126 level)
12127 (with-current-buffer (or (find-buffer-visiting file)
12128 (find-file-noselect file))
12129 (save-excursion
12130 (save-restriction
12131 (widen)
12132 (if pos
12133 (goto-char pos)
12134 (goto-char (point-max))
12135 (if (not (bolp)) (newline)))
12136 (when (looking-at org-outline-regexp)
12137 (setq level (funcall outline-level))
12138 (org-end-of-subtree t t))
12139 (org-back-over-empty-lines)
12140 (insert "\n" (make-string
12141 (if pos (org-get-valid-level level 1) 1) ?*)
12142 " " child "\n")
12143 (beginning-of-line 0)
12144 (list (concat (car parent-target) "/" child) file "" (point)))))))
12146 (defun org-olpath-completing-read (prompt collection &rest args)
12147 "Read an outline path like a file name."
12148 (let ((thetable collection)
12149 (org-completion-use-ido nil) ; does not work with ido.
12150 (org-completion-use-iswitchb nil)) ; or iswitchb
12151 (apply #'org-icompleting-read
12152 prompt
12153 (lambda (string predicate &optional flag)
12154 (cond
12155 ((eq flag nil) (try-completion string thetable))
12156 ((eq flag t)
12157 (let ((l (length string)))
12158 (mapcar (lambda (x)
12159 (let ((r (substring x l))
12160 (f (if (string-match " ([^)]*)$" x)
12161 (match-string 0 x)
12162 "")))
12163 (if (string-match "/" r)
12164 (concat string (substring r 0 (match-end 0)) f)
12165 x)))
12166 (all-completions string thetable predicate))))
12167 ;; Exact match?
12168 ((eq flag 'lambda) (assoc string thetable))))
12169 args)))
12171 ;;;; Dynamic blocks
12173 (defun org-find-dblock (name)
12174 "Find the first dynamic block with name NAME in the buffer.
12175 If not found, stay at current position and return nil."
12176 (let ((case-fold-search t) pos)
12177 (save-excursion
12178 (goto-char (point-min))
12179 (setq pos (and (re-search-forward
12180 (concat "^[ \t]*#\\+\\(?:BEGIN\\|begin\\):[ \t]+" name "\\>") nil t)
12181 (match-beginning 0))))
12182 (if pos (goto-char pos))
12183 pos))
12185 (defun org-create-dblock (plist)
12186 "Create a dynamic block section, with parameters taken from PLIST.
12187 PLIST must contain a :name entry which is used as the name of the block."
12188 (when (string-match "\\S-" (buffer-substring (point-at-bol) (point-at-eol)))
12189 (end-of-line 1)
12190 (newline))
12191 (let ((col (current-column))
12192 (name (plist-get plist :name)))
12193 (insert "#+BEGIN: " name)
12194 (while plist
12195 (if (eq (car plist) :name)
12196 (setq plist (cddr plist))
12197 (insert " " (prin1-to-string (pop plist)))))
12198 (insert "\n\n" (make-string col ?\ ) "#+END:\n")
12199 (beginning-of-line -2)))
12201 (defun org-prepare-dblock ()
12202 "Prepare dynamic block for refresh.
12203 This empties the block, puts the cursor at the insert position and returns
12204 the property list including an extra property :name with the block name."
12205 (unless (looking-at org-dblock-start-re)
12206 (user-error "Not at a dynamic block"))
12207 (let* ((begdel (1+ (match-end 0)))
12208 (name (org-no-properties (match-string 1)))
12209 (params (append (list :name name)
12210 (read (concat "(" (match-string 3) ")")))))
12211 (save-excursion
12212 (beginning-of-line 1)
12213 (skip-chars-forward " \t")
12214 (setq params (plist-put params :indentation-column (current-column))))
12215 (unless (re-search-forward org-dblock-end-re nil t)
12216 (error "Dynamic block not terminated"))
12217 (setq params
12218 (append params
12219 (list :content (buffer-substring
12220 begdel (match-beginning 0)))))
12221 (delete-region begdel (match-beginning 0))
12222 (goto-char begdel)
12223 (open-line 1)
12224 params))
12226 (defun org-map-dblocks (&optional command)
12227 "Apply COMMAND to all dynamic blocks in the current buffer.
12228 If COMMAND is not given, use `org-update-dblock'."
12229 (let ((cmd (or command 'org-update-dblock)))
12230 (save-excursion
12231 (goto-char (point-min))
12232 (while (re-search-forward org-dblock-start-re nil t)
12233 (goto-char (match-beginning 0))
12234 (save-excursion
12235 (condition-case nil
12236 (funcall cmd)
12237 (error (message "Error during update of dynamic block"))))
12238 (unless (re-search-forward org-dblock-end-re nil t)
12239 (error "Dynamic block not terminated"))))))
12241 (defun org-dblock-update (&optional arg)
12242 "User command for updating dynamic blocks.
12243 Update the dynamic block at point. With prefix ARG, update all dynamic
12244 blocks in the buffer."
12245 (interactive "P")
12246 (if arg
12247 (org-update-all-dblocks)
12248 (or (looking-at org-dblock-start-re)
12249 (org-beginning-of-dblock))
12250 (org-update-dblock)))
12252 (defun org-update-dblock ()
12253 "Update the dynamic block at point.
12254 This means to empty the block, parse for parameters and then call
12255 the correct writing function."
12256 (interactive)
12257 (save-excursion
12258 (let* ((win (selected-window))
12259 (pos (point))
12260 (line (org-current-line))
12261 (params (org-prepare-dblock))
12262 (name (plist-get params :name))
12263 (indent (plist-get params :indentation-column))
12264 (cmd (intern (concat "org-dblock-write:" name))))
12265 (message "Updating dynamic block `%s' at line %d..." name line)
12266 (funcall cmd params)
12267 (message "Updating dynamic block `%s' at line %d...done" name line)
12268 (goto-char pos)
12269 (when (and indent (> indent 0))
12270 (setq indent (make-string indent ?\ ))
12271 (save-excursion
12272 (select-window win)
12273 (org-beginning-of-dblock)
12274 (forward-line 1)
12275 (while (not (looking-at org-dblock-end-re))
12276 (insert indent)
12277 (beginning-of-line 2))
12278 (when (looking-at org-dblock-end-re)
12279 (and (looking-at "[ \t]+")
12280 (replace-match ""))
12281 (insert indent)))))))
12283 (defun org-beginning-of-dblock ()
12284 "Find the beginning of the dynamic block at point.
12285 Error if there is no such block at point."
12286 (let ((pos (point))
12287 beg)
12288 (end-of-line 1)
12289 (if (and (re-search-backward org-dblock-start-re nil t)
12290 (setq beg (match-beginning 0))
12291 (re-search-forward org-dblock-end-re nil t)
12292 (> (match-end 0) pos))
12293 (goto-char beg)
12294 (goto-char pos)
12295 (error "Not in a dynamic block"))))
12297 (defun org-update-all-dblocks ()
12298 "Update all dynamic blocks in the buffer.
12299 This function can be used in a hook."
12300 (interactive)
12301 (when (derived-mode-p 'org-mode)
12302 (org-map-dblocks 'org-update-dblock)))
12305 ;;;; Completion
12307 (declare-function org-export-backend-name "org-export" (cl-x))
12308 (declare-function org-export-backend-options "org-export" (cl-x))
12309 (defun org-get-export-keywords ()
12310 "Return a list of all currently understood export keywords.
12311 Export keywords include options, block names, attributes and
12312 keywords relative to each registered export back-end."
12313 (let (keywords)
12314 (dolist (backend
12315 (org-bound-and-true-p org-export-registered-backends)
12316 (delq nil keywords))
12317 ;; Back-end name (for keywords, like #+LATEX:)
12318 (push (upcase (symbol-name (org-export-backend-name backend))) keywords)
12319 (dolist (option-entry (org-export-backend-options backend))
12320 ;; Back-end options.
12321 (push (nth 1 option-entry) keywords)))))
12323 (defconst org-options-keywords
12324 '("ARCHIVE:" "AUTHOR:" "BIND:" "CATEGORY:" "COLUMNS:" "CREATOR:" "DATE:"
12325 "DESCRIPTION:" "DRAWERS:" "EMAIL:" "EXCLUDE_TAGS:" "FILETAGS:" "INCLUDE:"
12326 "INDEX:" "KEYWORDS:" "LANGUAGE:" "MACRO:" "OPTIONS:" "PROPERTY:"
12327 "PRIORITIES:" "SELECT_TAGS:" "SEQ_TODO:" "SETUPFILE:" "STARTUP:" "TAGS:"
12328 "TITLE:" "TODO:" "TYP_TODO:" "SELECT_TAGS:" "EXCLUDE_TAGS:"))
12330 (defcustom org-structure-template-alist
12331 '(("s" "#+BEGIN_SRC ?\n\n#+END_SRC")
12332 ("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE")
12333 ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE")
12334 ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE")
12335 ("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM")
12336 ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER")
12337 ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX")
12338 ("L" "#+LaTeX: ")
12339 ("h" "#+BEGIN_HTML\n?\n#+END_HTML")
12340 ("H" "#+HTML: ")
12341 ("a" "#+BEGIN_ASCII\n?\n#+END_ASCII")
12342 ("A" "#+ASCII: ")
12343 ("i" "#+INDEX: ?")
12344 ("I" "#+INCLUDE: %file ?"))
12345 "Structure completion elements.
12346 This is a list of abbreviation keys and values. The value gets inserted
12347 if you type `<' followed by the key and then press the completion key,
12348 usually `TAB'. %file will be replaced by a file name after prompting
12349 for the file using completion. The cursor will be placed at the position
12350 of the `?' in the template.
12351 There are two templates for each key, the first uses the original Org syntax,
12352 the second uses Emacs Muse-like syntax tags. These Muse-like tags become
12353 the default when the /org-mtags.el/ module has been loaded. See also the
12354 variable `org-mtags-prefer-muse-templates'."
12355 :group 'org-completion
12356 :type '(repeat
12357 (list
12358 (string :tag "Key")
12359 (string :tag "Template")))
12360 :version "25.1"
12361 :package-version '(Org . "8.3"))
12363 (defun org-try-structure-completion ()
12364 "Try to complete a structure template before point.
12365 This looks for strings like \"<e\" on an otherwise empty line and
12366 expands them."
12367 (let ((l (buffer-substring (point-at-bol) (point)))
12369 (when (and (looking-at "[ \t]*$")
12370 (string-match "^[ \t]*<\\([a-zA-Z]+\\)$" l)
12371 (setq a (assoc (match-string 1 l) org-structure-template-alist)))
12372 (org-complete-expand-structure-template (+ -1 (point-at-bol)
12373 (match-beginning 1)) a)
12374 t)))
12376 (defun org-complete-expand-structure-template (start cell)
12377 "Expand a structure template."
12378 (let ((rpl (nth 1 cell))
12379 (ind ""))
12380 (delete-region start (point))
12381 (when (string-match "\\`[ \t]*#\\+" rpl)
12382 (cond
12383 ((bolp))
12384 ((not (string-match "\\S-" (buffer-substring (point-at-bol) (point))))
12385 (setq ind (buffer-substring (point-at-bol) (point))))
12386 (t (newline))))
12387 (setq start (point))
12388 (if (string-match "%file" rpl)
12389 (setq rpl (replace-match
12390 (concat
12391 "\""
12392 (save-match-data
12393 (abbreviate-file-name (read-file-name "Include file: ")))
12394 "\"")
12395 t t rpl)))
12396 (setq rpl (mapconcat 'identity (split-string rpl "\n")
12397 (concat "\n" ind)))
12398 (insert rpl)
12399 (if (re-search-backward "\\?" start t) (delete-char 1))))
12401 ;;;; TODO, DEADLINE, Comments
12403 (defun org-toggle-comment ()
12404 "Change the COMMENT state of an entry."
12405 (interactive)
12406 (save-excursion
12407 (org-back-to-heading)
12408 (looking-at org-complex-heading-regexp)
12409 (goto-char (or (match-end 3) (match-end 2) (match-end 1)))
12410 (skip-chars-forward " \t")
12411 (unless (memq (char-before) '(?\s ?\t)) (insert " "))
12412 (if (org-in-commented-heading-p t)
12413 (delete-region (point)
12414 (progn (search-forward " " (line-end-position) 'move)
12415 (skip-chars-forward " \t")
12416 (point)))
12417 (insert org-comment-string)
12418 (unless (eolp) (insert " ")))))
12420 (defvar org-last-todo-state-is-todo nil
12421 "This is non-nil when the last TODO state change led to a TODO state.
12422 If the last change removed the TODO tag or switched to DONE, then
12423 this is nil.")
12425 (defvar org-setting-tags nil) ; dynamically skipped
12427 (defvar org-todo-setup-filter-hook nil
12428 "Hook for functions that pre-filter todo specs.
12429 Each function takes a todo spec and returns either nil or the spec
12430 transformed into canonical form." )
12432 (defvar org-todo-get-default-hook nil
12433 "Hook for functions that get a default item for todo.
12434 Each function takes arguments (NEW-MARK OLD-MARK) and returns either
12435 nil or a string to be used for the todo mark." )
12437 (defvar org-agenda-headline-snapshot-before-repeat)
12439 (defun org-current-effective-time ()
12440 "Return current time adjusted for `org-extend-today-until' variable."
12441 (let* ((ct (org-current-time))
12442 (dct (decode-time ct))
12443 (ct1
12444 (cond
12445 (org-use-last-clock-out-time-as-effective-time
12446 (or (org-clock-get-last-clock-out-time) ct))
12447 ((and org-use-effective-time (< (nth 2 dct) org-extend-today-until))
12448 (encode-time 0 59 23 (1- (nth 3 dct)) (nth 4 dct) (nth 5 dct)))
12449 (t ct))))
12450 ct1))
12452 (defun org-todo-yesterday (&optional arg)
12453 "Like `org-todo' but the time of change will be 23:59 of yesterday."
12454 (interactive "P")
12455 (if (eq major-mode 'org-agenda-mode)
12456 (apply 'org-agenda-todo-yesterday arg)
12457 (let* ((org-use-effective-time t)
12458 (hour (third (decode-time
12459 (org-current-time))))
12460 (org-extend-today-until (1+ hour)))
12461 (org-todo arg))))
12463 (defvar org-block-entry-blocking ""
12464 "First entry preventing the TODO state change.")
12466 (defun org-cancel-repeater ()
12467 "Cancel a repeater by setting its numeric value to zero."
12468 (interactive)
12469 (save-excursion
12470 (org-back-to-heading t)
12471 (let ((bound1 (point))
12472 (bound0 (save-excursion (outline-next-heading) (point))))
12473 (when (re-search-forward
12474 (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
12475 org-deadline-time-regexp "\\)\\|\\("
12476 org-ts-regexp "\\)")
12477 bound0 t)
12478 (if (re-search-backward "[ \t]+\\(?:[.+]\\)?\\+\\([0-9]+\\)[hdwmy]" bound1 t)
12479 (replace-match "0" t nil nil 1))))))
12481 (defun org-todo (&optional arg)
12482 "Change the TODO state of an item.
12483 The state of an item is given by a keyword at the start of the heading,
12484 like
12485 *** TODO Write paper
12486 *** DONE Call mom
12488 The different keywords are specified in the variable `org-todo-keywords'.
12489 By default the available states are \"TODO\" and \"DONE\".
12490 So for this example: when the item starts with TODO, it is changed to DONE.
12491 When it starts with DONE, the DONE is removed. And when neither TODO nor
12492 DONE are present, add TODO at the beginning of the heading.
12494 With \\[universal-argument] prefix arg, use completion to determine the new \
12495 state.
12496 With numeric prefix arg, switch to that state.
12497 With a double \\[universal-argument] prefix, switch to the next set of TODO \
12498 keywords (nextset).
12499 With a triple \\[universal-argument] prefix, circumvent any state blocking.
12500 With a numeric prefix arg of 0, inhibit note taking for the change.
12501 With a numeric prefix arg of -1, cancel repeater to allow marking as DONE.
12503 When called through ELisp, arg is also interpreted in the following way:
12504 `none' -> empty state
12505 \"\"(empty string) -> switch to empty state
12506 `done' -> switch to DONE
12507 `nextset' -> switch to the next set of keywords
12508 `previousset' -> switch to the previous set of keywords
12509 \"WAITING\" -> switch to the specified keyword, but only if it
12510 really is a member of `org-todo-keywords'."
12511 (interactive "P")
12512 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
12513 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
12514 'region-start-level 'region))
12515 org-loop-over-headlines-in-active-region)
12516 (org-map-entries
12517 `(org-todo ,arg)
12518 org-loop-over-headlines-in-active-region
12519 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
12520 (if (equal arg '(16)) (setq arg 'nextset))
12521 (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
12522 (let ((org-blocker-hook org-blocker-hook)
12523 commentp
12524 case-fold-search)
12525 (when (equal arg '(64))
12526 (setq arg nil org-blocker-hook nil))
12527 (when (and org-blocker-hook
12528 (or org-inhibit-blocking
12529 (org-entry-get nil "NOBLOCKING")))
12530 (setq org-blocker-hook nil))
12531 (save-excursion
12532 (catch 'exit
12533 (org-back-to-heading t)
12534 (when (org-in-commented-heading-p t)
12535 (org-toggle-comment)
12536 (setq commentp t))
12537 (if (looking-at org-outline-regexp) (goto-char (1- (match-end 0))))
12538 (or (looking-at (concat " +" org-todo-regexp "\\( +\\|[ \t]*$\\)"))
12539 (looking-at "\\(?: *\\|[ \t]*$\\)"))
12540 (let* ((match-data (match-data))
12541 (startpos (point-at-bol))
12542 (logging (save-match-data (org-entry-get nil "LOGGING" t t)))
12543 (org-log-done org-log-done)
12544 (org-log-repeat org-log-repeat)
12545 (org-todo-log-states org-todo-log-states)
12546 (org-inhibit-logging
12547 (if (equal arg 0)
12548 (progn (setq arg nil) 'note) org-inhibit-logging))
12549 (this (match-string 1))
12550 (hl-pos (match-beginning 0))
12551 (head (org-get-todo-sequence-head this))
12552 (ass (assoc head org-todo-kwd-alist))
12553 (interpret (nth 1 ass))
12554 (done-word (nth 3 ass))
12555 (final-done-word (nth 4 ass))
12556 (org-last-state (or this ""))
12557 (completion-ignore-case t)
12558 (member (member this org-todo-keywords-1))
12559 (tail (cdr member))
12560 (org-state (cond
12561 ((and org-todo-key-trigger
12562 (or (and (equal arg '(4))
12563 (eq org-use-fast-todo-selection 'prefix))
12564 (and (not arg) org-use-fast-todo-selection
12565 (not (eq org-use-fast-todo-selection
12566 'prefix)))))
12567 ;; Use fast selection
12568 (org-fast-todo-selection))
12569 ((and (equal arg '(4))
12570 (or (not org-use-fast-todo-selection)
12571 (not org-todo-key-trigger)))
12572 ;; Read a state with completion
12573 (org-icompleting-read
12574 "State: " (mapcar 'list org-todo-keywords-1)
12575 nil t))
12576 ((eq arg 'right)
12577 (if this
12578 (if tail (car tail) nil)
12579 (car org-todo-keywords-1)))
12580 ((eq arg 'left)
12581 (if (equal member org-todo-keywords-1)
12583 (if this
12584 (nth (- (length org-todo-keywords-1)
12585 (length tail) 2)
12586 org-todo-keywords-1)
12587 (org-last org-todo-keywords-1))))
12588 ((and (eq org-use-fast-todo-selection t) (equal arg '(4))
12589 (setq arg nil))) ; hack to fall back to cycling
12590 (arg
12591 ;; user or caller requests a specific state
12592 (cond
12593 ((equal arg "") nil)
12594 ((eq arg 'none) nil)
12595 ((eq arg 'done) (or done-word (car org-done-keywords)))
12596 ((eq arg 'nextset)
12597 (or (car (cdr (member head org-todo-heads)))
12598 (car org-todo-heads)))
12599 ((eq arg 'previousset)
12600 (let ((org-todo-heads (reverse org-todo-heads)))
12601 (or (car (cdr (member head org-todo-heads)))
12602 (car org-todo-heads))))
12603 ((car (member arg org-todo-keywords-1)))
12604 ((stringp arg)
12605 (user-error "State `%s' not valid in this file" arg))
12606 ((nth (1- (prefix-numeric-value arg))
12607 org-todo-keywords-1))))
12608 ((null member) (or head (car org-todo-keywords-1)))
12609 ((equal this final-done-word) nil) ;; -> make empty
12610 ((null tail) nil) ;; -> first entry
12611 ((memq interpret '(type priority))
12612 (if (eq this-command last-command)
12613 (car tail)
12614 (if (> (length tail) 0)
12615 (or done-word (car org-done-keywords))
12616 nil)))
12618 (car tail))))
12619 (org-state (or
12620 (run-hook-with-args-until-success
12621 'org-todo-get-default-hook org-state org-last-state)
12622 org-state))
12623 (next (if org-state (concat " " org-state " ") " "))
12624 (change-plist (list :type 'todo-state-change :from this :to org-state
12625 :position startpos))
12626 dolog now-done-p)
12627 (when org-blocker-hook
12628 (setq org-last-todo-state-is-todo
12629 (not (member this org-done-keywords)))
12630 (unless (save-excursion
12631 (save-match-data
12632 (org-with-wide-buffer
12633 (run-hook-with-args-until-failure
12634 'org-blocker-hook change-plist))))
12635 (if (org-called-interactively-p 'interactive)
12636 (user-error "TODO state change from %s to %s blocked (by \"%s\")"
12637 this org-state org-block-entry-blocking)
12638 ;; fail silently
12639 (message "TODO state change from %s to %s blocked (by \"%s\")"
12640 this org-state org-block-entry-blocking)
12641 (throw 'exit nil))))
12642 (store-match-data match-data)
12643 (replace-match next t t)
12644 (cond ((equal this org-state)
12645 (message "TODO state was already %s" (org-trim next)))
12646 ((pos-visible-in-window-p hl-pos)
12647 (message "TODO state changed to %s" (org-trim next))))
12648 (unless head
12649 (setq head (org-get-todo-sequence-head org-state)
12650 ass (assoc head org-todo-kwd-alist)
12651 interpret (nth 1 ass)
12652 done-word (nth 3 ass)
12653 final-done-word (nth 4 ass)))
12654 (when (memq arg '(nextset previousset))
12655 (message "Keyword-Set %d/%d: %s"
12656 (- (length org-todo-sets) -1
12657 (length (memq (assoc org-state org-todo-sets) org-todo-sets)))
12658 (length org-todo-sets)
12659 (mapconcat 'identity (assoc org-state org-todo-sets) " ")))
12660 (setq org-last-todo-state-is-todo
12661 (not (member org-state org-done-keywords)))
12662 (setq now-done-p (and (member org-state org-done-keywords)
12663 (not (member this org-done-keywords))))
12664 (and logging (org-local-logging logging))
12665 (when (and (or org-todo-log-states org-log-done)
12666 (not (eq org-inhibit-logging t))
12667 (not (memq arg '(nextset previousset))))
12668 ;; we need to look at recording a time and note
12669 (setq dolog (or (nth 1 (assoc org-state org-todo-log-states))
12670 (nth 2 (assoc this org-todo-log-states))))
12671 (if (and (eq dolog 'note) (eq org-inhibit-logging 'note))
12672 (setq dolog 'time))
12673 (when (or (and (not org-state) (not org-closed-keep-when-no-todo))
12674 (and org-state
12675 (member org-state org-not-done-keywords)
12676 (not (member this org-not-done-keywords))))
12677 ;; This is now a todo state and was not one before
12678 ;; If there was a CLOSED time stamp, get rid of it.
12679 (org-add-planning-info nil nil 'closed))
12680 (when (and now-done-p org-log-done)
12681 ;; It is now done, and it was not done before
12682 (org-add-planning-info 'closed (org-current-effective-time))
12683 (if (and (not dolog) (eq 'note org-log-done))
12684 (org-add-log-setup 'done org-state this 'findpos 'note)))
12685 (when (and org-state dolog)
12686 ;; This is a non-nil state, and we need to log it
12687 (org-add-log-setup 'state org-state this 'findpos dolog)))
12688 ;; Fixup tag positioning
12689 (org-todo-trigger-tag-changes org-state)
12690 (and org-auto-align-tags (not org-setting-tags) (org-set-tags nil t))
12691 (when org-provide-todo-statistics
12692 (org-update-parent-todo-statistics))
12693 (run-hooks 'org-after-todo-state-change-hook)
12694 (if (and arg (not (member org-state org-done-keywords)))
12695 (setq head (org-get-todo-sequence-head org-state)))
12696 (put-text-property (point-at-bol) (point-at-eol) 'org-todo-head head)
12697 ;; Do we need to trigger a repeat?
12698 (when now-done-p
12699 (when (boundp 'org-agenda-headline-snapshot-before-repeat)
12700 ;; This is for the agenda, take a snapshot of the headline.
12701 (save-match-data
12702 (setq org-agenda-headline-snapshot-before-repeat
12703 (org-get-heading))))
12704 (org-auto-repeat-maybe org-state))
12705 ;; Fixup cursor location if close to the keyword
12706 (if (and (outline-on-heading-p)
12707 (not (bolp))
12708 (save-excursion (beginning-of-line 1)
12709 (looking-at org-todo-line-regexp))
12710 (< (point) (+ 2 (or (match-end 2) (match-end 1)))))
12711 (progn
12712 (goto-char (or (match-end 2) (match-end 1)))
12713 (and (looking-at " ") (just-one-space))))
12714 (when org-trigger-hook
12715 (save-excursion
12716 (run-hook-with-args 'org-trigger-hook change-plist)))
12717 (when commentp (org-toggle-comment))))))))
12719 (defun org-block-todo-from-children-or-siblings-or-parent (change-plist)
12720 "Block turning an entry into a TODO, using the hierarchy.
12721 This checks whether the current task should be blocked from state
12722 changes. Such blocking occurs when:
12724 1. The task has children which are not all in a completed state.
12726 2. A task has a parent with the property :ORDERED:, and there
12727 are siblings prior to the current task with incomplete
12728 status.
12730 3. The parent of the task is blocked because it has siblings that should
12731 be done first, or is child of a block grandparent TODO entry."
12733 (if (not org-enforce-todo-dependencies)
12734 t ; if locally turned off don't block
12735 (catch 'dont-block
12736 ;; If this is not a todo state change, or if this entry is already DONE,
12737 ;; do not block
12738 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12739 (member (plist-get change-plist :from)
12740 (cons 'done org-done-keywords))
12741 (member (plist-get change-plist :to)
12742 (cons 'todo org-not-done-keywords))
12743 (not (plist-get change-plist :to)))
12744 (throw 'dont-block t))
12745 ;; If this task has children, and any are undone, it's blocked
12746 (save-excursion
12747 (org-back-to-heading t)
12748 (let ((this-level (funcall outline-level)))
12749 (outline-next-heading)
12750 (let ((child-level (funcall outline-level)))
12751 (while (and (not (eobp))
12752 (> child-level this-level))
12753 ;; this todo has children, check whether they are all
12754 ;; completed
12755 (if (and (not (org-entry-is-done-p))
12756 (org-entry-is-todo-p))
12757 (progn (setq org-block-entry-blocking (org-get-heading))
12758 (throw 'dont-block nil)))
12759 (outline-next-heading)
12760 (setq child-level (funcall outline-level))))))
12761 ;; Otherwise, if the task's parent has the :ORDERED: property, and
12762 ;; any previous siblings are undone, it's blocked
12763 (save-excursion
12764 (org-back-to-heading t)
12765 (let* ((pos (point))
12766 (parent-pos (and (org-up-heading-safe) (point))))
12767 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12768 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12769 (forward-line 1)
12770 (re-search-forward org-not-done-heading-regexp pos t))
12771 (setq org-block-entry-blocking (match-string 0))
12772 (throw 'dont-block nil)) ; block, there is an older sibling not done.
12773 ;; Search further up the hierarchy, to see if an ancestor is blocked
12774 (while t
12775 (goto-char parent-pos)
12776 (if (not (looking-at org-not-done-heading-regexp))
12777 (throw 'dont-block t)) ; do not block, parent is not a TODO
12778 (setq pos (point))
12779 (setq parent-pos (and (org-up-heading-safe) (point)))
12780 (if (not parent-pos) (throw 'dont-block t)) ; no parent
12781 (when (and (org-not-nil (org-entry-get (point) "ORDERED"))
12782 (forward-line 1)
12783 (re-search-forward org-not-done-heading-regexp pos t)
12784 (setq org-block-entry-blocking (org-get-heading)))
12785 (throw 'dont-block nil)))))))) ; block, older sibling not done.
12787 (defcustom org-track-ordered-property-with-tag nil
12788 "Should the ORDERED property also be shown as a tag?
12789 The ORDERED property decides if an entry should require subtasks to be
12790 completed in sequence. Since a property is not very visible, setting
12791 this option means that toggling the ORDERED property with the command
12792 `org-toggle-ordered-property' will also toggle a tag ORDERED. That tag is
12793 not relevant for the behavior, but it makes things more visible.
12795 Note that toggling the tag with tags commands will not change the property
12796 and therefore not influence behavior!
12798 This can be t, meaning the tag ORDERED should be used, It can also be a
12799 string to select a different tag for this task."
12800 :group 'org-todo
12801 :type '(choice
12802 (const :tag "No tracking" nil)
12803 (const :tag "Track with ORDERED tag" t)
12804 (string :tag "Use other tag")))
12806 (defun org-toggle-ordered-property ()
12807 "Toggle the ORDERED property of the current entry.
12808 For better visibility, you can track the value of this property with a tag.
12809 See variable `org-track-ordered-property-with-tag'."
12810 (interactive)
12811 (let* ((t1 org-track-ordered-property-with-tag)
12812 (tag (and t1 (if (stringp t1) t1 "ORDERED"))))
12813 (save-excursion
12814 (org-back-to-heading)
12815 (if (org-entry-get nil "ORDERED")
12816 (progn
12817 (org-delete-property "ORDERED")
12818 (and tag (org-toggle-tag tag 'off))
12819 (message "Subtasks can be completed in arbitrary order"))
12820 (org-entry-put nil "ORDERED" "t")
12821 (and tag (org-toggle-tag tag 'on))
12822 (message "Subtasks must be completed in sequence")))))
12824 (defvar org-blocked-by-checkboxes) ; dynamically scoped
12825 (defun org-block-todo-from-checkboxes (change-plist)
12826 "Block turning an entry into a TODO, using checkboxes.
12827 This checks whether the current task should be blocked from state
12828 changes because there are unchecked boxes in this entry."
12829 (if (not org-enforce-todo-checkbox-dependencies)
12830 t ; if locally turned off don't block
12831 (catch 'dont-block
12832 ;; If this is not a todo state change, or if this entry is already DONE,
12833 ;; do not block
12834 (when (or (not (eq (plist-get change-plist :type) 'todo-state-change))
12835 (member (plist-get change-plist :from)
12836 (cons 'done org-done-keywords))
12837 (member (plist-get change-plist :to)
12838 (cons 'todo org-not-done-keywords))
12839 (not (plist-get change-plist :to)))
12840 (throw 'dont-block t))
12841 ;; If this task has checkboxes that are not checked, it's blocked
12842 (save-excursion
12843 (org-back-to-heading t)
12844 (let ((beg (point)) end)
12845 (outline-next-heading)
12846 (setq end (point))
12847 (goto-char beg)
12848 (if (org-list-search-forward
12849 (concat (org-item-beginning-re)
12850 "\\(?:\\[@\\(?:start:\\)?\\([0-9]+\\|[A-Za-z]\\)\\][ \t]*\\)?"
12851 "\\[[- ]\\]")
12852 end t)
12853 (progn
12854 (if (boundp 'org-blocked-by-checkboxes)
12855 (setq org-blocked-by-checkboxes t))
12856 (throw 'dont-block nil)))))
12857 t))) ; do not block
12859 (defun org-entry-blocked-p ()
12860 "Non-nil if entry at point is blocked."
12861 (and (not (org-entry-get nil "NOBLOCKING"))
12862 (member (org-entry-get nil "TODO") org-not-done-keywords)
12863 (not (run-hook-with-args-until-failure
12864 'org-blocker-hook
12865 (list :type 'todo-state-change
12866 :position (point)
12867 :from 'todo
12868 :to 'done)))))
12870 (defun org-update-statistics-cookies (all)
12871 "Update the statistics cookie, either from TODO or from checkboxes.
12872 This should be called with the cursor in a line with a statistics cookie."
12873 (interactive "P")
12874 (if all
12875 (progn
12876 (org-update-checkbox-count 'all)
12877 (org-map-entries 'org-update-parent-todo-statistics))
12878 (if (not (org-at-heading-p))
12879 (org-update-checkbox-count)
12880 (let ((pos (point-marker))
12881 end l1 l2)
12882 (ignore-errors (org-back-to-heading t))
12883 (if (not (org-at-heading-p))
12884 (org-update-checkbox-count)
12885 (setq l1 (org-outline-level))
12886 (setq end (save-excursion
12887 (outline-next-heading)
12888 (if (org-at-heading-p) (setq l2 (org-outline-level)))
12889 (point)))
12890 (if (and (save-excursion
12891 (re-search-forward
12892 "^[ \t]*\\([-+*]\\|[0-9]+[.)]\\) \\[[- X]\\]" end t))
12893 (not (save-excursion (re-search-forward
12894 ":COOKIE_DATA:.*\\<todo\\>" end t))))
12895 (org-update-checkbox-count)
12896 (if (and l2 (> l2 l1))
12897 (progn
12898 (goto-char end)
12899 (org-update-parent-todo-statistics))
12900 (goto-char pos)
12901 (beginning-of-line 1)
12902 (while (re-search-forward
12903 "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)"
12904 (point-at-eol) t)
12905 (replace-match (if (match-end 2) "[100%]" "[0/0]") t t)))))
12906 (goto-char pos)
12907 (move-marker pos nil)))))
12909 (defvar org-entry-property-inherited-from) ;; defined below
12910 (defun org-update-parent-todo-statistics ()
12911 "Update any statistics cookie in the parent of the current headline.
12912 When `org-hierarchical-todo-statistics' is nil, statistics will cover
12913 the entire subtree and this will travel up the hierarchy and update
12914 statistics everywhere."
12915 (let* ((prop (save-excursion (org-up-heading-safe)
12916 (org-entry-get nil "COOKIE_DATA" 'inherit)))
12917 (recursive (or (not org-hierarchical-todo-statistics)
12918 (and prop (string-match "\\<recursive\\>" prop))))
12919 (lim (or (and prop (marker-position org-entry-property-inherited-from))
12921 (first t)
12922 (box-re "\\(\\(\\[[0-9]*%\\]\\)\\|\\(\\[[0-9]*/[0-9]*\\]\\)\\)")
12923 level ltoggle l1 new ndel
12924 (cnt-all 0) (cnt-done 0) is-percent kwd
12925 checkbox-beg ov ovs ove cookie-present)
12926 (catch 'exit
12927 (save-excursion
12928 (beginning-of-line 1)
12929 (setq ltoggle (funcall outline-level))
12930 ;; Three situations are to consider:
12932 ;; 1. if `org-hierarchical-todo-statistics' is nil, repeat up
12933 ;; to the top-level ancestor on the headline;
12935 ;; 2. If parent has "recursive" property, repeat up to the
12936 ;; headline setting that property, taking inheritance into
12937 ;; account;
12939 ;; 3. Else, move up to direct parent and proceed only once.
12940 (while (and (setq level (org-up-heading-safe))
12941 (or recursive first)
12942 (>= (point) lim))
12943 (setq first nil cookie-present nil)
12944 (unless (and level
12945 (not (string-match
12946 "\\<checkbox\\>"
12947 (downcase (or (org-entry-get nil "COOKIE_DATA")
12948 "")))))
12949 (throw 'exit nil))
12950 (while (re-search-forward box-re (point-at-eol) t)
12951 (setq cnt-all 0 cnt-done 0 cookie-present t)
12952 (setq is-percent (match-end 2) checkbox-beg (match-beginning 0))
12953 (save-match-data
12954 (unless (outline-next-heading) (throw 'exit nil))
12955 (while (and (looking-at org-complex-heading-regexp)
12956 (> (setq l1 (length (match-string 1))) level))
12957 (setq kwd (and (or recursive (= l1 ltoggle))
12958 (match-string 2)))
12959 (if (or (eq org-provide-todo-statistics 'all-headlines)
12960 (and (eq org-provide-todo-statistics t)
12961 (or (member kwd org-done-keywords)))
12962 (and (listp org-provide-todo-statistics)
12963 (stringp (car org-provide-todo-statistics))
12964 (or (member kwd org-provide-todo-statistics)
12965 (member kwd org-done-keywords)))
12966 (and (listp org-provide-todo-statistics)
12967 (listp (car org-provide-todo-statistics))
12968 (or (member kwd (car org-provide-todo-statistics))
12969 (and (member kwd org-done-keywords)
12970 (member kwd (cadr org-provide-todo-statistics))))))
12971 (setq cnt-all (1+ cnt-all))
12972 (if (eq org-provide-todo-statistics t)
12973 (and kwd (setq cnt-all (1+ cnt-all)))))
12974 (when (or (and (member org-provide-todo-statistics '(t all-headlines))
12975 (member kwd org-done-keywords))
12976 (and (listp org-provide-todo-statistics)
12977 (listp (car org-provide-todo-statistics))
12978 (member kwd org-done-keywords)
12979 (member kwd (cadr org-provide-todo-statistics)))
12980 (and (listp org-provide-todo-statistics)
12981 (stringp (car org-provide-todo-statistics))
12982 (member kwd org-done-keywords)))
12983 (setq cnt-done (1+ cnt-done)))
12984 (outline-next-heading)))
12985 (setq new
12986 (if is-percent
12987 (format "[%d%%]" (floor (* 100.0 cnt-done)
12988 (max 1 cnt-all)))
12989 (format "[%d/%d]" cnt-done cnt-all))
12990 ndel (- (match-end 0) checkbox-beg))
12991 ;; handle overlays when updating cookie from column view
12992 (when (setq ov (car (overlays-at checkbox-beg)))
12993 (setq ovs (overlay-start ov) ove (overlay-end ov))
12994 (delete-overlay ov))
12995 (goto-char checkbox-beg)
12996 (insert new)
12997 (delete-region (point) (+ (point) ndel))
12998 (when org-auto-align-tags (org-fix-tags-on-the-fly))
12999 (when ov (move-overlay ov ovs ove)))
13000 (when cookie-present
13001 (run-hook-with-args 'org-after-todo-statistics-hook
13002 cnt-done (- cnt-all cnt-done))))))
13003 (run-hooks 'org-todo-statistics-hook)))
13005 (defvar org-after-todo-statistics-hook nil
13006 "Hook that is called after a TODO statistics cookie has been updated.
13007 Each function is called with two arguments: the number of not-done entries
13008 and the number of done entries.
13010 For example, the following function, when added to this hook, will switch
13011 an entry to DONE when all children are done, and back to TODO when new
13012 entries are set to a TODO status. Note that this hook is only called
13013 when there is a statistics cookie in the headline!
13015 (defun org-summary-todo (n-done n-not-done)
13016 \"Switch entry to DONE when all subentries are done, to TODO otherwise.\"
13017 (let (org-log-done org-log-states) ; turn off logging
13018 (org-todo (if (= n-not-done 0) \"DONE\" \"TODO\"))))
13021 (defvar org-todo-statistics-hook nil
13022 "Hook that is run whenever Org thinks TODO statistics should be updated.
13023 This hook runs even if there is no statistics cookie present, in which case
13024 `org-after-todo-statistics-hook' would not run.")
13026 (defun org-todo-trigger-tag-changes (state)
13027 "Apply the changes defined in `org-todo-state-tags-triggers'."
13028 (let ((l org-todo-state-tags-triggers)
13029 changes)
13030 (when (or (not state) (equal state ""))
13031 (setq changes (append changes (cdr (assoc "" l)))))
13032 (when (and (stringp state) (> (length state) 0))
13033 (setq changes (append changes (cdr (assoc state l)))))
13034 (when (member state org-not-done-keywords)
13035 (setq changes (append changes (cdr (assoc 'todo l)))))
13036 (when (member state org-done-keywords)
13037 (setq changes (append changes (cdr (assoc 'done l)))))
13038 (dolist (c changes)
13039 (org-toggle-tag (car c) (if (cdr c) 'on 'off)))))
13041 (defun org-local-logging (value)
13042 "Get logging settings from a property VALUE."
13043 ;; Directly set the variables, they are already local.
13044 (setq org-log-done nil
13045 org-log-repeat nil
13046 org-todo-log-states nil)
13047 (dolist (w (org-split-string value))
13048 (let (a)
13049 (cond
13050 ((setq a (assoc w org-startup-options))
13051 (and (member (nth 1 a) '(org-log-done org-log-repeat))
13052 (set (nth 1 a) (nth 2 a))))
13053 ((setq a (org-extract-log-state-settings w))
13054 (and (member (car a) org-todo-keywords-1)
13055 (push a org-todo-log-states)))))))
13057 (defun org-get-todo-sequence-head (kwd)
13058 "Return the head of the TODO sequence to which KWD belongs.
13059 If KWD is not set, check if there is a text property remembering the
13060 right sequence."
13061 (let (p)
13062 (cond
13063 ((not kwd)
13064 (or (get-text-property (point-at-bol) 'org-todo-head)
13065 (progn
13066 (setq p (next-single-property-change (point-at-bol) 'org-todo-head
13067 nil (point-at-eol)))
13068 (get-text-property p 'org-todo-head))))
13069 ((not (member kwd org-todo-keywords-1))
13070 (car org-todo-keywords-1))
13071 (t (nth 2 (assoc kwd org-todo-kwd-alist))))))
13073 (defun org-fast-todo-selection ()
13074 "Fast TODO keyword selection with single keys.
13075 Returns the new TODO keyword, or nil if no state change should occur."
13076 (let* ((fulltable org-todo-key-alist)
13077 (done-keywords org-done-keywords) ;; needed for the faces.
13078 (maxlen (apply 'max (mapcar
13079 (lambda (x)
13080 (if (stringp (car x)) (string-width (car x)) 0))
13081 fulltable)))
13082 (expert nil)
13083 (fwidth (+ maxlen 3 1 3))
13084 (ncol (/ (- (window-width) 4) fwidth))
13085 tg cnt e c tbl
13086 groups ingroup)
13087 (save-excursion
13088 (save-window-excursion
13089 (if expert
13090 (set-buffer (get-buffer-create " *Org todo*"))
13091 (org-switch-to-buffer-other-window (get-buffer-create " *Org todo*")))
13092 (erase-buffer)
13093 (org-set-local 'org-done-keywords done-keywords)
13094 (setq tbl fulltable cnt 0)
13095 (while (setq e (pop tbl))
13096 (cond
13097 ((equal e '(:startgroup))
13098 (push '() groups) (setq ingroup t)
13099 (when (not (= cnt 0))
13100 (setq cnt 0)
13101 (insert "\n"))
13102 (insert "{ "))
13103 ((equal e '(:endgroup))
13104 (setq ingroup nil cnt 0)
13105 (insert "}\n"))
13106 ((equal e '(:newline))
13107 (when (not (= cnt 0))
13108 (setq cnt 0)
13109 (insert "\n")
13110 (setq e (car tbl))
13111 (while (equal (car tbl) '(:newline))
13112 (insert "\n")
13113 (setq tbl (cdr tbl)))))
13115 (setq tg (car e) c (cdr e))
13116 (if ingroup (push tg (car groups)))
13117 (setq tg (org-add-props tg nil 'face
13118 (org-get-todo-face tg)))
13119 (if (and (= cnt 0) (not ingroup)) (insert " "))
13120 (insert "[" c "] " tg (make-string
13121 (- fwidth 4 (length tg)) ?\ ))
13122 (when (= (setq cnt (1+ cnt)) ncol)
13123 (insert "\n")
13124 (if ingroup (insert " "))
13125 (setq cnt 0)))))
13126 (insert "\n")
13127 (goto-char (point-min))
13128 (if (not expert) (org-fit-window-to-buffer))
13129 (message "[a-z..]:Set [SPC]:clear")
13130 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
13131 (cond
13132 ((or (= c ?\C-g)
13133 (and (= c ?q) (not (rassoc c fulltable))))
13134 (setq quit-flag t))
13135 ((= c ?\ ) nil)
13136 ((setq e (rassoc c fulltable) tg (car e))
13138 (t (setq quit-flag t)))))))
13140 (defun org-entry-is-todo-p ()
13141 (member (org-get-todo-state) org-not-done-keywords))
13143 (defun org-entry-is-done-p ()
13144 (member (org-get-todo-state) org-done-keywords))
13146 (defun org-get-todo-state ()
13147 "Return the TODO keyword of the current subtree."
13148 (save-excursion
13149 (org-back-to-heading t)
13150 (and (looking-at org-todo-line-regexp)
13151 (match-end 2)
13152 (match-string 2))))
13154 (defun org-at-date-range-p (&optional inactive-ok)
13155 "Non-nil if point is inside a date range.
13157 When optional argument INACTIVE-OK is non-nil, also consider
13158 inactive time ranges.
13160 When this function returns a non-nil value, match data is set
13161 according to `org-tr-regexp-both' or `org-tr-regexp', depending
13162 on INACTIVE-OK."
13163 (interactive)
13164 (save-excursion
13165 (catch 'exit
13166 (let ((pos (point)))
13167 (skip-chars-backward "^[<\r\n")
13168 (skip-chars-backward "<[")
13169 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13170 (>= (match-end 0) pos)
13171 (throw 'exit t))
13172 (skip-chars-backward "^<[\r\n")
13173 (skip-chars-backward "<[")
13174 (and (looking-at (if inactive-ok org-tr-regexp-both org-tr-regexp))
13175 (>= (match-end 0) pos)
13176 (throw 'exit t)))
13177 nil)))
13179 (defun org-get-repeat (&optional tagline)
13180 "Check if there is a deadline/schedule with repeater in this entry."
13181 (save-match-data
13182 (save-excursion
13183 (org-back-to-heading t)
13184 (and (re-search-forward (if tagline
13185 (concat tagline "\\s-*" org-repeat-re)
13186 org-repeat-re)
13187 (org-entry-end-position) t)
13188 (match-string-no-properties 1)))))
13190 (defvar org-last-changed-timestamp)
13191 (defvar org-last-inserted-timestamp)
13192 (defvar org-log-post-message)
13193 (defvar org-log-note-purpose)
13194 (defvar org-log-note-how nil)
13195 (defvar org-log-note-extra)
13196 (defun org-auto-repeat-maybe (done-word)
13197 "Check if the current headline contains a repeated deadline/schedule.
13198 If yes, set TODO state back to what it was and change the base date
13199 of repeating deadline/scheduled time stamps to new date.
13200 This function is run automatically after each state change to a DONE state."
13201 ;; last-state is dynamically scoped into this function
13202 (let* ((repeat (org-get-repeat))
13203 (aa (assoc org-last-state org-todo-kwd-alist))
13204 (interpret (nth 1 aa))
13205 (head (nth 2 aa))
13206 (whata '(("h" . hour) ("d" . day) ("m" . month) ("y" . year)))
13207 (msg "Entry repeats: ")
13208 (org-log-done nil)
13209 (org-todo-log-states nil)
13210 re type n what ts time to-state)
13211 (when (and repeat (not (zerop (string-to-number (substring repeat 1)))))
13212 (if (eq org-log-repeat t) (setq org-log-repeat 'state))
13213 (setq to-state (or (org-entry-get nil "REPEAT_TO_STATE")
13214 org-todo-repeat-to-state))
13215 (unless (and to-state (member to-state org-todo-keywords-1))
13216 (setq to-state (if (eq interpret 'type) org-last-state head)))
13217 (org-todo to-state)
13218 (when (or org-log-repeat (org-entry-get nil "CLOCK"))
13219 (org-entry-put nil "LAST_REPEAT" (format-time-string
13220 (org-time-stamp-format t t))))
13221 (when org-log-repeat
13222 (if (or (memq 'org-add-log-note (default-value 'post-command-hook))
13223 (memq 'org-add-log-note post-command-hook))
13224 ;; OK, we are already setup for some record
13225 (if (eq org-log-repeat 'note)
13226 ;; make sure we take a note, not only a time stamp
13227 (setq org-log-note-how 'note))
13228 ;; Set up for taking a record
13229 (org-add-log-setup 'state (or done-word (car org-done-keywords))
13230 org-last-state
13231 'findpos org-log-repeat)))
13232 (org-back-to-heading t)
13233 (org-add-planning-info nil nil 'closed)
13234 (setq re (concat "\\(" org-scheduled-time-regexp "\\)\\|\\("
13235 org-deadline-time-regexp "\\)\\|\\("
13236 org-ts-regexp "\\)"))
13237 (while (re-search-forward
13238 re (save-excursion (outline-next-heading) (point)) t)
13239 (setq type (if (match-end 1) org-scheduled-string
13240 (if (match-end 3) org-deadline-string "Plain:"))
13241 ts (match-string (if (match-end 2) 2 (if (match-end 4) 4 0))))
13242 (when (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts)
13243 (setq n (string-to-number (match-string 2 ts))
13244 what (match-string 3 ts))
13245 (if (equal what "w") (setq n (* n 7) what "d"))
13246 (if (and (equal what "h") (not (string-match "[0-9]\\{1,2\\}:[0-9]\\{2\\}" ts)))
13247 (user-error "Cannot repeat in Repeat in %d hour(s) because no hour has been set" n))
13248 ;; Preparation, see if we need to modify the start date for the change
13249 (when (match-end 1)
13250 (setq time (save-match-data (org-time-string-to-time ts)))
13251 (cond
13252 ((equal (match-string 1 ts) ".")
13253 ;; Shift starting date to today
13254 (org-timestamp-change
13255 (- (org-today) (time-to-days time))
13256 'day))
13257 ((equal (match-string 1 ts) "+")
13258 (let ((nshiftmax 10) (nshift 0))
13259 (while (or (= nshift 0)
13260 (<= (time-to-days time)
13261 (time-to-days (current-time))))
13262 (when (= (incf nshift) nshiftmax)
13263 (or (y-or-n-p (message "%d repeater intervals were not enough to shift date past today. Continue? " nshift))
13264 (user-error "Abort")))
13265 (org-timestamp-change n (cdr (assoc what whata)))
13266 (org-at-timestamp-p t)
13267 (setq ts (match-string 1))
13268 (setq time (save-match-data (org-time-string-to-time ts)))))
13269 (org-timestamp-change (- n) (cdr (assoc what whata)))
13270 ;; rematch, so that we have everything in place for the real shift
13271 (org-at-timestamp-p t)
13272 (setq ts (match-string 1))
13273 (string-match "\\([.+]\\)?\\(\\+[0-9]+\\)\\([hdwmy]\\)" ts))))
13274 (save-excursion (org-timestamp-change n (cdr (assoc what whata)) nil t))
13275 (setq msg (concat msg type " " org-last-changed-timestamp " "))))
13276 (setq org-log-post-message msg)
13277 (message "%s" msg))))
13279 (defun org-show-todo-tree (arg)
13280 "Make a compact tree which shows all headlines marked with TODO.
13281 The tree will show the lines where the regexp matches, and all higher
13282 headlines above the match.
13283 With a \\[universal-argument] prefix, prompt for a regexp to match.
13284 With a numeric prefix N, construct a sparse tree for the Nth element
13285 of `org-todo-keywords-1'."
13286 (interactive "P")
13287 (let ((case-fold-search nil)
13288 (kwd-re
13289 (cond ((null arg) org-not-done-regexp)
13290 ((equal arg '(4))
13291 (let ((kwd (org-icompleting-read "Keyword (or KWD1|KWD2|...): "
13292 (mapcar 'list org-todo-keywords-1))))
13293 (concat "\\("
13294 (mapconcat 'identity (org-split-string kwd "|") "\\|")
13295 "\\)\\>")))
13296 ((<= (prefix-numeric-value arg) (length org-todo-keywords-1))
13297 (regexp-quote (nth (1- (prefix-numeric-value arg))
13298 org-todo-keywords-1)))
13299 (t (user-error "Invalid prefix argument: %s" arg)))))
13300 (message "%d TODO entries found"
13301 (org-occur (concat "^" org-outline-regexp " *" kwd-re )))))
13303 (defun org-deadline (arg &optional time)
13304 "Insert the \"DEADLINE:\" string with a timestamp to make a deadline.
13305 With one universal prefix argument, remove any deadline from the item.
13306 With two universal prefix arguments, prompt for a warning delay.
13307 With argument TIME, set the deadline at the corresponding date. TIME
13308 can either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13309 (interactive "P")
13310 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13311 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13312 'region-start-level 'region))
13313 org-loop-over-headlines-in-active-region)
13314 (org-map-entries
13315 `(org-deadline ',arg ,time)
13316 org-loop-over-headlines-in-active-region
13317 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13318 (let* ((old-date (org-entry-get nil "DEADLINE"))
13319 (old-date-time (if old-date (org-time-string-to-time old-date)))
13320 (repeater (and old-date
13321 (string-match
13322 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13323 old-date)
13324 (match-string 1 old-date))))
13325 (cond
13326 ((equal arg '(4))
13327 (when (and old-date org-log-redeadline)
13328 (org-add-log-setup 'deldeadline nil old-date 'findpos
13329 org-log-redeadline))
13330 (org-remove-timestamp-with-keyword org-deadline-string)
13331 (message "Item no longer has a deadline."))
13332 ((equal arg '(16))
13333 (save-excursion
13334 (org-back-to-heading t)
13335 (if (re-search-forward
13336 org-deadline-time-regexp
13337 (save-excursion (outline-next-heading) (point)) t)
13338 (let* ((rpl0 (match-string 1))
13339 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13340 (replace-match
13341 (concat org-deadline-string
13342 " <" rpl
13343 (format " -%dd"
13344 (abs
13345 (- (time-to-days
13346 (save-match-data
13347 (org-read-date nil t nil "Warn starting from" old-date-time)))
13348 (time-to-days old-date-time))))
13349 ">") t t))
13350 (user-error "No deadline information to update"))))
13352 (org-add-planning-info 'deadline time 'closed)
13353 (when (and old-date
13354 org-log-redeadline
13355 (not (equal old-date org-last-inserted-timestamp)))
13356 (org-add-log-setup
13357 'redeadline org-last-inserted-timestamp old-date 'findpos
13358 org-log-redeadline))
13359 (when repeater
13360 (save-excursion
13361 (org-back-to-heading t)
13362 (when (re-search-forward (concat org-deadline-string " "
13363 org-last-inserted-timestamp)
13364 (save-excursion
13365 (outline-next-heading) (point)) t)
13366 (goto-char (1- (match-end 0)))
13367 (insert " " repeater)
13368 (setq org-last-inserted-timestamp
13369 (concat (substring org-last-inserted-timestamp 0 -1)
13370 " " repeater
13371 (substring org-last-inserted-timestamp -1))))))
13372 (message "Deadline on %s" org-last-inserted-timestamp))))))
13374 (defun org-schedule (arg &optional time)
13375 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
13376 With one universal prefix argument, remove any scheduling date from the item.
13377 With two universal prefix arguments, prompt for a delay cookie.
13378 With argument TIME, scheduled at the corresponding date. TIME can
13379 either be an Org date like \"2011-07-24\" or a delta like \"+2d\"."
13380 (interactive "P")
13381 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
13382 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
13383 'region-start-level 'region))
13384 org-loop-over-headlines-in-active-region)
13385 (org-map-entries
13386 `(org-schedule ',arg ,time)
13387 org-loop-over-headlines-in-active-region
13388 cl (if (outline-invisible-p) (org-end-of-subtree nil t))))
13389 (let* ((old-date (org-entry-get nil "SCHEDULED"))
13390 (old-date-time (if old-date (org-time-string-to-time old-date)))
13391 (repeater (and old-date
13392 (string-match
13393 "\\([.+-]+[0-9]+[hdwmy]\\(?:[/ ][-+]?[0-9]+[hdwmy]\\)?\\) ?"
13394 old-date)
13395 (match-string 1 old-date))))
13396 (cond
13397 ((equal arg '(4))
13398 (progn
13399 (when (and old-date org-log-reschedule)
13400 (org-add-log-setup 'delschedule nil old-date 'findpos
13401 org-log-reschedule))
13402 (org-remove-timestamp-with-keyword org-scheduled-string)
13403 (message "Item is no longer scheduled.")))
13404 ((equal arg '(16))
13405 (save-excursion
13406 (org-back-to-heading t)
13407 (if (re-search-forward
13408 org-scheduled-time-regexp
13409 (save-excursion (outline-next-heading) (point)) t)
13410 (let* ((rpl0 (match-string 1))
13411 (rpl (replace-regexp-in-string " -[0-9]+[hdwmy]" "" rpl0)))
13412 (replace-match
13413 (concat org-scheduled-string
13414 " <" rpl
13415 (format " -%dd"
13416 (abs
13417 (- (time-to-days
13418 (save-match-data
13419 (org-read-date nil t nil "Delay until" old-date-time)))
13420 (time-to-days old-date-time))))
13421 ">") t t))
13422 (user-error "No scheduled information to update"))))
13424 (org-add-planning-info 'scheduled time 'closed)
13425 (when (and old-date
13426 org-log-reschedule
13427 (not (equal old-date org-last-inserted-timestamp)))
13428 (org-add-log-setup
13429 'reschedule org-last-inserted-timestamp old-date 'findpos
13430 org-log-reschedule))
13431 (when repeater
13432 (save-excursion
13433 (org-back-to-heading t)
13434 (when (re-search-forward (concat org-scheduled-string " "
13435 org-last-inserted-timestamp)
13436 (save-excursion
13437 (outline-next-heading) (point)) t)
13438 (goto-char (1- (match-end 0)))
13439 (insert " " repeater)
13440 (setq org-last-inserted-timestamp
13441 (concat (substring org-last-inserted-timestamp 0 -1)
13442 " " repeater
13443 (substring org-last-inserted-timestamp -1))))))
13444 (message "Scheduled to %s" org-last-inserted-timestamp))))))
13446 (defun org-get-scheduled-time (pom &optional inherit)
13447 "Get the scheduled time as a time tuple, of a format suitable
13448 for calling org-schedule with, or if there is no scheduling,
13449 returns nil."
13450 (let ((time (org-entry-get pom "SCHEDULED" inherit)))
13451 (when time
13452 (apply 'encode-time (org-parse-time-string time)))))
13454 (defun org-get-deadline-time (pom &optional inherit)
13455 "Get the deadline as a time tuple, of a format suitable for
13456 calling org-deadline with, or if there is no scheduling, returns
13457 nil."
13458 (let ((time (org-entry-get pom "DEADLINE" inherit)))
13459 (when time
13460 (apply 'encode-time (org-parse-time-string time)))))
13462 (defun org-remove-timestamp-with-keyword (keyword)
13463 "Remove all time stamps with KEYWORD in the current entry."
13464 (let ((re (concat "\\<" (regexp-quote keyword) " +<[^>\n]+>[ \t]*"))
13465 beg)
13466 (save-excursion
13467 (org-back-to-heading t)
13468 (setq beg (point))
13469 (outline-next-heading)
13470 (while (re-search-backward re beg t)
13471 (replace-match "")
13472 (if (and (string-match "\\S-" (buffer-substring (point-at-bol) (point)))
13473 (equal (char-before) ?\ ))
13474 (backward-delete-char 1)
13475 (if (string-match "^[ \t]*$" (buffer-substring
13476 (point-at-bol) (point-at-eol)))
13477 (delete-region (point-at-bol)
13478 (min (point-max) (1+ (point-at-eol))))))))))
13480 (defvar org-time-was-given) ; dynamically scoped parameter
13481 (defvar org-end-time-was-given) ; dynamically scoped parameter
13483 (defun org-at-planning-p ()
13484 "Non-nil when point is on a planning info line."
13485 ;; This is as accurate and faster than `org-element-at-point' since
13486 ;; planning info location is fixed in the section.
13487 (org-with-wide-buffer
13488 (beginning-of-line)
13489 (and (org-looking-at-p org-planning-line-re)
13490 (eq (point)
13491 (ignore-errors
13492 (if (and (featurep 'org-inlinetask) (org-inlinetask-in-task-p))
13493 (org-back-to-heading t)
13494 (org-with-limited-levels (org-back-to-heading t)))
13495 (line-beginning-position 2))))))
13497 (defun org-add-planning-info (what &optional time &rest remove)
13498 "Insert new timestamp with keyword in the planning line.
13499 WHAT indicates what kind of time stamp to add. It is a symbol
13500 among `closed', `deadline', `scheduled' and nil. TIME indicates
13501 the time to use. If none is given, the user is prompted for
13502 a date. REMOVE indicates what kind of entries to remove. An old
13503 WHAT entry will also be removed."
13504 (let (org-time-was-given org-end-time-was-given default-time default-input)
13505 (catch 'exit
13506 (when (and (memq what '(scheduled deadline))
13507 (or (not time)
13508 (and (stringp time)
13509 (string-match "^[-+]+[0-9]" time))))
13510 ;; Try to get a default date/time from existing timestamp
13511 (save-excursion
13512 (org-back-to-heading t)
13513 (let ((end (save-excursion (outline-next-heading) (point))) ts)
13514 (when (re-search-forward (if (eq what 'scheduled)
13515 org-scheduled-time-regexp
13516 org-deadline-time-regexp)
13517 end t)
13518 (setq ts (match-string 1)
13519 default-time (apply 'encode-time (org-parse-time-string ts))
13520 default-input (and ts (org-get-compact-tod ts)))))))
13521 (when what
13522 (setq time
13523 (if (stringp time)
13524 ;; This is a string (relative or absolute), set
13525 ;; proper date.
13526 (apply #'encode-time
13527 (org-read-date-analyze
13528 time default-time (decode-time default-time)))
13529 ;; If necessary, get the time from the user
13530 (or time (org-read-date nil 'to-time nil nil
13531 default-time default-input)))))
13533 (org-with-wide-buffer
13534 (org-back-to-heading t)
13535 (forward-line)
13536 (unless (bolp) (insert "\n"))
13537 (cond ((org-looking-at-p org-planning-line-re)
13538 ;; Move to current indentation.
13539 (skip-chars-forward " \t")
13540 ;; Check if we have to remove something.
13541 (dolist (type (if what (cons what remove) remove))
13542 (save-excursion
13543 (when (re-search-forward
13544 (case type
13545 (closed org-closed-time-regexp)
13546 (deadline org-deadline-time-regexp)
13547 (scheduled org-scheduled-time-regexp)
13548 (otherwise
13549 (error "Invalid planning type: %s" type)))
13550 (line-end-position) t)
13551 ;; Delete until next keyword or end of line.
13552 (delete-region
13553 (match-beginning 0)
13554 (if (re-search-forward org-keyword-time-not-clock-regexp
13555 (line-end-position)
13557 (match-beginning 0)
13558 (line-end-position))))))
13559 ;; If there is nothing more to add and no more keyword
13560 ;; is left, remove the line completely.
13561 (if (and (org-looking-at-p "[ \t]*$") (not what))
13562 (delete-region (line-beginning-position)
13563 (line-beginning-position 2))
13564 ;; If we removed last keyword, do not leave trailing
13565 ;; white space at the end of line.
13566 (let ((p (point)))
13567 (save-excursion
13568 (end-of-line)
13569 (unless (= (skip-chars-backward " \t" p) 0)
13570 (delete-region (point) (line-end-position)))))))
13571 ((not what) (throw 'exit nil)) ; Nothing to do.
13572 (t (insert-before-markers "\n")
13573 (backward-char 1)
13574 (when org-adapt-indentation
13575 (org-indent-to-column (1+ (org-outline-level))))))
13576 (when what
13577 ;; Insert planning keyword.
13578 (insert (case what
13579 (closed org-closed-string)
13580 (deadline org-deadline-string)
13581 (scheduled org-scheduled-string)
13582 (otherwise (error "Invalid planning type: %s" what)))
13583 " ")
13584 ;; Insert associated timestamp.
13585 (let ((ts (org-insert-time-stamp
13586 time
13587 (or org-time-was-given
13588 (and (eq what 'closed) org-log-done-with-time))
13589 (eq what 'closed)
13590 nil nil (list org-end-time-was-given))))
13591 (unless (eolp) (insert " "))
13592 ts))))))
13594 (defvar org-log-note-marker (make-marker))
13595 (defvar org-log-note-purpose nil)
13596 (defvar org-log-note-state nil)
13597 (defvar org-log-note-previous-state nil)
13598 (defvar org-log-note-extra nil)
13599 (defvar org-log-note-window-configuration nil)
13600 (defvar org-log-note-return-to (make-marker))
13601 (defvar org-log-note-effective-time nil
13602 "Remembered current time so that dynamically scoped
13603 `org-extend-today-until' affects tha timestamps in state change
13604 log")
13606 (defvar org-log-post-message nil
13607 "Message to be displayed after a log note has been stored.
13608 The auto-repeater uses this.")
13610 (defun org-add-note ()
13611 "Add a note to the current entry.
13612 This is done in the same way as adding a state change note."
13613 (interactive)
13614 (org-add-log-setup 'note nil nil 'findpos nil))
13616 (defun org-log-beginning (&optional create)
13617 "Return expected start of log notes in current entry.
13618 When optional argument CREATE is non-nil, the function creates
13619 a drawer to store notes, if necessary. Returned position ignores
13620 narrowing."
13621 (org-with-wide-buffer
13622 (org-end-of-meta-data)
13623 (let ((end (if (org-at-heading-p) (point)
13624 (save-excursion (outline-next-heading) (point))))
13625 (drawer (org-log-into-drawer)))
13626 (cond
13627 (drawer
13628 (let ((regexp (concat "^[ \t]*:" (regexp-quote drawer) ":[ \t]*$"))
13629 (case-fold-search t))
13630 (catch 'exit
13631 ;; Try to find existing drawer.
13632 (while (re-search-forward regexp end t)
13633 (let ((element (org-element-at-point)))
13634 (when (eq (org-element-type element) 'drawer)
13635 (let ((cend (org-element-property :contents-end element)))
13636 (when (and (not org-log-states-order-reversed) cend)
13637 (goto-char cend)))
13638 (throw 'exit nil))))
13639 ;; No drawer found. Create one, if permitted.
13640 (when create
13641 (unless (bolp) (insert "\n"))
13642 (let ((beg (point)))
13643 (insert ":" drawer ":\n:END:\n")
13644 (org-indent-region beg (point)))
13645 (end-of-line -1)))))
13646 (org-log-state-notes-insert-after-drawers
13647 (while (and (looking-at org-drawer-regexp)
13648 (progn (goto-char (match-end 0))
13649 (re-search-forward org-property-end-re end t)))
13650 (forward-line)))))
13651 (if (bolp) (point) (line-beginning-position 2))))
13653 (defun org-add-log-setup (&optional purpose state prev-state findpos how extra)
13654 "Set up the post command hook to take a note.
13655 If this is about to TODO state change, the new state is expected in STATE.
13656 When FINDPOS is non-nil, find the correct position for the note in
13657 the current entry. If not, assume that it can be inserted at point.
13658 HOW is an indicator what kind of note should be created.
13659 EXTRA is additional text that will be inserted into the notes buffer."
13660 (org-with-wide-buffer
13661 (when findpos
13662 (goto-char (org-log-beginning t))
13663 (unless org-log-states-order-reversed
13664 (org-skip-over-state-notes)
13665 (skip-chars-backward " \t\n\r")
13666 (forward-line)))
13667 (move-marker org-log-note-marker (point))
13668 ;; Preserve position even if a property drawer is inserted in the
13669 ;; process.
13670 (set-marker-insertion-type org-log-note-marker t)
13671 (setq org-log-note-purpose purpose
13672 org-log-note-state state
13673 org-log-note-previous-state prev-state
13674 org-log-note-how how
13675 org-log-note-extra extra
13676 org-log-note-effective-time (org-current-effective-time))
13677 (add-hook 'post-command-hook 'org-add-log-note 'append)))
13679 (defun org-skip-over-state-notes ()
13680 "Skip past the list of State notes in an entry."
13681 (when (ignore-errors (goto-char (org-in-item-p)))
13682 (let* ((struct (org-list-struct))
13683 (prevs (org-list-prevs-alist struct))
13684 (regexp
13685 (concat "[ \t]*- +"
13686 (replace-regexp-in-string
13687 " +" " +"
13688 (org-replace-escapes
13689 (regexp-quote (cdr (assq 'state org-log-note-headings)))
13690 `(("%d" . ,org-ts-regexp-inactive)
13691 ("%D" . ,org-ts-regexp)
13692 ("%s" . "\"\\S-+\"")
13693 ("%S" . "\"\\S-+\"")
13694 ("%t" . ,org-ts-regexp-inactive)
13695 ("%T" . ,org-ts-regexp)
13696 ("%u" . ".*?")
13697 ("%U" . ".*?")))))))
13698 (while (org-looking-at-p regexp)
13699 (goto-char (or (org-list-get-next-item (point) struct prevs)
13700 (org-list-get-item-end (point) struct)))))))
13702 (defun org-add-log-note (&optional purpose)
13703 "Pop up a window for taking a note, and add this note later at point."
13704 (remove-hook 'post-command-hook 'org-add-log-note)
13705 (setq org-log-note-window-configuration (current-window-configuration))
13706 (delete-other-windows)
13707 (move-marker org-log-note-return-to (point))
13708 (org-pop-to-buffer-same-window (marker-buffer org-log-note-marker))
13709 (goto-char org-log-note-marker)
13710 (org-switch-to-buffer-other-window "*Org Note*")
13711 (erase-buffer)
13712 (if (memq org-log-note-how '(time state))
13713 (let (current-prefix-arg) (org-store-log-note))
13714 (let ((org-inhibit-startup t)) (org-mode))
13715 (insert (format "# Insert note for %s.
13716 # Finish with C-c C-c, or cancel with C-c C-k.\n\n"
13717 (cond
13718 ((eq org-log-note-purpose 'clock-out) "stopped clock")
13719 ((eq org-log-note-purpose 'done) "closed todo item")
13720 ((eq org-log-note-purpose 'state)
13721 (format "state change from \"%s\" to \"%s\""
13722 (or org-log-note-previous-state "")
13723 (or org-log-note-state "")))
13724 ((eq org-log-note-purpose 'reschedule)
13725 "rescheduling")
13726 ((eq org-log-note-purpose 'delschedule)
13727 "no longer scheduled")
13728 ((eq org-log-note-purpose 'redeadline)
13729 "changing deadline")
13730 ((eq org-log-note-purpose 'deldeadline)
13731 "removing deadline")
13732 ((eq org-log-note-purpose 'refile)
13733 "refiling")
13734 ((eq org-log-note-purpose 'note)
13735 "this entry")
13736 (t (error "This should not happen")))))
13737 (if org-log-note-extra (insert org-log-note-extra))
13738 (org-set-local 'org-finish-function 'org-store-log-note)
13739 (run-hooks 'org-log-buffer-setup-hook)))
13741 (defvar org-note-abort nil) ; dynamically scoped
13742 (defun org-store-log-note ()
13743 "Finish taking a log note, and insert it to where it belongs."
13744 (let ((txt (buffer-string)))
13745 (kill-buffer (current-buffer))
13746 (let ((note (cdr (assq org-log-note-purpose org-log-note-headings))) lines)
13747 (while (string-match "\\`# .*\n[ \t\n]*" txt)
13748 (setq txt (replace-match "" t t txt)))
13749 (if (string-match "\\s-+\\'" txt)
13750 (setq txt (replace-match "" t t txt)))
13751 (setq lines (org-split-string txt "\n"))
13752 (when (and note (string-match "\\S-" note))
13753 (setq note
13754 (org-replace-escapes
13755 note
13756 (list (cons "%u" (user-login-name))
13757 (cons "%U" user-full-name)
13758 (cons "%t" (format-time-string
13759 (org-time-stamp-format 'long 'inactive)
13760 org-log-note-effective-time))
13761 (cons "%T" (format-time-string
13762 (org-time-stamp-format 'long nil)
13763 org-log-note-effective-time))
13764 (cons "%d" (format-time-string
13765 (org-time-stamp-format nil 'inactive)
13766 org-log-note-effective-time))
13767 (cons "%D" (format-time-string
13768 (org-time-stamp-format nil nil)
13769 org-log-note-effective-time))
13770 (cons "%s" (cond
13771 ((not org-log-note-state) "")
13772 ((org-string-match-p org-ts-regexp
13773 org-log-note-state)
13774 (format "\"[%s]\""
13775 (substring org-log-note-state 1 -1)))
13776 (t (format "\"%s\"" org-log-note-state))))
13777 (cons "%S"
13778 (cond
13779 ((not org-log-note-previous-state) "")
13780 ((org-string-match-p org-ts-regexp
13781 org-log-note-previous-state)
13782 (format "\"[%s]\""
13783 (substring
13784 org-log-note-previous-state 1 -1)))
13785 (t (format "\"%s\""
13786 org-log-note-previous-state)))))))
13787 (when lines (setq note (concat note " \\\\")))
13788 (push note lines))
13789 (when (or current-prefix-arg org-note-abort)
13790 (when (org-log-into-drawer)
13791 (org-remove-empty-drawer-at org-log-note-marker))
13792 (setq lines nil))
13793 (when lines
13794 (with-current-buffer (marker-buffer org-log-note-marker)
13795 (org-with-wide-buffer
13796 (goto-char org-log-note-marker)
13797 (move-marker org-log-note-marker nil)
13798 ;; Make sure point is at the beginning of an empty line.
13799 (cond ((not (bolp)) (let ((inhibit-read-only t)) (insert "\n")))
13800 ((looking-at "[ \t]*\\S-") (save-excursion (insert "\n"))))
13801 ;; In an existing list, add a new item at the top level.
13802 ;; Otherwise, indent line like a regular one.
13803 (let ((itemp (org-in-item-p)))
13804 (if itemp
13805 (org-indent-line-to
13806 (let ((struct (save-excursion
13807 (goto-char itemp) (org-list-struct))))
13808 (org-list-get-ind (org-list-get-top-point struct) struct)))
13809 (org-indent-line)))
13810 (insert (org-list-bullet-string "-") (pop lines))
13811 (let ((ind (org-list-item-body-column (line-beginning-position))))
13812 (dolist (line lines)
13813 (insert "\n")
13814 (org-indent-line-to ind)
13815 (insert line)))
13816 (message "Note stored")
13817 (org-back-to-heading t)
13818 (org-cycle-hide-drawers 'children))
13819 ;; Fix `buffer-undo-list' when `org-store-log-note' is called
13820 ;; from within `org-add-log-note' because `buffer-undo-list'
13821 ;; is then modified outside of `org-with-remote-undo'.
13822 (when (eq this-command 'org-agenda-todo)
13823 (setcdr buffer-undo-list (cddr buffer-undo-list)))))))
13824 ;; Don't add undo information when called from `org-agenda-todo'
13825 (let ((buffer-undo-list (eq this-command 'org-agenda-todo)))
13826 (set-window-configuration org-log-note-window-configuration)
13827 (with-current-buffer (marker-buffer org-log-note-return-to)
13828 (goto-char org-log-note-return-to))
13829 (move-marker org-log-note-return-to nil)
13830 (and org-log-post-message (message "%s" org-log-post-message))))
13832 (defun org-remove-empty-drawer-at (pos)
13833 "Remove an empty drawer at position POS.
13834 POS may also be a marker."
13835 (with-current-buffer (if (markerp pos) (marker-buffer pos) (current-buffer))
13836 (org-with-wide-buffer
13837 (goto-char pos)
13838 (let ((drawer (org-element-at-point)))
13839 (when (and (memq (org-element-type drawer) '(drawer property-drawer))
13840 (not (org-element-property :contents-begin drawer)))
13841 (delete-region (org-element-property :begin drawer)
13842 (progn (goto-char (org-element-property :end drawer))
13843 (skip-chars-backward " \r\t\n")
13844 (forward-line)
13845 (point))))))))
13847 (defvar org-ts-type nil)
13848 (defun org-sparse-tree (&optional arg type)
13849 "Create a sparse tree, prompt for the details.
13850 This command can create sparse trees. You first need to select the type
13851 of match used to create the tree:
13853 t Show all TODO entries.
13854 T Show entries with a specific TODO keyword.
13855 m Show entries selected by a tags/property match.
13856 p Enter a property name and its value (both with completion on existing
13857 names/values) and show entries with that property.
13858 r Show entries matching a regular expression (`/' can be used as well).
13859 b Show deadlines and scheduled items before a date.
13860 a Show deadlines and scheduled items after a date.
13861 d Show deadlines due within `org-deadline-warning-days'.
13862 D Show deadlines and scheduled items between a date range."
13863 (interactive "P")
13864 (setq type (or type org-sparse-tree-default-date-type))
13865 (setq org-ts-type type)
13866 (message "Sparse tree: [/]regexp [t]odo [T]odo-kwd [m]atch [p]roperty
13867 [d]eadlines [b]efore-date [a]fter-date [D]ates range
13868 [c]ycle through date types: %s"
13869 (case type
13870 (all "all timestamps")
13871 (scheduled "only scheduled")
13872 (deadline "only deadline")
13873 (active "only active timestamps")
13874 (inactive "only inactive timestamps")
13875 (closed "with a closed time-stamp")
13876 (otherwise "scheduled/deadline")))
13877 (let ((answer (read-char-exclusive)))
13878 (case answer
13880 (org-sparse-tree
13882 (cadr
13883 (memq type '(nil all scheduled deadline active inactive closed)))))
13884 (?d (call-interactively 'org-check-deadlines))
13885 (?b (call-interactively 'org-check-before-date))
13886 (?a (call-interactively 'org-check-after-date))
13887 (?D (call-interactively 'org-check-dates-range))
13888 (?t (call-interactively 'org-show-todo-tree))
13889 (?T (org-show-todo-tree '(4)))
13890 (?m (call-interactively 'org-match-sparse-tree))
13891 ((?p ?P)
13892 (let* ((kwd (org-icompleting-read
13893 "Property: " (mapcar 'list (org-buffer-property-keys))))
13894 (value (org-icompleting-read
13895 "Value: " (mapcar 'list (org-property-values kwd)))))
13896 (unless (string-match "\\`{.*}\\'" value)
13897 (setq value (concat "\"" value "\"")))
13898 (org-match-sparse-tree arg (concat kwd "=" value))))
13899 ((?r ?R ?/) (call-interactively 'org-occur))
13900 (otherwise (user-error "No such sparse tree command \"%c\"" answer)))))
13902 (defvar org-occur-highlights nil
13903 "List of overlays used for occur matches.")
13904 (make-variable-buffer-local 'org-occur-highlights)
13905 (defvar org-occur-parameters nil
13906 "Parameters of the active org-occur calls.
13907 This is a list, each call to org-occur pushes as cons cell,
13908 containing the regular expression and the callback, onto the list.
13909 The list can contain several entries if `org-occur' has been called
13910 several time with the KEEP-PREVIOUS argument. Otherwise, this list
13911 will only contain one set of parameters. When the highlights are
13912 removed (for example with `C-c C-c', or with the next edit (depending
13913 on `org-remove-highlights-with-change'), this variable is emptied
13914 as well.")
13915 (make-variable-buffer-local 'org-occur-parameters)
13917 (defun org-occur (regexp &optional keep-previous callback)
13918 "Make a compact tree which shows all matches of REGEXP.
13919 The tree will show the lines where the regexp matches, and all higher
13920 headlines above the match. It will also show the heading after the match,
13921 to make sure editing the matching entry is easy.
13922 If KEEP-PREVIOUS is non-nil, highlighting and exposing done by a previous
13923 call to `org-occur' will be kept, to allow stacking of calls to this
13924 command.
13925 If CALLBACK is non-nil, it is a function which is called to confirm
13926 that the match should indeed be shown."
13927 (interactive "sRegexp: \nP")
13928 (when (equal regexp "")
13929 (user-error "Regexp cannot be empty"))
13930 (unless keep-previous
13931 (org-remove-occur-highlights nil nil t))
13932 (push (cons regexp callback) org-occur-parameters)
13933 (let ((cnt 0))
13934 (save-excursion
13935 (goto-char (point-min))
13936 (if (or (not keep-previous) ; do not want to keep
13937 (not org-occur-highlights)) ; no previous matches
13938 ;; hide everything
13939 (org-overview))
13940 (while (re-search-forward regexp nil t)
13941 (backward-char) ;; FIXME: Match timestamps at the end of a headline
13942 (when (or (not callback)
13943 (save-match-data (funcall callback)))
13944 (setq cnt (1+ cnt))
13945 (when org-highlight-sparse-tree-matches
13946 (org-highlight-new-match (match-beginning 0) (match-end 0)))
13947 (org-show-context 'occur-tree))))
13948 (when org-remove-highlights-with-change
13949 (org-add-hook 'before-change-functions 'org-remove-occur-highlights
13950 nil 'local))
13951 (unless org-sparse-tree-open-archived-trees
13952 (org-hide-archived-subtrees (point-min) (point-max)))
13953 (run-hooks 'org-occur-hook)
13954 (if (org-called-interactively-p 'interactive)
13955 (message "%d match(es) for regexp %s" cnt regexp))
13956 cnt))
13958 (defun org-occur-next-match (&optional n reset)
13959 "Function for `next-error-function' to find sparse tree matches.
13960 N is the number of matches to move, when negative move backwards.
13961 RESET is entirely ignored - this function always goes back to the
13962 starting point when no match is found."
13963 (let* ((limit (if (< n 0) (point-min) (point-max)))
13964 (search-func (if (< n 0)
13965 'previous-single-char-property-change
13966 'next-single-char-property-change))
13967 (n (abs n))
13968 (pos (point))
13970 (catch 'exit
13971 (while (setq p1 (funcall search-func (point) 'org-type))
13972 (when (equal p1 limit)
13973 (goto-char pos)
13974 (user-error "No more matches"))
13975 (when (equal (get-char-property p1 'org-type) 'org-occur)
13976 (setq n (1- n))
13977 (when (= n 0)
13978 (goto-char p1)
13979 (throw 'exit (point))))
13980 (goto-char p1))
13981 (goto-char p1)
13982 (user-error "No more matches"))))
13984 (defun org-show-context (&optional key)
13985 "Make sure point and context are visible.
13986 Optional argument KEY, when non-nil, is a symbol. See
13987 `org-show-context-detail' for allowed values and how much is to
13988 be shown."
13989 (org-show-set-visibility
13990 (cond ((symbolp org-show-context-detail) org-show-context-detail)
13991 ((cdr (assq key org-show-context-detail)))
13992 (t (cdr (assq 'default org-show-context-detail))))))
13994 (defun org-show-set-visibility (detail)
13995 "Set visibility around point according to DETAIL.
13996 DETAIL is either nil, `minimal', `local', `ancestors', `lineage',
13997 `tree', `canonical' or t. See `org-show-context-detail' for more
13998 information."
13999 (unless (org-before-first-heading-p)
14000 ;; Show current heading and possibly its entry, following headline
14001 ;; or all children.
14002 (if (and (org-at-heading-p) (not (eq detail 'local)))
14003 (org-flag-heading nil)
14004 (org-show-entry)
14005 (org-with-limited-levels
14006 (case detail
14007 ((tree canonical t) (outline-show-children))
14008 ((nil minimal ancestors))
14009 (t (save-excursion
14010 (outline-next-heading)
14011 (org-flag-heading nil))))))
14012 ;; Show all siblings.
14013 (when (eq detail 'lineage) (org-show-siblings))
14014 ;; Show ancestors, possibly with their children.
14015 (when (memq detail '(ancestors lineage tree canonical t))
14016 (save-excursion
14017 (while (org-up-heading-safe)
14018 (org-flag-heading nil)
14019 (when (memq detail '(canonical t)) (org-show-entry))
14020 (when (memq detail '(tree canonical t)) (outline-show-children)))))))
14022 (defvar org-reveal-start-hook nil
14023 "Hook run before revealing a location.")
14025 (defun org-reveal (&optional siblings)
14026 "Show current entry, hierarchy above it, and the following headline.
14028 This can be used to show a consistent set of context around
14029 locations exposed with `org-show-context'.
14031 With optional argument SIBLINGS, on each level of the hierarchy all
14032 siblings are shown. This repairs the tree structure to what it would
14033 look like when opened with hierarchical calls to `org-cycle'.
14035 With double optional argument \\[universal-argument] \\[universal-argument], \
14036 go to the parent and show the
14037 entire tree."
14038 (interactive "P")
14039 (run-hooks 'org-reveal-start-hook)
14040 (cond ((equal siblings '(4)) (org-show-set-visibility 'canonical))
14041 ((equal siblings '(16))
14042 (save-excursion
14043 (when (org-up-heading-safe)
14044 (org-show-subtree)
14045 (run-hook-with-args 'org-cycle-hook 'subtree))))
14046 (t (org-show-set-visibility 'lineage))))
14048 (defun org-highlight-new-match (beg end)
14049 "Highlight from BEG to END and mark the highlight is an occur headline."
14050 (let ((ov (make-overlay beg end)))
14051 (overlay-put ov 'face 'secondary-selection)
14052 (overlay-put ov 'org-type 'org-occur)
14053 (push ov org-occur-highlights)))
14055 (defun org-remove-occur-highlights (&optional beg end noremove)
14056 "Remove the occur highlights from the buffer.
14057 BEG and END are ignored. If NOREMOVE is nil, remove this function
14058 from the `before-change-functions' in the current buffer."
14059 (interactive)
14060 (unless org-inhibit-highlight-removal
14061 (mapc 'delete-overlay org-occur-highlights)
14062 (setq org-occur-highlights nil)
14063 (setq org-occur-parameters nil)
14064 (unless noremove
14065 (remove-hook 'before-change-functions
14066 'org-remove-occur-highlights 'local))))
14068 ;;;; Priorities
14070 (defvar org-priority-regexp ".*?\\(\\[#\\([A-Z0-9]\\)\\] ?\\)"
14071 "Regular expression matching the priority indicator.")
14073 (defvar org-remove-priority-next-time nil)
14075 (defun org-priority-up ()
14076 "Increase the priority of the current item."
14077 (interactive)
14078 (org-priority 'up))
14080 (defun org-priority-down ()
14081 "Decrease the priority of the current item."
14082 (interactive)
14083 (org-priority 'down))
14085 (defun org-priority (&optional action show)
14086 "Change the priority of an item.
14087 ACTION can be `set', `up', `down', or a character."
14088 (interactive "P")
14089 (if (equal action '(4))
14090 (org-show-priority)
14091 (unless org-enable-priority-commands
14092 (user-error "Priority commands are disabled"))
14093 (setq action (or action 'set))
14094 (let (current new news have remove)
14095 (save-excursion
14096 (org-back-to-heading t)
14097 (if (looking-at org-priority-regexp)
14098 (setq current (string-to-char (match-string 2))
14099 have t))
14100 (cond
14101 ((eq action 'remove)
14102 (setq remove t new ?\ ))
14103 ((or (eq action 'set)
14104 (if (featurep 'xemacs) (characterp action) (integerp action)))
14105 (if (not (eq action 'set))
14106 (setq new action)
14107 (message "Priority %c-%c, SPC to remove: "
14108 org-highest-priority org-lowest-priority)
14109 (save-match-data
14110 (setq new (read-char-exclusive))))
14111 (if (and (= (upcase org-highest-priority) org-highest-priority)
14112 (= (upcase org-lowest-priority) org-lowest-priority))
14113 (setq new (upcase new)))
14114 (cond ((equal new ?\ ) (setq remove t))
14115 ((or (< (upcase new) org-highest-priority) (> (upcase new) org-lowest-priority))
14116 (user-error "Priority must be between `%c' and `%c'"
14117 org-highest-priority org-lowest-priority))))
14118 ((eq action 'up)
14119 (setq new (if have
14120 (1- current) ; normal cycling
14121 ;; last priority was empty
14122 (if (eq last-command this-command)
14123 org-lowest-priority ; wrap around empty to lowest
14124 ;; default
14125 (if org-priority-start-cycle-with-default
14126 org-default-priority
14127 (1- org-default-priority))))))
14128 ((eq action 'down)
14129 (setq new (if have
14130 (1+ current) ; normal cycling
14131 ;; last priority was empty
14132 (if (eq last-command this-command)
14133 org-highest-priority ; wrap around empty to highest
14134 ;; default
14135 (if org-priority-start-cycle-with-default
14136 org-default-priority
14137 (1+ org-default-priority))))))
14138 (t (user-error "Invalid action")))
14139 (if (or (< (upcase new) org-highest-priority)
14140 (> (upcase new) org-lowest-priority))
14141 (if (and (memq action '(up down))
14142 (not have) (not (eq last-command this-command)))
14143 ;; `new' is from default priority
14144 (error
14145 "The default can not be set, see `org-default-priority' why")
14146 ;; normal cycling: `new' is beyond highest/lowest priority
14147 ;; and is wrapped around to the empty priority
14148 (setq remove t)))
14149 (setq news (format "%c" new))
14150 (if have
14151 (if remove
14152 (replace-match "" t t nil 1)
14153 (replace-match news t t nil 2))
14154 (if remove
14155 (user-error "No priority cookie found in line")
14156 (let ((case-fold-search nil))
14157 (looking-at org-todo-line-regexp))
14158 (if (match-end 2)
14159 (progn
14160 (goto-char (match-end 2))
14161 (insert " [#" news "]"))
14162 (goto-char (match-beginning 3))
14163 (insert "[#" news "] "))))
14164 (org-set-tags nil 'align))
14165 (if remove
14166 (message "Priority removed")
14167 (message "Priority of current item set to %s" news)))))
14169 (defun org-show-priority ()
14170 "Show the priority of the current item.
14171 This priority is composed of the main priority given with the [#A] cookies,
14172 and by additional input from the age of a schedules or deadline entry."
14173 (interactive)
14174 (let ((pri (if (eq major-mode 'org-agenda-mode)
14175 (org-get-at-bol 'priority)
14176 (save-excursion
14177 (save-match-data
14178 (beginning-of-line)
14179 (and (looking-at org-heading-regexp)
14180 (org-get-priority (match-string 0))))))))
14181 (message "Priority is %d" (if pri pri -1000))))
14183 (defun org-get-priority (s)
14184 "Find priority cookie and return priority."
14185 (save-match-data
14186 (if (functionp org-get-priority-function)
14187 (funcall org-get-priority-function)
14188 (if (not (string-match org-priority-regexp s))
14189 (* 1000 (- org-lowest-priority org-default-priority))
14190 (* 1000 (- org-lowest-priority
14191 (string-to-char (match-string 2 s))))))))
14193 ;;;; Tags
14195 (defvar org-agenda-archives-mode)
14196 (defvar org-map-continue-from nil
14197 "Position from where mapping should continue.
14198 Can be set by the action argument to `org-scan-tags' and `org-map-entries'.")
14200 (defvar org-scanner-tags nil
14201 "The current tag list while the tags scanner is running.")
14202 (defvar org-trust-scanner-tags nil
14203 "Should `org-get-tags-at' use the tags for the scanner.
14204 This is for internal dynamical scoping only.
14205 When this is non-nil, the function `org-get-tags-at' will return the value
14206 of `org-scanner-tags' instead of building the list by itself. This
14207 can lead to large speed-ups when the tags scanner is used in a file with
14208 many entries, and when the list of tags is retrieved, for example to
14209 obtain a list of properties. Building the tags list for each entry in such
14210 a file becomes an N^2 operation - but with this variable set, it scales
14211 as N.")
14213 (defun org-scan-tags (action matcher todo-only &optional start-level)
14214 "Scan headline tags with inheritance and produce output ACTION.
14216 ACTION can be `sparse-tree' to produce a sparse tree in the current buffer,
14217 or `agenda' to produce an entry list for an agenda view. It can also be
14218 a Lisp form or a function that should be called at each matched headline, in
14219 this case the return value is a list of all return values from these calls.
14221 MATCHER is a Lisp form to be evaluated, testing if a given set of tags
14222 qualifies a headline for inclusion. When TODO-ONLY is non-nil,
14223 only lines with a not-done TODO keyword are included in the output.
14224 This should be the same variable that was scoped into
14225 and set by `org-make-tags-matcher' when it constructed MATCHER.
14227 START-LEVEL can be a string with asterisks, reducing the scope to
14228 headlines matching this string."
14229 (require 'org-agenda)
14230 (let* ((re (concat "^"
14231 (if start-level
14232 ;; Get the correct level to match
14233 (concat "\\*\\{" (number-to-string start-level) "\\} ")
14234 org-outline-regexp)
14235 " *\\(\\<\\("
14236 (mapconcat 'regexp-quote org-todo-keywords-1 "\\|")
14237 (org-re "\\)\\>\\)? *\\(.*?\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*$")))
14238 (props (list 'face 'default
14239 'done-face 'org-agenda-done
14240 'undone-face 'default
14241 'mouse-face 'highlight
14242 'org-not-done-regexp org-not-done-regexp
14243 'org-todo-regexp org-todo-regexp
14244 'org-complex-heading-regexp org-complex-heading-regexp
14245 'help-echo
14246 (format "mouse-2 or RET jump to org file %s"
14247 (abbreviate-file-name
14248 (or (buffer-file-name (buffer-base-buffer))
14249 (buffer-name (buffer-base-buffer)))))))
14250 (org-map-continue-from nil)
14251 lspos tags tags-list
14252 (tags-alist (list (cons 0 org-file-tags)))
14253 (llast 0) rtn rtn1 level category i txt
14254 todo marker entry priority
14255 ts-date ts-date-type ts-date-pair)
14256 (when (not (or (member action '(agenda sparse-tree)) (functionp action)))
14257 (setq action (list 'lambda nil action)))
14258 (save-excursion
14259 (goto-char (point-min))
14260 (when (eq action 'sparse-tree)
14261 (org-overview)
14262 (org-remove-occur-highlights))
14263 (while (let (case-fold-search)
14264 (re-search-forward re nil t))
14265 (setq org-map-continue-from nil)
14266 (catch :skip
14267 (setq todo (if (match-end 1) (org-match-string-no-properties 2))
14268 tags (if (match-end 4) (org-match-string-no-properties 4)))
14269 (goto-char (setq lspos (match-beginning 0)))
14270 (setq level (org-reduced-level (org-outline-level))
14271 category (org-get-category))
14272 (when (eq action 'agenda)
14273 (setq ts-date-pair (org-agenda-entry-get-agenda-timestamp (point))
14274 ts-date (car ts-date-pair)
14275 ts-date-type (cdr ts-date-pair)))
14276 (setq i llast llast level)
14277 ;; remove tag lists from same and sublevels
14278 (while (>= i level)
14279 (when (setq entry (assoc i tags-alist))
14280 (setq tags-alist (delete entry tags-alist)))
14281 (setq i (1- i)))
14282 ;; add the next tags
14283 (when tags
14284 (setq tags (org-split-string tags ":")
14285 tags-alist
14286 (cons (cons level tags) tags-alist)))
14287 ;; compile tags for current headline
14288 (setq tags-list
14289 (if org-use-tag-inheritance
14290 (apply 'append (mapcar 'cdr (reverse tags-alist)))
14291 tags)
14292 org-scanner-tags tags-list)
14293 (when org-use-tag-inheritance
14294 (setcdr (car tags-alist)
14295 (mapcar (lambda (x)
14296 (setq x (copy-sequence x))
14297 (org-add-prop-inherited x))
14298 (cdar tags-alist))))
14299 (when (and tags org-use-tag-inheritance
14300 (or (not (eq t org-use-tag-inheritance))
14301 org-tags-exclude-from-inheritance))
14302 ;; selective inheritance, remove uninherited ones
14303 (setcdr (car tags-alist)
14304 (org-remove-uninherited-tags (cdar tags-alist))))
14305 (when (and
14307 ;; eval matcher only when the todo condition is OK
14308 (and (or (not todo-only) (member todo org-not-done-keywords))
14309 (let ((case-fold-search t) (org-trust-scanner-tags t))
14310 (eval matcher)))
14312 ;; Call the skipper, but return t if it does not skip,
14313 ;; so that the `and' form continues evaluating
14314 (progn
14315 (unless (eq action 'sparse-tree) (org-agenda-skip))
14318 ;; Check if timestamps are deselecting this entry
14319 (or (not todo-only)
14320 (and (member todo org-not-done-keywords)
14321 (or (not org-agenda-tags-todo-honor-ignore-options)
14322 (not (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item))))))
14324 ;; select this headline
14325 (cond
14326 ((eq action 'sparse-tree)
14327 (and org-highlight-sparse-tree-matches
14328 (org-get-heading) (match-end 0)
14329 (org-highlight-new-match
14330 (match-beginning 1) (match-end 1)))
14331 (org-show-context 'tags-tree))
14332 ((eq action 'agenda)
14333 (setq txt (org-agenda-format-item
14335 (concat
14336 (if (eq org-tags-match-list-sublevels 'indented)
14337 (make-string (1- level) ?.) "")
14338 (org-get-heading))
14339 (make-string level ?\s)
14340 category
14341 tags-list)
14342 priority (org-get-priority txt))
14343 (goto-char lspos)
14344 (setq marker (org-agenda-new-marker))
14345 (org-add-props txt props
14346 'org-marker marker 'org-hd-marker marker 'org-category category
14347 'todo-state todo
14348 'ts-date ts-date
14349 'priority priority
14350 'type (concat "tagsmatch" ts-date-type))
14351 (push txt rtn))
14352 ((functionp action)
14353 (setq org-map-continue-from nil)
14354 (save-excursion
14355 (setq rtn1 (funcall action))
14356 (push rtn1 rtn)))
14357 (t (user-error "Invalid action")))
14359 ;; if we are to skip sublevels, jump to end of subtree
14360 (unless org-tags-match-list-sublevels
14361 (org-end-of-subtree t)
14362 (backward-char 1))))
14363 ;; Get the correct position from where to continue
14364 (if org-map-continue-from
14365 (goto-char org-map-continue-from)
14366 (and (= (point) lspos) (end-of-line 1)))))
14367 (when (and (eq action 'sparse-tree)
14368 (not org-sparse-tree-open-archived-trees))
14369 (org-hide-archived-subtrees (point-min) (point-max)))
14370 (nreverse rtn)))
14372 (defun org-remove-uninherited-tags (tags)
14373 "Remove all tags that are not inherited from the list TAGS."
14374 (cond
14375 ((eq org-use-tag-inheritance t)
14376 (if org-tags-exclude-from-inheritance
14377 (org-delete-all org-tags-exclude-from-inheritance tags)
14378 tags))
14379 ((not org-use-tag-inheritance) nil)
14380 ((stringp org-use-tag-inheritance)
14381 (delq nil (mapcar
14382 (lambda (x)
14383 (if (and (string-match org-use-tag-inheritance x)
14384 (not (member x org-tags-exclude-from-inheritance)))
14385 x nil))
14386 tags)))
14387 ((listp org-use-tag-inheritance)
14388 (delq nil (mapcar
14389 (lambda (x)
14390 (if (member x org-use-tag-inheritance) x nil))
14391 tags)))))
14393 (defun org-match-sparse-tree (&optional todo-only match)
14394 "Create a sparse tree according to tags string MATCH.
14395 MATCH can contain positive and negative selection of tags, like
14396 \"+WORK+URGENT-WITHBOSS\".
14397 If optional argument TODO-ONLY is non-nil, only select lines that are
14398 also TODO lines."
14399 (interactive "P")
14400 (org-agenda-prepare-buffers (list (current-buffer)))
14401 (org-scan-tags 'sparse-tree (cdr (org-make-tags-matcher match)) todo-only))
14403 (defalias 'org-tags-sparse-tree 'org-match-sparse-tree)
14405 (defvar org-cached-props nil)
14406 (defun org-cached-entry-get (pom property)
14407 (if (or (eq t org-use-property-inheritance)
14408 (and (stringp org-use-property-inheritance)
14409 (let ((case-fold-search t))
14410 (org-string-match-p org-use-property-inheritance property)))
14411 (and (listp org-use-property-inheritance)
14412 (member-ignore-case property org-use-property-inheritance)))
14413 ;; Caching is not possible, check it directly.
14414 (org-entry-get pom property 'inherit)
14415 ;; Get all properties, so we can do complicated checks easily.
14416 (cdr (assoc-string property
14417 (or org-cached-props
14418 (setq org-cached-props (org-entry-properties pom)))
14419 t))))
14421 (defun org-global-tags-completion-table (&optional files)
14422 "Return the list of all tags in all agenda buffer/files.
14423 Optional FILES argument is a list of files which can be used
14424 instead of the agenda files."
14425 (save-excursion
14426 (org-uniquify
14427 (delq nil
14428 (apply 'append
14429 (mapcar
14430 (lambda (file)
14431 (set-buffer (find-file-noselect file))
14432 (append (org-get-buffer-tags)
14433 (mapcar (lambda (x) (if (stringp (car-safe x))
14434 (list (car-safe x)) nil))
14435 org-tag-alist)))
14436 (if (and files (car files))
14437 files
14438 (org-agenda-files))))))))
14440 (defun org-make-tags-matcher (match)
14441 "Create the TAGS/TODO matcher form for the selection string MATCH.
14443 The variable `todo-only' is scoped dynamically into this function.
14444 It will be set to t if the matcher restricts matching to TODO entries,
14445 otherwise will not be touched.
14447 Returns a cons of the selection string MATCH and the constructed
14448 lisp form implementing the matcher. The matcher is to be evaluated
14449 at an Org entry, with point on the headline, and returns t if the
14450 entry matches the selection string MATCH. The returned lisp form
14451 references two variables with information about the entry, which
14452 must be bound around the form's evaluation: todo, the TODO keyword
14453 at the entry (or nil of none); and tags-list, the list of all tags
14454 at the entry including inherited ones. Additionally, the category
14455 of the entry (if any) must be specified as the text property
14456 `org-category' on the headline.
14458 See also `org-scan-tags'.
14460 (declare (special todo-only))
14461 (unless (boundp 'todo-only)
14462 (error "`org-make-tags-matcher' expects todo-only to be scoped in"))
14463 (unless match
14464 ;; Get a new match request, with completion against the global
14465 ;; tags table and the local tags in current buffer
14466 (let ((org-last-tags-completion-table
14467 (org-uniquify
14468 (delq nil (append (org-get-buffer-tags)
14469 (org-global-tags-completion-table))))))
14470 (setq match (org-completing-read-no-i
14471 "Match: " 'org-tags-completion-function nil nil nil
14472 'org-tags-history))))
14474 ;; Parse the string and create a lisp form
14475 (let ((match0 match)
14476 (re (org-re "^&?\\([-+:]\\)?\\({[^}]+}\\|LEVEL\\([<=>]\\{1,2\\}\\)\\([0-9]+\\)\\|\\(\\(?:[[:alnum:]_]+\\(?:\\\\-\\)*\\)+\\)\\([<>=]\\{1,2\\}\\)\\({[^}]+}\\|\"[^\"]*\"\\|-?[.0-9]+\\(?:[eE][-+]?[0-9]+\\)?\\)\\|[[:alnum:]_@#%]+\\)"))
14477 minus tag mm
14478 tagsmatch todomatch tagsmatcher todomatcher kwd matcher
14479 orterms term orlist re-p str-p level-p level-op time-p
14480 prop-p pn pv po gv rest (start 0) (ss 0))
14481 ;; Expand group tags
14482 (setq match (org-tags-expand match))
14484 ;; Check if there is a TODO part of this match, which would be the
14485 ;; part after a "/". TO make sure that this slash is not part of
14486 ;; a property value to be matched against, we also check that there
14487 ;; is no " after that slash.
14488 ;; First, find the last slash
14489 (while (string-match "/+" match ss)
14490 (setq start (match-beginning 0) ss (match-end 0)))
14491 (if (and (string-match "/+" match start)
14492 (not (save-match-data (string-match "\"" match start))))
14493 ;; match contains also a todo-matching request
14494 (progn
14495 (setq tagsmatch (substring match 0 (match-beginning 0))
14496 todomatch (substring match (match-end 0)))
14497 (if (string-match "^!" todomatch)
14498 (setq todo-only t todomatch (substring todomatch 1)))
14499 (if (string-match "^\\s-*$" todomatch)
14500 (setq todomatch nil)))
14501 ;; only matching tags
14502 (setq tagsmatch match todomatch nil))
14504 ;; Make the tags matcher
14505 (if (or (not tagsmatch) (not (string-match "\\S-" tagsmatch)))
14506 (setq tagsmatcher t)
14507 (setq orterms (org-split-string tagsmatch "|") orlist nil)
14508 (while (setq term (pop orterms))
14509 (while (and (equal (substring term -1) "\\") orterms)
14510 (setq term (concat term "|" (pop orterms)))) ; repair bad split
14511 (while (string-match re term)
14512 (setq rest (substring term (match-end 0))
14513 minus (and (match-end 1)
14514 (equal (match-string 1 term) "-"))
14515 tag (save-match-data (replace-regexp-in-string
14516 "\\\\-" "-"
14517 (match-string 2 term)))
14518 re-p (equal (string-to-char tag) ?{)
14519 level-p (match-end 4)
14520 prop-p (match-end 5)
14521 mm (cond
14522 (re-p `(org-match-any-p ,(substring tag 1 -1) tags-list))
14523 (level-p
14524 (setq level-op (org-op-to-function (match-string 3 term)))
14525 `(,level-op level ,(string-to-number
14526 (match-string 4 term))))
14527 (prop-p
14528 (setq pn (match-string 5 term)
14529 po (match-string 6 term)
14530 pv (match-string 7 term)
14531 re-p (equal (string-to-char pv) ?{)
14532 str-p (equal (string-to-char pv) ?\")
14533 time-p (save-match-data
14534 (string-match "^\"[[<].*[]>]\"$" pv))
14535 pv (if (or re-p str-p) (substring pv 1 -1) pv))
14536 (if time-p (setq pv (org-matcher-time pv)))
14537 (setq po (org-op-to-function po (if time-p 'time str-p)))
14538 (cond
14539 ((equal pn "CATEGORY")
14540 (setq gv '(get-text-property (point) 'org-category)))
14541 ((equal pn "TODO")
14542 (setq gv 'todo))
14544 (setq gv `(org-cached-entry-get nil ,pn))))
14545 (if re-p
14546 (if (eq po 'org<>)
14547 `(not (string-match ,pv (or ,gv "")))
14548 `(string-match ,pv (or ,gv "")))
14549 (if str-p
14550 `(,po (or ,gv "") ,pv)
14551 `(,po (string-to-number (or ,gv ""))
14552 ,(string-to-number pv) ))))
14553 (t `(member ,tag tags-list)))
14554 mm (if minus (list 'not mm) mm)
14555 term rest)
14556 (push mm tagsmatcher))
14557 (push (if (> (length tagsmatcher) 1)
14558 (cons 'and tagsmatcher)
14559 (car tagsmatcher))
14560 orlist)
14561 (setq tagsmatcher nil))
14562 (setq tagsmatcher (if (> (length orlist) 1) (cons 'or orlist) (car orlist)))
14563 (setq tagsmatcher
14564 (list 'progn '(setq org-cached-props nil) tagsmatcher)))
14565 ;; Make the todo matcher
14566 (if (or (not todomatch) (not (string-match "\\S-" todomatch)))
14567 (setq todomatcher t)
14568 (setq orterms (org-split-string todomatch "|") orlist nil)
14569 (dolist (term orterms)
14570 (while (string-match re term)
14571 (setq minus (and (match-end 1)
14572 (equal (match-string 1 term) "-"))
14573 kwd (match-string 2 term)
14574 re-p (equal (string-to-char kwd) ?{)
14575 term (substring term (match-end 0))
14576 mm (if re-p
14577 `(string-match ,(substring kwd 1 -1) todo)
14578 (list 'equal 'todo kwd))
14579 mm (if minus (list 'not mm) mm))
14580 (push mm todomatcher))
14581 (push (if (> (length todomatcher) 1)
14582 (cons 'and todomatcher)
14583 (car todomatcher))
14584 orlist)
14585 (setq todomatcher nil))
14586 (setq todomatcher (if (> (length orlist) 1)
14587 (cons 'or orlist) (car orlist))))
14589 ;; Return the string and lisp forms of the matcher
14590 (setq matcher (if todomatcher
14591 (list 'and tagsmatcher todomatcher)
14592 tagsmatcher))
14593 (when todo-only
14594 (setq matcher (list 'and '(member todo org-not-done-keywords)
14595 matcher)))
14596 (cons match0 matcher)))
14598 (defun org-tags-expand (match &optional single-as-list downcased tags-already-expanded)
14599 "Expand group tags in MATCH.
14601 This replaces every group tag in MATCH with a regexp tag search.
14602 For example, a group tag \"Work\" defined as { Work : Lab Conf }
14603 will be replaced like this:
14605 Work => {\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14606 +Work => +{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14607 -Work => -{\\<\\(?:Work\\|Lab\\|Conf\\)\\>}
14609 Replacing by a regexp preserves the structure of the match.
14610 E.g., this expansion
14612 Work|Home => {\\(?:Work\\|Lab\\|Conf\\}|Home
14614 will match anything tagged with \"Lab\" and \"Home\", or tagged
14615 with \"Conf\" and \"Home\" or tagged with \"Work\" and \"home\".
14617 A group tag in MATCH can contain regular expressions of its own.
14618 For example, a group tag \"Proj\" defined as { Proj : {P@.+} }
14619 will be replaced like this:
14621 Proj => {\\<\\(?:Proj\\)\\>\\|P@.+}
14623 When the optional argument SINGLE-AS-LIST is non-nil, MATCH is
14624 assumed to be a single group tag, and the function will return
14625 the list of tags in this group.
14627 When DOWNCASE is non-nil, expand downcased TAGS."
14628 (if org-group-tags
14629 (let* ((case-fold-search t)
14630 (stable org-mode-syntax-table)
14631 (taggroups (or org-tag-groups-alist-for-agenda org-tag-groups-alist))
14632 (taggroups (if downcased
14633 (mapcar (lambda (tg) (mapcar #'downcase tg))
14634 taggroups)
14635 taggroups))
14636 (taggroups-keys (mapcar #'car taggroups))
14637 (return-match (if downcased (downcase match) match))
14638 (count 0)
14639 (work-already-expanded tags-already-expanded)
14640 regexps-in-match tags-in-group regexp-in-group regexp-in-group-escaped)
14641 ;; @ and _ are allowed as word-components in tags.
14642 (modify-syntax-entry ?@ "w" stable)
14643 (modify-syntax-entry ?_ "w" stable)
14644 ;; Temporarily replace regexp-expressions in the match-expression.
14645 (while (string-match "{.+?}" return-match)
14646 (incf count)
14647 (push (match-string 0 return-match) regexps-in-match)
14648 (setq return-match (replace-match (format "<%d>" count) t nil return-match)))
14649 (while (and taggroups-keys
14650 (with-syntax-table stable
14651 (string-match
14652 (concat "\\(?1:[+-]?\\)\\(?2:\\<"
14653 (regexp-opt taggroups-keys) "\\>\\)")
14654 return-match)))
14655 (let* ((dir (match-string 1 return-match))
14656 (tag (match-string 2 return-match))
14657 (tag (if downcased (downcase tag) tag)))
14658 (unless (or (get-text-property 0 'grouptag (match-string 2 return-match))
14659 (member tag work-already-expanded))
14660 (setq tags-in-group (assoc tag taggroups))
14661 (push tag work-already-expanded)
14662 ;; Recursively expand each tag in the group, if the tag hasn't
14663 ;; already been expanded. Restore the match-data after all recursive calls.
14664 (save-match-data
14665 (let (tags-expanded)
14666 (dolist (x (cdr tags-in-group))
14667 (if (and (member x taggroups-keys)
14668 (not (member x work-already-expanded)))
14669 (setq tags-expanded
14670 (delete-dups
14671 (append
14672 (org-tags-expand x t downcased
14673 work-already-expanded)
14674 tags-expanded)))
14675 (setq tags-expanded
14676 (append (list x) tags-expanded)))
14677 (setq work-already-expanded
14678 (delete-dups
14679 (append tags-expanded
14680 work-already-expanded))))
14681 (setq tags-in-group
14682 (delete-dups (cons (car tags-in-group)
14683 tags-expanded)))))
14684 ;; Filter tag-regexps from tags.
14685 (setq regexp-in-group-escaped
14686 (delq nil (mapcar (lambda (x)
14687 (if (stringp x)
14688 (and (equal "{" (substring x 0 1))
14689 (equal "}" (substring x -1))
14692 tags-in-group))
14693 regexp-in-group
14694 (mapcar (lambda (x)
14695 (substring x 1 -1))
14696 regexp-in-group-escaped)
14697 tags-in-group
14698 (delq nil (mapcar (lambda (x)
14699 (if (stringp x)
14700 (and (not (equal "{" (substring x 0 1)))
14701 (not (equal "}" (substring x -1)))
14704 tags-in-group)))
14705 ;; If single-as-list, do no more in the while-loop.
14706 (if (not single-as-list)
14707 (progn
14708 (when regexp-in-group
14709 (setq regexp-in-group
14710 (concat "\\|"
14711 (mapconcat 'identity regexp-in-group
14712 "\\|"))))
14713 (setq tags-in-group
14714 (concat dir
14715 "{\\<"
14716 (regexp-opt tags-in-group)
14717 "\\>"
14718 regexp-in-group
14719 "}"))
14720 (when (stringp tags-in-group)
14721 (org-add-props tags-in-group '(grouptag t)))
14722 (setq return-match
14723 (replace-match tags-in-group t t return-match)))
14724 (setq tags-in-group
14725 (append regexp-in-group-escaped tags-in-group))))
14726 (setq taggroups-keys (delete tag taggroups-keys))))
14727 ;; Add the regular expressions back into the match-expression again.
14728 (while regexps-in-match
14729 (setq return-match (replace-regexp-in-string (format "<%d>" count)
14730 (pop regexps-in-match)
14731 return-match t t))
14732 (decf count))
14733 (if single-as-list
14734 (if tags-in-group tags-in-group (list return-match))
14735 return-match))
14736 (if single-as-list
14737 (list (if downcased (downcase match) match))
14738 match)))
14740 (defun org-op-to-function (op &optional stringp)
14741 "Turn an operator into the appropriate function."
14742 (setq op
14743 (cond
14744 ((equal op "<" ) '(< string< org-time<))
14745 ((equal op ">" ) '(> org-string> org-time>))
14746 ((member op '("<=" "=<")) '(<= org-string<= org-time<=))
14747 ((member op '(">=" "=>")) '(>= org-string>= org-time>=))
14748 ((member op '("=" "==")) '(= string= org-time=))
14749 ((member op '("<>" "!=")) '(org<> org-string<> org-time<>))))
14750 (nth (if (eq stringp 'time) 2 (if stringp 1 0)) op))
14752 (defun org<> (a b) (not (= a b)))
14753 (defun org-string<= (a b) (or (string= a b) (string< a b)))
14754 (defun org-string>= (a b) (not (string< a b)))
14755 (defun org-string> (a b) (and (not (string= a b)) (not (string< a b))))
14756 (defun org-string<> (a b) (not (string= a b)))
14757 (defun org-time= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (= a b)))
14758 (defun org-time< (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (< a b)))
14759 (defun org-time<= (a b) (setq a (org-2ft a) b (org-2ft b)) (and (> a 0) (> b 0) (<= 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) (org<> a b)))
14763 (defun org-2ft (s)
14764 "Convert S to a floating point time.
14765 If S is already a number, just return it. If it is a string, parse
14766 it as a time string and apply `float-time' to it. If S is nil, just return 0."
14767 (cond
14768 ((numberp s) s)
14769 ((stringp s)
14770 (condition-case nil
14771 (float-time (apply 'encode-time (org-parse-time-string s)))
14772 (error 0.)))
14773 (t 0.)))
14775 (defun org-time-today ()
14776 "Time in seconds today at 0:00.
14777 Returns the float number of seconds since the beginning of the
14778 epoch to the beginning of today (00:00)."
14779 (float-time (apply 'encode-time
14780 (append '(0 0 0) (nthcdr 3 (decode-time))))))
14782 (defun org-matcher-time (s)
14783 "Interpret a time comparison value."
14784 (save-match-data
14785 (cond
14786 ((string= s "<now>") (float-time))
14787 ((string= s "<today>") (org-time-today))
14788 ((string= s "<tomorrow>") (+ 86400.0 (org-time-today)))
14789 ((string= s "<yesterday>") (- (org-time-today) 86400.0))
14790 ((string-match "^<\\([-+][0-9]+\\)\\([hdwmy]\\)>$" s)
14791 (+ (org-time-today)
14792 (* (string-to-number (match-string 1 s))
14793 (cdr (assoc (match-string 2 s)
14794 '(("d" . 86400.0) ("w" . 604800.0)
14795 ("m" . 2678400.0) ("y" . 31557600.0)))))))
14796 (t (org-2ft s)))))
14798 (defun org-match-any-p (re list)
14799 "Does re match any element of list?"
14800 (setq list (mapcar (lambda (x) (string-match re x)) list))
14801 (delq nil list))
14803 (defvar org-add-colon-after-tag-completion nil) ;; dynamically scoped param
14804 (defvar org-tags-overlay (make-overlay 1 1))
14805 (org-detach-overlay org-tags-overlay)
14807 (defun org-get-local-tags-at (&optional pos)
14808 "Get a list of tags defined in the current headline."
14809 (org-get-tags-at pos 'local))
14811 (defun org-get-local-tags ()
14812 "Get a list of tags defined in the current headline."
14813 (org-get-tags-at nil 'local))
14815 (defun org-get-tags-at (&optional pos local)
14816 "Get a list of all headline tags applicable at POS.
14817 POS defaults to point. If tags are inherited, the list contains
14818 the targets in the same sequence as the headlines appear, i.e.
14819 the tags of the current headline come last.
14820 When LOCAL is non-nil, only return tags from the current headline,
14821 ignore inherited ones."
14822 (interactive)
14823 (if (and org-trust-scanner-tags
14824 (or (not pos) (equal pos (point)))
14825 (not local))
14826 org-scanner-tags
14827 (let (tags ltags lastpos parent)
14828 (save-excursion
14829 (save-restriction
14830 (widen)
14831 (goto-char (or pos (point)))
14832 (save-match-data
14833 (catch 'done
14834 (condition-case nil
14835 (progn
14836 (org-back-to-heading t)
14837 (while (not (equal lastpos (point)))
14838 (setq lastpos (point))
14839 (when (looking-at
14840 (org-re "[^\r\n]+?:\\([[:alnum:]_@#%:]+\\):[ \t]*$"))
14841 (setq ltags (org-split-string
14842 (org-match-string-no-properties 1) ":"))
14843 (when parent
14844 (setq ltags (mapcar 'org-add-prop-inherited ltags)))
14845 (setq tags (append
14846 (if parent
14847 (org-remove-uninherited-tags ltags)
14848 ltags)
14849 tags)))
14850 (or org-use-tag-inheritance (throw 'done t))
14851 (if local (throw 'done t))
14852 (or (org-up-heading-safe) (error nil))
14853 (setq parent t)))
14854 (error nil)))))
14855 (if local
14856 tags
14857 (reverse (delete-dups
14858 (reverse (append
14859 (org-remove-uninherited-tags
14860 org-file-tags)
14861 tags)))))))))
14863 (defun org-add-prop-inherited (s)
14864 (add-text-properties 0 (length s) '(inherited t) s)
14867 (defun org-toggle-tag (tag &optional onoff)
14868 "Toggle the tag TAG for the current line.
14869 If ONOFF is `on' or `off', don't toggle but set to this state."
14870 (let (res current)
14871 (save-excursion
14872 (org-back-to-heading t)
14873 (if (re-search-forward (org-re "[ \t]:\\([[:alnum:]_@#%:]+\\):[ \t]*$")
14874 (point-at-eol) t)
14875 (progn
14876 (setq current (match-string 1))
14877 (replace-match ""))
14878 (setq current ""))
14879 (setq current (nreverse (org-split-string current ":")))
14880 (cond
14881 ((eq onoff 'on)
14882 (setq res t)
14883 (or (member tag current) (push tag current)))
14884 ((eq onoff 'off)
14885 (or (not (member tag current)) (setq current (delete tag current))))
14886 (t (if (member tag current)
14887 (setq current (delete tag current))
14888 (setq res t)
14889 (push tag current))))
14890 (end-of-line 1)
14891 (if current
14892 (progn
14893 (insert " :" (mapconcat 'identity (nreverse current) ":") ":")
14894 (org-set-tags nil t))
14895 (delete-horizontal-space))
14896 (run-hooks 'org-after-tags-change-hook))
14897 res))
14899 (defun org-align-tags-here (to-col)
14900 ;; Assumes that this is a headline
14901 "Align tags on the current headline to TO-COL."
14902 (let ((pos (point)) (col (current-column)) ncol tags-l p)
14903 (beginning-of-line 1)
14904 (if (and (looking-at (org-re ".*?\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
14905 (< pos (match-beginning 2)))
14906 (progn
14907 (setq tags-l (- (match-end 2) (match-beginning 2)))
14908 (goto-char (match-beginning 1))
14909 (insert " ")
14910 (delete-region (point) (1+ (match-beginning 2)))
14911 (setq ncol (max (current-column)
14912 (1+ col)
14913 (if (> to-col 0)
14914 to-col
14915 (- (abs to-col) tags-l))))
14916 (setq p (point))
14917 (insert (make-string (- ncol (current-column)) ?\ ))
14918 (setq ncol (current-column))
14919 (when indent-tabs-mode (tabify p (point-at-eol)))
14920 (org-move-to-column (min ncol col)))
14921 (goto-char pos))))
14923 (defun org-set-tags-command (&optional arg just-align)
14924 "Call the set-tags command for the current entry."
14925 (interactive "P")
14926 (if (or (org-at-heading-p) (and arg (org-before-first-heading-p)))
14927 (org-set-tags arg just-align)
14928 (save-excursion
14929 (unless (and (org-region-active-p)
14930 org-loop-over-headlines-in-active-region)
14931 (org-back-to-heading t))
14932 (org-set-tags arg just-align))))
14934 (defun org-set-tags-to (data)
14935 "Set the tags of the current entry to DATA, replacing the current tags.
14936 DATA may be a tags string like :aa:bb:cc:, or a list of tags.
14937 If DATA is nil or the empty string, any tags will be removed."
14938 (interactive "sTags: ")
14939 (setq data
14940 (cond
14941 ((eq data nil) "")
14942 ((equal data "") "")
14943 ((stringp data)
14944 (concat ":" (mapconcat 'identity (org-split-string data ":+") ":")
14945 ":"))
14946 ((listp data)
14947 (concat ":" (mapconcat 'identity data ":") ":"))))
14948 (when data
14949 (save-excursion
14950 (org-back-to-heading t)
14951 (when (looking-at org-complex-heading-regexp)
14952 (if (match-end 5)
14953 (progn
14954 (goto-char (match-beginning 5))
14955 (insert data)
14956 (delete-region (point) (point-at-eol))
14957 (org-set-tags nil 'align))
14958 (goto-char (point-at-eol))
14959 (insert " " data)
14960 (org-set-tags nil 'align)))
14961 (beginning-of-line 1)
14962 (if (looking-at ".*?\\([ \t]+\\)$")
14963 (delete-region (match-beginning 1) (match-end 1))))))
14965 (defun org-align-all-tags ()
14966 "Align the tags i all headings."
14967 (interactive)
14968 (save-excursion
14969 (or (ignore-errors (org-back-to-heading t))
14970 (outline-next-heading))
14971 (if (org-at-heading-p)
14972 (org-set-tags t)
14973 (message "No headings"))))
14975 (defvar org-indent-indentation-per-level)
14976 (defun org-set-tags (&optional arg just-align)
14977 "Set the tags for the current headline.
14978 With prefix ARG, realign all tags in headings in the current buffer.
14979 When JUST-ALIGN is non-nil, only align tags."
14980 (interactive "P")
14981 (if (and (org-region-active-p) org-loop-over-headlines-in-active-region)
14982 (let ((cl (if (eq org-loop-over-headlines-in-active-region 'start-level)
14983 'region-start-level
14984 'region))
14985 org-loop-over-headlines-in-active-region)
14986 (org-map-entries
14987 ;; We don't use ARG and JUST-ALIGN here because these args
14988 ;; are not useful when looping over headlines.
14989 #'org-set-tags
14990 org-loop-over-headlines-in-active-region
14992 '(when (outline-invisible-p) (org-end-of-subtree nil t))))
14993 (let ((org-setting-tags t))
14994 (if arg
14995 (save-excursion
14996 (goto-char (point-min))
14997 (let ((buffer-invisibility-spec (org-inhibit-invisibility)))
14998 (while (re-search-forward org-outline-regexp-bol nil t)
14999 (org-set-tags nil t)
15000 (end-of-line)))
15001 (message "All tags realigned to column %d" org-tags-column))
15002 (let* ((current (org-get-tags-string))
15003 (col (current-column))
15004 (tags
15005 (if just-align current
15006 ;; Get a new set of tags from the user.
15007 (save-excursion
15008 (let* ((table
15009 (setq
15010 org-last-tags-completion-table
15011 (append
15012 org-tag-persistent-alist
15013 (or org-tag-alist (org-get-buffer-tags))
15014 (and
15015 org-complete-tags-always-offer-all-agenda-tags
15016 (org-global-tags-completion-table
15017 (org-agenda-files))))))
15018 (current-tags (org-split-string current ":"))
15019 (inherited-tags
15020 (nreverse (nthcdr (length current-tags)
15021 (nreverse (org-get-tags-at))))))
15022 (replace-regexp-in-string
15023 "\\([-+&]+\\|,\\)"
15025 (if (or (eq t org-use-fast-tag-selection)
15026 (and org-use-fast-tag-selection
15027 (delq nil (mapcar #'cdr table))))
15028 (org-fast-tag-selection
15029 current-tags inherited-tags table
15030 (and org-fast-tag-selection-include-todo
15031 org-todo-key-alist))
15032 (let ((org-add-colon-after-tag-completion
15033 (< 1 (length table))))
15034 (org-trim
15035 (completing-read
15036 "Tags: "
15037 #'org-tags-completion-function
15038 nil nil current 'org-tags-history))))))))))
15040 (when org-tags-sort-function
15041 (setq tags
15042 (mapconcat
15043 #'identity
15044 (sort (org-split-string tags (org-re "[^[:alnum:]_@#%]+"))
15045 org-tags-sort-function)
15046 ":")))
15048 (if (not (org-string-nw-p tags)) (setq tags "")
15049 (unless (string-match ":\\'" tags) (setq tags (concat tags ":")))
15050 (unless (string-match "\\`:" tags) (setq tags (concat ":" tags))))
15052 ;; Insert new tags at the correct column
15053 (beginning-of-line)
15054 (let ((level (if (looking-at org-outline-regexp)
15055 (- (match-end 0) (point) 1)
15056 1)))
15057 (cond
15058 ((and (equal current "") (equal tags "")))
15059 ((re-search-forward
15060 (concat "\\([ \t]*" (regexp-quote current) "\\)[ \t]*$")
15061 (line-end-position)
15063 (if (equal tags "") (replace-match "" t t)
15064 (goto-char (match-beginning 0))
15065 (let* ((c0 (current-column))
15066 ;; Compute offset for the case of org-indent-mode
15067 ;; active.
15068 (di (if (org-bound-and-true-p org-indent-mode)
15069 (* (1- org-indent-indentation-per-level)
15070 (1- level))
15072 (p0 (if (eq (char-before) ?*) (1+ (point)) (point)))
15073 (tc (+ org-tags-column
15074 (if (> org-tags-column 0) (- di) di)))
15075 (c1 (max (1+ c0)
15076 (if (> tc 0) tc
15077 (- (- tc) (string-width tags)))))
15078 (rpl (concat (make-string (max 0 (- c1 c0)) ?\s) tags)))
15079 (replace-match rpl t t)
15080 (when (and (not (featurep 'xemacs)) indent-tabs-mode)
15081 (tabify p0 (point))))))
15082 (t (error "Tags alignment failed"))))
15083 (org-move-to-column col))
15084 (unless just-align (run-hooks 'org-after-tags-change-hook))))))
15086 (defun org-change-tag-in-region (beg end tag off)
15087 "Add or remove TAG for each entry in the region.
15088 This works in the agenda, and also in an org-mode buffer."
15089 (interactive
15090 (list (region-beginning) (region-end)
15091 (let ((org-last-tags-completion-table
15092 (if (derived-mode-p 'org-mode)
15093 (org-uniquify
15094 (delq nil (append (org-get-buffer-tags)
15095 (org-global-tags-completion-table))))
15096 (org-global-tags-completion-table))))
15097 (org-icompleting-read
15098 "Tag: " 'org-tags-completion-function nil nil nil
15099 'org-tags-history))
15100 (progn
15101 (message "[s]et or [r]emove? ")
15102 (equal (read-char-exclusive) ?r))))
15103 (if (fboundp 'deactivate-mark) (deactivate-mark))
15104 (let ((agendap (equal major-mode 'org-agenda-mode))
15105 l1 l2 m buf pos newhead (cnt 0))
15106 (goto-char end)
15107 (setq l2 (1- (org-current-line)))
15108 (goto-char beg)
15109 (setq l1 (org-current-line))
15110 (loop for l from l1 to l2 do
15111 (org-goto-line l)
15112 (setq m (get-text-property (point) 'org-hd-marker))
15113 (when (or (and (derived-mode-p 'org-mode) (org-at-heading-p))
15114 (and agendap m))
15115 (setq buf (if agendap (marker-buffer m) (current-buffer))
15116 pos (if agendap m (point)))
15117 (with-current-buffer buf
15118 (save-excursion
15119 (save-restriction
15120 (goto-char pos)
15121 (setq cnt (1+ cnt))
15122 (org-toggle-tag tag (if off 'off 'on))
15123 (setq newhead (org-get-heading)))))
15124 (and agendap (org-agenda-change-all-lines newhead m))))
15125 (message "Tag :%s: %s in %d headings" tag (if off "removed" "set") cnt)))
15127 (defun org-tags-completion-function (string predicate &optional flag)
15128 (let (s1 s2 rtn (ctable org-last-tags-completion-table)
15129 (confirm (lambda (x) (stringp (car x)))))
15130 (if (string-match "^\\(.*[-+:&,|]\\)\\([^-+:&,|]*\\)$" string)
15131 (setq s1 (match-string 1 string)
15132 s2 (match-string 2 string))
15133 (setq s1 "" s2 string))
15134 (cond
15135 ((eq flag nil)
15136 ;; try completion
15137 (setq rtn (try-completion s2 ctable confirm))
15138 (if (stringp rtn)
15139 (setq rtn
15140 (concat s1 s2 (substring rtn (length s2))
15141 (if (and org-add-colon-after-tag-completion
15142 (assoc rtn ctable))
15143 ":" ""))))
15144 rtn)
15145 ((eq flag t)
15146 ;; all-completions
15147 (all-completions s2 ctable confirm))
15148 ((eq flag 'lambda)
15149 ;; exact match?
15150 (assoc s2 ctable)))))
15152 (defun org-fast-tag-insert (kwd tags face &optional end)
15153 "Insert KDW, and the TAGS, the latter with face FACE.
15154 Also insert END."
15155 (insert (format "%-12s" (concat kwd ":"))
15156 (org-add-props (mapconcat 'identity tags " ") nil 'face face)
15157 (or end "")))
15159 (defun org-fast-tag-show-exit (flag)
15160 (save-excursion
15161 (org-goto-line 3)
15162 (if (re-search-forward "[ \t]+Next change exits" (point-at-eol) t)
15163 (replace-match ""))
15164 (when flag
15165 (end-of-line 1)
15166 (org-move-to-column (- (window-width) 19) t)
15167 (insert (org-add-props " Next change exits" nil 'face 'org-warning)))))
15169 (defun org-set-current-tags-overlay (current prefix)
15170 "Add an overlay to CURRENT tag with PREFIX."
15171 (let ((s (concat ":" (mapconcat 'identity current ":") ":")))
15172 (if (featurep 'xemacs)
15173 (org-overlay-display org-tags-overlay (concat prefix s)
15174 'secondary-selection)
15175 (put-text-property 0 (length s) 'face '(secondary-selection org-tag) s)
15176 (org-overlay-display org-tags-overlay (concat prefix s)))))
15178 (defvar org-last-tag-selection-key nil)
15179 (defun org-fast-tag-selection (current inherited table &optional todo-table)
15180 "Fast tag selection with single keys.
15181 CURRENT is the current list of tags in the headline, INHERITED is the
15182 list of inherited tags, and TABLE is an alist of tags and corresponding keys,
15183 possibly with grouping information. TODO-TABLE is a similar table with
15184 TODO keywords, should these have keys assigned to them.
15185 If the keys are nil, a-z are automatically assigned.
15186 Returns the new tags string, or nil to not change the current settings."
15187 (let* ((fulltable (append table todo-table))
15188 (maxlen (apply 'max (mapcar
15189 (lambda (x)
15190 (if (stringp (car x)) (string-width (car x)) 0))
15191 fulltable)))
15192 (buf (current-buffer))
15193 (expert (eq org-fast-tag-selection-single-key 'expert))
15194 (buffer-tags nil)
15195 (fwidth (+ maxlen 3 1 3))
15196 (ncol (/ (- (window-width) 4) fwidth))
15197 (i-face 'org-done)
15198 (c-face 'org-todo)
15199 tg cnt e c char c1 c2 ntable tbl rtn
15200 ov-start ov-end ov-prefix
15201 (exit-after-next org-fast-tag-selection-single-key)
15202 (done-keywords org-done-keywords)
15203 groups ingroup intaggroup)
15204 (save-excursion
15205 (beginning-of-line 1)
15206 (if (looking-at
15207 (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15208 (setq ov-start (match-beginning 1)
15209 ov-end (match-end 1)
15210 ov-prefix "")
15211 (setq ov-start (1- (point-at-eol))
15212 ov-end (1+ ov-start))
15213 (skip-chars-forward "^\n\r")
15214 (setq ov-prefix
15215 (concat
15216 (buffer-substring (1- (point)) (point))
15217 (if (> (current-column) org-tags-column)
15219 (make-string (- org-tags-column (current-column)) ?\ ))))))
15220 (move-overlay org-tags-overlay ov-start ov-end)
15221 (save-window-excursion
15222 (if expert
15223 (set-buffer (get-buffer-create " *Org tags*"))
15224 (delete-other-windows)
15225 (set-window-buffer (split-window-vertically) (get-buffer-create " *Org tags*"))
15226 (org-switch-to-buffer-other-window " *Org tags*"))
15227 (erase-buffer)
15228 (org-set-local 'org-done-keywords done-keywords)
15229 (org-fast-tag-insert "Inherited" inherited i-face "\n")
15230 (org-fast-tag-insert "Current" current c-face "\n\n")
15231 (org-fast-tag-show-exit exit-after-next)
15232 (org-set-current-tags-overlay current ov-prefix)
15233 (setq tbl fulltable char ?a cnt 0)
15234 (while (setq e (pop tbl))
15235 (cond
15236 ((eq (car e) :startgroup)
15237 (push '() groups) (setq ingroup t)
15238 (unless (zerop cnt)
15239 (setq cnt 0)
15240 (insert "\n"))
15241 (insert (if (cdr e) (format "%s: " (cdr e)) "") "{ "))
15242 ((eq (car e) :endgroup)
15243 (setq ingroup nil cnt 0)
15244 (insert "}" (if (cdr e) (format " (%s) " (cdr e)) "") "\n"))
15245 ((eq (car e) :startgrouptag)
15246 (setq intaggroup t)
15247 (unless (zerop cnt)
15248 (setq cnt 0)
15249 (insert "\n"))
15250 (insert "[ "))
15251 ((eq (car e) :endgrouptag)
15252 (setq intaggroup nil cnt 0)
15253 (insert "]\n"))
15254 ((equal e '(:newline))
15255 (unless (zerop cnt)
15256 (setq cnt 0)
15257 (insert "\n")
15258 (setq e (car tbl))
15259 (while (equal (car tbl) '(:newline))
15260 (insert "\n")
15261 (setq tbl (cdr tbl)))))
15262 ((equal e '(:grouptags)) (insert " : "))
15264 (setq tg (copy-sequence (car e)) c2 nil)
15265 (if (cdr e)
15266 (setq c (cdr e))
15267 ;; automatically assign a character.
15268 (setq c1 (string-to-char
15269 (downcase (substring
15270 tg (if (= (string-to-char tg) ?@) 1 0)))))
15271 (if (or (rassoc c1 ntable) (rassoc c1 table))
15272 (while (or (rassoc char ntable) (rassoc char table))
15273 (setq char (1+ char)))
15274 (setq c2 c1))
15275 (setq c (or c2 char)))
15276 (when ingroup (push tg (car groups)))
15277 (setq tg (org-add-props tg nil 'face
15278 (cond
15279 ((not (assoc tg table))
15280 (org-get-todo-face tg))
15281 ((member tg current) c-face)
15282 ((member tg inherited) i-face))))
15283 (when (equal (caar tbl) :grouptags)
15284 (org-add-props tg nil 'face 'org-tag-group))
15285 (when (and (zerop cnt) (not ingroup) (not intaggroup)) (insert " "))
15286 (insert "[" c "] " tg (make-string
15287 (- fwidth 4 (length tg)) ?\ ))
15288 (push (cons tg c) ntable)
15289 (when (= (incf cnt) ncol)
15290 (insert "\n")
15291 (when (or ingroup intaggroup) (insert " "))
15292 (setq cnt 0)))))
15293 (setq ntable (nreverse ntable))
15294 (insert "\n")
15295 (goto-char (point-min))
15296 (unless expert (org-fit-window-to-buffer))
15297 (setq rtn
15298 (catch 'exit
15299 (while t
15300 (message "[a-z..]:Toggle [SPC]:clear [RET]:accept [TAB]:free [!] %sgroups%s"
15301 (if (not groups) "no " "")
15302 (if expert " [C-c]:window" (if exit-after-next " [C-c]:single" " [C-c]:multi")))
15303 (setq c (let ((inhibit-quit t)) (read-char-exclusive)))
15304 (setq org-last-tag-selection-key c)
15305 (cond
15306 ((= c ?\r) (throw 'exit t))
15307 ((= c ?!)
15308 (setq groups (not groups))
15309 (goto-char (point-min))
15310 (while (re-search-forward "[{}]" nil t) (replace-match " ")))
15311 ((= c ?\C-c)
15312 (if (not expert)
15313 (org-fast-tag-show-exit
15314 (setq exit-after-next (not exit-after-next)))
15315 (setq expert nil)
15316 (delete-other-windows)
15317 (set-window-buffer (split-window-vertically) " *Org tags*")
15318 (org-switch-to-buffer-other-window " *Org tags*")
15319 (org-fit-window-to-buffer)))
15320 ((or (= c ?\C-g)
15321 (and (= c ?q) (not (rassoc c ntable))))
15322 (org-detach-overlay org-tags-overlay)
15323 (setq quit-flag t))
15324 ((= c ?\ )
15325 (setq current nil)
15326 (when exit-after-next (setq exit-after-next 'now)))
15327 ((= c ?\t)
15328 (condition-case nil
15329 (setq tg (org-icompleting-read
15330 "Tag: "
15331 (or buffer-tags
15332 (with-current-buffer buf
15333 (setq buffer-tags
15334 (org-get-buffer-tags))))))
15335 (quit (setq tg "")))
15336 (when (string-match "\\S-" tg)
15337 (add-to-list 'buffer-tags (list tg))
15338 (if (member tg current)
15339 (setq current (delete tg current))
15340 (push tg current)))
15341 (when exit-after-next (setq exit-after-next 'now)))
15342 ((setq e (rassoc c todo-table) tg (car e))
15343 (with-current-buffer buf
15344 (save-excursion (org-todo tg)))
15345 (when exit-after-next (setq exit-after-next 'now)))
15346 ((setq e (rassoc c ntable) tg (car e))
15347 (if (member tg current)
15348 (setq current (delete tg current))
15349 (loop for g in groups do
15350 (when (member tg g)
15351 (dolist (x g) (setq current (delete x current)))))
15352 (push tg current))
15353 (when exit-after-next (setq exit-after-next 'now))))
15355 ;; Create a sorted list
15356 (setq current
15357 (sort current
15358 (lambda (a b)
15359 (assoc b (cdr (memq (assoc a ntable) ntable))))))
15360 (when (eq exit-after-next 'now) (throw 'exit t))
15361 (goto-char (point-min))
15362 (beginning-of-line 2)
15363 (delete-region (point) (point-at-eol))
15364 (org-fast-tag-insert "Current" current c-face)
15365 (org-set-current-tags-overlay current ov-prefix)
15366 (while (re-search-forward
15367 (org-re "\\[.\\] \\([[:alnum:]_@#%]+\\)") nil t)
15368 (setq tg (match-string 1))
15369 (add-text-properties
15370 (match-beginning 1) (match-end 1)
15371 (list 'face
15372 (cond
15373 ((member tg current) c-face)
15374 ((member tg inherited) i-face)
15375 (t (get-text-property (match-beginning 1) 'face))))))
15376 (goto-char (point-min)))))
15377 (org-detach-overlay org-tags-overlay)
15378 (if rtn
15379 (mapconcat 'identity current ":")
15380 nil))))
15382 (defun org-get-tags-string ()
15383 "Get the TAGS string in the current headline."
15384 (unless (org-at-heading-p t)
15385 (user-error "Not on a heading"))
15386 (save-excursion
15387 (beginning-of-line 1)
15388 (if (looking-at (org-re ".*[ \t]\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$"))
15389 (org-match-string-no-properties 1)
15390 "")))
15392 (defun org-get-tags ()
15393 "Get the list of tags specified in the current headline."
15394 (org-split-string (org-get-tags-string) ":"))
15396 (defun org-get-buffer-tags ()
15397 "Get a table of all tags used in the buffer, for completion."
15398 (org-with-wide-buffer
15399 (goto-char (point-min))
15400 (let ((tag-re (concat org-outline-regexp-bol
15401 "\\(?:.*?[ \t]\\)?"
15402 (org-re ":\\([[:alnum:]_@#%:]+\\):[ \t]*$")))
15403 tags)
15404 (while (re-search-forward tag-re nil t)
15405 (dolist (tag (org-split-string (org-match-string-no-properties 1) ":"))
15406 (push tag tags)))
15407 (mapcar #'list (append org-file-tags (org-uniquify tags))))))
15409 ;;;; The mapping API
15411 (defun org-map-entries (func &optional match scope &rest skip)
15412 "Call FUNC at each headline selected by MATCH in SCOPE.
15414 FUNC is a function or a lisp form. The function will be called without
15415 arguments, with the cursor positioned at the beginning of the headline.
15416 The return values of all calls to the function will be collected and
15417 returned as a list.
15419 The call to FUNC will be wrapped into a save-excursion form, so FUNC
15420 does not need to preserve point. After evaluation, the cursor will be
15421 moved to the end of the line (presumably of the headline of the
15422 processed entry) and search continues from there. Under some
15423 circumstances, this may not produce the wanted results. For example,
15424 if you have removed (e.g. archived) the current (sub)tree it could
15425 mean that the next entry will be skipped entirely. In such cases, you
15426 can specify the position from where search should continue by making
15427 FUNC set the variable `org-map-continue-from' to the desired buffer
15428 position.
15430 MATCH is a tags/property/todo match as it is used in the agenda tags view.
15431 Only headlines that are matched by this query will be considered during
15432 the iteration. When MATCH is nil or t, all headlines will be
15433 visited by the iteration.
15435 SCOPE determines the scope of this command. It can be any of:
15437 nil The current buffer, respecting the restriction if any
15438 tree The subtree started with the entry at point
15439 region The entries within the active region, if any
15440 region-start-level
15441 The entries within the active region, but only those at
15442 the same level than the first one.
15443 file The current buffer, without restriction
15444 file-with-archives
15445 The current buffer, and any archives associated with it
15446 agenda All agenda files
15447 agenda-with-archives
15448 All agenda files with any archive files associated with them
15449 \(file1 file2 ...)
15450 If this is a list, all files in the list will be scanned
15452 The remaining args are treated as settings for the skipping facilities of
15453 the scanner. The following items can be given here:
15455 archive skip trees with the archive tag
15456 comment skip trees with the COMMENT keyword
15457 function or Emacs Lisp form:
15458 will be used as value for `org-agenda-skip-function', so
15459 whenever the function returns a position, FUNC will not be
15460 called for that entry and search will continue from the
15461 position returned
15463 If your function needs to retrieve the tags including inherited tags
15464 at the *current* entry, you can use the value of the variable
15465 `org-scanner-tags' which will be much faster than getting the value
15466 with `org-get-tags-at'. If your function gets properties with
15467 `org-entry-properties' at the *current* entry, bind `org-trust-scanner-tags'
15468 to t around the call to `org-entry-properties' to get the same speedup.
15469 Note that if your function moves around to retrieve tags and properties at
15470 a *different* entry, you cannot use these techniques."
15471 (unless (and (or (eq scope 'region) (eq scope 'region-start-level))
15472 (not (org-region-active-p)))
15473 (let* ((org-agenda-archives-mode nil) ; just to make sure
15474 (org-agenda-skip-archived-trees (memq 'archive skip))
15475 (org-agenda-skip-comment-trees (memq 'comment skip))
15476 (org-agenda-skip-function
15477 (car (org-delete-all '(comment archive) skip)))
15478 (org-tags-match-list-sublevels t)
15479 (start-level (eq scope 'region-start-level))
15480 matcher file res
15481 org-todo-keywords-for-agenda
15482 org-done-keywords-for-agenda
15483 org-todo-keyword-alist-for-agenda
15484 org-tag-alist-for-agenda
15485 todo-only)
15487 (cond
15488 ((eq match t) (setq matcher t))
15489 ((eq match nil) (setq matcher t))
15490 (t (setq matcher (if match (cdr (org-make-tags-matcher match)) t))))
15492 (save-excursion
15493 (save-restriction
15494 (cond ((eq scope 'tree)
15495 (org-back-to-heading t)
15496 (org-narrow-to-subtree)
15497 (setq scope nil))
15498 ((and (or (eq scope 'region) (eq scope 'region-start-level))
15499 (org-region-active-p))
15500 ;; If needed, set start-level to a string like "2"
15501 (when start-level
15502 (save-excursion
15503 (goto-char (region-beginning))
15504 (unless (org-at-heading-p) (outline-next-heading))
15505 (setq start-level (org-current-level))))
15506 (narrow-to-region (region-beginning)
15507 (save-excursion
15508 (goto-char (region-end))
15509 (unless (and (bolp) (org-at-heading-p))
15510 (outline-next-heading))
15511 (point)))
15512 (setq scope nil)))
15514 (if (not scope)
15515 (progn
15516 (org-agenda-prepare-buffers
15517 (and buffer-file-name (list buffer-file-name)))
15518 (setq res (org-scan-tags func matcher todo-only start-level)))
15519 ;; Get the right scope
15520 (cond
15521 ((and scope (listp scope) (symbolp (car scope)))
15522 (setq scope (eval scope)))
15523 ((eq scope 'agenda)
15524 (setq scope (org-agenda-files t)))
15525 ((eq scope 'agenda-with-archives)
15526 (setq scope (org-agenda-files t))
15527 (setq scope (org-add-archive-files scope)))
15528 ((eq scope 'file)
15529 (setq scope (and buffer-file-name (list buffer-file-name))))
15530 ((eq scope 'file-with-archives)
15531 (setq scope (org-add-archive-files (list (buffer-file-name))))))
15532 (org-agenda-prepare-buffers scope)
15533 (dolist (file scope)
15534 (with-current-buffer (org-find-base-buffer-visiting file)
15535 (save-excursion
15536 (save-restriction
15537 (widen)
15538 (goto-char (point-min))
15539 (setq res (append res (org-scan-tags func matcher todo-only))))))))))
15540 res)))
15542 ;;; Properties API
15544 (defconst org-special-properties
15545 '("ALLTAGS" "BLOCKED" "CLOCKSUM" "CLOCKSUM_T" "CLOSED" "DEADLINE" "FILE"
15546 "ITEM" "PRIORITY" "SCHEDULED" "TAGS" "TIMESTAMP" "TIMESTAMP_IA" "TODO")
15547 "The special properties valid in Org mode.
15548 These are properties that are not defined in the property drawer,
15549 but in some other way.")
15551 (defconst org-default-properties
15552 '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID"
15553 "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY"
15554 "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE"
15555 "EXPORT_OPTIONS" "EXPORT_TEXT" "EXPORT_FILE_NAME"
15556 "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" "UNNUMBERED"
15557 "ORDERED" "NOBLOCKING" "COOKIE_DATA" "LOG_INTO_DRAWER" "REPEAT_TO_STATE"
15558 "CLOCK_MODELINE_TOTAL" "STYLE" "HTML_CONTAINER_CLASS")
15559 "Some properties that are used by Org mode for various purposes.
15560 Being in this list makes sure that they are offered for completion.")
15562 (defun org--valid-property-p (property)
15563 "Non nil when string PROPERTY is a valid property name."
15564 (not
15565 (or (equal property "")
15566 (org-string-match-p "\\s-" property))))
15568 (defun org--update-property-plist (key val props)
15569 "Associate KEY to VAL in alist PROPS.
15570 Modifications are made by side-effect. Return new alist."
15571 (let* ((appending (string= (substring key -1) "+"))
15572 (key (if appending (substring key 0 -1) key))
15573 (old (assoc-string key props t)))
15574 (if (not old) (cons (cons key val) props)
15575 (setcdr old (if appending (concat (cdr old) " " val) val))
15576 props)))
15578 (defun org-get-property-block (&optional beg force)
15579 "Return the (beg . end) range of the body of the property drawer.
15580 BEG is the beginning of the current subtree, or of the part
15581 before the first headline. If it is not given, it will be found.
15582 If the drawer does not exist, create it if FORCE is non-nil, or
15583 return nil."
15584 (org-with-wide-buffer
15585 (when beg (goto-char beg))
15586 (unless (org-before-first-heading-p)
15587 (let ((beg (cond (beg)
15588 ((or (not (featurep 'org-inlinetask))
15589 (org-inlinetask-in-task-p))
15590 (org-back-to-heading t))
15591 (t (org-with-limited-levels (org-back-to-heading t))))))
15592 (forward-line)
15593 (when (org-looking-at-p org-planning-line-re) (forward-line))
15594 (cond ((looking-at org-property-drawer-re)
15595 (forward-line)
15596 (cons (point) (progn (goto-char (match-end 0))
15597 (line-beginning-position))))
15598 (force
15599 (goto-char beg)
15600 (org-insert-property-drawer)
15601 (let ((pos (save-excursion (search-forward ":END:")
15602 (line-beginning-position))))
15603 (cons pos pos))))))))
15605 (defun org-at-property-p ()
15606 "Non-nil when point is inside a property drawer.
15607 See `org-property-re' for match data, if applicable."
15608 (save-excursion
15609 (beginning-of-line)
15610 (and (looking-at org-property-re)
15611 (let ((property-drawer (save-match-data (org-get-property-block))))
15612 (and property-drawer
15613 (>= (point) (car property-drawer))
15614 (< (point) (cdr property-drawer)))))))
15616 (defun org-property-action ()
15617 "Do an action on properties."
15618 (interactive)
15619 (unless (org-at-property-p) (user-error "Not at a property"))
15620 (message "Property Action: [s]et [d]elete [D]elete globally [c]ompute")
15621 (let ((c (read-char-exclusive)))
15622 (case c
15623 (?s (call-interactively #'org-set-property))
15624 (?d (call-interactively #'org-delete-property))
15625 (?D (call-interactively #'org-delete-property-globally))
15626 (?c (call-interactively #'org-compute-property-at-point))
15627 (otherwise (user-error "No such property action %c" c)))))
15629 (defun org-inc-effort ()
15630 "Increment the value of the effort property in the current entry."
15631 (interactive)
15632 (org-set-effort nil t))
15634 (defvar org-clock-effort) ; Defined in org-clock.el.
15635 (defvar org-clock-current-task) ; Defined in org-clock.el.
15636 (defun org-set-effort (&optional value increment)
15637 "Set the effort property of the current entry.
15638 With numerical prefix arg, use the nth allowed value, 0 stands for the
15639 10th allowed value.
15641 When INCREMENT is non-nil, set the property to the next allowed value."
15642 (interactive "P")
15643 (if (equal value 0) (setq value 10))
15644 (let* ((completion-ignore-case t)
15645 (prop org-effort-property)
15646 (cur (org-entry-get nil prop))
15647 (allowed (org-property-get-allowed-values nil prop 'table))
15648 (existing (mapcar 'list (org-property-values prop)))
15649 (heading (nth 4 (org-heading-components)))
15651 (val (cond
15652 ((stringp value) value)
15653 ((and allowed (integerp value))
15654 (or (car (nth (1- value) allowed))
15655 (car (org-last allowed))))
15656 ((and allowed increment)
15657 (or (caadr (member (list cur) allowed))
15658 (user-error "Allowed effort values are not set")))
15659 (allowed
15660 (message "Select 1-9,0, [RET%s]: %s"
15661 (if cur (concat "=" cur) "")
15662 (mapconcat 'car allowed " "))
15663 (setq rpl (read-char-exclusive))
15664 (if (equal rpl ?\r)
15666 (setq rpl (- rpl ?0))
15667 (if (equal rpl 0) (setq rpl 10))
15668 (if (and (> rpl 0) (<= rpl (length allowed)))
15669 (car (nth (1- rpl) allowed))
15670 (org-completing-read "Effort: " allowed nil))))
15672 (let (org-completion-use-ido org-completion-use-iswitchb)
15673 (org-completing-read
15674 (concat "Effort " (if (and cur (string-match "\\S-" cur))
15675 (concat "[" cur "]") "")
15676 ": ")
15677 existing nil nil "" nil cur))))))
15678 (unless (equal (org-entry-get nil prop) val)
15679 (org-entry-put nil prop val))
15680 (org-refresh-property
15681 '((effort . identity)
15682 (effort-minutes . org-duration-string-to-minutes))
15683 val)
15684 (when (string= heading org-clock-current-task)
15685 (setq org-clock-effort (get-text-property (point-at-bol) 'effort))
15686 (org-clock-update-mode-line))
15687 (message "%s is now %s" prop val)))
15689 (defun org-entry-properties (&optional pom which)
15690 "Get all properties of the current entry.
15692 When POM is a buffer position, get all properties from the entry
15693 there instead.
15695 This includes the TODO keyword, the tags, time strings for
15696 deadline, scheduled, and clocking, and any additional properties
15697 defined in the entry.
15699 If WHICH is nil or `all', get all properties. If WHICH is
15700 `special' or `standard', only get that subclass. If WHICH is
15701 a string, only get that property.
15703 Return value is an alist. Keys are properties, as upcased
15704 strings."
15705 (org-with-point-at pom
15706 (when (and (derived-mode-p 'org-mode)
15707 (ignore-errors (org-back-to-heading t)))
15708 (catch 'exit
15709 (let* ((beg (point))
15710 (specific (and (stringp which) (upcase which)))
15711 (which (cond ((not specific) which)
15712 ((member specific org-special-properties) 'special)
15713 (t 'standard)))
15714 props)
15715 ;; Get the special properties, like TODO and TAGS.
15716 (when (memq which '(nil all special))
15717 (when (or (not specific) (string= specific "CLOCKSUM"))
15718 (let ((clocksum (get-text-property (point) :org-clock-minutes)))
15719 (when clocksum
15720 (push (cons "CLOCKSUM"
15721 (org-columns-number-to-string
15722 (/ (float clocksum) 60.) 'add_times))
15723 props)))
15724 (when specific (throw 'exit props)))
15725 (when (or (not specific) (string= specific "CLOCKSUM_T"))
15726 (let ((clocksumt (get-text-property (point)
15727 :org-clock-minutes-today)))
15728 (when clocksumt
15729 (push (cons "CLOCKSUM_T"
15730 (org-columns-number-to-string
15731 (/ (float clocksumt) 60.) 'add_times))
15732 props)))
15733 (when specific (throw 'exit props)))
15734 (when (or (not specific) (string= specific "ITEM"))
15735 (when (looking-at org-complex-heading-regexp)
15736 (push (cons "ITEM"
15737 (concat
15738 (org-match-string-no-properties 1)
15739 (let ((title (org-match-string-no-properties 4)))
15740 (when (org-string-nw-p title)
15741 (concat " " (org-remove-tabs title))))))
15742 props))
15743 (when specific (throw 'exit props)))
15744 (when (or (not specific) (string= specific "TODO"))
15745 (let ((case-fold-search nil))
15746 (when (and (looking-at org-todo-line-regexp) (match-end 2))
15747 (push (cons "TODO" (org-match-string-no-properties 2)) props)))
15748 (when specific (throw 'exit props)))
15749 (when (or (not specific) (string= specific "PRIORITY"))
15750 (push (cons "PRIORITY"
15751 (if (looking-at org-priority-regexp)
15752 (org-match-string-no-properties 2)
15753 (char-to-string org-default-priority)))
15754 props)
15755 (when specific (throw 'exit props)))
15756 (when (or (not specific) (string= specific "FILE"))
15757 (push (cons "FILE" (buffer-file-name (buffer-base-buffer)))
15758 props)
15759 (when specific (throw 'exit props)))
15760 (when (or (not specific) (string= specific "TAGS"))
15761 (let ((value (org-string-nw-p (org-get-tags-string))))
15762 (when value (push (cons "TAGS" value) props)))
15763 (when specific (throw 'exit props)))
15764 (when (or (not specific) (string= specific "ALLTAGS"))
15765 (let ((value (org-get-tags-at)))
15766 (when value
15767 (push (cons "ALLTAGS"
15768 (format ":%s:" (mapconcat #'identity value ":")))
15769 props)))
15770 (when specific (throw 'exit props)))
15771 (when (or (not specific) (string= specific "BLOCKED"))
15772 (push (cons "BLOCKED" (if (org-entry-blocked-p) "t" "")) props)
15773 (when specific (throw 'exit props)))
15774 (when (or (not specific)
15775 (member specific '("CLOSED" "DEADLINE" "SCHEDULED")))
15776 (forward-line)
15777 (when (org-looking-at-p org-planning-line-re)
15778 (end-of-line)
15779 (let ((bol (line-beginning-position))
15780 ;; Backward compatibility: time keywords used to
15781 ;; be configurable (before 8.3). Make sure we
15782 ;; get the correct keyword.
15783 (key-assoc `(("CLOSED" . ,org-closed-string)
15784 ("DEADLINE" . ,org-deadline-string)
15785 ("SCHEDULED" . ,org-scheduled-string))))
15786 (dolist (pair (if specific (list (assoc specific key-assoc))
15787 key-assoc))
15788 (save-excursion
15789 (when (search-backward (cdr pair) bol t)
15790 (goto-char (match-end 0))
15791 (skip-chars-forward " \t")
15792 (and (looking-at org-ts-regexp-both)
15793 (push (cons (car pair)
15794 (org-match-string-no-properties 0))
15795 props)))))))
15796 (when specific (throw 'exit props)))
15797 (when (or (not specific)
15798 (member specific '("TIMESTAMP" "TIMESTAMP_IA")))
15799 (let ((find-ts
15800 (lambda (end ts)
15801 (let ((regexp (cond
15802 ((string= specific "TIMESTAMP")
15803 org-ts-regexp)
15804 ((string= specific "TIMESTAMP_IA")
15805 org-ts-regexp-inactive)
15806 ((assoc "TIMESTAMP_IA" ts)
15807 org-ts-regexp)
15808 ((assoc "TIMESTAMP" ts)
15809 org-ts-regexp-inactive)
15810 (t org-ts-regexp-both))))
15811 (catch 'next
15812 (while (re-search-forward regexp end t)
15813 (backward-char)
15814 (let ((object (org-element-context)))
15815 ;; Accept to match timestamps in node
15816 ;; properties, too.
15817 (when (memq (org-element-type object)
15818 '(node-property timestamp))
15819 (let ((type
15820 (org-element-property :type object)))
15821 (cond
15822 ((and (memq type '(active active-range))
15823 (not (equal specific "TIMESTAMP_IA")))
15824 (unless (assoc "TIMESTAMP" ts)
15825 (push (cons "TIMESTAMP"
15826 (org-element-property
15827 :raw-value object))
15829 (when specific (throw 'exit ts))))
15830 ((and (memq type '(inactive inactive-range))
15831 (not (string= specific "TIMESTAMP")))
15832 (unless (assoc "TIMESTAMP_IA" ts)
15833 (push (cons "TIMESTAMP_IA"
15834 (org-element-property
15835 :raw-value object))
15837 (when specific (throw 'exit ts))))))
15838 ;; Both timestamp types are found,
15839 ;; move to next part.
15840 (when (= (length ts) 2) (throw 'next ts)))))
15841 ts)))))
15842 (goto-char beg)
15843 ;; First look for timestamps within headline.
15844 (let ((ts (funcall find-ts (line-end-position) nil)))
15845 (if (= (length ts) 2) (setq props (nconc ts props))
15846 (forward-line)
15847 ;; Then find timestamps in the section, skipping
15848 ;; planning line.
15849 (when (org-looking-at-p org-planning-line-re)
15850 (forward-line))
15851 (let ((end (save-excursion (outline-next-heading))))
15852 (setq props (nconc (funcall find-ts end ts) props))))))))
15853 ;; Get the standard properties, like :PROP:.
15854 (when (memq which '(nil all standard))
15855 ;; If we are looking after a specific property, delegate
15856 ;; to `org-entry-get', which is faster. However, make an
15857 ;; exception for "CATEGORY", since it can be also set
15858 ;; through keywords (i.e. #+CATEGORY).
15859 (if (and specific (not (equal specific "CATEGORY")))
15860 (let ((value (org-entry-get beg specific nil t)))
15861 (throw 'exit (and value (list (cons specific value)))))
15862 (let ((range (org-get-property-block beg)))
15863 (when range
15864 (let ((end (cdr range)) seen-base)
15865 (goto-char (car range))
15866 ;; Unlike to `org--update-property-plist', we
15867 ;; handle the case where base values is found
15868 ;; after its extension. We also forbid standard
15869 ;; properties to be named as special properties.
15870 (while (re-search-forward org-property-re end t)
15871 (let* ((key (upcase (org-match-string-no-properties 2)))
15872 (extendp (org-string-match-p "\\+\\'" key))
15873 (key-base (if extendp (substring key 0 -1) key))
15874 (value (org-match-string-no-properties 3)))
15875 (cond
15876 ((member-ignore-case key-base org-special-properties))
15877 (extendp
15878 (setq props
15879 (org--update-property-plist key value props)))
15880 ((member key seen-base))
15881 (t (push key seen-base)
15882 (let ((p (assoc-string key props t)))
15883 (if p (setcdr p (concat value " " (cdr p)))
15884 (push (cons key value) props))))))))))))
15885 (unless (assoc "CATEGORY" props)
15886 (push (cons "CATEGORY" (org-get-category beg)) props)
15887 (when (string= specific "CATEGORY") (throw 'exit props)))
15888 ;; Return value.
15889 props)))))
15891 (defun org-property--local-values (property literal-nil)
15892 "Return value for PROPERTY in current entry.
15893 Value is a list whose care is the base value for PROPERTY and cdr
15894 a list of accumulated values. Return nil if neither is found in
15895 the entry. Also return nil when PROPERTY is set to \"nil\",
15896 unless LITERAL-NIL is non-nil."
15897 (let ((range (org-get-property-block)))
15898 (when range
15899 (goto-char (car range))
15900 (let* ((case-fold-search t)
15901 (end (cdr range))
15902 (value
15903 ;; Base value.
15904 (save-excursion
15905 (let ((v (and (re-search-forward
15906 (org-re-property property nil t) end t)
15907 (org-match-string-no-properties 3))))
15908 (list (if literal-nil v (org-not-nil v)))))))
15909 ;; Find additional values.
15910 (let* ((property+ (org-re-property (concat property "+") nil t)))
15911 (while (re-search-forward property+ end t)
15912 (push (org-match-string-no-properties 3) value)))
15913 ;; Return final values.
15914 (and (not (equal value '(nil))) (nreverse value))))))
15916 (defun org-entry-get (pom property &optional inherit literal-nil)
15917 "Get value of PROPERTY for entry or content at point-or-marker POM.
15919 If INHERIT is non-nil and the entry does not have the property,
15920 then also check higher levels of the hierarchy. If INHERIT is
15921 the symbol `selective', use inheritance only if the setting in
15922 `org-use-property-inheritance' selects PROPERTY for inheritance.
15924 If the property is present but empty, the return value is the
15925 empty string. If the property is not present at all, nil is
15926 returned. In any other case, return the value as a string.
15927 Search is case-insensitive.
15929 If LITERAL-NIL is set, return the string value \"nil\" as
15930 a string, do not interpret it as the list atom nil. This is used
15931 for inheritance when a \"nil\" value can supersede a non-nil
15932 value higher up the hierarchy."
15933 (org-with-point-at pom
15934 (cond
15935 ((member-ignore-case property (cons "CATEGORY" org-special-properties))
15936 ;; We need a special property. Use `org-entry-properties' to
15937 ;; retrieve it, but specify the wanted property.
15938 (cdr (assoc-string property (org-entry-properties nil property))))
15939 ((and inherit
15940 (or (not (eq inherit 'selective)) (org-property-inherit-p property)))
15941 (org-entry-get-with-inheritance property literal-nil))
15943 (let* ((local (org-property--local-values property literal-nil))
15944 (value (and local (mapconcat #'identity (delq nil local) " "))))
15945 (if literal-nil value (org-not-nil value)))))))
15947 (defun org-property-or-variable-value (var &optional inherit)
15948 "Check if there is a property fixing the value of VAR.
15949 If yes, return this value. If not, return the current value of the variable."
15950 (let ((prop (org-entry-get nil (symbol-name var) inherit)))
15951 (if (and prop (stringp prop) (string-match "\\S-" prop))
15952 (read prop)
15953 (symbol-value var))))
15955 (defun org-entry-delete (pom property)
15956 "Delete PROPERTY from entry at point-or-marker POM.
15957 Accumulated properties, i.e. PROPERTY+, are also removed. Return
15958 non-nil when a property was removed."
15959 (unless (member property org-special-properties)
15960 (org-with-point-at pom
15961 (let ((range (org-get-property-block)))
15962 (when range
15963 (let* ((begin (car range))
15964 (origin (cdr range))
15965 (end (copy-marker origin))
15966 (re (org-re-property
15967 (concat (regexp-quote property) "\\+?") t t)))
15968 (goto-char begin)
15969 (while (re-search-forward re end t)
15970 (delete-region (match-beginning 0) (line-beginning-position 2)))
15971 ;; If drawer is empty, remove it altogether.
15972 (when (= begin end)
15973 (delete-region (line-beginning-position 0)
15974 (line-beginning-position 2)))
15975 ;; Return non-nil if some property was removed.
15976 (prog1 (/= end origin) (set-marker end nil))))))))
15978 ;; Multi-values properties are properties that contain multiple values
15979 ;; These values are assumed to be single words, separated by whitespace.
15980 (defun org-entry-add-to-multivalued-property (pom property value)
15981 "Add VALUE to the words in the PROPERTY in entry at point-or-marker POM."
15982 (let* ((old (org-entry-get pom property))
15983 (values (and old (org-split-string old "[ \t]"))))
15984 (setq value (org-entry-protect-space value))
15985 (unless (member value values)
15986 (setq values (append values (list value)))
15987 (org-entry-put pom property
15988 (mapconcat 'identity values " ")))))
15990 (defun org-entry-remove-from-multivalued-property (pom property value)
15991 "Remove VALUE from words in the PROPERTY in entry at point-or-marker POM."
15992 (let* ((old (org-entry-get pom property))
15993 (values (and old (org-split-string old "[ \t]"))))
15994 (setq value (org-entry-protect-space value))
15995 (when (member value values)
15996 (setq values (delete value values))
15997 (org-entry-put pom property
15998 (mapconcat 'identity values " ")))))
16000 (defun org-entry-member-in-multivalued-property (pom property value)
16001 "Is VALUE one of the words in the PROPERTY in entry at point-or-marker POM?"
16002 (let* ((old (org-entry-get pom property))
16003 (values (and old (org-split-string old "[ \t]"))))
16004 (setq value (org-entry-protect-space value))
16005 (member value values)))
16007 (defun org-entry-get-multivalued-property (pom property)
16008 "Return a list of values in a multivalued property."
16009 (let* ((value (org-entry-get pom property))
16010 (values (and value (org-split-string value "[ \t]"))))
16011 (mapcar 'org-entry-restore-space values)))
16013 (defun org-entry-put-multivalued-property (pom property &rest values)
16014 "Set multivalued PROPERTY at point-or-marker POM to VALUES.
16015 VALUES should be a list of strings. Spaces will be protected."
16016 (org-entry-put pom property
16017 (mapconcat 'org-entry-protect-space values " "))
16018 (let* ((value (org-entry-get pom property))
16019 (values (and value (org-split-string value "[ \t]"))))
16020 (mapcar 'org-entry-restore-space values)))
16022 (defun org-entry-protect-space (s)
16023 "Protect spaces and newline in string S."
16024 (while (string-match " " s)
16025 (setq s (replace-match "%20" t t s)))
16026 (while (string-match "\n" s)
16027 (setq s (replace-match "%0A" t t s)))
16030 (defun org-entry-restore-space (s)
16031 "Restore spaces and newline in string S."
16032 (while (string-match "%20" s)
16033 (setq s (replace-match " " t t s)))
16034 (while (string-match "%0A" s)
16035 (setq s (replace-match "\n" t t s)))
16038 (defvar org-entry-property-inherited-from (make-marker)
16039 "Marker pointing to the entry from where a property was inherited.
16040 Each call to `org-entry-get-with-inheritance' will set this marker to the
16041 location of the entry where the inheritance search matched. If there was
16042 no match, the marker will point nowhere.
16043 Note that also `org-entry-get' calls this function, if the INHERIT flag
16044 is set.")
16046 (defun org-entry-get-with-inheritance (property &optional literal-nil)
16047 "Get PROPERTY of entry or content at point, search higher levels if needed.
16048 The search will stop at the first ancestor which has the property defined.
16049 If the value found is \"nil\", return nil to show that the property
16050 should be considered as undefined (this is the meaning of nil here).
16051 However, if LITERAL-NIL is set, return the string value \"nil\" instead."
16052 (move-marker org-entry-property-inherited-from nil)
16053 (org-with-wide-buffer
16054 (let (value)
16055 (catch 'exit
16056 (while t
16057 (let ((v (org-property--local-values property literal-nil)))
16058 (when v
16059 (setq value
16060 (concat (mapconcat #'identity (delq nil v) " ")
16061 (and value " ")
16062 value)))
16063 (cond
16064 ((car v)
16065 (org-back-to-heading t)
16066 (move-marker org-entry-property-inherited-from (point))
16067 (throw 'exit nil))
16068 ((org-up-heading-safe))
16070 (let ((global
16071 (cdr (or (assoc-string property org-file-properties t)
16072 (assoc-string property org-global-properties t)
16073 (assoc-string property org-global-properties-fixed t)))))
16074 (cond ((not global))
16075 (value (setq value (concat global " " value)))
16076 (t (setq value global))))
16077 (throw 'exit nil))))))
16078 (if literal-nil value (org-not-nil value)))))
16080 (defvar org-property-changed-functions nil
16081 "Hook called when the value of a property has changed.
16082 Each hook function should accept two arguments, the name of the property
16083 and the new value.")
16085 (defun org-entry-put (pom property value)
16086 "Set PROPERTY to VALUE for entry at point-or-marker POM.
16088 If the value is nil, it is converted to the empty string. If it
16089 is not a string, an error is raised. Also raise an error on
16090 invalid property names.
16092 PROPERTY can be any regular property (see
16093 `org-special-properties'). It can also be \"TODO\",
16094 \"PRIORITY\", \"SCHEDULED\" and \"DEADLINE\".
16096 For the last two properties, VALUE may have any of the special
16097 values \"earlier\" and \"later\". The function then increases or
16098 decreases scheduled or deadline date by one day."
16099 (cond ((null value) (setq value ""))
16100 ((not (stringp value)) (error "Properties values should be strings"))
16101 ((not (org--valid-property-p property))
16102 (user-error "Invalid property name: \"%s\"" property)))
16103 (org-with-point-at pom
16104 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16105 (org-back-to-heading t)
16106 (org-with-limited-levels (org-back-to-heading t)))
16107 (let ((beg (point)))
16108 (cond
16109 ((equal property "TODO")
16110 (cond ((not (org-string-nw-p value)) (setq value 'none))
16111 ((not (member value org-todo-keywords-1))
16112 (user-error "\"%s\" is not a valid TODO state" value)))
16113 (org-todo value)
16114 (org-set-tags nil 'align))
16115 ((equal property "PRIORITY")
16116 (org-priority (if (org-string-nw-p value) (string-to-char value) ?\s))
16117 (org-set-tags nil 'align))
16118 ((equal property "SCHEDULED")
16119 (forward-line)
16120 (if (and (org-looking-at-p org-planning-line-re)
16121 (re-search-forward
16122 org-scheduled-time-regexp (line-end-position) t))
16123 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16124 ((string= value "later") (org-timestamp-change 1 'day))
16125 ((string= value "") (org-schedule '(4)))
16126 (t (org-schedule nil value)))
16127 (if (member value '("earlier" "later" ""))
16128 (call-interactively #'org-schedule)
16129 (org-schedule nil value))))
16130 ((equal property "DEADLINE")
16131 (forward-line)
16132 (if (and (org-looking-at-p org-planning-line-re)
16133 (re-search-forward
16134 org-deadline-time-regexp (line-end-position) t))
16135 (cond ((string= value "earlier") (org-timestamp-change -1 'day))
16136 ((string= value "later") (org-timestamp-change 1 'day))
16137 ((string= value "") (org-deadline '(4)))
16138 (t (org-deadline nil value)))
16139 (if (member value '("earlier" "later" ""))
16140 (call-interactively #'org-deadline)
16141 (org-deadline nil value))))
16142 ((member property org-special-properties)
16143 (error "The %s property cannot be set with `org-entry-put'" property))
16145 (let* ((range (org-get-property-block beg 'force))
16146 (end (cdr range))
16147 (case-fold-search t))
16148 (goto-char (car range))
16149 (if (re-search-forward (org-re-property property nil t) end t)
16150 (progn (delete-region (match-beginning 0) (match-end 0))
16151 (goto-char (match-beginning 0)))
16152 (goto-char end)
16153 (insert "\n")
16154 (backward-char))
16155 (insert ":" property ":")
16156 (when value (insert " " value))
16157 (org-indent-line)))))
16158 (run-hook-with-args 'org-property-changed-functions property value)))
16160 (defun org-buffer-property-keys (&optional specials defaults columns)
16161 "Get all property keys in the current buffer.
16163 When SPECIALS is non-nil, also list the special properties that
16164 reflect things like tags and TODO state.
16166 When DEFAULTS is non-nil, also include properties that has
16167 special meaning internally: ARCHIVE, CATEGORY, SUMMARY,
16168 DESCRIPTION, LOCATION, and LOGGING and others.
16170 When COLUMNS in non-nil, also include property names given in
16171 COLUMN formats in the current buffer."
16172 (let ((case-fold-search t)
16173 (props (append
16174 (and specials org-special-properties)
16175 (and defaults (cons org-effort-property org-default-properties))
16176 nil)))
16177 (org-with-wide-buffer
16178 (goto-char (point-min))
16179 (while (re-search-forward org-property-start-re nil t)
16180 (let ((range (org-get-property-block)))
16181 (catch 'skip
16182 (unless range
16183 (when (and (not (org-before-first-heading-p))
16184 (y-or-n-p (format "Malformed drawer at %d, repair?"
16185 (line-beginning-position))))
16186 (org-get-property-block nil t))
16187 (throw 'skip nil))
16188 (goto-char (car range))
16189 (let ((begin (car range))
16190 (end (cdr range)))
16191 ;; Make sure that found property block is not located
16192 ;; before current point, as it would generate an infloop.
16193 ;; It can happen, for example, in the following
16194 ;; situation:
16196 ;; * Headline
16197 ;; :PROPERTIES:
16198 ;; ...
16199 ;; :END:
16200 ;; *************** Inlinetask
16201 ;; #+BEGIN_EXAMPLE
16202 ;; :PROPERTIES:
16203 ;; #+END_EXAMPLE
16205 (if (< begin (point)) (throw 'skip nil) (goto-char begin))
16206 (while (< (point) end)
16207 (let ((p (progn (looking-at org-property-re)
16208 (org-match-string-no-properties 2))))
16209 ;; Only add true property name, not extension symbol.
16210 (add-to-list 'props
16211 (if (not (org-string-match-p "\\+\\'" p)) p
16212 (substring p 0 -1))))
16213 (forward-line))))
16214 (outline-next-heading)))
16215 (when columns
16216 (goto-char (point-min))
16217 (while (re-search-forward "^[ \t]*\\(?:#\\+\\|:\\)COLUMNS:" nil t)
16218 (let ((element (org-element-at-point)))
16219 (when (memq (org-element-type element) '(keyword node-property))
16220 (let ((value (org-element-property :value element))
16221 (start 0))
16222 (while (string-match "%[0-9]*\\(\\S-+\\)" value start)
16223 (setq start (match-end 0))
16224 (let ((p (org-match-string-no-properties 1 value)))
16225 (unless (member-ignore-case p org-special-properties)
16226 (add-to-list 'props p))))))))))
16227 (sort props (lambda (a b) (string< (upcase a) (upcase b))))))
16229 (defun org-property-values (key)
16230 "List all non-nil values of property KEY in current buffer."
16231 (org-with-wide-buffer
16232 (goto-char (point-min))
16233 (let ((case-fold-search t)
16234 (re (org-re-property key))
16235 values)
16236 (while (re-search-forward re nil t)
16237 (add-to-list 'values (org-entry-get (point) key)))
16238 values)))
16240 (defun org-insert-property-drawer ()
16241 "Insert a property drawer into the current entry."
16242 (org-with-wide-buffer
16243 (if (or (not (featurep 'org-inlinetask)) (org-inlinetask-in-task-p))
16244 (org-back-to-heading t)
16245 (org-with-limited-levels (org-back-to-heading t)))
16246 (forward-line)
16247 (when (org-looking-at-p org-planning-line-re) (forward-line))
16248 (unless (org-looking-at-p org-property-drawer-re)
16249 ;; Make sure we start editing a line from current entry, not from
16250 ;; next one. It prevents extending text properties or overlays
16251 ;; belonging to the latter.
16252 (when (bolp) (backward-char))
16253 (let ((begin (1+ (point)))
16254 (inhibit-read-only t))
16255 (insert "\n:PROPERTIES:\n:END:")
16256 (when (eobp) (insert "\n"))
16257 (org-indent-region begin (point))))))
16259 (defun org-insert-drawer (&optional arg drawer)
16260 "Insert a drawer at point.
16262 When optional argument ARG is non-nil, insert a property drawer.
16264 Optional argument DRAWER, when non-nil, is a string representing
16265 drawer's name. Otherwise, the user is prompted for a name.
16267 If a region is active, insert the drawer around that region
16268 instead.
16270 Point is left between drawer's boundaries."
16271 (interactive "P")
16272 (let* ((drawer (if arg "PROPERTIES"
16273 (or drawer (read-from-minibuffer "Drawer: ")))))
16274 (cond
16275 ;; With C-u, fall back on `org-insert-property-drawer'
16276 (arg (org-insert-property-drawer))
16277 ;; Check validity of suggested drawer's name.
16278 ((not (org-string-match-p org-drawer-regexp (format ":%s:" drawer)))
16279 (user-error "Invalid drawer name"))
16280 ;; With an active region, insert a drawer at point.
16281 ((not (org-region-active-p))
16282 (progn
16283 (unless (bolp) (insert "\n"))
16284 (insert (format ":%s:\n\n:END:\n" drawer))
16285 (forward-line -2)))
16286 ;; Otherwise, insert the drawer at point
16288 (let ((rbeg (region-beginning))
16289 (rend (copy-marker (region-end))))
16290 (unwind-protect
16291 (progn
16292 (goto-char rbeg)
16293 (beginning-of-line)
16294 (when (save-excursion
16295 (re-search-forward org-outline-regexp-bol rend t))
16296 (user-error "Drawers cannot contain headlines"))
16297 ;; Position point at the beginning of the first
16298 ;; non-blank line in region. Insert drawer's opening
16299 ;; there, then indent it.
16300 (org-skip-whitespace)
16301 (beginning-of-line)
16302 (insert ":" drawer ":\n")
16303 (forward-line -1)
16304 (indent-for-tab-command)
16305 ;; Move point to the beginning of the first blank line
16306 ;; after the last non-blank line in region. Insert
16307 ;; drawer's closing, then indent it.
16308 (goto-char rend)
16309 (skip-chars-backward " \r\t\n")
16310 (insert "\n:END:")
16311 (deactivate-mark t)
16312 (indent-for-tab-command)
16313 (unless (eolp) (insert "\n")))
16314 ;; Clear marker, whatever the outcome of insertion is.
16315 (set-marker rend nil)))))))
16317 (defvar org-property-set-functions-alist nil
16318 "Property set function alist.
16319 Each entry should have the following format:
16321 (PROPERTY . READ-FUNCTION)
16323 The read function will be called with the same argument as
16324 `org-completing-read'.")
16326 (defun org-set-property-function (property)
16327 "Get the function that should be used to set PROPERTY.
16328 This is computed according to `org-property-set-functions-alist'."
16329 (or (cdr (assoc property org-property-set-functions-alist))
16330 'org-completing-read))
16332 (defun org-read-property-value (property)
16333 "Read PROPERTY value from user."
16334 (let* ((completion-ignore-case t)
16335 (allowed (org-property-get-allowed-values nil property 'table))
16336 (cur (org-entry-get nil property))
16337 (prompt (concat property " value"
16338 (if (and cur (string-match "\\S-" cur))
16339 (concat " [" cur "]") "") ": "))
16340 (set-function (org-set-property-function property))
16341 (val (if allowed
16342 (funcall set-function prompt allowed nil
16343 (not (get-text-property 0 'org-unrestricted
16344 (caar allowed))))
16345 (let (org-completion-use-ido org-completion-use-iswitchb)
16346 (funcall set-function prompt
16347 (mapcar 'list (org-property-values property))
16348 nil nil "" nil cur)))))
16349 (org-trim val)))
16351 (defvar org-last-set-property nil)
16352 (defvar org-last-set-property-value nil)
16353 (defun org-read-property-name ()
16354 "Read a property name."
16355 (let ((completion-ignore-case t)
16356 (default-prop (or (and (org-at-property-p)
16357 (org-match-string-no-properties 2))
16358 org-last-set-property)))
16359 (org-completing-read
16360 (concat "Property"
16361 (if default-prop (concat " [" default-prop "]") "")
16362 ": ")
16363 (mapcar #'list (org-buffer-property-keys nil t t))
16364 nil nil nil nil default-prop)))
16366 (defun org-set-property-and-value (use-last)
16367 "Allow to set [PROPERTY]: [value] direction from prompt.
16368 When use-default, don't even ask, just use the last
16369 \"[PROPERTY]: [value]\" string from the history."
16370 (interactive "P")
16371 (let* ((completion-ignore-case t)
16372 (pv (or (and use-last org-last-set-property-value)
16373 (org-completing-read
16374 "Enter a \"[Property]: [value]\" pair: "
16375 nil nil nil nil nil
16376 org-last-set-property-value)))
16377 prop val)
16378 (when (string-match "^[ \t]*\\([^:]+\\):[ \t]*\\(.*\\)[ \t]*$" pv)
16379 (setq prop (match-string 1 pv)
16380 val (match-string 2 pv))
16381 (org-set-property prop val))))
16383 (defun org-set-property (property value)
16384 "In the current entry, set PROPERTY to VALUE.
16386 When called interactively, this will prompt for a property name, offering
16387 completion on existing and default properties. And then it will prompt
16388 for a value, offering completion either on allowed values (via an inherited
16389 xxx_ALL property) or on existing values in other instances of this property
16390 in the current file.
16392 Throw an error when trying to set a property with an invalid name."
16393 (interactive (list nil nil))
16394 (let ((property (or property (org-read-property-name))))
16395 ;; `org-entry-put' also makes the following check, but this one
16396 ;; avoids polluting `org-last-set-property' and
16397 ;; `org-last-set-property-value' needlessly.
16398 (unless (org--valid-property-p property)
16399 (user-error "Invalid property name: \"%s\"" property))
16400 (let ((value (or value (org-read-property-value property)))
16401 (fn (cdr (assoc-string property org-properties-postprocess-alist t))))
16402 (setq org-last-set-property property)
16403 (setq org-last-set-property-value (concat property ": " value))
16404 ;; Possibly postprocess the inserted value:
16405 (when fn (setq value (funcall fn value)))
16406 (unless (equal (org-entry-get nil property) value)
16407 (org-entry-put nil property value)))))
16409 (defun org-find-property (property &optional value)
16410 "Find first entry in buffer that sets PROPERTY.
16412 When optional argument VALUE is non-nil, only consider an entry
16413 if it contains PROPERTY set to this value. If PROPERTY should be
16414 explicitly set to nil, use string \"nil\" for VALUE.
16416 Return position where the entry begins, or nil if there is no
16417 such entry. If narrowing is in effect, only search the visible
16418 part of the buffer."
16419 (save-excursion
16420 (goto-char (point-min))
16421 (let ((case-fold-search t)
16422 (re (org-re-property property nil (not value) value)))
16423 (catch 'exit
16424 (while (re-search-forward re nil t)
16425 (when (if value (org-at-property-p)
16426 (org-entry-get (point) property nil t))
16427 (throw 'exit (progn (org-back-to-heading t) (point)))))))))
16429 (defun org-delete-property (property)
16430 "In the current entry, delete PROPERTY."
16431 (interactive
16432 (let* ((completion-ignore-case t)
16433 (cat (org-entry-get (point) "CATEGORY"))
16434 (props0 (org-entry-properties nil 'standard))
16435 (props (if cat props0
16436 (delete `("CATEGORY" . ,(org-get-category)) props0)))
16437 (prop (if (< 1 (length props))
16438 (org-icompleting-read "Property: " props nil t)
16439 (caar props))))
16440 (list prop)))
16441 (if (not property)
16442 (message "No property to delete in this entry")
16443 (org-entry-delete nil property)
16444 (message "Property \"%s\" deleted" property)))
16446 (defun org-delete-property-globally (property)
16447 "Remove PROPERTY globally, from all entries.
16448 This function ignores narrowing, if any."
16449 (interactive
16450 (let* ((completion-ignore-case t)
16451 (prop (org-icompleting-read
16452 "Globally remove property: "
16453 (mapcar #'list (org-buffer-property-keys)))))
16454 (list prop)))
16455 (org-with-wide-buffer
16456 (goto-char (point-min))
16457 (let ((count 0)
16458 (re (org-re-property (concat (regexp-quote property) "\\+?") t t)))
16459 (while (re-search-forward re nil t)
16460 (when (org-entry-delete (point) property) (incf count)))
16461 (message "Property \"%s\" removed from %d entries" property count))))
16463 (defvar org-columns-current-fmt-compiled) ; defined in org-colview.el
16465 (defun org-compute-property-at-point ()
16466 "Compute the property at point.
16467 This looks for an enclosing column format, extracts the operator and
16468 then applies it to the property in the column format's scope."
16469 (interactive)
16470 (unless (org-at-property-p)
16471 (user-error "Not at a property"))
16472 (let ((prop (org-match-string-no-properties 2)))
16473 (org-columns-get-format-and-top-level)
16474 (unless (nth 3 (assoc prop org-columns-current-fmt-compiled))
16475 (user-error "No operator defined for property %s" prop))
16476 (org-columns-compute prop)))
16478 (defvar org-property-allowed-value-functions nil
16479 "Hook for functions supplying allowed values for a specific property.
16480 The functions must take a single argument, the name of the property, and
16481 return a flat list of allowed values. If \":ETC\" is one of
16482 the values, this means that these values are intended as defaults for
16483 completion, but that other values should be allowed too.
16484 The functions must return nil if they are not responsible for this
16485 property.")
16487 (defun org-property-get-allowed-values (pom property &optional table)
16488 "Get allowed values for the property PROPERTY.
16489 When TABLE is non-nil, return an alist that can directly be used for
16490 completion."
16491 (let (vals)
16492 (cond
16493 ((equal property "TODO")
16494 (setq vals (org-with-point-at pom
16495 (append org-todo-keywords-1 '("")))))
16496 ((equal property "PRIORITY")
16497 (let ((n org-lowest-priority))
16498 (while (>= n org-highest-priority)
16499 (push (char-to-string n) vals)
16500 (setq n (1- n)))))
16501 ((equal property "CATEGORY"))
16502 ((member property org-special-properties))
16503 ((setq vals (run-hook-with-args-until-success
16504 'org-property-allowed-value-functions property)))
16506 (setq vals (org-entry-get pom (concat property "_ALL") 'inherit))
16507 (when (and vals (string-match "\\S-" vals))
16508 (setq vals (car (read-from-string (concat "(" vals ")"))))
16509 (setq vals (mapcar (lambda (x)
16510 (cond ((stringp x) x)
16511 ((numberp x) (number-to-string x))
16512 ((symbolp x) (symbol-name x))
16513 (t "???")))
16514 vals)))))
16515 (when (member ":ETC" vals)
16516 (setq vals (remove ":ETC" vals))
16517 (org-add-props (car vals) '(org-unrestricted t)))
16518 (if table (mapcar 'list vals) vals)))
16520 (defun org-property-previous-allowed-value (&optional previous)
16521 "Switch to the next allowed value for this property."
16522 (interactive)
16523 (org-property-next-allowed-value t))
16525 (defun org-property-next-allowed-value (&optional previous)
16526 "Switch to the next allowed value for this property."
16527 (interactive)
16528 (unless (org-at-property-p)
16529 (user-error "Not at a property"))
16530 (let* ((prop (car (save-match-data (org-split-string (match-string 1) ":"))))
16531 (key (match-string 2))
16532 (value (match-string 3))
16533 (allowed (or (org-property-get-allowed-values (point) key)
16534 (and (member value '("[ ]" "[-]" "[X]"))
16535 '("[ ]" "[X]"))))
16536 (heading (save-match-data (nth 4 (org-heading-components))))
16537 nval)
16538 (unless allowed
16539 (user-error "Allowed values for this property have not been defined"))
16540 (if previous (setq allowed (reverse allowed)))
16541 (if (member value allowed)
16542 (setq nval (car (cdr (member value allowed)))))
16543 (setq nval (or nval (car allowed)))
16544 (if (equal nval value)
16545 (user-error "Only one allowed value for this property"))
16546 (org-at-property-p)
16547 (replace-match (concat " :" key ": " nval) t t)
16548 (org-indent-line)
16549 (beginning-of-line 1)
16550 (skip-chars-forward " \t")
16551 (when (equal prop org-effort-property)
16552 (org-refresh-property
16553 '((effort . identity)
16554 (effort-minutes . org-duration-string-to-minutes))
16555 nval)
16556 (when (string= org-clock-current-task heading)
16557 (setq org-clock-effort nval)
16558 (org-clock-update-mode-line)))
16559 (run-hook-with-args 'org-property-changed-functions key nval)))
16561 (defun org-find-olp (path &optional this-buffer)
16562 "Return a marker pointing to the entry at outline path OLP.
16563 If anything goes wrong, throw an error.
16564 You can wrap this call to catch the error like this:
16566 (condition-case msg
16567 (org-mobile-locate-entry (match-string 4))
16568 (error (nth 1 msg)))
16570 The return value will then be either a string with the error message,
16571 or a marker if everything is OK.
16573 If THIS-BUFFER is set, the outline path does not contain a file,
16574 only headings."
16575 (let* ((file (if this-buffer buffer-file-name (pop path)))
16576 (buffer (if this-buffer (current-buffer) (find-file-noselect file)))
16577 (level 1)
16578 (lmin 1)
16579 (lmax 1)
16580 limit re end found pos heading cnt flevel)
16581 (unless buffer (error "File not found :%s" file))
16582 (with-current-buffer buffer
16583 (save-excursion
16584 (save-restriction
16585 (widen)
16586 (setq limit (point-max))
16587 (goto-char (point-min))
16588 (dolist (heading path)
16589 (setq re (format org-complex-heading-regexp-format
16590 (regexp-quote heading)))
16591 (setq cnt 0 pos (point))
16592 (while (re-search-forward re end t)
16593 (setq level (- (match-end 1) (match-beginning 1)))
16594 (if (and (>= level lmin) (<= level lmax))
16595 (setq found (match-beginning 0) flevel level cnt (1+ cnt))))
16596 (when (= cnt 0) (error "Heading not found on level %d: %s"
16597 lmax heading))
16598 (when (> cnt 1) (error "Heading not unique on level %d: %s"
16599 lmax heading))
16600 (goto-char found)
16601 (setq lmin (1+ flevel) lmax (+ lmin (if org-odd-levels-only 1 0)))
16602 (setq end (save-excursion (org-end-of-subtree t t))))
16603 (when (org-at-heading-p)
16604 (point-marker)))))))
16606 (defun org-find-exact-headline-in-buffer (heading &optional buffer pos-only)
16607 "Find node HEADING in BUFFER.
16608 Return a marker to the heading if it was found, or nil if not.
16609 If POS-ONLY is set, return just the position instead of a marker.
16611 The heading text must match exact, but it may have a TODO keyword,
16612 a priority cookie and tags in the standard locations."
16613 (with-current-buffer (or buffer (current-buffer))
16614 (save-excursion
16615 (save-restriction
16616 (widen)
16617 (goto-char (point-min))
16618 (let (case-fold-search)
16619 (if (re-search-forward
16620 (format org-complex-heading-regexp-format
16621 (regexp-quote heading)) nil t)
16622 (if pos-only
16623 (match-beginning 0)
16624 (move-marker (make-marker) (match-beginning 0)))))))))
16626 (defun org-find-exact-heading-in-directory (heading &optional dir)
16627 "Find Org node headline HEADING in all .org files in directory DIR.
16628 When the target headline is found, return a marker to this location."
16629 (let ((files (directory-files (or dir default-directory)
16630 t "\\`[^.#].*\\.org\\'"))
16631 visiting m buffer)
16632 (catch 'found
16633 (dolist (file files)
16634 (message "trying %s" file)
16635 (setq visiting (org-find-base-buffer-visiting file))
16636 (setq buffer (or visiting (find-file-noselect file)))
16637 (setq m (org-find-exact-headline-in-buffer
16638 heading buffer))
16639 (when (and (not m) (not visiting)) (kill-buffer buffer))
16640 (and m (throw 'found m))))))
16642 (defun org-find-entry-with-id (ident)
16643 "Locate the entry that contains the ID property with exact value IDENT.
16644 IDENT can be a string, a symbol or a number, this function will search for
16645 the string representation of it.
16646 Return the position where this entry starts, or nil if there is no such entry."
16647 (interactive "sID: ")
16648 (let ((id (cond
16649 ((stringp ident) ident)
16650 ((symbolp ident) (symbol-name ident))
16651 ((numberp ident) (number-to-string ident))
16652 (t (error "IDENT %s must be a string, symbol or number" ident)))))
16653 (org-with-wide-buffer (org-find-property "ID" id))))
16655 ;;;; Timestamps
16657 (defvar org-last-changed-timestamp nil)
16658 (defvar org-last-inserted-timestamp nil
16659 "The last time stamp inserted with `org-insert-time-stamp'.")
16660 (defvar org-ts-what) ; dynamically scoped parameter
16662 (defun org-time-stamp (arg &optional inactive)
16663 "Prompt for a date/time and insert a time stamp.
16665 If the user specifies a time like HH:MM or if this command is
16666 called with at least one prefix argument, the time stamp contains
16667 the date and the time. Otherwise, only the date is included.
16669 All parts of a date not specified by the user are filled in from
16670 the timestamp at point, if any, or the current date/time
16671 otherwise.
16673 If there is already a timestamp at the cursor, it is replaced.
16675 With two universal prefix arguments, insert an active timestamp
16676 with the current time without prompting the user.
16678 When called from lisp, the timestamp is inactive if INACTIVE is
16679 non-nil."
16680 (interactive "P")
16681 (let* ((ts (cond
16682 ((org-at-date-range-p t)
16683 (match-string (if (< (point) (- (match-beginning 2) 2)) 1 2)))
16684 ((org-at-timestamp-p t) (match-string 0))))
16685 ;; Default time is either the timestamp at point or today.
16686 ;; When entering a range, only the range start is considered.
16687 (default-time (if (not ts) (current-time)
16688 (apply #'encode-time (org-parse-time-string ts))))
16689 (default-input (and ts (org-get-compact-tod ts)))
16690 (repeater (and ts
16691 (string-match "\\([.+-]+[0-9]+[hdwmy] ?\\)+" ts)
16692 (match-string 0 ts)))
16693 org-time-was-given
16694 org-end-time-was-given
16695 (time
16696 (and (if (equal arg '(16)) (current-time)
16697 ;; Preserve `this-command' and `last-command'.
16698 (let ((this-command this-command)
16699 (last-command last-command))
16700 (org-read-date
16701 arg 'totime nil nil default-time default-input
16702 inactive))))))
16703 (cond
16704 ((and ts
16705 (memq last-command '(org-time-stamp org-time-stamp-inactive))
16706 (memq this-command '(org-time-stamp org-time-stamp-inactive)))
16707 (insert "--")
16708 (org-insert-time-stamp time (or org-time-was-given arg) inactive))
16710 ;; Make sure we're on a timestamp. When in the middle of a date
16711 ;; range, move arbitrarily to range end.
16712 (unless (org-at-timestamp-p t)
16713 (skip-chars-forward "-")
16714 (org-at-timestamp-p t))
16715 (replace-match "")
16716 (setq org-last-changed-timestamp
16717 (org-insert-time-stamp
16718 time (or org-time-was-given arg)
16719 inactive nil nil (list org-end-time-was-given)))
16720 (when repeater
16721 (backward-char)
16722 (insert " " repeater)
16723 (setq org-last-changed-timestamp
16724 (concat (substring org-last-inserted-timestamp 0 -1)
16725 " " repeater ">")))
16726 (message "Timestamp updated"))
16727 ((equal arg '(16)) (org-insert-time-stamp time t inactive))
16728 (t (org-insert-time-stamp
16729 time (or org-time-was-given arg) inactive nil nil
16730 (list org-end-time-was-given))))))
16732 ;; FIXME: can we use this for something else, like computing time differences?
16733 (defun org-get-compact-tod (s)
16734 (when (string-match "\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\(-\\(\\([012]?[0-9]\\):\\([0-5][0-9]\\)\\)\\)?" s)
16735 (let* ((t1 (match-string 1 s))
16736 (h1 (string-to-number (match-string 2 s)))
16737 (m1 (string-to-number (match-string 3 s)))
16738 (t2 (and (match-end 4) (match-string 5 s)))
16739 (h2 (and t2 (string-to-number (match-string 6 s))))
16740 (m2 (and t2 (string-to-number (match-string 7 s))))
16741 dh dm)
16742 (if (not t2)
16744 (setq dh (- h2 h1) dm (- m2 m1))
16745 (if (< dm 0) (setq dm (+ dm 60) dh (1- dh)))
16746 (concat t1 "+" (number-to-string dh)
16747 (and (/= 0 dm) (format ":%02d" dm)))))))
16749 (defun org-time-stamp-inactive (&optional arg)
16750 "Insert an inactive time stamp.
16751 An inactive time stamp is enclosed in square brackets instead of angle
16752 brackets. It is inactive in the sense that it does not trigger agenda entries,
16753 does not link to the calendar and cannot be changed with the S-cursor keys.
16754 So these are more for recording a certain time/date."
16755 (interactive "P")
16756 (org-time-stamp arg 'inactive))
16758 (defvar org-date-ovl (make-overlay 1 1))
16759 (overlay-put org-date-ovl 'face 'org-date-selected)
16760 (org-detach-overlay org-date-ovl)
16762 (defvar org-ans1) ; dynamically scoped parameter
16763 (defvar org-ans2) ; dynamically scoped parameter
16765 (defvar org-plain-time-of-day-regexp) ; defined below
16767 (defvar org-overriding-default-time nil) ; dynamically scoped
16768 (defvar org-read-date-overlay nil)
16769 (defvar org-dcst nil) ; dynamically scoped
16770 (defvar org-read-date-history nil)
16771 (defvar org-read-date-final-answer nil)
16772 (defvar org-read-date-analyze-futurep nil)
16773 (defvar org-read-date-analyze-forced-year nil)
16774 (defvar org-read-date-inactive)
16776 (defvar org-read-date-minibuffer-local-map
16777 (let* ((map (make-sparse-keymap)))
16778 (set-keymap-parent map minibuffer-local-map)
16779 (org-defkey map (kbd ".")
16780 (lambda () (interactive)
16781 ;; Are we at the beginning of the prompt?
16782 (if (org-looking-back "^[^:]+: "
16783 (let ((inhibit-field-text-motion t))
16784 (line-beginning-position)))
16785 (org-eval-in-calendar '(calendar-goto-today))
16786 (insert "."))))
16787 (org-defkey map (kbd "C-.")
16788 (lambda () (interactive)
16789 (org-eval-in-calendar '(calendar-goto-today))))
16790 (org-defkey map [(meta shift left)]
16791 (lambda () (interactive)
16792 (org-eval-in-calendar '(calendar-backward-month 1))))
16793 (org-defkey map [(meta shift right)]
16794 (lambda () (interactive)
16795 (org-eval-in-calendar '(calendar-forward-month 1))))
16796 (org-defkey map [(meta shift up)]
16797 (lambda () (interactive)
16798 (org-eval-in-calendar '(calendar-backward-year 1))))
16799 (org-defkey map [(meta shift down)]
16800 (lambda () (interactive)
16801 (org-eval-in-calendar '(calendar-forward-year 1))))
16802 (org-defkey map [?\e (shift left)]
16803 (lambda () (interactive)
16804 (org-eval-in-calendar '(calendar-backward-month 1))))
16805 (org-defkey map [?\e (shift right)]
16806 (lambda () (interactive)
16807 (org-eval-in-calendar '(calendar-forward-month 1))))
16808 (org-defkey map [?\e (shift up)]
16809 (lambda () (interactive)
16810 (org-eval-in-calendar '(calendar-backward-year 1))))
16811 (org-defkey map [?\e (shift down)]
16812 (lambda () (interactive)
16813 (org-eval-in-calendar '(calendar-forward-year 1))))
16814 (org-defkey map [(shift up)]
16815 (lambda () (interactive)
16816 (org-eval-in-calendar '(calendar-backward-week 1))))
16817 (org-defkey map [(shift down)]
16818 (lambda () (interactive)
16819 (org-eval-in-calendar '(calendar-forward-week 1))))
16820 (org-defkey map [(shift left)]
16821 (lambda () (interactive)
16822 (org-eval-in-calendar '(calendar-backward-day 1))))
16823 (org-defkey map [(shift right)]
16824 (lambda () (interactive)
16825 (org-eval-in-calendar '(calendar-forward-day 1))))
16826 (org-defkey map "!"
16827 (lambda () (interactive)
16828 (org-eval-in-calendar '(diary-view-entries))
16829 (message "")))
16830 (org-defkey map ">"
16831 (lambda () (interactive)
16832 (org-eval-in-calendar '(calendar-scroll-left 1))))
16833 (org-defkey map "<"
16834 (lambda () (interactive)
16835 (org-eval-in-calendar '(calendar-scroll-right 1))))
16836 (org-defkey map "\C-v"
16837 (lambda () (interactive)
16838 (org-eval-in-calendar
16839 '(calendar-scroll-left-three-months 1))))
16840 (org-defkey map "\M-v"
16841 (lambda () (interactive)
16842 (org-eval-in-calendar
16843 '(calendar-scroll-right-three-months 1))))
16844 map)
16845 "Keymap for minibuffer commands when using `org-read-date'.")
16847 (defvar org-def)
16848 (defvar org-defdecode)
16849 (defvar org-with-time)
16851 (defun org-read-date (&optional org-with-time to-time from-string prompt
16852 default-time default-input inactive)
16853 "Read a date, possibly a time, and make things smooth for the user.
16854 The prompt will suggest to enter an ISO date, but you can also enter anything
16855 which will at least partially be understood by `parse-time-string'.
16856 Unrecognized parts of the date will default to the current day, month, year,
16857 hour and minute. If this command is called to replace a timestamp at point,
16858 or to enter the second timestamp of a range, the default time is taken
16859 from the existing stamp. Furthermore, the command prefers the future,
16860 so if you are giving a date where the year is not given, and the day-month
16861 combination is already past in the current year, it will assume you
16862 mean next year. For details, see the manual. A few examples:
16864 3-2-5 --> 2003-02-05
16865 feb 15 --> currentyear-02-15
16866 2/15 --> currentyear-02-15
16867 sep 12 9 --> 2009-09-12
16868 12:45 --> today 12:45
16869 22 sept 0:34 --> currentyear-09-22 0:34
16870 12 --> currentyear-currentmonth-12
16871 Fri --> nearest Friday after today
16872 -Tue --> last Tuesday
16873 etc.
16875 Furthermore you can specify a relative date by giving, as the *first* thing
16876 in the input: a plus/minus sign, a number and a letter [hdwmy] to indicate
16877 change in days weeks, months, years.
16878 With a single plus or minus, the date is relative to today. With a double
16879 plus or minus, it is relative to the date in DEFAULT-TIME. E.g.
16880 +4d --> four days from today
16881 +4 --> same as above
16882 +2w --> two weeks from today
16883 ++5 --> five days from default date
16885 The function understands only English month and weekday abbreviations.
16887 While prompting, a calendar is popped up - you can also select the
16888 date with the mouse (button 1). The calendar shows a period of three
16889 months. To scroll it to other months, use the keys `>' and `<'.
16890 If you don't like the calendar, turn it off with
16891 (setq org-read-date-popup-calendar nil)
16893 With optional argument TO-TIME, the date will immediately be converted
16894 to an internal time.
16895 With an optional argument ORG-WITH-TIME, the prompt will suggest to
16896 also insert a time. Note that when ORG-WITH-TIME is not set, you can
16897 still enter a time, and this function will inform the calling routine
16898 about this change. The calling routine may then choose to change the
16899 format used to insert the time stamp into the buffer to include the time.
16900 With optional argument FROM-STRING, read from this string instead from
16901 the user. PROMPT can overwrite the default prompt. DEFAULT-TIME is
16902 the time/date that is used for everything that is not specified by the
16903 user."
16904 (require 'parse-time)
16905 (let* ((org-time-stamp-rounding-minutes
16906 (if (equal org-with-time '(16)) '(0 0) org-time-stamp-rounding-minutes))
16907 (org-dcst org-display-custom-times)
16908 (ct (org-current-time))
16909 (org-def (or org-overriding-default-time default-time ct))
16910 (org-defdecode (decode-time org-def))
16911 (dummy (progn
16912 (when (< (nth 2 org-defdecode) org-extend-today-until)
16913 (setcar (nthcdr 2 org-defdecode) -1)
16914 (setcar (nthcdr 1 org-defdecode) 59)
16915 (setq org-def (apply 'encode-time org-defdecode)
16916 org-defdecode (decode-time org-def)))))
16917 (cur-frame (selected-frame))
16918 (mouse-autoselect-window nil) ; Don't let the mouse jump
16919 (calendar-frame-setup nil)
16920 (calendar-setup (when (eq calendar-setup 'calendar-only) 'calendar-only))
16921 (calendar-move-hook nil)
16922 (calendar-view-diary-initially-flag nil)
16923 (calendar-view-holidays-initially-flag nil)
16924 (timestr (format-time-string
16925 (if org-with-time "%Y-%m-%d %H:%M" "%Y-%m-%d") org-def))
16926 (prompt (concat (if prompt (concat prompt " ") "")
16927 (format "Date+time [%s]: " timestr)))
16928 ans (org-ans0 "") org-ans1 org-ans2 final cal-frame)
16930 (cond
16931 (from-string (setq ans from-string))
16932 (org-read-date-popup-calendar
16933 (save-excursion
16934 (save-window-excursion
16935 (calendar)
16936 (when (eq calendar-setup 'calendar-only)
16937 (setq cal-frame
16938 (window-frame (get-buffer-window "*Calendar*" 'visible)))
16939 (select-frame cal-frame))
16940 (org-eval-in-calendar '(setq cursor-type nil) t)
16941 (unwind-protect
16942 (progn
16943 (calendar-forward-day (- (time-to-days org-def)
16944 (calendar-absolute-from-gregorian
16945 (calendar-current-date))))
16946 (org-eval-in-calendar nil t)
16947 (let* ((old-map (current-local-map))
16948 (map (copy-keymap calendar-mode-map))
16949 (minibuffer-local-map
16950 (copy-keymap org-read-date-minibuffer-local-map)))
16951 (org-defkey map (kbd "RET") 'org-calendar-select)
16952 (org-defkey map [mouse-1] 'org-calendar-select-mouse)
16953 (org-defkey map [mouse-2] 'org-calendar-select-mouse)
16954 (unwind-protect
16955 (progn
16956 (use-local-map map)
16957 (setq org-read-date-inactive inactive)
16958 (add-hook 'post-command-hook 'org-read-date-display)
16959 (setq org-ans0 (read-string prompt default-input
16960 'org-read-date-history nil))
16961 ;; org-ans0: from prompt
16962 ;; org-ans1: from mouse click
16963 ;; org-ans2: from calendar motion
16964 (setq ans (concat org-ans0 " " (or org-ans1 org-ans2))))
16965 (remove-hook 'post-command-hook 'org-read-date-display)
16966 (use-local-map old-map)
16967 (when org-read-date-overlay
16968 (delete-overlay org-read-date-overlay)
16969 (setq org-read-date-overlay nil)))))
16970 (bury-buffer "*Calendar*")
16971 (when cal-frame
16972 (delete-frame cal-frame)
16973 (select-frame-set-input-focus cur-frame))))))
16975 (t ; Naked prompt only
16976 (unwind-protect
16977 (setq ans (read-string prompt default-input
16978 'org-read-date-history timestr))
16979 (when org-read-date-overlay
16980 (delete-overlay org-read-date-overlay)
16981 (setq org-read-date-overlay nil)))))
16983 (setq final (org-read-date-analyze ans org-def org-defdecode))
16985 (when org-read-date-analyze-forced-year
16986 (message "Year was forced into %s"
16987 (if org-read-date-force-compatible-dates
16988 "compatible range (1970-2037)"
16989 "range representable on this machine"))
16990 (ding))
16992 ;; One round trip to get rid of 34th of August and stuff like that....
16993 (setq final (decode-time (apply 'encode-time final)))
16995 (setq org-read-date-final-answer ans)
16997 (if to-time
16998 (apply 'encode-time final)
16999 (if (and (boundp 'org-time-was-given) org-time-was-given)
17000 (format "%04d-%02d-%02d %02d:%02d"
17001 (nth 5 final) (nth 4 final) (nth 3 final)
17002 (nth 2 final) (nth 1 final))
17003 (format "%04d-%02d-%02d" (nth 5 final) (nth 4 final) (nth 3 final))))))
17005 (defun org-read-date-display ()
17006 "Display the current date prompt interpretation in the minibuffer."
17007 (when org-read-date-display-live
17008 (when org-read-date-overlay
17009 (delete-overlay org-read-date-overlay))
17010 (when (minibufferp (current-buffer))
17011 (save-excursion
17012 (end-of-line 1)
17013 (while (not (equal (buffer-substring
17014 (max (point-min) (- (point) 4)) (point))
17015 " "))
17016 (insert " ")))
17017 (let* ((ans (concat (buffer-substring (point-at-bol) (point-max))
17018 " " (or org-ans1 org-ans2)))
17019 (org-end-time-was-given nil)
17020 (f (org-read-date-analyze ans org-def org-defdecode))
17021 (fmts (if org-dcst
17022 org-time-stamp-custom-formats
17023 org-time-stamp-formats))
17024 (fmt (if (or org-with-time
17025 (and (boundp 'org-time-was-given) org-time-was-given))
17026 (cdr fmts)
17027 (car fmts)))
17028 (txt (format-time-string fmt (apply 'encode-time f)))
17029 (txt (if org-read-date-inactive (concat "[" (substring txt 1 -1) "]") txt))
17030 (txt (concat "=> " txt)))
17031 (when (and org-end-time-was-given
17032 (string-match org-plain-time-of-day-regexp txt))
17033 (setq txt (concat (substring txt 0 (match-end 0)) "-"
17034 org-end-time-was-given
17035 (substring txt (match-end 0)))))
17036 (when org-read-date-analyze-futurep
17037 (setq txt (concat txt " (=>F)")))
17038 (setq org-read-date-overlay
17039 (make-overlay (1- (point-at-eol)) (point-at-eol)))
17040 (org-overlay-display org-read-date-overlay txt 'secondary-selection)))))
17042 (defun org-read-date-analyze (ans org-def org-defdecode)
17043 "Analyze the combined answer of the date prompt."
17044 ;; FIXME: cleanup and comment
17045 ;; Pass `current-time' result to `decode-time' (instead of calling
17046 ;; without arguments) so that only `current-time' has to be
17047 ;; overriden in tests.
17048 (let ((nowdecode (decode-time (current-time)))
17049 delta deltan deltaw deltadef year month day
17050 hour minute second wday pm h2 m2 tl wday1
17051 iso-year iso-weekday iso-week iso-year iso-date futurep kill-year)
17052 (setq org-read-date-analyze-futurep nil
17053 org-read-date-analyze-forced-year nil)
17054 (when (string-match "\\`[ \t]*\\.[ \t]*\\'" ans)
17055 (setq ans "+0"))
17057 (when (setq delta (org-read-date-get-relative ans (current-time) org-def))
17058 (setq ans (replace-match "" t t ans)
17059 deltan (car delta)
17060 deltaw (nth 1 delta)
17061 deltadef (nth 2 delta)))
17063 ;; Check if there is an iso week date in there. If yes, store the
17064 ;; info and postpone interpreting it until the rest of the parsing
17065 ;; is done.
17066 (when (string-match "\\<\\(?:\\([0-9]+\\)-\\)?[wW]\\([0-9]\\{1,2\\}\\)\\(?:-\\([0-6]\\)\\)?\\([ \t]\\|$\\)" ans)
17067 (setq iso-year (if (match-end 1)
17068 (org-small-year-to-year
17069 (string-to-number (match-string 1 ans))))
17070 iso-weekday (if (match-end 3)
17071 (string-to-number (match-string 3 ans)))
17072 iso-week (string-to-number (match-string 2 ans)))
17073 (setq ans (replace-match "" t t ans)))
17075 ;; Help matching ISO dates with single digit month or day, like 2006-8-11.
17076 (when (string-match
17077 "^ *\\(\\([0-9]+\\)-\\)?\\([0-1]?[0-9]\\)-\\([0-3]?[0-9]\\)\\([^-0-9]\\|$\\)" ans)
17078 (setq year (if (match-end 2)
17079 (string-to-number (match-string 2 ans))
17080 (progn (setq kill-year t)
17081 (string-to-number (format-time-string "%Y"))))
17082 month (string-to-number (match-string 3 ans))
17083 day (string-to-number (match-string 4 ans)))
17084 (if (< year 100) (setq year (+ 2000 year)))
17085 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17086 t nil ans)))
17088 ;; Help matching dotted european dates
17089 (when (string-match
17090 "^ *\\(3[01]\\|0?[1-9]\\|[12][0-9]\\)\\. ?\\(0?[1-9]\\|1[012]\\)\\.\\( ?[1-9][0-9]\\{3\\}\\)?" ans)
17091 (setq year (if (match-end 3) (string-to-number (match-string 3 ans))
17092 (setq kill-year t)
17093 (string-to-number (format-time-string "%Y")))
17094 day (string-to-number (match-string 1 ans))
17095 month (string-to-number (match-string 2 ans))
17096 ans (replace-match (format "%04d-%02d-%02d" year month day)
17097 t nil ans)))
17099 ;; Help matching american dates, like 5/30 or 5/30/7
17100 (when (string-match
17101 "^ *\\(0?[1-9]\\|1[012]\\)/\\(0?[1-9]\\|[12][0-9]\\|3[01]\\)\\(/\\([0-9]+\\)\\)?\\([^/0-9]\\|$\\)" ans)
17102 (setq year (if (match-end 4)
17103 (string-to-number (match-string 4 ans))
17104 (progn (setq kill-year t)
17105 (string-to-number (format-time-string "%Y"))))
17106 month (string-to-number (match-string 1 ans))
17107 day (string-to-number (match-string 2 ans)))
17108 (if (< year 100) (setq year (+ 2000 year)))
17109 (setq ans (replace-match (format "%04d-%02d-%02d\\5" year month day)
17110 t nil ans)))
17111 ;; Help matching am/pm times, because `parse-time-string' does not do that.
17112 ;; If there is a time with am/pm, and *no* time without it, we convert
17113 ;; so that matching will be successful.
17114 (loop for i from 1 to 2 do ; twice, for end time as well
17115 (when (and (not (string-match "\\(\\`\\|[^+]\\)[012]?[0-9]:[0-9][0-9]\\([ \t\n]\\|$\\)" ans))
17116 (string-match "\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\(am\\|AM\\|pm\\|PM\\)\\>" ans))
17117 (setq hour (string-to-number (match-string 1 ans))
17118 minute (if (match-end 3)
17119 (string-to-number (match-string 3 ans))
17121 pm (equal ?p
17122 (string-to-char (downcase (match-string 4 ans)))))
17123 (if (and (= hour 12) (not pm))
17124 (setq hour 0)
17125 (if (and pm (< hour 12)) (setq hour (+ 12 hour))))
17126 (setq ans (replace-match (format "%02d:%02d" hour minute)
17127 t t ans))))
17129 ;; Check if a time range is given as a duration
17130 (when (string-match "\\([012]?[0-9]\\):\\([0-6][0-9]\\)\\+\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?" ans)
17131 (setq hour (string-to-number (match-string 1 ans))
17132 h2 (+ hour (string-to-number (match-string 3 ans)))
17133 minute (string-to-number (match-string 2 ans))
17134 m2 (+ minute (if (match-end 5) (string-to-number
17135 (match-string 5 ans))0)))
17136 (if (>= m2 60) (setq h2 (1+ h2) m2 (- m2 60)))
17137 (setq ans (replace-match (format "%02d:%02d-%02d:%02d" hour minute h2 m2)
17138 t t ans)))
17140 ;; Check if there is a time range
17141 (when (boundp 'org-end-time-was-given)
17142 (setq org-time-was-given nil)
17143 (when (and (string-match org-plain-time-of-day-regexp ans)
17144 (match-end 8))
17145 (setq org-end-time-was-given (match-string 8 ans))
17146 (setq ans (concat (substring ans 0 (match-beginning 7))
17147 (substring ans (match-end 7))))))
17149 (setq tl (parse-time-string ans)
17150 day (or (nth 3 tl) (nth 3 org-defdecode))
17151 month
17152 (cond ((nth 4 tl))
17153 ((not org-read-date-prefer-future) (nth 4 org-defdecode))
17154 ;; Day was specified. Make sure DAY+MONTH
17155 ;; combination happens in the future.
17156 ((nth 3 tl)
17157 (setq futurep t)
17158 (if (< day (nth 3 nowdecode)) (1+ (nth 4 nowdecode))
17159 (nth 4 nowdecode)))
17160 (t (nth 4 org-defdecode)))
17161 year
17162 (cond ((and (not kill-year) (nth 5 tl)))
17163 ((not org-read-date-prefer-future) (nth 5 org-defdecode))
17164 ;; Month was guessed in the future and is at least
17165 ;; equal to NOWDECODE's. Fix year accordingly.
17166 (futurep
17167 (if (or (> month (nth 4 nowdecode))
17168 (>= day (nth 3 nowdecode)))
17169 (nth 5 nowdecode)
17170 (1+ (nth 5 nowdecode))))
17171 ;; Month was specified. Make sure MONTH+YEAR
17172 ;; combination happens in the future.
17173 ((nth 4 tl)
17174 (setq futurep t)
17175 (cond ((> month (nth 4 nowdecode)) (nth 5 nowdecode))
17176 ((< month (nth 4 nowdecode)) (1+ (nth 5 nowdecode)))
17177 ((< day (nth 3 nowdecode)) (1+ (nth 5 nowdecode)))
17178 (t (nth 5 nowdecode))))
17179 (t (nth 5 org-defdecode)))
17180 hour (or (nth 2 tl) (nth 2 org-defdecode))
17181 minute (or (nth 1 tl) (nth 1 org-defdecode))
17182 second (or (nth 0 tl) 0)
17183 wday (nth 6 tl))
17185 (when (and (eq org-read-date-prefer-future 'time)
17186 (not (nth 3 tl)) (not (nth 4 tl)) (not (nth 5 tl))
17187 (equal day (nth 3 nowdecode))
17188 (equal month (nth 4 nowdecode))
17189 (equal year (nth 5 nowdecode))
17190 (nth 2 tl)
17191 (or (< (nth 2 tl) (nth 2 nowdecode))
17192 (and (= (nth 2 tl) (nth 2 nowdecode))
17193 (nth 1 tl)
17194 (< (nth 1 tl) (nth 1 nowdecode)))))
17195 (setq day (1+ day)
17196 futurep t))
17198 ;; Special date definitions below
17199 (cond
17200 (iso-week
17201 ;; There was an iso week
17202 (require 'cal-iso)
17203 (setq futurep nil)
17204 (setq year (or iso-year year)
17205 day (or iso-weekday wday 1)
17206 wday nil ; to make sure that the trigger below does not match
17207 iso-date (calendar-gregorian-from-absolute
17208 (calendar-iso-to-absolute
17209 (list iso-week day year))))
17210 ; FIXME: Should we also push ISO weeks into the future?
17211 ; (when (and org-read-date-prefer-future
17212 ; (not iso-year)
17213 ; (< (calendar-absolute-from-gregorian iso-date)
17214 ; (time-to-days (current-time))))
17215 ; (setq year (1+ year)
17216 ; iso-date (calendar-gregorian-from-absolute
17217 ; (calendar-iso-to-absolute
17218 ; (list iso-week day year)))))
17219 (setq month (car iso-date)
17220 year (nth 2 iso-date)
17221 day (nth 1 iso-date)))
17222 (deltan
17223 (setq futurep nil)
17224 (unless deltadef
17225 ;; Pass `current-time' result to `decode-time' (instead of
17226 ;; calling without arguments) so that only `current-time' has
17227 ;; to be overriden in tests.
17228 (let ((now (decode-time (current-time))))
17229 (setq day (nth 3 now) month (nth 4 now) year (nth 5 now))))
17230 (cond ((member deltaw '("d" "")) (setq day (+ day deltan)))
17231 ((equal deltaw "w") (setq day (+ day (* 7 deltan))))
17232 ((equal deltaw "m") (setq month (+ month deltan)))
17233 ((equal deltaw "y") (setq year (+ year deltan)))))
17234 ((and wday (not (nth 3 tl)))
17235 ;; Weekday was given, but no day, so pick that day in the week
17236 ;; on or after the derived date.
17237 (setq wday1 (nth 6 (decode-time (encode-time 0 0 0 day month year))))
17238 (unless (equal wday wday1)
17239 (setq day (+ day (% (- wday wday1 -7) 7))))))
17240 (if (and (boundp 'org-time-was-given)
17241 (nth 2 tl))
17242 (setq org-time-was-given t))
17243 (if (< year 100) (setq year (+ 2000 year)))
17244 ;; Check of the date is representable
17245 (if org-read-date-force-compatible-dates
17246 (progn
17247 (if (< year 1970)
17248 (setq year 1970 org-read-date-analyze-forced-year t))
17249 (if (> year 2037)
17250 (setq year 2037 org-read-date-analyze-forced-year t)))
17251 (condition-case nil
17252 (ignore (encode-time second minute hour day month year))
17253 (error
17254 (setq year (nth 5 org-defdecode))
17255 (setq org-read-date-analyze-forced-year t))))
17256 (setq org-read-date-analyze-futurep futurep)
17257 (list second minute hour day month year)))
17259 (defvar parse-time-weekdays)
17260 (defun org-read-date-get-relative (s today default)
17261 "Check string S for special relative date string.
17262 TODAY and DEFAULT are internal times, for today and for a default.
17263 Return shift list (N what def-flag)
17264 WHAT is \"d\", \"w\", \"m\", or \"y\" for day, week, month, year.
17265 N is the number of WHATs to shift.
17266 DEF-FLAG is t when a double ++ or -- indicates shift relative to
17267 the DEFAULT date rather than TODAY."
17268 (require 'parse-time)
17269 (when (and
17270 (string-match
17271 (concat
17272 "\\`[ \t]*\\([-+]\\{0,2\\}\\)"
17273 "\\([0-9]+\\)?"
17274 "\\([hdwmy]\\|\\(" (mapconcat 'car parse-time-weekdays "\\|") "\\)\\)?"
17275 "\\([ \t]\\|$\\)") s)
17276 (or (> (match-end 1) (match-beginning 1)) (match-end 4)))
17277 (let* ((dir (if (> (match-end 1) (match-beginning 1))
17278 (string-to-char (substring (match-string 1 s) -1))
17279 ?+))
17280 (rel (and (match-end 1) (= 2 (- (match-end 1) (match-beginning 1)))))
17281 (n (if (match-end 2) (string-to-number (match-string 2 s)) 1))
17282 (what (if (match-end 3) (match-string 3 s) "d"))
17283 (wday1 (cdr (assoc (downcase what) parse-time-weekdays)))
17284 (date (if rel default today))
17285 (wday (nth 6 (decode-time date)))
17286 delta)
17287 (if wday1
17288 (progn
17289 (setq delta (mod (+ 7 (- wday1 wday)) 7))
17290 (if (= delta 0) (setq delta 7))
17291 (if (= dir ?-)
17292 (progn
17293 (setq delta (- delta 7))
17294 (if (= delta 0) (setq delta -7))))
17295 (if (> n 1) (setq delta (+ delta (* (1- n) (if (= dir ?-) -7 7)))))
17296 (list delta "d" rel))
17297 (list (* n (if (= dir ?-) -1 1)) what rel)))))
17299 (defun org-order-calendar-date-args (arg1 arg2 arg3)
17300 "Turn a user-specified date into the internal representation.
17301 The internal representation needed by the calendar is (month day year).
17302 This is a wrapper to handle the brain-dead convention in calendar that
17303 user function argument order change dependent on argument order."
17304 (if (boundp 'calendar-date-style)
17305 (cond
17306 ((eq calendar-date-style 'american)
17307 (list arg1 arg2 arg3))
17308 ((eq calendar-date-style 'european)
17309 (list arg2 arg1 arg3))
17310 ((eq calendar-date-style 'iso)
17311 (list arg2 arg3 arg1)))
17312 (org-no-warnings ;; european-calendar-style is obsolete as of version 23.1
17313 (if (org-bound-and-true-p european-calendar-style)
17314 (list arg2 arg1 arg3)
17315 (list arg1 arg2 arg3)))))
17317 (defun org-eval-in-calendar (form &optional keepdate)
17318 "Eval FORM in the calendar window and return to current window.
17319 When KEEPDATE is non-nil, update `org-ans2' from the cursor date,
17320 otherwise stick to the current value of `org-ans2'."
17321 (let ((sf (selected-frame))
17322 (sw (selected-window)))
17323 (select-window (get-buffer-window "*Calendar*" t))
17324 (eval form)
17325 (when (and (not keepdate) (calendar-cursor-to-date))
17326 (let* ((date (calendar-cursor-to-date))
17327 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17328 (setq org-ans2 (format-time-string "%Y-%m-%d" time))))
17329 (move-overlay org-date-ovl (1- (point)) (1+ (point)) (current-buffer))
17330 (select-window sw)
17331 (org-select-frame-set-input-focus sf)))
17333 (defun org-calendar-select ()
17334 "Return to `org-read-date' with the date currently selected.
17335 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17336 (interactive)
17337 (when (calendar-cursor-to-date)
17338 (let* ((date (calendar-cursor-to-date))
17339 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17340 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17341 (if (active-minibuffer-window) (exit-minibuffer))))
17343 (defun org-insert-time-stamp (time &optional with-hm inactive pre post extra)
17344 "Insert a date stamp for the date given by the internal TIME.
17345 See `format-time-string' for the format of TIME.
17346 WITH-HM means use the stamp format that includes the time of the day.
17347 INACTIVE means use square brackets instead of angular ones, so that the
17348 stamp will not contribute to the agenda.
17349 PRE and POST are optional strings to be inserted before and after the
17350 stamp.
17351 The command returns the inserted time stamp."
17352 (let ((fmt (funcall (if with-hm 'cdr 'car) org-time-stamp-formats))
17353 stamp)
17354 (if inactive (setq fmt (concat "[" (substring fmt 1 -1) "]")))
17355 (insert-before-markers (or pre ""))
17356 (when (listp extra)
17357 (setq extra (car extra))
17358 (if (and (stringp extra)
17359 (string-match "\\([0-9]+\\):\\([0-9]+\\)" extra))
17360 (setq extra (format "-%02d:%02d"
17361 (string-to-number (match-string 1 extra))
17362 (string-to-number (match-string 2 extra))))
17363 (setq extra nil)))
17364 (when extra
17365 (setq fmt (concat (substring fmt 0 -1) extra (substring fmt -1))))
17366 (insert-before-markers (setq stamp (format-time-string fmt time)))
17367 (insert-before-markers (or post ""))
17368 (setq org-last-inserted-timestamp stamp)))
17370 (defun org-toggle-time-stamp-overlays ()
17371 "Toggle the use of custom time stamp formats."
17372 (interactive)
17373 (setq org-display-custom-times (not org-display-custom-times))
17374 (unless org-display-custom-times
17375 (let ((p (point-min)) (bmp (buffer-modified-p)))
17376 (while (setq p (next-single-property-change p 'display))
17377 (if (and (get-text-property p 'display)
17378 (eq (get-text-property p 'face) 'org-date))
17379 (remove-text-properties
17380 p (setq p (next-single-property-change p 'display))
17381 '(display t))))
17382 (set-buffer-modified-p bmp)))
17383 (if (featurep 'xemacs)
17384 (remove-text-properties (point-min) (point-max) '(end-glyph t)))
17385 (org-restart-font-lock)
17386 (setq org-table-may-need-update t)
17387 (if org-display-custom-times
17388 (message "Time stamps are overlaid with custom format")
17389 (message "Time stamp overlays removed")))
17391 (defun org-display-custom-time (beg end)
17392 "Overlay modified time stamp format over timestamp between BEG and END."
17393 (let* ((ts (buffer-substring beg end))
17394 t1 w1 with-hm tf time str w2 (off 0))
17395 (save-match-data
17396 (setq t1 (org-parse-time-string ts t))
17397 (if (string-match "\\(-[0-9]+:[0-9]+\\)?\\( [.+]?\\+[0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)?\\'" ts)
17398 (setq off (- (match-end 0) (match-beginning 0)))))
17399 (setq end (- end off))
17400 (setq w1 (- end beg)
17401 with-hm (and (nth 1 t1) (nth 2 t1))
17402 tf (funcall (if with-hm 'cdr 'car) org-time-stamp-custom-formats)
17403 time (org-fix-decoded-time t1)
17404 str (org-add-props
17405 (format-time-string
17406 (substring tf 1 -1) (apply 'encode-time time))
17407 nil 'mouse-face 'highlight)
17408 w2 (length str))
17409 (if (not (= w2 w1))
17410 (add-text-properties (1+ beg) (+ 2 beg)
17411 (list 'org-dwidth t 'org-dwidth-n (- w1 w2))))
17412 (if (featurep 'xemacs)
17413 (progn
17414 (put-text-property beg end 'invisible t)
17415 (put-text-property beg end 'end-glyph (make-glyph str)))
17416 (put-text-property beg end 'display str))))
17418 (defun org-fix-decoded-time (time)
17419 "Set 0 instead of nil for the first 6 elements of time.
17420 Don't touch the rest."
17421 (let ((n 0))
17422 (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
17424 (define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
17426 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
17427 "Difference between TIMESTAMP-STRING and now in days.
17428 If SECONDS is non-nil, return the difference in seconds."
17429 (let ((fdiff (if seconds 'org-float-time 'time-to-days)))
17430 (- (funcall fdiff (org-time-string-to-time timestamp-string))
17431 (funcall fdiff (current-time)))))
17433 (defun org-deadline-close (timestamp-string &optional ndays)
17434 "Is the time in TIMESTAMP-STRING close to the current date?"
17435 (setq ndays (or ndays (org-get-wdays timestamp-string)))
17436 (and (< (org-time-stamp-to-now timestamp-string) ndays)
17437 (not (org-entry-is-done-p))))
17439 (defun org-get-wdays (ts &optional delay zero-delay)
17440 "Get the deadline lead time appropriate for timestring TS.
17441 When DELAY is non-nil, get the delay time for scheduled items
17442 instead of the deadline lead time. When ZERO-DELAY is non-nil
17443 and `org-scheduled-delay-days' is 0, enforce 0 as the delay,
17444 don't try to find the delay cookie in the scheduled timestamp."
17445 (let ((tv (if delay org-scheduled-delay-days
17446 org-deadline-warning-days)))
17447 (cond
17448 ((or (and delay (< tv 0))
17449 (and delay zero-delay (<= tv 0))
17450 (and (not delay) (<= tv 0)))
17451 ;; Enforce this value no matter what
17452 (- tv))
17453 ((string-match "-\\([0-9]+\\)\\([hdwmy]\\)\\(\\'\\|>\\| \\)" ts)
17454 ;; lead time is specified.
17455 (floor (* (string-to-number (match-string 1 ts))
17456 (cdr (assoc (match-string 2 ts)
17457 '(("d" . 1) ("w" . 7)
17458 ("m" . 30.4) ("y" . 365.25)
17459 ("h" . 0.041667)))))))
17460 ;; go for the default.
17461 (t tv))))
17463 (defun org-calendar-select-mouse (ev)
17464 "Return to `org-read-date' with the date currently selected.
17465 This is used by `org-read-date' in a temporary keymap for the calendar buffer."
17466 (interactive "e")
17467 (mouse-set-point ev)
17468 (when (calendar-cursor-to-date)
17469 (let* ((date (calendar-cursor-to-date))
17470 (time (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
17471 (setq org-ans1 (format-time-string "%Y-%m-%d" time)))
17472 (if (active-minibuffer-window) (exit-minibuffer))))
17474 (defun org-check-deadlines (ndays)
17475 "Check if there are any deadlines due or past due.
17476 A deadline is considered due if it happens within `org-deadline-warning-days'
17477 days from today's date. If the deadline appears in an entry marked DONE,
17478 it is not shown. The prefix arg NDAYS can be used to test that many
17479 days. If the prefix is a raw \\[universal-argument] prefix, all deadlines are shown."
17480 (interactive "P")
17481 (let* ((org-warn-days
17482 (cond
17483 ((equal ndays '(4)) 100000)
17484 (ndays (prefix-numeric-value ndays))
17485 (t (abs org-deadline-warning-days))))
17486 (case-fold-search nil)
17487 (regexp (concat "\\<" org-deadline-string " *<\\([^>]+\\)>"))
17488 (callback
17489 (lambda () (org-deadline-close (match-string 1) org-warn-days))))
17490 (message "%d deadlines past-due or due within %d days"
17491 (org-occur regexp nil callback)
17492 org-warn-days)))
17494 (defsubst org-re-timestamp (type)
17495 "Return a regexp for timestamp TYPE.
17496 Allowed values for TYPE are:
17498 all: all timestamps
17499 active: only active timestamps (<...>)
17500 inactive: only inactive timestamps ([...])
17501 scheduled: only scheduled timestamps
17502 deadline: only deadline timestamps
17503 closed: only closed time-stamps
17505 When TYPE is nil, fall back on returning a regexp that matches
17506 both scheduled and deadline timestamps."
17507 (case type
17508 (all org-ts-regexp-both)
17509 (active org-ts-regexp)
17510 (inactive org-ts-regexp-inactive)
17511 (scheduled org-scheduled-time-regexp)
17512 (deadline org-deadline-time-regexp)
17513 (closed org-closed-time-regexp)
17514 (otherwise
17515 (concat "\\<"
17516 (regexp-opt (list org-deadline-string org-scheduled-string))
17517 " *<\\([^>]+\\)>"))))
17519 (defun org-check-before-date (date)
17520 "Check if there are deadlines or scheduled entries before DATE."
17521 (interactive (list (org-read-date)))
17522 (let ((case-fold-search nil)
17523 (regexp (org-re-timestamp org-ts-type))
17524 (callback
17525 `(lambda ()
17526 (let ((match (match-string 1)))
17527 (and ,(if (memq org-ts-type '(active inactive all))
17528 '(eq (org-element-type (org-element-context)) 'timestamp)
17529 '(org-at-planning-p))
17530 (time-less-p
17531 (org-time-string-to-time match)
17532 (org-time-string-to-time date)))))))
17533 (message "%d entries before %s"
17534 (org-occur regexp nil callback) date)))
17536 (defun org-check-after-date (date)
17537 "Check if there are deadlines or scheduled entries after DATE."
17538 (interactive (list (org-read-date)))
17539 (let ((case-fold-search nil)
17540 (regexp (org-re-timestamp org-ts-type))
17541 (callback
17542 `(lambda ()
17543 (let ((match (match-string 1)))
17544 (and ,(if (memq org-ts-type '(active inactive all))
17545 '(eq (org-element-type (org-element-context)) 'timestamp)
17546 '(org-at-planning-p))
17547 (not (time-less-p
17548 (org-time-string-to-time match)
17549 (org-time-string-to-time date))))))))
17550 (message "%d entries after %s"
17551 (org-occur regexp nil callback) date)))
17553 (defun org-check-dates-range (start-date end-date)
17554 "Check for deadlines/scheduled entries between START-DATE and END-DATE."
17555 (interactive (list (org-read-date nil nil nil "Range starts")
17556 (org-read-date nil nil nil "Range end")))
17557 (let ((case-fold-search nil)
17558 (regexp (org-re-timestamp org-ts-type))
17559 (callback
17560 `(lambda ()
17561 (let ((match (match-string 1)))
17562 (and
17563 ,(if (memq org-ts-type '(active inactive all))
17564 '(eq (org-element-type (org-element-context)) 'timestamp)
17565 '(org-at-planning-p))
17566 (not (time-less-p
17567 (org-time-string-to-time match)
17568 (org-time-string-to-time start-date)))
17569 (time-less-p
17570 (org-time-string-to-time match)
17571 (org-time-string-to-time end-date)))))))
17572 (message "%d entries between %s and %s"
17573 (org-occur regexp nil callback) start-date end-date)))
17575 (defun org-evaluate-time-range (&optional to-buffer)
17576 "Evaluate a time range by computing the difference between start and end.
17577 Normally the result is just printed in the echo area, but with prefix arg
17578 TO-BUFFER, the result is inserted just after the date stamp into the buffer.
17579 If the time range is actually in a table, the result is inserted into the
17580 next column.
17581 For time difference computation, a year is assumed to be exactly 365
17582 days in order to avoid rounding problems."
17583 (interactive "P")
17585 (org-clock-update-time-maybe)
17586 (save-excursion
17587 (unless (org-at-date-range-p t)
17588 (goto-char (point-at-bol))
17589 (re-search-forward org-tr-regexp-both (point-at-eol) t))
17590 (if (not (org-at-date-range-p t))
17591 (user-error "Not at a time-stamp range, and none found in current line")))
17592 (let* ((ts1 (match-string 1))
17593 (ts2 (match-string 2))
17594 (havetime (or (> (length ts1) 15) (> (length ts2) 15)))
17595 (match-end (match-end 0))
17596 (time1 (org-time-string-to-time ts1))
17597 (time2 (org-time-string-to-time ts2))
17598 (t1 (org-float-time time1))
17599 (t2 (org-float-time time2))
17600 (diff (abs (- t2 t1)))
17601 (negative (< (- t2 t1) 0))
17602 ;; (ys (floor (* 365 24 60 60)))
17603 (ds (* 24 60 60))
17604 (hs (* 60 60))
17605 (fy "%dy %dd %02d:%02d")
17606 (fy1 "%dy %dd")
17607 (fd "%dd %02d:%02d")
17608 (fd1 "%dd")
17609 (fh "%02d:%02d")
17610 y d h m align)
17611 (if havetime
17612 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17614 d (floor (/ diff ds)) diff (mod diff ds)
17615 h (floor (/ diff hs)) diff (mod diff hs)
17616 m (floor (/ diff 60)))
17617 (setq ; y (floor (/ diff ys)) diff (mod diff ys)
17619 d (floor (+ (/ diff ds) 0.5))
17620 h 0 m 0))
17621 (if (not to-buffer)
17622 (message "%s" (org-make-tdiff-string y d h m))
17623 (if (org-at-table-p)
17624 (progn
17625 (goto-char match-end)
17626 (setq align t)
17627 (and (looking-at " *|") (goto-char (match-end 0))))
17628 (goto-char match-end))
17629 (if (looking-at
17630 "\\( *-? *[0-9]+y\\)?\\( *[0-9]+d\\)? *[0-9][0-9]:[0-9][0-9]")
17631 (replace-match ""))
17632 (if negative (insert " -"))
17633 (if (> y 0) (insert " " (format (if havetime fy fy1) y d h m))
17634 (if (> d 0) (insert " " (format (if havetime fd fd1) d h m))
17635 (insert " " (format fh h m))))
17636 (if align (org-table-align))
17637 (message "Time difference inserted")))))
17639 (defun org-make-tdiff-string (y d h m)
17640 (let ((fmt "")
17641 (l nil))
17642 (if (> y 0) (setq fmt (concat fmt "%d year" (if (> y 1) "s" "") " ")
17643 l (push y l)))
17644 (if (> d 0) (setq fmt (concat fmt "%d day" (if (> d 1) "s" "") " ")
17645 l (push d l)))
17646 (if (> h 0) (setq fmt (concat fmt "%d hour" (if (> h 1) "s" "") " ")
17647 l (push h l)))
17648 (if (> m 0) (setq fmt (concat fmt "%d minute" (if (> m 1) "s" "") " ")
17649 l (push m l)))
17650 (apply 'format fmt (nreverse l))))
17652 (defun org-time-string-to-time (s &optional buffer pos)
17653 "Convert a timestamp string into internal time."
17654 (condition-case errdata
17655 (apply 'encode-time (org-parse-time-string s))
17656 (error (error "Bad timestamp `%s'%s\nError was: %s"
17657 s (if (not (and buffer pos))
17659 (format-message " at %d in buffer `%s'" pos buffer))
17660 (cdr errdata)))))
17662 (defun org-time-string-to-seconds (s)
17663 "Convert a timestamp string to a number of seconds."
17664 (org-float-time (org-time-string-to-time s)))
17666 (defun org-time-string-to-absolute (s &optional daynr prefer show-all buffer pos)
17667 "Convert a time stamp to an absolute day number.
17668 If there is a specifier for a cyclic time stamp, get the closest
17669 date to DAYNR.
17670 PREFER and SHOW-ALL are passed through to `org-closest-date'.
17671 The variable `date' is bound by the calendar when this is called."
17672 (cond
17673 ((and daynr (string-match "\\`%%\\((.*)\\)" s))
17674 (if (org-diary-sexp-entry (match-string 1 s) "" date)
17675 daynr
17676 (+ daynr 1000)))
17677 ((and daynr (string-match "\\+\\([0-9]+\\)[hdwmy]" s)
17678 (> (string-to-number (match-string 1 s)) 0))
17679 (org-closest-date s (if (and (boundp 'daynr) (integerp daynr)) daynr
17680 (time-to-days (current-time))) (match-string 0 s)
17681 prefer show-all))
17682 (t (time-to-days
17683 (condition-case errdata
17684 (apply 'encode-time (org-parse-time-string s))
17685 (error (error "Bad timestamp `%s'%s\nError was: %s"
17686 s (if (not (and buffer pos))
17688 (format-message " at %d in buffer `%s'" pos buffer))
17689 (cdr errdata))))))))
17691 (defun org-days-to-iso-week (days)
17692 "Return the iso week number."
17693 (require 'cal-iso)
17694 (car (calendar-iso-from-absolute days)))
17696 (defun org-small-year-to-year (year)
17697 "Convert 2-digit years into 4-digit years.
17698 YEAR is expanded into one of the 30 next years, if possible, or
17699 into a past one. Any year larger than 99 is returned unchanged."
17700 (if (>= year 100) year
17701 (let* ((current (string-to-number (format-time-string "%Y" (current-time))))
17702 (century (/ current 100))
17703 (offset (- year (% current 100))))
17704 (cond ((> offset 30) (+ (* (1- century) 100) year))
17705 ((> offset -70) (+ (* century 100) year))
17706 (t (+ (* (1+ century) 100) year))))))
17708 (defun org-time-from-absolute (d)
17709 "Return the time corresponding to date D.
17710 D may be an absolute day number, or a calendar-type list (month day year)."
17711 (if (numberp d) (setq d (calendar-gregorian-from-absolute d)))
17712 (encode-time 0 0 0 (nth 1 d) (car d) (nth 2 d)))
17714 (defun org-calendar-holiday ()
17715 "List of holidays, for Diary display in Org-mode."
17716 (require 'holidays)
17717 (let ((hl (funcall
17718 (if (fboundp 'calendar-check-holidays)
17719 'calendar-check-holidays 'check-calendar-holidays) date)))
17720 (if hl (mapconcat 'identity hl "; "))))
17722 (defun org-diary-sexp-entry (sexp entry date)
17723 "Process a SEXP diary ENTRY for DATE."
17724 (require 'diary-lib)
17725 (let ((result (if calendar-debug-sexp
17726 (let ((stack-trace-on-error t))
17727 (eval (car (read-from-string sexp))))
17728 (condition-case nil
17729 (eval (car (read-from-string sexp)))
17730 (error
17731 (beep)
17732 (message "Bad sexp at line %d in %s: %s"
17733 (org-current-line)
17734 (buffer-file-name) sexp)
17735 (sleep-for 2))))))
17736 (cond ((stringp result) (split-string result "; "))
17737 ((and (consp result)
17738 (not (consp (cdr result)))
17739 (stringp (cdr result))) (cdr result))
17740 ((and (consp result)
17741 (stringp (car result))) result)
17742 (result entry))))
17744 (defun org-diary-to-ical-string (frombuf)
17745 "Get iCalendar entries from diary entries in buffer FROMBUF.
17746 This uses the icalendar.el library."
17747 (let* ((tmpdir (if (featurep 'xemacs)
17748 (temp-directory)
17749 temporary-file-directory))
17750 (tmpfile (make-temp-name
17751 (expand-file-name "orgics" tmpdir)))
17752 buf rtn b e)
17753 (with-current-buffer frombuf
17754 (icalendar-export-region (point-min) (point-max) tmpfile)
17755 (setq buf (find-buffer-visiting tmpfile))
17756 (set-buffer buf)
17757 (goto-char (point-min))
17758 (if (re-search-forward "^BEGIN:VEVENT" nil t)
17759 (setq b (match-beginning 0)))
17760 (goto-char (point-max))
17761 (if (re-search-backward "^END:VEVENT" nil t)
17762 (setq e (match-end 0)))
17763 (setq rtn (if (and b e) (concat (buffer-substring b e) "\n") "")))
17764 (kill-buffer buf)
17765 (delete-file tmpfile)
17766 rtn))
17768 (defun org-closest-date (start current change prefer show-all)
17769 "Find the date closest to CURRENT that is consistent with START and CHANGE.
17770 When PREFER is `past', return a date that is either CURRENT or past.
17771 When PREFER is `future', return a date that is either CURRENT or future.
17772 When SHOW-ALL is nil, only return the current occurrence of a time stamp."
17773 ;; Make the proper lists from the dates
17774 (catch 'exit
17775 (let ((a1 '(("h" . hour)
17776 ("d" . day)
17777 ("w" . week)
17778 ("m" . month)
17779 ("y" . year)))
17780 (shour (nth 2 (org-parse-time-string start)))
17781 dn dw sday cday n1 n2 n0
17782 d m y y1 y2 date1 date2 nmonths nm ny m2)
17784 (setq start (org-date-to-gregorian start)
17785 current (org-date-to-gregorian
17786 (if show-all
17787 current
17788 (time-to-days (current-time))))
17789 sday (calendar-absolute-from-gregorian start)
17790 cday (calendar-absolute-from-gregorian current))
17792 (if (<= cday sday) (throw 'exit sday))
17794 (when (string-match "\\(\\+[0-9]+\\)\\([hdwmy]\\)" change)
17795 (setq dn (string-to-number (match-string 1 change))
17796 dw (cdr (assoc (match-string 2 change) a1))))
17797 (unless (and dn (> dn 0))
17798 (user-error "Invalid change specifier: %s" change))
17799 (if (eq dw 'week) (setq dw 'day dn (* 7 dn)))
17800 (cond
17801 ((eq dw 'hour)
17802 (let ((missing-hours
17803 (mod (+ (- (* 24 (- cday sday)) shour) org-extend-today-until)
17804 dn)))
17805 (setq n1 (if (zerop missing-hours) cday
17806 (- cday (1+ (floor (/ missing-hours 24)))))
17807 n2 (+ cday (floor (/ (- dn missing-hours) 24))))))
17808 ((eq dw 'day)
17809 (setq n1 (+ sday (* dn (floor (/ (- cday sday) dn))))
17810 n2 (+ n1 dn)))
17811 ((eq dw 'year)
17812 (setq d (nth 1 start) m (car start) y1 (nth 2 start) y2 (nth 2 current))
17813 (setq y1 (+ (* (floor (/ (- y2 y1) dn)) dn) y1))
17814 (setq date1 (list m d y1)
17815 n1 (calendar-absolute-from-gregorian date1)
17816 date2 (list m d (+ y1 (* (if (< n1 cday) 1 -1) dn)))
17817 n2 (calendar-absolute-from-gregorian date2)))
17818 ((eq dw 'month)
17819 ;; approx number of month between the two dates
17820 (setq nmonths (floor (/ (- cday sday) 30.436875)))
17821 ;; How often does dn fit in there?
17822 (setq d (nth 1 start) m (car start) y (nth 2 start)
17823 nm (* dn (max 0 (1- (floor (/ nmonths dn)))))
17824 m (+ m nm)
17825 ny (floor (/ m 12))
17826 y (+ y ny)
17827 m (- m (* ny 12)))
17828 (while (> m 12) (setq m (- m 12) y (1+ y)))
17829 (setq n1 (calendar-absolute-from-gregorian (list m d y)))
17830 (setq m2 (+ m dn) y2 y)
17831 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17832 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2)))
17833 (while (<= n2 cday)
17834 (setq n1 n2 m m2 y y2)
17835 (setq m2 (+ m dn) y2 y)
17836 (if (> m2 12) (setq y2 (1+ y2) m2 (- m2 12)))
17837 (setq n2 (calendar-absolute-from-gregorian (list m2 d y2))))))
17838 ;; Make sure n1 is the earlier date
17839 (setq n0 n1 n1 (min n1 n2) n2 (max n0 n2))
17840 (if show-all
17841 (cond
17842 ((eq prefer 'past) (if (= cday n2) n2 n1))
17843 ((eq prefer 'future) (if (= cday n1) n1 n2))
17844 (t (if (> (abs (- cday n1)) (abs (- cday n2))) n2 n1)))
17845 (cond
17846 ((eq prefer 'past) (if (= cday n2) n2 n1))
17847 ((eq prefer 'future) (if (= cday n1) n1 n2))
17848 (t (if (= cday n1) n1 n2)))))))
17850 (defun org-date-to-gregorian (date)
17851 "Turn any specification of DATE into a Gregorian date for the calendar."
17852 (cond ((integerp date) (calendar-gregorian-from-absolute date))
17853 ((and (listp date) (= (length date) 3)) date)
17854 ((stringp date)
17855 (setq date (org-parse-time-string date))
17856 (list (nth 4 date) (nth 3 date) (nth 5 date)))
17857 ((listp date)
17858 (list (nth 4 date) (nth 3 date) (nth 5 date)))))
17860 (defun org-parse-time-string (s &optional nodefault)
17861 "Parse the standard Org-mode time string.
17862 This should be a lot faster than the normal `parse-time-string'.
17863 If time is not given, defaults to 0:00. However, with optional NODEFAULT,
17864 hour and minute fields will be nil if not given."
17865 (cond ((string-match org-ts-regexp0 s)
17866 (list 0
17867 (if (or (match-beginning 8) (not nodefault))
17868 (string-to-number (or (match-string 8 s) "0")))
17869 (if (or (match-beginning 7) (not nodefault))
17870 (string-to-number (or (match-string 7 s) "0")))
17871 (string-to-number (match-string 4 s))
17872 (string-to-number (match-string 3 s))
17873 (string-to-number (match-string 2 s))
17874 nil nil nil))
17875 ((string-match "^<[^>]+>$" s)
17876 (decode-time (seconds-to-time (org-matcher-time s))))
17877 (t (error "Not a standard Org-mode time string: %s" s))))
17879 (defun org-timestamp-up (&optional arg)
17880 "Increase the date item at the cursor by one.
17881 If the cursor is on the year, change the year. If it is on the month,
17882 the day or the time, change that.
17883 With prefix ARG, change by that many units."
17884 (interactive "p")
17885 (org-timestamp-change (prefix-numeric-value arg) nil 'updown))
17887 (defun org-timestamp-down (&optional arg)
17888 "Decrease the date item at the cursor by one.
17889 If the cursor is on the year, change the year. If it is on the month,
17890 the day or the time, change that.
17891 With prefix ARG, change by that many units."
17892 (interactive "p")
17893 (org-timestamp-change (- (prefix-numeric-value arg)) nil 'updown))
17895 (defun org-timestamp-up-day (&optional arg)
17896 "Increase the date in the time stamp by one day.
17897 With prefix ARG, change that many days."
17898 (interactive "p")
17899 (if (and (not (org-at-timestamp-p t))
17900 (org-at-heading-p))
17901 (org-todo 'up)
17902 (org-timestamp-change (prefix-numeric-value arg) 'day 'updown)))
17904 (defun org-timestamp-down-day (&optional arg)
17905 "Decrease the date in the time stamp by one day.
17906 With prefix ARG, change that many days."
17907 (interactive "p")
17908 (if (and (not (org-at-timestamp-p t))
17909 (org-at-heading-p))
17910 (org-todo 'down)
17911 (org-timestamp-change (- (prefix-numeric-value arg)) 'day) 'updown))
17913 (defun org-at-timestamp-p (&optional inactive-ok)
17914 "Non-nil if point is inside a timestamp.
17916 When optional argument INACTIVE-OK is non-nil, also consider
17917 inactive timestamps.
17919 When this function returns a non-nil value, match data is set
17920 according to `org-ts-regexp3' or `org-ts-regexp2', depending on
17921 INACTIVE-OK."
17922 (interactive)
17923 (let* ((tsr (if inactive-ok org-ts-regexp3 org-ts-regexp2))
17924 (pos (point))
17925 (ans (or (looking-at tsr)
17926 (save-excursion
17927 (skip-chars-backward "^[<\n\r\t")
17928 (if (> (point) (point-min)) (backward-char 1))
17929 (and (looking-at tsr)
17930 (> (- (match-end 0) pos) -1))))))
17931 (and ans
17932 (boundp 'org-ts-what)
17933 (setq org-ts-what
17934 (cond
17935 ((= pos (match-beginning 0)) 'bracket)
17936 ;; Point is considered to be "on the bracket" whether
17937 ;; it's really on it or right after it.
17938 ((= pos (1- (match-end 0))) 'bracket)
17939 ((= pos (match-end 0)) 'after)
17940 ((org-pos-in-match-range pos 2) 'year)
17941 ((org-pos-in-match-range pos 3) 'month)
17942 ((org-pos-in-match-range pos 7) 'hour)
17943 ((org-pos-in-match-range pos 8) 'minute)
17944 ((or (org-pos-in-match-range pos 4)
17945 (org-pos-in-match-range pos 5)) 'day)
17946 ((and (> pos (or (match-end 8) (match-end 5)))
17947 (< pos (match-end 0)))
17948 (- pos (or (match-end 8) (match-end 5))))
17949 (t 'day))))
17950 ans))
17952 (defun org-toggle-timestamp-type ()
17953 "Toggle the type (<active> or [inactive]) of a time stamp."
17954 (interactive)
17955 (when (org-at-timestamp-p t)
17956 (let ((beg (match-beginning 0)) (end (match-end 0))
17957 (map '((?\[ . "<") (?\] . ">") (?< . "[") (?> . "]"))))
17958 (save-excursion
17959 (goto-char beg)
17960 (while (re-search-forward "[][<>]" end t)
17961 (replace-match (cdr (assoc (char-after (match-beginning 0)) map))
17962 t t)))
17963 (message "Timestamp is now %sactive"
17964 (if (equal (char-after beg) ?<) "" "in")))))
17966 (defun org-at-clock-log-p nil
17967 "Is the cursor on the clock log line?"
17968 (save-excursion
17969 (move-beginning-of-line 1)
17970 (looking-at org-clock-line-re)))
17972 (defvar org-clock-history) ; defined in org-clock.el
17973 (defvar org-clock-adjust-closest nil) ; defined in org-clock.el
17974 (defun org-timestamp-change (n &optional what updown suppress-tmp-delay)
17975 "Change the date in the time stamp at point.
17976 The date will be changed by N times WHAT. WHAT can be `day', `month',
17977 `year', `minute', `second'. If WHAT is not given, the cursor position
17978 in the timestamp determines what will be changed.
17979 When SUPPRESS-TMP-DELAY is non-nil, suppress delays like \"--2d\"."
17980 (let ((origin (point)) origin-cat
17981 with-hm inactive
17982 (dm (max (nth 1 org-time-stamp-rounding-minutes) 1))
17983 org-ts-what
17984 extra rem
17985 ts time time0 fixnext clrgx)
17986 (if (not (org-at-timestamp-p t))
17987 (user-error "Not at a timestamp"))
17988 (if (and (not what) (eq org-ts-what 'bracket))
17989 (org-toggle-timestamp-type)
17990 ;; Point isn't on brackets. Remember the part of the time-stamp
17991 ;; the point was in. Indeed, size of time-stamps may change,
17992 ;; but point must be kept in the same category nonetheless.
17993 (setq origin-cat org-ts-what)
17994 (if (and (not what) (not (eq org-ts-what 'day))
17995 org-display-custom-times
17996 (get-text-property (point) 'display)
17997 (not (get-text-property (1- (point)) 'display)))
17998 (setq org-ts-what 'day))
17999 (setq org-ts-what (or what org-ts-what)
18000 inactive (= (char-after (match-beginning 0)) ?\[)
18001 ts (match-string 0))
18002 (replace-match "")
18003 (when (string-match
18004 "\\(\\(-[012][0-9]:[0-5][0-9]\\)?\\( +[.+]?-?[-+][0-9]+[hdwmy]\\(/[0-9]+[hdwmy]\\)?\\)*\\)[]>]"
18006 (setq extra (match-string 1 ts))
18007 (if suppress-tmp-delay
18008 (setq extra (replace-regexp-in-string " --[0-9]+[hdwmy]" "" extra))))
18009 (if (string-match "^.\\{10\\}.*?[0-9]+:[0-9][0-9]" ts)
18010 (setq with-hm t))
18011 (setq time0 (org-parse-time-string ts))
18012 (when (and updown
18013 (eq org-ts-what 'minute)
18014 (not current-prefix-arg))
18015 ;; This looks like s-up and s-down. Change by one rounding step.
18016 (setq n (* dm (cond ((> n 0) 1) ((< n 0) -1) (t 0))))
18017 (when (not (= 0 (setq rem (% (nth 1 time0) dm))))
18018 (setcar (cdr time0) (+ (nth 1 time0)
18019 (if (> n 0) (- rem) (- dm rem))))))
18020 (setq time
18021 (encode-time (or (car time0) 0)
18022 (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0))
18023 (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0))
18024 (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0))
18025 (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0))
18026 (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0))
18027 (nthcdr 6 time0)))
18028 (when (and (member org-ts-what '(hour minute))
18029 extra
18030 (string-match "-\\([012][0-9]\\):\\([0-5][0-9]\\)" extra))
18031 (setq extra (org-modify-ts-extra
18032 extra
18033 (if (eq org-ts-what 'hour) 2 5)
18034 n dm)))
18035 (when (integerp org-ts-what)
18036 (setq extra (org-modify-ts-extra extra org-ts-what n dm)))
18037 (if (eq what 'calendar)
18038 (let ((cal-date (org-get-date-from-calendar)))
18039 (setcar (nthcdr 4 time0) (nth 0 cal-date)) ; month
18040 (setcar (nthcdr 3 time0) (nth 1 cal-date)) ; day
18041 (setcar (nthcdr 5 time0) (nth 2 cal-date)) ; year
18042 (setcar time0 (or (car time0) 0))
18043 (setcar (nthcdr 1 time0) (or (nth 1 time0) 0))
18044 (setcar (nthcdr 2 time0) (or (nth 2 time0) 0))
18045 (setq time (apply 'encode-time time0))))
18046 ;; Insert the new time-stamp, and ensure point stays in the same
18047 ;; category as before (i.e. not after the last position in that
18048 ;; category).
18049 (let ((pos (point)))
18050 ;; Stay before inserted string. `save-excursion' is of no use.
18051 (setq org-last-changed-timestamp
18052 (org-insert-time-stamp time with-hm inactive nil nil extra))
18053 (goto-char pos))
18054 (save-match-data
18055 (looking-at org-ts-regexp3)
18056 (goto-char (cond
18057 ;; `day' category ends before `hour' if any, or at
18058 ;; the end of the day name.
18059 ((eq origin-cat 'day)
18060 (min (or (match-beginning 7) (1- (match-end 5))) origin))
18061 ((eq origin-cat 'hour) (min (match-end 7) origin))
18062 ((eq origin-cat 'minute) (min (1- (match-end 8)) origin))
18063 ((integerp origin-cat) (min (1- (match-end 0)) origin))
18064 ;; `year' and `month' have both fixed size: point
18065 ;; couldn't have moved into another part.
18066 (t origin))))
18067 ;; Update clock if on a CLOCK line.
18068 (org-clock-update-time-maybe)
18069 ;; Maybe adjust the closest clock in `org-clock-history'
18070 (when org-clock-adjust-closest
18071 (if (not (and (org-at-clock-log-p)
18072 (< 1 (length (delq nil (mapcar 'marker-position
18073 org-clock-history))))))
18074 (message "No clock to adjust")
18075 (cond ((save-excursion ; fix previous clock?
18076 (re-search-backward org-ts-regexp0 nil t)
18077 (org-looking-back (concat org-clock-string " \\[")
18078 (line-beginning-position)))
18079 (setq fixnext 1 clrgx (concat org-ts-regexp0 "\\] =>.*$")))
18080 ((save-excursion ; fix next clock?
18081 (re-search-backward org-ts-regexp0 nil t)
18082 (looking-at (concat org-ts-regexp0 "\\] =>")))
18083 (setq fixnext -1 clrgx (concat org-clock-string " \\[" org-ts-regexp0))))
18084 (save-window-excursion
18085 ;; Find closest clock to point, adjust the previous/next one in history
18086 (let* ((p (save-excursion (org-back-to-heading t)))
18087 (cl (mapcar (lambda(c) (abs (- (marker-position c) p))) org-clock-history))
18088 (clfixnth
18089 (+ fixnext (- (length cl) (or (length (member (apply 'min cl) cl)) 100))))
18090 (clfixpos (if (> 0 clfixnth) nil (nth clfixnth org-clock-history))))
18091 (if (not clfixpos)
18092 (message "No clock to adjust")
18093 (save-excursion
18094 (org-goto-marker-or-bmk clfixpos)
18095 (org-show-subtree)
18096 (when (re-search-forward clrgx nil t)
18097 (goto-char (match-beginning 1))
18098 (let (org-clock-adjust-closest)
18099 (org-timestamp-change n org-ts-what updown))
18100 (message "Clock adjusted in %s for heading: %s"
18101 (file-name-nondirectory (buffer-file-name))
18102 (org-get-heading t t)))))))))
18103 ;; Try to recenter the calendar window, if any.
18104 (if (and org-calendar-follow-timestamp-change
18105 (get-buffer-window "*Calendar*" t)
18106 (memq org-ts-what '(day month year)))
18107 (org-recenter-calendar (time-to-days time))))))
18109 (defun org-modify-ts-extra (s pos n dm)
18110 "Change the different parts of the lead-time and repeat fields in timestamp."
18111 (let ((idx '(("d" . 0) ("w" . 1) ("m" . 2) ("y" . 3) ("d" . -1) ("y" . 4)))
18112 ng h m new rem)
18113 (when (string-match "\\(-\\([012][0-9]\\):\\([0-5][0-9]\\)\\)?\\( +\\+\\([0-9]+\\)\\([dmwy]\\)\\)?\\( +-\\([0-9]+\\)\\([dmwy]\\)\\)?" s)
18114 (cond
18115 ((or (org-pos-in-match-range pos 2)
18116 (org-pos-in-match-range pos 3))
18117 (setq m (string-to-number (match-string 3 s))
18118 h (string-to-number (match-string 2 s)))
18119 (if (org-pos-in-match-range pos 2)
18120 (setq h (+ h n))
18121 (setq n (* dm (org-no-warnings (signum n))))
18122 (when (not (= 0 (setq rem (% m dm))))
18123 (setq m (+ m (if (> n 0) (- rem) (- dm rem)))))
18124 (setq m (+ m n)))
18125 (if (< m 0) (setq m (+ m 60) h (1- h)))
18126 (if (> m 59) (setq m (- m 60) h (1+ h)))
18127 (setq h (mod h 24))
18128 (setq ng 1 new (format "-%02d:%02d" h m)))
18129 ((org-pos-in-match-range pos 6)
18130 (setq ng 6 new (car (rassoc (+ n (cdr (assoc (match-string 6 s) idx))) idx))))
18131 ((org-pos-in-match-range pos 5)
18132 (setq ng 5 new (format "%d" (max 1 (+ n (string-to-number (match-string 5 s)))))))
18134 ((org-pos-in-match-range pos 9)
18135 (setq ng 9 new (car (rassoc (+ n (cdr (assoc (match-string 9 s) idx))) idx))))
18136 ((org-pos-in-match-range pos 8)
18137 (setq ng 8 new (format "%d" (max 0 (+ n (string-to-number (match-string 8 s))))))))
18139 (when ng
18140 (setq s (concat
18141 (substring s 0 (match-beginning ng))
18143 (substring s (match-end ng))))))
18146 (defun org-recenter-calendar (date)
18147 "If the calendar is visible, recenter it to DATE."
18148 (let ((cwin (get-buffer-window "*Calendar*" t)))
18149 (when cwin
18150 (let ((calendar-move-hook nil))
18151 (with-selected-window cwin
18152 (calendar-goto-date (if (listp date) date
18153 (calendar-gregorian-from-absolute date))))))))
18155 (defun org-goto-calendar (&optional arg)
18156 "Go to the Emacs calendar at the current date.
18157 If there is a time stamp in the current line, go to that date.
18158 A prefix ARG can be used to force the current date."
18159 (interactive "P")
18160 (let ((tsr org-ts-regexp) diff
18161 (calendar-move-hook nil)
18162 (calendar-view-holidays-initially-flag nil)
18163 (calendar-view-diary-initially-flag nil))
18164 (if (or (org-at-timestamp-p)
18165 (save-excursion
18166 (beginning-of-line 1)
18167 (looking-at (concat ".*" tsr))))
18168 (let ((d1 (time-to-days (current-time)))
18169 (d2 (time-to-days
18170 (org-time-string-to-time (match-string 1)))))
18171 (setq diff (- d2 d1))))
18172 (calendar)
18173 (calendar-goto-today)
18174 (if (and diff (not arg)) (calendar-forward-day diff))))
18176 (defun org-get-date-from-calendar ()
18177 "Return a list (month day year) of date at point in calendar."
18178 (with-current-buffer "*Calendar*"
18179 (save-match-data
18180 (calendar-cursor-to-date))))
18182 (defun org-date-from-calendar ()
18183 "Insert time stamp corresponding to cursor date in *Calendar* buffer.
18184 If there is already a time stamp at the cursor position, update it."
18185 (interactive)
18186 (if (org-at-timestamp-p t)
18187 (org-timestamp-change 0 'calendar)
18188 (let ((cal-date (org-get-date-from-calendar)))
18189 (org-insert-time-stamp
18190 (encode-time 0 0 0 (nth 1 cal-date) (car cal-date) (nth 2 cal-date))))))
18192 (defcustom org-effort-durations
18193 `(("min" . 1)
18194 ("h" . 60)
18195 ("d" . ,(* 60 8))
18196 ("w" . ,(* 60 8 5))
18197 ("m" . ,(* 60 8 5 4))
18198 ("y" . ,(* 60 8 5 40)))
18199 "Conversion factor to minutes for an effort modifier.
18201 Each entry has the form (MODIFIER . MINUTES).
18203 In an effort string, a number followed by MODIFIER is multiplied
18204 by the specified number of MINUTES to obtain an effort in
18205 minutes.
18207 For example, if the value of this variable is ((\"hours\" . 60)), then an
18208 effort string \"2hours\" is equivalent to 120 minutes."
18209 :group 'org-agenda
18210 :version "25.1"
18211 :package-version '(Org . "8.3")
18212 :type '(alist :key-type (string :tag "Modifier")
18213 :value-type (number :tag "Minutes")))
18215 (defun org-minutes-to-clocksum-string (m)
18216 "Format number of minutes as a clocksum string.
18217 The format is determined by `org-time-clocksum-format',
18218 `org-time-clocksum-use-fractional' and
18219 `org-time-clocksum-fractional-format' and
18220 `org-time-clocksum-use-effort-durations'."
18221 (let ((clocksum "")
18222 (m (round m)) ; Don't allow fractions of minutes
18223 h d w mo y fmt n)
18224 (setq h (if org-time-clocksum-use-effort-durations
18225 (cdr (assoc "h" org-effort-durations)) 60)
18226 d (if org-time-clocksum-use-effort-durations
18227 (/ (cdr (assoc "d" org-effort-durations)) h) 24)
18228 w (if org-time-clocksum-use-effort-durations
18229 (/ (cdr (assoc "w" org-effort-durations)) (* d h)) 7)
18230 mo (if org-time-clocksum-use-effort-durations
18231 (/ (cdr (assoc "m" org-effort-durations)) (* d h)) 30)
18232 y (if org-time-clocksum-use-effort-durations
18233 (/ (cdr (assoc "y" org-effort-durations)) (* d h)) 365))
18234 ;; fractional format
18235 (if org-time-clocksum-use-fractional
18236 (cond
18237 ;; single format string
18238 ((stringp org-time-clocksum-fractional-format)
18239 (format org-time-clocksum-fractional-format (/ m (float h))))
18240 ;; choice of fractional formats for different time units
18241 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :years))
18242 (> (/ (truncate m) (* y d h)) 0))
18243 (format fmt (/ m (* y d (float h)))))
18244 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :months))
18245 (> (/ (truncate m) (* mo d h)) 0))
18246 (format fmt (/ m (* mo d (float h)))))
18247 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18248 (> (/ (truncate m) (* w d h)) 0))
18249 (format fmt (/ m (* w d (float h)))))
18250 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :days))
18251 (> (/ (truncate m) (* d h)) 0))
18252 (format fmt (/ m (* d (float h)))))
18253 ((and (setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18254 (> (/ (truncate m) h) 0))
18255 (format fmt (/ m (float h))))
18256 ((setq fmt (plist-get org-time-clocksum-fractional-format :minutes))
18257 (format fmt m))
18258 ;; fall back to smallest time unit with a format
18259 ((setq fmt (plist-get org-time-clocksum-fractional-format :hours))
18260 (format fmt (/ m (float h))))
18261 ((setq fmt (plist-get org-time-clocksum-fractional-format :days))
18262 (format fmt (/ m (* d (float h)))))
18263 ((setq fmt (plist-get org-time-clocksum-fractional-format :weeks))
18264 (format fmt (/ m (* w d (float h)))))
18265 ((setq fmt (plist-get org-time-clocksum-fractional-format :months))
18266 (format fmt (/ m (* mo d (float h)))))
18267 ((setq fmt (plist-get org-time-clocksum-fractional-format :years))
18268 (format fmt (/ m (* y d (float h))))))
18269 ;; standard (non-fractional) format, with single format string
18270 (if (stringp org-time-clocksum-format)
18271 (format org-time-clocksum-format (setq n (/ m h)) (- m (* h n)))
18272 ;; separate formats components
18273 (and (setq fmt (plist-get org-time-clocksum-format :years))
18274 (or (> (setq n (/ (truncate m) (* y d h))) 0)
18275 (plist-get org-time-clocksum-format :require-years))
18276 (setq clocksum (concat clocksum (format fmt n))
18277 m (- m (* n y d h))))
18278 (and (setq fmt (plist-get org-time-clocksum-format :months))
18279 (or (> (setq n (/ (truncate m) (* mo d h))) 0)
18280 (plist-get org-time-clocksum-format :require-months))
18281 (setq clocksum (concat clocksum (format fmt n))
18282 m (- m (* n mo d h))))
18283 (and (setq fmt (plist-get org-time-clocksum-format :weeks))
18284 (or (> (setq n (/ (truncate m) (* w d h))) 0)
18285 (plist-get org-time-clocksum-format :require-weeks))
18286 (setq clocksum (concat clocksum (format fmt n))
18287 m (- m (* n w d h))))
18288 (and (setq fmt (plist-get org-time-clocksum-format :days))
18289 (or (> (setq n (/ (truncate m) (* d h))) 0)
18290 (plist-get org-time-clocksum-format :require-days))
18291 (setq clocksum (concat clocksum (format fmt n))
18292 m (- m (* n d h))))
18293 (and (setq fmt (plist-get org-time-clocksum-format :hours))
18294 (or (> (setq n (/ (truncate m) h)) 0)
18295 (plist-get org-time-clocksum-format :require-hours))
18296 (setq clocksum (concat clocksum (format fmt n))
18297 m (- m (* n h))))
18298 (and (setq fmt (plist-get org-time-clocksum-format :minutes))
18299 (or (> m 0) (plist-get org-time-clocksum-format :require-minutes))
18300 (setq clocksum (concat clocksum (format fmt m))))
18301 ;; return formatted time duration
18302 clocksum))))
18304 (defalias 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string)
18305 (make-obsolete 'org-minutes-to-hh:mm-string 'org-minutes-to-clocksum-string
18306 "Org mode version 8.0")
18308 (defun org-hours-to-clocksum-string (n)
18309 (org-minutes-to-clocksum-string (* n 60)))
18311 (defun org-hh:mm-string-to-minutes (s)
18312 "Convert a string H:MM to a number of minutes.
18313 If the string is just a number, interpret it as minutes.
18314 In fact, the first hh:mm or number in the string will be taken,
18315 there can be extra stuff in the string.
18316 If no number is found, the return value is 0."
18317 (cond
18318 ((integerp s) s)
18319 ((string-match "\\([0-9]+\\):\\([0-9]+\\)" s)
18320 (+ (* (string-to-number (match-string 1 s)) 60)
18321 (string-to-number (match-string 2 s))))
18322 ((string-match "\\([0-9]+\\)" s)
18323 (string-to-number (match-string 1 s)))
18324 (t 0)))
18326 (defcustom org-image-actual-width t
18327 "Should we use the actual width of images when inlining them?
18329 When set to t, always use the image width.
18331 When set to a number, use imagemagick (when available) to set
18332 the image's width to this value.
18334 When set to a number in a list, try to get the width from any
18335 #+ATTR.* keyword if it matches a width specification like
18337 #+ATTR_HTML: :width 300px
18339 and fall back on that number if none is found.
18341 When set to nil, try to get the width from an #+ATTR.* keyword
18342 and fall back on the original width if none is found.
18344 This requires Emacs >= 24.1, build with imagemagick support."
18345 :group 'org-appearance
18346 :version "24.4"
18347 :package-version '(Org . "8.0")
18348 :type '(choice
18349 (const :tag "Use the image width" t)
18350 (integer :tag "Use a number of pixels")
18351 (list :tag "Use #+ATTR* or a number of pixels" (integer))
18352 (const :tag "Use #+ATTR* or don't resize" nil)))
18354 (defcustom org-agenda-inhibit-startup nil
18355 "Inhibit startup when preparing agenda buffers.
18356 When this variable is t, the initialization of the Org agenda
18357 buffers is inhibited: e.g. the visibility state is not set, the
18358 tables are not re-aligned, etc."
18359 :type 'boolean
18360 :version "24.3"
18361 :group 'org-agenda)
18363 (define-obsolete-variable-alias
18364 'org-agenda-ignore-drawer-properties
18365 'org-agenda-ignore-properties "25.1")
18367 (defcustom org-agenda-ignore-properties nil
18368 "Avoid updating text properties when building the agenda.
18369 Properties are used to prepare buffers for effort estimates,
18370 appointments, statistics and subtree-local categories.
18371 If you don't use these in the agenda, you can add them to this
18372 list and agenda building will be a bit faster.
18373 The value is a list, with zero or more of the symbols `effort', `appt',
18374 `stats' or `category'."
18375 :type '(set :greedy t
18376 (const effort)
18377 (const appt)
18378 (const stats)
18379 (const category))
18380 :version "25.1"
18381 :package-version '(Org . "8.3")
18382 :group 'org-agenda)
18384 (defun org-duration-string-to-minutes (s &optional output-to-string)
18385 "Convert a duration string S to minutes.
18387 A bare number is interpreted as minutes, modifiers can be set by
18388 customizing `org-effort-durations' (which see).
18390 Entries containing a colon are interpreted as H:MM by
18391 `org-hh:mm-string-to-minutes'."
18392 (let ((result 0)
18393 (re (concat "\\([0-9.]+\\) *\\("
18394 (regexp-opt (mapcar 'car org-effort-durations))
18395 "\\)")))
18396 (while (string-match re s)
18397 (incf result (* (cdr (assoc (match-string 2 s) org-effort-durations))
18398 (string-to-number (match-string 1 s))))
18399 (setq s (replace-match "" nil t s)))
18400 (setq result (floor result))
18401 (incf result (org-hh:mm-string-to-minutes s))
18402 (if output-to-string (number-to-string result) result)))
18404 ;;;; Files
18406 (defun org-save-all-org-buffers ()
18407 "Save all Org-mode buffers without user confirmation."
18408 (interactive)
18409 (message "Saving all Org-mode buffers...")
18410 (save-some-buffers t (lambda () (derived-mode-p 'org-mode)))
18411 (when (featurep 'org-id) (org-id-locations-save))
18412 (message "Saving all Org-mode buffers... done"))
18414 (defun org-revert-all-org-buffers ()
18415 "Revert all Org-mode buffers.
18416 Prompt for confirmation when there are unsaved changes.
18417 Be sure you know what you are doing before letting this function
18418 overwrite your changes.
18420 This function is useful in a setup where one tracks org files
18421 with a version control system, to revert on one machine after pulling
18422 changes from another. I believe the procedure must be like this:
18424 1. M-x org-save-all-org-buffers
18425 2. Pull changes from the other machine, resolve conflicts
18426 3. M-x org-revert-all-org-buffers"
18427 (interactive)
18428 (unless (yes-or-no-p "Revert all Org buffers from their files? ")
18429 (user-error "Abort"))
18430 (save-excursion
18431 (save-window-excursion
18432 (mapc
18433 (lambda (b)
18434 (when (and (with-current-buffer b (derived-mode-p 'org-mode))
18435 (with-current-buffer b buffer-file-name))
18436 (org-pop-to-buffer-same-window b)
18437 (revert-buffer t 'no-confirm)))
18438 (buffer-list))
18439 (when (and (featurep 'org-id) org-id-track-globally)
18440 (org-id-locations-load)))))
18442 ;;;; Agenda files
18444 ;;;###autoload
18445 (defun org-switchb (&optional arg)
18446 "Switch between Org buffers.
18447 With one prefix argument, restrict available buffers to files.
18448 With two prefix arguments, restrict available buffers to agenda files.
18450 Defaults to `iswitchb' for buffer name completion.
18451 Set `org-completion-use-ido' to make it use ido instead."
18452 (interactive "P")
18453 (let ((blist (cond ((equal arg '(4)) (org-buffer-list 'files))
18454 ((equal arg '(16)) (org-buffer-list 'agenda))
18455 (t (org-buffer-list))))
18456 (org-completion-use-iswitchb org-completion-use-iswitchb)
18457 (org-completion-use-ido org-completion-use-ido))
18458 (unless (or org-completion-use-ido org-completion-use-iswitchb)
18459 (setq org-completion-use-iswitchb t))
18460 (org-pop-to-buffer-same-window
18461 (org-icompleting-read "Org buffer: "
18462 (mapcar 'list (mapcar 'buffer-name blist))
18463 nil t))))
18465 ;;; Define some older names previously used for this functionality
18466 ;;;###autoload
18467 (defalias 'org-ido-switchb 'org-switchb)
18468 ;;;###autoload
18469 (defalias 'org-iswitchb 'org-switchb)
18471 (defun org-buffer-list (&optional predicate exclude-tmp)
18472 "Return a list of Org buffers.
18473 PREDICATE can be `export', `files' or `agenda'.
18475 export restrict the list to Export buffers.
18476 files restrict the list to buffers visiting Org files.
18477 agenda restrict the list to buffers visiting agenda files.
18479 If EXCLUDE-TMP is non-nil, ignore temporary buffers."
18480 (let* ((bfn nil)
18481 (agenda-files (and (eq predicate 'agenda)
18482 (mapcar 'file-truename (org-agenda-files t))))
18483 (filter
18484 (cond
18485 ((eq predicate 'files)
18486 (lambda (b) (with-current-buffer b (derived-mode-p 'org-mode))))
18487 ((eq predicate 'export)
18488 (lambda (b) (string-match "\\*Org .*Export" (buffer-name b))))
18489 ((eq predicate 'agenda)
18490 (lambda (b)
18491 (with-current-buffer b
18492 (and (derived-mode-p 'org-mode)
18493 (setq bfn (buffer-file-name b))
18494 (member (file-truename bfn) agenda-files)))))
18495 (t (lambda (b) (with-current-buffer b
18496 (or (derived-mode-p 'org-mode)
18497 (string-match "\\*Org .*Export"
18498 (buffer-name b)))))))))
18499 (delq nil
18500 (mapcar
18501 (lambda(b)
18502 (if (and (funcall filter b)
18503 (or (not exclude-tmp)
18504 (not (string-match "tmp" (buffer-name b)))))
18506 nil))
18507 (buffer-list)))))
18509 (defun org-agenda-files (&optional unrestricted archives)
18510 "Get the list of agenda files.
18511 Optional UNRESTRICTED means return the full list even if a restriction
18512 is currently in place.
18513 When ARCHIVES is t, include all archive files that are really being
18514 used by the agenda files. If ARCHIVE is `ifmode', do this only if
18515 `org-agenda-archives-mode' is t."
18516 (let ((files
18517 (cond
18518 ((and (not unrestricted) (get 'org-agenda-files 'org-restrict)))
18519 ((stringp org-agenda-files) (org-read-agenda-file-list))
18520 ((listp org-agenda-files) org-agenda-files)
18521 (t (error "Invalid value of `org-agenda-files'")))))
18522 (setq files (apply 'append
18523 (mapcar (lambda (f)
18524 (if (file-directory-p f)
18525 (directory-files
18526 f t org-agenda-file-regexp)
18527 (list f)))
18528 files)))
18529 (when org-agenda-skip-unavailable-files
18530 (setq files (delq nil
18531 (mapcar (function
18532 (lambda (file)
18533 (and (file-readable-p file) file)))
18534 files))))
18535 (when (or (eq archives t)
18536 (and (eq archives 'ifmode) (eq org-agenda-archives-mode t)))
18537 (setq files (org-add-archive-files files)))
18538 files))
18540 (defun org-agenda-file-p (&optional file)
18541 "Return non-nil, if FILE is an agenda file.
18542 If FILE is omitted, use the file associated with the current
18543 buffer."
18544 (let ((fname (or file (buffer-file-name))))
18545 (and fname
18546 (member (file-truename fname)
18547 (mapcar #'file-truename (org-agenda-files t))))))
18549 (defun org-edit-agenda-file-list ()
18550 "Edit the list of agenda files.
18551 Depending on setup, this either uses customize to edit the variable
18552 `org-agenda-files', or it visits the file that is holding the list. In the
18553 latter case, the buffer is set up in a way that saving it automatically kills
18554 the buffer and restores the previous window configuration."
18555 (interactive)
18556 (if (stringp org-agenda-files)
18557 (let ((cw (current-window-configuration)))
18558 (find-file org-agenda-files)
18559 (org-set-local 'org-window-configuration cw)
18560 (org-add-hook 'after-save-hook
18561 (lambda ()
18562 (set-window-configuration
18563 (prog1 org-window-configuration
18564 (kill-buffer (current-buffer))))
18565 (org-install-agenda-files-menu)
18566 (message "New agenda file list installed"))
18567 nil 'local)
18568 (message "%s" (substitute-command-keys
18569 "Edit list and finish with \\[save-buffer]")))
18570 (customize-variable 'org-agenda-files)))
18572 (defun org-store-new-agenda-file-list (list)
18573 "Set new value for the agenda file list and save it correctly."
18574 (if (stringp org-agenda-files)
18575 (let ((fe (org-read-agenda-file-list t)) b u)
18576 (while (setq b (find-buffer-visiting org-agenda-files))
18577 (kill-buffer b))
18578 (with-temp-file org-agenda-files
18579 (insert
18580 (mapconcat
18581 (lambda (f) ;; Keep un-expanded entries.
18582 (if (setq u (assoc f fe))
18583 (cdr u)
18585 list "\n")
18586 "\n")))
18587 (let ((org-mode-hook nil) (org-inhibit-startup t)
18588 (org-insert-mode-line-in-empty-file nil))
18589 (setq org-agenda-files list)
18590 (customize-save-variable 'org-agenda-files org-agenda-files))))
18592 (defun org-read-agenda-file-list (&optional pair-with-expansion)
18593 "Read the list of agenda files from a file.
18594 If PAIR-WITH-EXPANSION is t return pairs with un-expanded
18595 filenames, used by `org-store-new-agenda-file-list' to write back
18596 un-expanded file names."
18597 (when (file-directory-p org-agenda-files)
18598 (error "`org-agenda-files' cannot be a single directory"))
18599 (when (stringp org-agenda-files)
18600 (with-temp-buffer
18601 (insert-file-contents org-agenda-files)
18602 (mapcar
18603 (lambda (f)
18604 (let ((e (expand-file-name (substitute-in-file-name f)
18605 org-directory)))
18606 (if pair-with-expansion
18607 (cons e f)
18608 e)))
18609 (org-split-string (buffer-string) "[ \t\r\n]*?[\r\n][ \t\r\n]*")))))
18611 ;;;###autoload
18612 (defun org-cycle-agenda-files ()
18613 "Cycle through the files in `org-agenda-files'.
18614 If the current buffer visits an agenda file, find the next one in the list.
18615 If the current buffer does not, find the first agenda file."
18616 (interactive)
18617 (let* ((fs (or (org-agenda-files t)
18618 (user-error "No agenda files")))
18619 (files (copy-sequence fs))
18620 (tcf (and buffer-file-name (file-truename buffer-file-name)))
18621 file)
18622 (when tcf
18623 (while (and (setq file (pop files))
18624 (not (equal (file-truename file) tcf)))))
18625 (find-file (car (or files fs)))
18626 (if (buffer-base-buffer) (org-pop-to-buffer-same-window (buffer-base-buffer)))))
18628 (defun org-agenda-file-to-front (&optional to-end)
18629 "Move/add the current file to the top of the agenda file list.
18630 If the file is not present in the list, it is added to the front. If it is
18631 present, it is moved there. With optional argument TO-END, add/move to the
18632 end of the list."
18633 (interactive "P")
18634 (let ((org-agenda-skip-unavailable-files nil)
18635 (file-alist (mapcar (lambda (x)
18636 (cons (file-truename x) x))
18637 (org-agenda-files t)))
18638 (ctf (file-truename
18639 (or buffer-file-name
18640 (user-error "Please save the current buffer to a file"))))
18641 x had)
18642 (setq x (assoc ctf file-alist) had x)
18644 (if (not x) (setq x (cons ctf (abbreviate-file-name buffer-file-name))))
18645 (if to-end
18646 (setq file-alist (append (delq x file-alist) (list x)))
18647 (setq file-alist (cons x (delq x file-alist))))
18648 (org-store-new-agenda-file-list (mapcar 'cdr file-alist))
18649 (org-install-agenda-files-menu)
18650 (message "File %s to %s of agenda file list"
18651 (if had "moved" "added") (if to-end "end" "front"))))
18653 (defun org-remove-file (&optional file)
18654 "Remove current file from the list of files in variable `org-agenda-files'.
18655 These are the files which are being checked for agenda entries.
18656 Optional argument FILE means use this file instead of the current."
18657 (interactive)
18658 (let* ((org-agenda-skip-unavailable-files nil)
18659 (file (or file buffer-file-name
18660 (user-error "Current buffer does not visit a file")))
18661 (true-file (file-truename file))
18662 (afile (abbreviate-file-name file))
18663 (files (delq nil (mapcar
18664 (lambda (x)
18665 (if (equal true-file
18666 (file-truename x))
18667 nil x))
18668 (org-agenda-files t)))))
18669 (if (not (= (length files) (length (org-agenda-files t))))
18670 (progn
18671 (org-store-new-agenda-file-list files)
18672 (org-install-agenda-files-menu)
18673 (message "Removed from Org Agenda list: %s" afile))
18674 (message "File was not in list: %s (not removed)" afile))))
18676 (defun org-file-menu-entry (file)
18677 (vector file (list 'find-file file) t))
18679 (defun org-check-agenda-file (file)
18680 "Make sure FILE exists. If not, ask user what to do."
18681 (when (not (file-exists-p file))
18682 (message "Non-existent agenda file %s. [R]emove from list or [A]bort?"
18683 (abbreviate-file-name file))
18684 (let ((r (downcase (read-char-exclusive))))
18685 (cond
18686 ((equal r ?r)
18687 (org-remove-file file)
18688 (throw 'nextfile t))
18689 (t (user-error "Abort"))))))
18691 (defun org-get-agenda-file-buffer (file)
18692 "Get an agenda buffer visiting FILE.
18693 If the buffer needs to be created, add it to the list of buffers
18694 which might be released later."
18695 (let ((buf (org-find-base-buffer-visiting file)))
18696 (if buf
18697 buf ; just return it
18698 ;; Make a new buffer and remember it
18699 (setq buf (find-file-noselect file))
18700 (if buf (push buf org-agenda-new-buffers))
18701 buf)))
18703 (defun org-release-buffers (blist)
18704 "Release all buffers in list, asking the user for confirmation when needed.
18705 When a buffer is unmodified, it is just killed. When modified, it is saved
18706 \(if the user agrees) and then killed."
18707 (let (file)
18708 (dolist (buf blist)
18709 (setq file (buffer-file-name buf))
18710 (when (and (buffer-modified-p buf)
18711 file
18712 (y-or-n-p (format "Save file %s? " file)))
18713 (with-current-buffer buf (save-buffer)))
18714 (kill-buffer buf))))
18716 (defun org-agenda-prepare-buffers (files)
18717 "Create buffers for all agenda files, protect archived trees and comments."
18718 (interactive)
18719 (let ((pa '(:org-archived t))
18720 (pc '(:org-comment t))
18721 (pall '(:org-archived t :org-comment t))
18722 (inhibit-read-only t)
18723 (org-inhibit-startup org-agenda-inhibit-startup)
18724 (rea (concat ":" org-archive-tag ":"))
18725 file re pos)
18726 (setq org-tag-alist-for-agenda nil
18727 org-tag-groups-alist-for-agenda nil)
18728 (save-excursion
18729 (save-restriction
18730 (dolist (file files)
18731 (catch 'nextfile
18732 (if (bufferp file)
18733 (set-buffer file)
18734 (org-check-agenda-file file)
18735 (set-buffer (org-get-agenda-file-buffer file)))
18736 (widen)
18737 (org-set-regexps-and-options 'tags-only)
18738 (setq pos (point))
18739 (or (memq 'category org-agenda-ignore-properties)
18740 (org-refresh-category-properties))
18741 (or (memq 'stats org-agenda-ignore-properties)
18742 (org-refresh-stats-properties))
18743 (or (memq 'effort org-agenda-ignore-properties)
18744 (org-refresh-effort-properties))
18745 (or (memq 'appt org-agenda-ignore-properties)
18746 (org-refresh-properties "APPT_WARNTIME" 'org-appt-warntime))
18747 (setq org-todo-keywords-for-agenda
18748 (append org-todo-keywords-for-agenda org-todo-keywords-1))
18749 (setq org-done-keywords-for-agenda
18750 (append org-done-keywords-for-agenda org-done-keywords))
18751 (setq org-todo-keyword-alist-for-agenda
18752 (append org-todo-keyword-alist-for-agenda org-todo-key-alist))
18753 (setq org-tag-alist-for-agenda
18754 (org-uniquify
18755 (append org-tag-alist-for-agenda
18756 org-tag-alist
18757 org-tag-persistent-alist)))
18758 (if org-group-tags
18759 (setq org-tag-groups-alist-for-agenda
18760 (org-uniquify-alist
18761 (append org-tag-groups-alist-for-agenda org-tag-groups-alist))))
18762 (org-with-silent-modifications
18763 (save-excursion
18764 (remove-text-properties (point-min) (point-max) pall)
18765 (when org-agenda-skip-archived-trees
18766 (goto-char (point-min))
18767 (while (re-search-forward rea nil t)
18768 (if (org-at-heading-p t)
18769 (add-text-properties (point-at-bol) (org-end-of-subtree t) pa))))
18770 (goto-char (point-min))
18771 (setq re (format "^\\*+ .*\\<%s\\>" org-comment-string))
18772 (while (re-search-forward re nil t)
18773 (when (save-match-data (org-in-commented-heading-p t))
18774 (add-text-properties
18775 (match-beginning 0) (org-end-of-subtree t) pc)))))
18776 (goto-char pos)))))
18777 (setq org-todo-keywords-for-agenda
18778 (org-uniquify org-todo-keywords-for-agenda))
18779 (setq org-todo-keyword-alist-for-agenda
18780 (org-uniquify org-todo-keyword-alist-for-agenda))))
18783 ;;;; CDLaTeX minor mode
18785 (defvar org-cdlatex-mode-map (make-sparse-keymap)
18786 "Keymap for the minor `org-cdlatex-mode'.")
18788 (org-defkey org-cdlatex-mode-map "_" 'org-cdlatex-underscore-caret)
18789 (org-defkey org-cdlatex-mode-map "^" 'org-cdlatex-underscore-caret)
18790 (org-defkey org-cdlatex-mode-map "`" 'cdlatex-math-symbol)
18791 (org-defkey org-cdlatex-mode-map "'" 'org-cdlatex-math-modify)
18792 (org-defkey org-cdlatex-mode-map "\C-c{" 'org-cdlatex-environment-indent)
18794 (defvar org-cdlatex-texmathp-advice-is-done nil
18795 "Flag remembering if we have applied the advice to texmathp already.")
18797 (define-minor-mode org-cdlatex-mode
18798 "Toggle the minor `org-cdlatex-mode'.
18799 This mode supports entering LaTeX environment and math in LaTeX fragments
18800 in Org-mode.
18801 \\{org-cdlatex-mode-map}"
18802 nil " OCDL" nil
18803 (when org-cdlatex-mode
18804 (require 'cdlatex)
18805 (run-hooks 'cdlatex-mode-hook)
18806 (cdlatex-compute-tables))
18807 (unless org-cdlatex-texmathp-advice-is-done
18808 (setq org-cdlatex-texmathp-advice-is-done t)
18809 (defadvice texmathp (around org-math-always-on activate)
18810 "Always return t in org-mode buffers.
18811 This is because we want to insert math symbols without dollars even outside
18812 the LaTeX math segments. If Orgmode thinks that point is actually inside
18813 an embedded LaTeX fragment, let texmathp do its job.
18814 \\[org-cdlatex-mode-map]"
18815 (interactive)
18816 (let (p)
18817 (cond
18818 ((not (derived-mode-p 'org-mode)) ad-do-it)
18819 ((eq this-command 'cdlatex-math-symbol)
18820 (setq ad-return-value t
18821 texmathp-why '("cdlatex-math-symbol in org-mode" . 0)))
18823 (let ((p (org-inside-LaTeX-fragment-p)))
18824 (if (and p (member (car p) (plist-get org-format-latex-options :matchers)))
18825 (setq ad-return-value t
18826 texmathp-why '("Org-mode embedded math" . 0))
18827 (if p ad-do-it)))))))))
18829 (defun turn-on-org-cdlatex ()
18830 "Unconditionally turn on `org-cdlatex-mode'."
18831 (org-cdlatex-mode 1))
18833 (defun org-try-cdlatex-tab ()
18834 "Check if it makes sense to execute `cdlatex-tab', and do it if yes.
18835 It makes sense to do so if `org-cdlatex-mode' is active and if the cursor is
18836 - inside a LaTeX fragment, or
18837 - after the first word in a line, where an abbreviation expansion could
18838 insert a LaTeX environment."
18839 (when org-cdlatex-mode
18840 (cond
18841 ;; Before any word on the line: No expansion possible.
18842 ((save-excursion (skip-chars-backward " \t") (bolp)) nil)
18843 ;; Just after first word on the line: Expand it. Make sure it
18844 ;; cannot happen on headlines, though.
18845 ((save-excursion
18846 (skip-chars-backward "a-zA-Z0-9*")
18847 (skip-chars-backward " \t")
18848 (and (bolp) (not (org-at-heading-p))))
18849 (cdlatex-tab) t)
18850 ((org-inside-LaTeX-fragment-p) (cdlatex-tab) t))))
18852 (defun org-cdlatex-underscore-caret (&optional arg)
18853 "Execute `cdlatex-sub-superscript' in LaTeX fragments.
18854 Revert to the normal definition outside of these fragments."
18855 (interactive "P")
18856 (if (org-inside-LaTeX-fragment-p)
18857 (call-interactively 'cdlatex-sub-superscript)
18858 (let (org-cdlatex-mode)
18859 (call-interactively (key-binding (vector last-input-event))))))
18861 (defun org-cdlatex-math-modify (&optional arg)
18862 "Execute `cdlatex-math-modify' in LaTeX fragments.
18863 Revert to the normal definition outside of these fragments."
18864 (interactive "P")
18865 (if (org-inside-LaTeX-fragment-p)
18866 (call-interactively 'cdlatex-math-modify)
18867 (let (org-cdlatex-mode)
18868 (call-interactively (key-binding (vector last-input-event))))))
18870 (defun org-cdlatex-environment-indent (&optional environment item)
18871 "Execute `cdlatex-environment' and indent the inserted environment.
18873 ENVIRONMENT and ITEM are passed to `cdlatex-environment'.
18875 The inserted environment is indented to current indentation
18876 unless point is at the beginning of the line, in which the
18877 environment remains unintended."
18878 (interactive)
18879 ;; cdlatex-environment always return nil. Therefore, capture output
18880 ;; first and determine if an environment was selected.
18881 (let* ((beg (point-marker))
18882 (end (copy-marker (point) t))
18883 (inserted (progn
18884 (ignore-errors (cdlatex-environment environment item))
18885 (< beg end)))
18886 ;; Figure out how many lines to move forward after the
18887 ;; environment has been inserted.
18888 (lines (when inserted
18889 (save-excursion
18890 (- (loop while (< beg (point))
18891 with x = 0
18892 do (forward-line -1)
18893 (incf x)
18894 finally return x)
18895 (if (progn (goto-char beg)
18896 (and (progn (skip-chars-forward " \t") (eolp))
18897 (progn (skip-chars-backward " \t") (bolp))))
18898 1 0)))))
18899 (env (org-trim (delete-and-extract-region beg end))))
18900 (when inserted
18901 ;; Get indentation of next line unless at column 0.
18902 (let ((ind (if (bolp) 0
18903 (save-excursion
18904 (org-return-indent)
18905 (prog1 (org-get-indentation)
18906 (when (progn (skip-chars-forward " \t") (eolp))
18907 (delete-region beg (point)))))))
18908 (bol (progn (skip-chars-backward " \t") (bolp))))
18909 ;; Insert a newline before environment unless at column zero
18910 ;; to "escape" the current line. Insert a newline if
18911 ;; something is one the same line as \end{ENVIRONMENT}.
18912 (insert
18913 (concat (unless bol "\n") env
18914 (when (and (skip-chars-forward " \t") (not (eolp))) "\n")))
18915 (unless (zerop ind)
18916 (save-excursion
18917 (goto-char beg)
18918 (while (< (point) end)
18919 (unless (eolp) (org-indent-line-to ind))
18920 (forward-line))))
18921 (goto-char beg)
18922 (forward-line lines)
18923 (org-indent-line-to ind)))
18924 (set-marker beg nil)
18925 (set-marker end nil)))
18928 ;;;; LaTeX fragments
18930 (defun org-inside-LaTeX-fragment-p ()
18931 "Test if point is inside a LaTeX fragment.
18932 I.e. after a \\begin, \\(, \\[, $, or $$, without the corresponding closing
18933 sequence appearing also before point.
18934 Even though the matchers for math are configurable, this function assumes
18935 that \\begin, \\(, \\[, and $$ are always used. Only the single dollar
18936 delimiters are skipped when they have been removed by customization.
18937 The return value is nil, or a cons cell with the delimiter and the
18938 position of this delimiter.
18940 This function does a reasonably good job, but can locally be fooled by
18941 for example currency specifications. For example it will assume being in
18942 inline math after \"$22.34\". The LaTeX fragment formatter will only format
18943 fragments that are properly closed, but during editing, we have to live
18944 with the uncertainty caused by missing closing delimiters. This function
18945 looks only before point, not after."
18946 (catch 'exit
18947 (let ((pos (point))
18948 (dodollar (member "$" (plist-get org-format-latex-options :matchers)))
18949 (lim (progn
18950 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
18951 (point)))
18952 dd-on str (start 0) m re)
18953 (goto-char pos)
18954 (when dodollar
18955 (setq str (concat (buffer-substring lim (point)) "\000 X$.")
18956 re (nth 1 (assoc "$" org-latex-regexps)))
18957 (while (string-match re str start)
18958 (cond
18959 ((= (match-end 0) (length str))
18960 (throw 'exit (cons "$" (+ lim (match-beginning 0) 1))))
18961 ((= (match-end 0) (- (length str) 5))
18962 (throw 'exit nil))
18963 (t (setq start (match-end 0))))))
18964 (when (setq m (re-search-backward "\\(\\\\begin{[^}]*}\\|\\\\(\\|\\\\\\[\\)\\|\\(\\\\end{[^}]*}\\|\\\\)\\|\\\\\\]\\)\\|\\(\\$\\$\\)" lim t))
18965 (goto-char pos)
18966 (and (match-beginning 1) (throw 'exit (cons (match-string 1) m)))
18967 (and (match-beginning 2) (throw 'exit nil))
18968 ;; count $$
18969 (while (re-search-backward "\\$\\$" lim t)
18970 (setq dd-on (not dd-on)))
18971 (goto-char pos)
18972 (if dd-on (cons "$$" m))))))
18974 (defun org-inside-latex-macro-p ()
18975 "Is point inside a LaTeX macro or its arguments?"
18976 (save-match-data
18977 (org-in-regexp
18978 "\\\\[a-zA-Z]+\\*?\\(\\(\\[[^][\n{}]*\\]\\)\\|\\({[^{}\n]*}\\)\\)*")))
18980 (defvar org-latex-fragment-image-overlays nil
18981 "List of overlays carrying the images of latex fragments.")
18982 (make-variable-buffer-local 'org-latex-fragment-image-overlays)
18984 (defun org-remove-latex-fragment-image-overlays (&optional beg end)
18985 "Remove all overlays with LaTeX fragment images in current buffer.
18986 When optional arguments BEG and END are non-nil, remove all
18987 overlays between them instead. Return t when some overlays were
18988 removed, nil otherwise."
18989 (let (removedp)
18990 (setq org-latex-fragment-image-overlays
18991 (let ((beg (or beg (point-min)))
18992 (end (or end (point-max))))
18993 (org-remove-if
18994 (lambda (o)
18995 (cond ((not (overlay-buffer o)) (delete-overlay o) t)
18996 ((and (>= (overlay-start o) beg)
18997 (<= (overlay-end o) end))
18998 (delete-overlay o)
18999 (unless removedp (setq removedp t)))
19000 (t nil)))
19001 org-latex-fragment-image-overlays)))
19002 removedp))
19004 (define-obsolete-function-alias
19005 'org-preview-latex-fragment 'org-toggle-latex-fragment "24.4")
19006 (defun org-toggle-latex-fragment (&optional arg)
19007 "Preview the LaTeX fragment at point, or all locally or globally.
19009 If the cursor is on a LaTeX fragment, create the image and overlay
19010 it over the source code, if there is none. Remove it otherwise.
19011 If there is no fragment at point, display all fragments in the
19012 current section.
19014 With prefix ARG, preview or clear image for all fragments in the
19015 current subtree or in the whole buffer when used before the first
19016 headline. With a double prefix ARG \\[universal-argument] \
19017 \\[universal-argument] preview or clear images
19018 for all fragments in the buffer."
19019 (interactive "P")
19020 (unless (buffer-file-name (buffer-base-buffer))
19021 (user-error "Can't preview LaTeX fragment in a non-file buffer"))
19022 (when (display-graphic-p)
19023 (catch 'exit
19024 (save-excursion
19025 (let ((window-start (window-start)) msg)
19026 (save-restriction
19027 (cond
19028 ((or (equal arg '(16))
19029 (and (equal arg '(4))
19030 (org-with-limited-levels (org-before-first-heading-p))))
19031 (if (org-remove-latex-fragment-image-overlays)
19032 (progn (message "LaTeX fragments images removed from buffer")
19033 (throw 'exit nil))
19034 (setq msg "Creating images for buffer...")))
19035 ((equal arg '(4))
19036 (org-with-limited-levels (org-back-to-heading t))
19037 (let ((beg (point))
19038 (end (progn (org-end-of-subtree t) (point))))
19039 (if (org-remove-latex-fragment-image-overlays beg end)
19040 (progn
19041 (message "LaTeX fragment images removed from subtree")
19042 (throw 'exit nil))
19043 (setq msg "Creating images for subtree...")
19044 (narrow-to-region beg end))))
19045 ((let ((datum (org-element-context)))
19046 (when (memq (org-element-type datum)
19047 '(latex-environment latex-fragment))
19048 (let* ((beg (org-element-property :begin datum))
19049 (end (org-element-property :end datum)))
19050 (if (org-remove-latex-fragment-image-overlays beg end)
19051 (progn (message "LaTeX fragment image removed")
19052 (throw 'exit nil))
19053 (narrow-to-region beg end)
19054 (setq msg "Creating image..."))))))
19056 (org-with-limited-levels
19057 (let ((beg (if (org-at-heading-p) (line-beginning-position)
19058 (outline-previous-heading)
19059 (point)))
19060 (end (progn (outline-next-heading) (point))))
19061 (if (org-remove-latex-fragment-image-overlays beg end)
19062 (progn
19063 (message "LaTeX fragment images removed from section")
19064 (throw 'exit nil))
19065 (setq msg "Creating images for section...")
19066 (narrow-to-region beg end))))))
19067 (let ((file (buffer-file-name (buffer-base-buffer))))
19068 (org-format-latex
19069 (concat org-latex-preview-ltxpng-directory
19070 (file-name-sans-extension (file-name-nondirectory file)))
19071 ;; Emacs cannot overlay images from remote hosts.
19072 ;; Create it in `temporary-file-directory' instead.
19073 (if (file-remote-p file) temporary-file-directory
19074 default-directory)
19075 'overlays msg 'forbuffer
19076 org-latex-create-formula-image-program)))
19077 ;; Work around a bug that doesn't restore window's start
19078 ;; when widening back the buffer.
19079 (set-window-start nil window-start)
19080 (message (concat msg "done")))))))
19082 (defun org-format-latex
19083 (prefix &optional dir overlays msg forbuffer processing-type)
19084 "Replace LaTeX fragments with links to an image, and produce images.
19086 When optional argument OVERLAYS is non-nil, display the image on
19087 top of the fragment instead of replacing it.
19089 PROCESSING-TYPE is the conversion method to use, as a symbol.
19091 Some of the options can be changed using the variable
19092 `org-format-latex-options', which see."
19093 (when (and overlays (fboundp 'clear-image-cache)) (clear-image-cache))
19094 (unless (eq processing-type 'verbatim)
19095 (let* ((math-regexp "\\$\\|\\\\[([]\\|^[ \t]*\\\\begin{[A-Za-z0-9*]+}")
19096 (cnt 0)
19097 checkdir-flag)
19098 (goto-char (point-min))
19099 ;; Optimize overlay creation: (info "(elisp) Managing Overlays").
19100 (when (and overlays (memq processing-type '(dvipng imagemagick)))
19101 (overlay-recenter (point-max)))
19102 (while (re-search-forward math-regexp nil t)
19103 (unless (and overlays
19104 (eq (get-char-property (point) 'org-overlay-type)
19105 'org-latex-overlay))
19106 (let* ((context (org-element-context))
19107 (type (org-element-type context)))
19108 (when (memq type '(latex-environment latex-fragment))
19109 (let ((block-type (eq type 'latex-environment))
19110 (value (org-element-property :value context))
19111 (beg (org-element-property :begin context))
19112 (end (save-excursion
19113 (goto-char (org-element-property :end context))
19114 (skip-chars-backward " \r\t\n")
19115 (point))))
19116 (case processing-type
19117 (mathjax
19118 ;; Prepare for MathJax processing.
19119 (if (eq (char-after beg) ?$)
19120 (save-excursion
19121 (delete-region beg end)
19122 (insert "\\(" (substring value 1 -1) "\\)"))
19123 (goto-char end)))
19124 ((dvipng imagemagick)
19125 ;; Process to an image.
19126 (incf cnt)
19127 (goto-char beg)
19128 (let* ((face (face-at-point))
19129 ;; Get the colors from the face at point.
19131 (let ((color (plist-get org-format-latex-options
19132 :foreground)))
19133 (if (and forbuffer (eq color 'auto))
19134 (face-attribute face :foreground nil 'default)
19135 color)))
19137 (let ((color (plist-get org-format-latex-options
19138 :background)))
19139 (if (and forbuffer (eq color 'auto))
19140 (face-attribute face :background nil 'default)
19141 color)))
19142 (hash (sha1 (prin1-to-string
19143 (list org-format-latex-header
19144 org-latex-default-packages-alist
19145 org-latex-packages-alist
19146 org-format-latex-options
19147 forbuffer value fg bg))))
19148 (absprefix (expand-file-name prefix dir))
19149 (linkfile (format "%s_%s.png" prefix hash))
19150 (movefile (format "%s_%s.png" absprefix hash))
19151 (sep (and block-type "\n\n"))
19152 (link (concat sep "[[file:" linkfile "]]" sep))
19153 (options
19154 (org-combine-plists
19155 org-format-latex-options
19156 `(:foreground ,fg :background ,bg))))
19157 (when msg (message msg cnt))
19158 (unless checkdir-flag ; Ensure the directory exists.
19159 (setq checkdir-flag t)
19160 (let ((todir (file-name-directory absprefix)))
19161 (unless (file-directory-p todir)
19162 (make-directory todir t))))
19163 (unless (file-exists-p movefile)
19164 (org-create-formula-image
19165 value movefile options forbuffer processing-type))
19166 (if overlays
19167 (progn
19168 (dolist (o (overlays-in beg end))
19169 (when (eq (overlay-get o 'org-overlay-type)
19170 'org-latex-overlay)
19171 (delete-overlay o)))
19172 (let ((ov (make-overlay beg end)))
19173 (overlay-put ov
19174 'org-overlay-type
19175 'org-latex-overlay)
19176 (overlay-put ov 'evaporate t)
19177 (if (featurep 'xemacs)
19178 (progn
19179 (overlay-put ov 'invisible t)
19180 (overlay-put
19181 ov 'end-glyph
19182 (make-glyph
19183 (vector 'png :file movefile))))
19184 (overlay-put
19185 ov 'display
19186 (list 'image
19187 :type 'png
19188 :file movefile
19189 :ascent 'center)))
19190 (push ov org-latex-fragment-image-overlays))
19191 (goto-char end))
19192 (delete-region beg end)
19193 (insert
19194 (org-add-props link
19195 (list 'org-latex-src
19196 (replace-regexp-in-string "\"" "" value)
19197 'org-latex-src-embed-type
19198 (if block-type 'paragraph 'character)))))))
19199 (mathml
19200 ;; Process to MathML.
19201 (unless (org-format-latex-mathml-available-p)
19202 (user-error "LaTeX to MathML converter not configured"))
19203 (incf cnt)
19204 (when msg (message msg cnt))
19205 (goto-char beg)
19206 (delete-region beg end)
19207 (insert (org-format-latex-as-mathml
19208 value block-type prefix dir)))
19209 (otherwise
19210 (error "Unknown conversion type %s for LaTeX fragments"
19211 processing-type)))))))))))
19213 (defun org-create-math-formula (latex-frag &optional mathml-file)
19214 "Convert LATEX-FRAG to MathML and store it in MATHML-FILE.
19215 Use `org-latex-to-mathml-convert-command'. If the conversion is
19216 sucessful, return the portion between \"<math...> </math>\"
19217 elements otherwise return nil. When MATHML-FILE is specified,
19218 write the results in to that file. When invoked as an
19219 interactive command, prompt for LATEX-FRAG, with initial value
19220 set to the current active region and echo the results for user
19221 inspection."
19222 (interactive (list (let ((frag (when (org-region-active-p)
19223 (buffer-substring-no-properties
19224 (region-beginning) (region-end)))))
19225 (read-string "LaTeX Fragment: " frag nil frag))))
19226 (unless latex-frag (user-error "Invalid LaTeX fragment"))
19227 (let* ((tmp-in-file (file-relative-name
19228 (make-temp-name (expand-file-name "ltxmathml-in"))))
19229 (ignore (write-region latex-frag nil tmp-in-file))
19230 (tmp-out-file (file-relative-name
19231 (make-temp-name (expand-file-name "ltxmathml-out"))))
19232 (cmd (format-spec
19233 org-latex-to-mathml-convert-command
19234 `((?j . ,(and org-latex-to-mathml-jar-file
19235 (shell-quote-argument
19236 (expand-file-name
19237 org-latex-to-mathml-jar-file))))
19238 (?I . ,(shell-quote-argument tmp-in-file))
19239 (?i . ,latex-frag)
19240 (?o . ,(shell-quote-argument tmp-out-file)))))
19241 mathml shell-command-output)
19242 (when (org-called-interactively-p 'any)
19243 (unless (org-format-latex-mathml-available-p)
19244 (user-error "LaTeX to MathML converter not configured")))
19245 (message "Running %s" cmd)
19246 (setq shell-command-output (shell-command-to-string cmd))
19247 (setq mathml
19248 (when (file-readable-p tmp-out-file)
19249 (with-current-buffer (find-file-noselect tmp-out-file t)
19250 (goto-char (point-min))
19251 (when (re-search-forward
19252 (concat
19253 (regexp-quote
19254 "<math xmlns=\"http://www.w3.org/1998/Math/MathML\"")
19255 "[^>]*?>"
19256 "\\(.\\|\n\\)*"
19257 "</math>")
19258 nil t)
19259 (prog1 (match-string 0) (kill-buffer))))))
19260 (cond
19261 (mathml
19262 (setq mathml
19263 (concat "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" mathml))
19264 (when mathml-file
19265 (write-region mathml nil mathml-file))
19266 (when (org-called-interactively-p 'any)
19267 (message mathml)))
19268 ((message "LaTeX to MathML conversion failed")
19269 (message shell-command-output)))
19270 (delete-file tmp-in-file)
19271 (when (file-exists-p tmp-out-file)
19272 (delete-file tmp-out-file))
19273 mathml))
19275 (defun org-format-latex-as-mathml (latex-frag latex-frag-type
19276 prefix &optional dir)
19277 "Use `org-create-math-formula' but check local cache first."
19278 (let* ((absprefix (expand-file-name prefix dir))
19279 (print-length nil) (print-level nil)
19280 (formula-id (concat
19281 "formula-"
19282 (sha1
19283 (prin1-to-string
19284 (list latex-frag
19285 org-latex-to-mathml-convert-command)))))
19286 (formula-cache (format "%s-%s.mathml" absprefix formula-id))
19287 (formula-cache-dir (file-name-directory formula-cache)))
19289 (unless (file-directory-p formula-cache-dir)
19290 (make-directory formula-cache-dir t))
19292 (unless (file-exists-p formula-cache)
19293 (org-create-math-formula latex-frag formula-cache))
19295 (if (file-exists-p formula-cache)
19296 ;; Successful conversion. Return the link to MathML file.
19297 (org-add-props
19298 (format "[[file:%s]]" (file-relative-name formula-cache dir))
19299 (list 'org-latex-src (replace-regexp-in-string "\"" "" latex-frag)
19300 'org-latex-src-embed-type (if latex-frag-type
19301 'paragraph 'character)))
19302 ;; Failed conversion. Return the LaTeX fragment verbatim
19303 latex-frag)))
19305 (defun org-create-formula-image (string tofile options buffer &optional type)
19306 "Create an image from LaTeX source using dvipng or convert.
19307 This function calls either `org-create-formula-image-with-dvipng'
19308 or `org-create-formula-image-with-imagemagick' depending on the
19309 value of `org-latex-create-formula-image-program' or on the value
19310 of the optional TYPE variable.
19312 Note: ultimately these two function should be combined as they
19313 share a good deal of logic."
19314 (org-check-external-command
19315 "latex" "needed to convert LaTeX fragments to images")
19316 (funcall
19317 (case (or type org-latex-create-formula-image-program)
19318 (dvipng
19319 (org-check-external-command
19320 "dvipng" "needed to convert LaTeX fragments to images")
19321 #'org-create-formula-image-with-dvipng)
19322 (imagemagick
19323 (org-check-external-command
19324 "convert" "you need to install imagemagick")
19325 #'org-create-formula-image-with-imagemagick)
19326 (t (error
19327 "Invalid value of `org-latex-create-formula-image-program'")))
19328 string tofile options buffer))
19330 (declare-function org-export-get-backend "ox" (name))
19331 (declare-function org-export--get-global-options "ox" (&optional backend))
19332 (declare-function org-export--get-inbuffer-options "ox" (&optional backend))
19333 (declare-function org-latex-guess-inputenc "ox-latex" (header))
19334 (declare-function org-latex-guess-babel-language "ox-latex" (header info))
19335 (defun org-create-formula--latex-header ()
19336 "Return LaTeX header appropriate for previewing a LaTeX snippet."
19337 (let ((info (org-combine-plists (org-export--get-global-options
19338 (org-export-get-backend 'latex))
19339 (org-export--get-inbuffer-options
19340 (org-export-get-backend 'latex)))))
19341 (org-latex-guess-babel-language
19342 (org-latex-guess-inputenc
19343 (org-splice-latex-header
19344 org-format-latex-header
19345 org-latex-default-packages-alist
19346 org-latex-packages-alist t
19347 (plist-get info :latex-header)))
19348 info)))
19350 (defun org--get-display-dpi ()
19351 "Get the DPI of the display.
19353 Assumes that the display has the same pixel width in the
19354 horizontal and vertical directions."
19355 (if (display-graphic-p)
19356 (round (/ (display-pixel-height)
19357 (/ (display-mm-height) 25.4)))
19358 (error "Attempt to calculate the dpi of a non-graphic display")))
19360 ;; This function borrows from Ganesh Swami's latex2png.el
19361 (defun org-create-formula-image-with-dvipng (string tofile options buffer)
19362 "This calls dvipng."
19363 (require 'ox-latex)
19364 (let* ((tmpdir (if (featurep 'xemacs)
19365 (temp-directory)
19366 temporary-file-directory))
19367 (texfilebase (make-temp-name
19368 (expand-file-name "orgtex" tmpdir)))
19369 (texfile (concat texfilebase ".tex"))
19370 (dvifile (concat texfilebase ".dvi"))
19371 (pngfile (concat texfilebase ".png"))
19372 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19373 ;; This assumes that the display has the same pixel width in
19374 ;; the horizontal and vertical directions
19375 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19376 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19377 "Black"))
19378 (bg (or (plist-get options (if buffer :background :html-background))
19379 "Transparent")))
19380 (if (eq fg 'default) (setq fg (org-dvipng-color :foreground))
19381 (unless (string= fg "Transparent") (setq fg (org-dvipng-color-format fg))))
19382 (if (eq bg 'default) (setq bg (org-dvipng-color :background))
19383 (unless (string= bg "Transparent") (setq bg (org-dvipng-color-format bg))))
19384 (let ((latex-header (org-create-formula--latex-header)))
19385 (with-temp-file texfile
19386 (insert latex-header)
19387 (insert "\n\\begin{document}\n" string "\n\\end{document}\n")))
19388 (let ((dir default-directory))
19389 (ignore-errors
19390 (cd tmpdir)
19391 (call-process "latex" nil nil nil texfile))
19392 (cd dir))
19393 (if (not (file-exists-p dvifile))
19394 (progn (message "Failed to create dvi file from %s" texfile) nil)
19395 (ignore-errors
19396 (if (featurep 'xemacs)
19397 (call-process "dvipng" nil nil nil
19398 "-fg" fg "-bg" bg
19399 "-T" "tight"
19400 "-o" pngfile
19401 dvifile)
19402 (call-process "dvipng" nil nil nil
19403 "-fg" fg "-bg" bg
19404 "-D" dpi
19405 ;;"-x" scale "-y" scale
19406 "-T" "tight"
19407 "-o" pngfile
19408 dvifile)))
19409 (if (not (file-exists-p pngfile))
19410 (if org-format-latex-signal-error
19411 (error "Failed to create png file from %s" texfile)
19412 (message "Failed to create png file from %s" texfile)
19413 nil)
19414 ;; Use the requested file name and clean up
19415 (copy-file pngfile tofile 'replace)
19416 (loop for e in '(".dvi" ".tex" ".aux" ".log" ".png" ".out") do
19417 (if (file-exists-p (concat texfilebase e))
19418 (delete-file (concat texfilebase e))))
19419 pngfile))))
19421 (declare-function org-latex-compile "ox-latex" (texfile &optional snippet))
19422 (defun org-create-formula-image-with-imagemagick (string tofile options buffer)
19423 "This calls convert, which is included into imagemagick."
19424 (require 'ox-latex)
19425 (let* ((tmpdir (if (featurep 'xemacs)
19426 (temp-directory)
19427 temporary-file-directory))
19428 (texfilebase (make-temp-name
19429 (expand-file-name "orgtex" tmpdir)))
19430 (texfile (concat texfilebase ".tex"))
19431 (pdffile (concat texfilebase ".pdf"))
19432 (pngfile (concat texfilebase ".png"))
19433 (scale (or (plist-get options (if buffer :scale :html-scale)) 1.0))
19434 (dpi (number-to-string (* scale (if buffer (org--get-display-dpi) 120))))
19435 (fg (or (plist-get options (if buffer :foreground :html-foreground))
19436 "black"))
19437 (bg (or (plist-get options (if buffer :background :html-background))
19438 "white")))
19439 (if (eq fg 'default) (setq fg (org-latex-color :foreground))
19440 (setq fg (org-latex-color-format fg)))
19441 (if (eq bg 'default) (setq bg (org-latex-color :background))
19442 (setq bg (org-latex-color-format
19443 (if (string= bg "Transparent") "white" bg))))
19444 (let ((latex-header (org-create-formula--latex-header)))
19445 (with-temp-file texfile
19446 (insert latex-header)
19447 (insert "\n\\begin{document}\n"
19448 "\\definecolor{fg}{rgb}{" fg "}\n"
19449 "\\definecolor{bg}{rgb}{" bg "}\n"
19450 "\n\\pagecolor{bg}\n"
19451 "\n{\\color{fg}\n"
19452 string
19453 "\n}\n"
19454 "\n\\end{document}\n")))
19455 (org-latex-compile texfile t)
19456 (if (not (file-exists-p pdffile))
19457 (progn (message "Failed to create pdf file from %s" texfile) nil)
19458 (ignore-errors
19459 (if (featurep 'xemacs)
19460 (call-process "convert" nil nil nil
19461 "-density" "96"
19462 "-trim"
19463 "-antialias"
19464 pdffile
19465 "-quality" "100"
19466 ;; "-sharpen" "0x1.0"
19467 pngfile)
19468 (call-process "convert" nil nil nil
19469 "-density" dpi
19470 "-trim"
19471 "-antialias"
19472 pdffile
19473 "-quality" "100"
19474 ;; "-sharpen" "0x1.0"
19475 pngfile)))
19476 (if (not (file-exists-p pngfile))
19477 (if org-format-latex-signal-error
19478 (error "Failed to create png file from %s" texfile)
19479 (message "Failed to create png file from %s" texfile)
19480 nil)
19481 ;; Use the requested file name and clean up
19482 (copy-file pngfile tofile 'replace)
19483 (loop for e in '(".pdf" ".tex" ".aux" ".log" ".png") do
19484 (if (file-exists-p (concat texfilebase e))
19485 (delete-file (concat texfilebase e))))
19486 pngfile))))
19488 (defun org-splice-latex-header (tpl def-pkg pkg snippets-p &optional extra)
19489 "Fill a LaTeX header template TPL.
19490 In the template, the following place holders will be recognized:
19492 [DEFAULT-PACKAGES] \\usepackage statements for DEF-PKG
19493 [NO-DEFAULT-PACKAGES] do not include DEF-PKG
19494 [PACKAGES] \\usepackage statements for PKG
19495 [NO-PACKAGES] do not include PKG
19496 [EXTRA] the string EXTRA
19497 [NO-EXTRA] do not include EXTRA
19499 For backward compatibility, if both the positive and the negative place
19500 holder is missing, the positive one (without the \"NO-\") will be
19501 assumed to be present at the end of the template.
19502 DEF-PKG and PKG are assumed to be alists of options/packagename lists.
19503 EXTRA is a string.
19504 SNIPPETS-P indicates if this is run to create snippet images for HTML."
19505 (let (rpl (end ""))
19506 (if (string-match "^[ \t]*\\[\\(NO-\\)?DEFAULT-PACKAGES\\][ \t]*\n?" tpl)
19507 (setq rpl (if (or (match-end 1) (not def-pkg))
19508 "" (org-latex-packages-to-string def-pkg snippets-p t))
19509 tpl (replace-match rpl t t tpl))
19510 (if def-pkg (setq end (org-latex-packages-to-string def-pkg snippets-p))))
19512 (if (string-match "\\[\\(NO-\\)?PACKAGES\\][ \t]*\n?" tpl)
19513 (setq rpl (if (or (match-end 1) (not pkg))
19514 "" (org-latex-packages-to-string pkg snippets-p t))
19515 tpl (replace-match rpl t t tpl))
19516 (if pkg (setq end
19517 (concat end "\n"
19518 (org-latex-packages-to-string pkg snippets-p)))))
19520 (if (string-match "\\[\\(NO-\\)?EXTRA\\][ \t]*\n?" tpl)
19521 (setq rpl (if (or (match-end 1) (not extra))
19522 "" (concat extra "\n"))
19523 tpl (replace-match rpl t t tpl))
19524 (if (and extra (string-match "\\S-" extra))
19525 (setq end (concat end "\n" extra))))
19527 (if (string-match "\\S-" end)
19528 (concat tpl "\n" end)
19529 tpl)))
19531 (defun org-latex-packages-to-string (pkg &optional snippets-p newline)
19532 "Turn an alist of packages into a string with the \\usepackage macros."
19533 (setq pkg (mapconcat (lambda(p)
19534 (cond
19535 ((stringp p) p)
19536 ((and snippets-p (>= (length p) 3) (not (nth 2 p)))
19537 (format "%% Package %s omitted" (cadr p)))
19538 ((equal "" (car p))
19539 (format "\\usepackage{%s}" (cadr p)))
19541 (format "\\usepackage[%s]{%s}"
19542 (car p) (cadr p)))))
19544 "\n"))
19545 (if newline (concat pkg "\n") pkg))
19547 (defun org-dvipng-color (attr)
19548 "Return a RGB color specification for dvipng."
19549 (apply 'format "rgb %s %s %s"
19550 (mapcar 'org-normalize-color
19551 (if (featurep 'xemacs)
19552 (color-rgb-components
19553 (face-property 'default
19554 (cond ((eq attr :foreground) 'foreground)
19555 ((eq attr :background) 'background))))
19556 (color-values (face-attribute 'default attr nil))))))
19558 (defun org-dvipng-color-format (color-name)
19559 "Convert COLOR-NAME to a RGB color value for dvipng."
19560 (apply 'format "rgb %s %s %s"
19561 (mapcar 'org-normalize-color
19562 (color-values color-name))))
19564 (defun org-latex-color (attr)
19565 "Return a RGB color for the LaTeX color package."
19566 (apply 'format "%s,%s,%s"
19567 (mapcar 'org-normalize-color
19568 (if (featurep 'xemacs)
19569 (color-rgb-components
19570 (face-property 'default
19571 (cond ((eq attr :foreground) 'foreground)
19572 ((eq attr :background) 'background))))
19573 (color-values (face-attribute 'default attr nil))))))
19575 (defun org-latex-color-format (color-name)
19576 "Convert COLOR-NAME to a RGB color value."
19577 (apply 'format "%s,%s,%s"
19578 (mapcar 'org-normalize-color
19579 (color-values color-name))))
19581 (defun org-normalize-color (value)
19582 "Return string to be used as color value for an RGB component."
19583 (format "%g" (/ value 65535.0)))
19587 ;; Image display
19589 (defvar org-inline-image-overlays nil)
19590 (make-variable-buffer-local 'org-inline-image-overlays)
19592 (defun org-toggle-inline-images (&optional include-linked)
19593 "Toggle the display of inline images.
19594 INCLUDE-LINKED is passed to `org-display-inline-images'."
19595 (interactive "P")
19596 (if org-inline-image-overlays
19597 (progn
19598 (org-remove-inline-images)
19599 (when (org-called-interactively-p 'interactive)
19600 (message "Inline image display turned off")))
19601 (org-display-inline-images include-linked)
19602 (when (org-called-interactively-p 'interactive)
19603 (message (if org-inline-image-overlays
19604 (format "%d images displayed inline"
19605 (length org-inline-image-overlays))
19606 "No images to display inline")))))
19608 (defun org-redisplay-inline-images ()
19609 "Refresh the display of inline images."
19610 (interactive)
19611 (if (not org-inline-image-overlays)
19612 (org-toggle-inline-images)
19613 (org-toggle-inline-images)
19614 (org-toggle-inline-images)))
19616 (defun org-display-inline-images (&optional include-linked refresh beg end)
19617 "Display inline images.
19619 An inline image is a link which follows either of these
19620 conventions:
19622 1. Its path is a file with an extension matching return value
19623 from `image-file-name-regexp' and it has no contents.
19625 2. Its description consists in a single link of the previous
19626 type.
19628 When optional argument INCLUDE-LINKED is non-nil, also links with
19629 a text description part will be inlined. This can be nice for
19630 a quick look at those images, but it does not reflect what
19631 exported files will look like.
19633 When optional argument REFRESH is non-nil, refresh existing
19634 images between BEG and END. This will create new image displays
19635 only if necessary. BEG and END default to the buffer
19636 boundaries."
19637 (interactive "P")
19638 (when (display-graphic-p)
19639 (unless refresh
19640 (org-remove-inline-images)
19641 (when (fboundp 'clear-image-cache) (clear-image-cache)))
19642 (org-with-wide-buffer
19643 (goto-char (or beg (point-min)))
19644 (let ((case-fold-search t)
19645 (file-extension-re (org-image-file-name-regexp)))
19646 (while (re-search-forward "[][]\\[\\(?:file\\|[./~]\\)" end t)
19647 (let ((link (save-match-data (org-element-context))))
19648 ;; Check if we're at an inline image.
19649 (when (and (equal (org-element-property :type link) "file")
19650 (or include-linked
19651 (not (org-element-property :contents-begin link)))
19652 (let ((parent (org-element-property :parent link)))
19653 (or (not (eq (org-element-type parent) 'link))
19654 (not (cdr (org-element-contents parent)))))
19655 (org-string-match-p file-extension-re
19656 (org-element-property :path link)))
19657 (let ((file (expand-file-name
19658 (org-link-unescape
19659 (org-element-property :path link)))))
19660 (when (file-exists-p file)
19661 (let ((width
19662 ;; Apply `org-image-actual-width' specifications.
19663 (cond
19664 ((not (image-type-available-p 'imagemagick)) nil)
19665 ((eq org-image-actual-width t) nil)
19666 ((listp org-image-actual-width)
19668 ;; First try to find a width among
19669 ;; attributes associated to the paragraph
19670 ;; containing link.
19671 (let ((paragraph
19672 (let ((e link))
19673 (while (and (setq e (org-element-property
19674 :parent e))
19675 (not (eq (org-element-type e)
19676 'paragraph))))
19677 e)))
19678 (when paragraph
19679 (save-excursion
19680 (goto-char (org-element-property :begin paragraph))
19681 (when
19682 (re-search-forward
19683 "^[ \t]*#\\+attr_.*?: +.*?:width +\\(\\S-+\\)"
19684 (org-element-property
19685 :post-affiliated paragraph)
19687 (string-to-number (match-string 1))))))
19688 ;; Otherwise, fall-back to provided number.
19689 (car org-image-actual-width)))
19690 ((numberp org-image-actual-width)
19691 org-image-actual-width)))
19692 (old (get-char-property-and-overlay
19693 (org-element-property :begin link)
19694 'org-image-overlay)))
19695 (if (and (car-safe old) refresh)
19696 (image-refresh (overlay-get (cdr old) 'display))
19697 (let ((image (create-image file
19698 (and width 'imagemagick)
19700 :width width)))
19701 (when image
19702 (let* ((link
19703 ;; If inline image is the description
19704 ;; of another link, be sure to
19705 ;; consider the latter as the one to
19706 ;; apply the overlay on.
19707 (let ((parent
19708 (org-element-property :parent link)))
19709 (if (eq (org-element-type parent) 'link)
19710 parent
19711 link)))
19712 (ov (make-overlay
19713 (org-element-property :begin link)
19714 (progn
19715 (goto-char
19716 (org-element-property :end link))
19717 (skip-chars-backward " \t")
19718 (point)))))
19719 (overlay-put ov 'display image)
19720 (overlay-put ov 'face 'default)
19721 (overlay-put ov 'org-image-overlay t)
19722 (overlay-put
19723 ov 'modification-hooks
19724 (list 'org-display-inline-remove-overlay))
19725 (push ov org-inline-image-overlays)))))))))))))))
19727 (define-obsolete-function-alias
19728 'org-display-inline-modification-hook 'org-display-inline-remove-overlay "24.3")
19730 (defun org-display-inline-remove-overlay (ov after beg end &optional len)
19731 "Remove inline-display overlay if a corresponding region is modified."
19732 (let ((inhibit-modification-hooks t))
19733 (when (and ov after)
19734 (delete ov org-inline-image-overlays)
19735 (delete-overlay ov))))
19737 (defun org-remove-inline-images ()
19738 "Remove inline display of images."
19739 (interactive)
19740 (mapc 'delete-overlay org-inline-image-overlays)
19741 (setq org-inline-image-overlays nil))
19743 ;;;; Key bindings
19745 ;; Outline functions from `outline-mode-prefix-map'
19746 ;; that can be remapped in Org:
19747 (define-key org-mode-map [remap outline-mark-subtree] 'org-mark-subtree)
19748 (define-key org-mode-map [remap outline-show-subtree] 'org-show-subtree)
19749 (define-key org-mode-map [remap outline-forward-same-level]
19750 'org-forward-heading-same-level)
19751 (define-key org-mode-map [remap outline-backward-same-level]
19752 'org-backward-heading-same-level)
19753 (define-key org-mode-map [remap outline-show-branches]
19754 'org-kill-note-or-show-branches)
19755 (define-key org-mode-map [remap outline-promote] 'org-promote-subtree)
19756 (define-key org-mode-map [remap outline-demote] 'org-demote-subtree)
19757 (define-key org-mode-map [remap outline-insert-heading] 'org-ctrl-c-ret)
19758 (define-key org-mode-map [remap outline-next-visible-heading]
19759 'org-next-visible-heading)
19760 (define-key org-mode-map [remap outline-previous-visible-heading]
19761 'org-previous-visible-heading)
19763 ;; Outline functions from `outline-mode-prefix-map' that can not
19764 ;; be remapped in Org:
19766 ;; - the column "key binding" shows whether the Outline function is still
19767 ;; available in Org mode on the same key that it has been bound to in
19768 ;; Outline mode:
19769 ;; - "overridden": key used for a different functionality in Org mode
19770 ;; - else: key still bound to the same Outline function in Org mode
19772 ;; | Outline function | key binding | Org replacement |
19773 ;; |------------------------------------+-------------+--------------------------|
19774 ;; | `outline-next-visible-heading' | `C-c C-n' | better: skip inlinetasks |
19775 ;; | `outline-previous-visible-heading' | `C-c C-p' | better: skip inlinetasks |
19776 ;; | `outline-up-heading' | `C-c C-u' | still same function |
19777 ;; | `outline-move-subtree-up' | overridden | better: org-shiftup |
19778 ;; | `outline-move-subtree-down' | overridden | better: org-shiftdown |
19779 ;; | `show-entry' | overridden | no replacement |
19780 ;; | `show-children' | `C-c C-i' | visibility cycling |
19781 ;; | `show-branches' | `C-c C-k' | still same function |
19782 ;; | `show-subtree' | overridden | visibility cycling |
19783 ;; | `show-all' | overridden | no replacement |
19784 ;; | `hide-subtree' | overridden | visibility cycling |
19785 ;; | `hide-body' | overridden | no replacement |
19786 ;; | `hide-entry' | overridden | visibility cycling |
19787 ;; | `hide-leaves' | overridden | no replacement |
19788 ;; | `hide-sublevels' | overridden | no replacement |
19789 ;; | `hide-other' | overridden | no replacement |
19791 ;; Make `C-c C-x' a prefix key
19792 (org-defkey org-mode-map "\C-c\C-x" (make-sparse-keymap))
19794 ;; TAB key with modifiers
19795 (org-defkey org-mode-map "\C-i" 'org-cycle)
19796 (org-defkey org-mode-map [(tab)] 'org-cycle)
19797 (org-defkey org-mode-map [(control tab)] 'org-force-cycle-archived)
19798 (org-defkey org-mode-map "\M-\t" #'pcomplete)
19799 ;; The following line is necessary under Suse GNU/Linux
19800 (unless (featurep 'xemacs)
19801 (org-defkey org-mode-map [S-iso-lefttab] 'org-shifttab))
19802 (org-defkey org-mode-map [(shift tab)] 'org-shifttab)
19803 (define-key org-mode-map [backtab] 'org-shifttab)
19805 (org-defkey org-mode-map [(shift return)] 'org-table-copy-down)
19806 (org-defkey org-mode-map [(meta shift return)] 'org-insert-todo-heading)
19807 (org-defkey org-mode-map [(meta return)] 'org-meta-return)
19809 ;; Cursor keys with modifiers
19810 (org-defkey org-mode-map [(meta left)] 'org-metaleft)
19811 (org-defkey org-mode-map [(meta right)] 'org-metaright)
19812 (org-defkey org-mode-map [(meta up)] 'org-metaup)
19813 (org-defkey org-mode-map [(meta down)] 'org-metadown)
19815 (org-defkey org-mode-map [(control meta shift right)] 'org-increase-number-at-point)
19816 (org-defkey org-mode-map [(control meta shift left)] 'org-decrease-number-at-point)
19817 (org-defkey org-mode-map [(meta shift left)] 'org-shiftmetaleft)
19818 (org-defkey org-mode-map [(meta shift right)] 'org-shiftmetaright)
19819 (org-defkey org-mode-map [(meta shift up)] 'org-shiftmetaup)
19820 (org-defkey org-mode-map [(meta shift down)] 'org-shiftmetadown)
19822 (org-defkey org-mode-map [(shift up)] 'org-shiftup)
19823 (org-defkey org-mode-map [(shift down)] 'org-shiftdown)
19824 (org-defkey org-mode-map [(shift left)] 'org-shiftleft)
19825 (org-defkey org-mode-map [(shift right)] 'org-shiftright)
19827 (org-defkey org-mode-map [(control shift right)] 'org-shiftcontrolright)
19828 (org-defkey org-mode-map [(control shift left)] 'org-shiftcontrolleft)
19829 (org-defkey org-mode-map [(control shift up)] 'org-shiftcontrolup)
19830 (org-defkey org-mode-map [(control shift down)] 'org-shiftcontroldown)
19832 ;; Babel keys
19833 (define-key org-mode-map org-babel-key-prefix org-babel-map)
19834 (mapc (lambda (pair)
19835 (define-key org-babel-map (car pair) (cdr pair)))
19836 org-babel-key-bindings)
19838 ;;; Extra keys for tty access.
19839 ;; We only set them when really needed because otherwise the
19840 ;; menus don't show the simple keys
19842 (when (or org-use-extra-keys
19843 (featurep 'xemacs) ;; because XEmacs supports multi-device stuff
19844 (not window-system))
19845 (org-defkey org-mode-map "\C-c\C-xc" 'org-table-copy-down)
19846 (org-defkey org-mode-map "\C-c\C-xM" 'org-insert-todo-heading)
19847 (org-defkey org-mode-map "\C-c\C-xm" 'org-meta-return)
19848 (org-defkey org-mode-map [?\e (return)] 'org-meta-return)
19849 (org-defkey org-mode-map [?\e (left)] 'org-metaleft)
19850 (org-defkey org-mode-map "\C-c\C-xl" 'org-metaleft)
19851 (org-defkey org-mode-map [?\e (right)] 'org-metaright)
19852 (org-defkey org-mode-map "\C-c\C-xr" 'org-metaright)
19853 (org-defkey org-mode-map [?\e (up)] 'org-metaup)
19854 (org-defkey org-mode-map "\C-c\C-xu" 'org-metaup)
19855 (org-defkey org-mode-map [?\e (down)] 'org-metadown)
19856 (org-defkey org-mode-map "\C-c\C-xd" 'org-metadown)
19857 (org-defkey org-mode-map "\C-c\C-xL" 'org-shiftmetaleft)
19858 (org-defkey org-mode-map "\C-c\C-xR" 'org-shiftmetaright)
19859 (org-defkey org-mode-map "\C-c\C-xU" 'org-shiftmetaup)
19860 (org-defkey org-mode-map "\C-c\C-xD" 'org-shiftmetadown)
19861 (org-defkey org-mode-map [?\C-c (up)] 'org-shiftup)
19862 (org-defkey org-mode-map [?\C-c (down)] 'org-shiftdown)
19863 (org-defkey org-mode-map [?\C-c (left)] 'org-shiftleft)
19864 (org-defkey org-mode-map [?\C-c (right)] 'org-shiftright)
19865 (org-defkey org-mode-map [?\C-c ?\C-x (right)] 'org-shiftcontrolright)
19866 (org-defkey org-mode-map [?\C-c ?\C-x (left)] 'org-shiftcontrolleft)
19867 (org-defkey org-mode-map [?\e (tab)] #'pcomplete)
19868 (org-defkey org-mode-map [?\e (shift return)] 'org-insert-todo-heading)
19869 (org-defkey org-mode-map [?\e (shift left)] 'org-shiftmetaleft)
19870 (org-defkey org-mode-map [?\e (shift right)] 'org-shiftmetaright)
19871 (org-defkey org-mode-map [?\e (shift up)] 'org-shiftmetaup)
19872 (org-defkey org-mode-map [?\e (shift down)] 'org-shiftmetadown))
19874 ;; All the other keys
19876 (org-defkey org-mode-map "\C-c\C-a" 'outline-show-all) ; in case allout messed up.
19877 (org-defkey org-mode-map "\C-c\C-r" 'org-reveal)
19878 (if (boundp 'narrow-map)
19879 (org-defkey narrow-map "s" 'org-narrow-to-subtree)
19880 (org-defkey org-mode-map "\C-xns" 'org-narrow-to-subtree))
19881 (if (boundp 'narrow-map)
19882 (org-defkey narrow-map "b" 'org-narrow-to-block)
19883 (org-defkey org-mode-map "\C-xnb" 'org-narrow-to-block))
19884 (if (boundp 'narrow-map)
19885 (org-defkey narrow-map "e" 'org-narrow-to-element)
19886 (org-defkey org-mode-map "\C-xne" 'org-narrow-to-element))
19887 (org-defkey org-mode-map "\C-\M-t" 'org-transpose-element)
19888 (org-defkey org-mode-map "\M-}" 'org-forward-element)
19889 (org-defkey org-mode-map "\M-{" 'org-backward-element)
19890 (org-defkey org-mode-map "\C-c\C-^" 'org-up-element)
19891 (org-defkey org-mode-map "\C-c\C-_" 'org-down-element)
19892 (org-defkey org-mode-map "\C-c\C-f" 'org-forward-heading-same-level)
19893 (org-defkey org-mode-map "\C-c\C-b" 'org-backward-heading-same-level)
19894 (org-defkey org-mode-map "\C-c\M-f" 'org-next-block)
19895 (org-defkey org-mode-map "\C-c\M-b" 'org-previous-block)
19896 (org-defkey org-mode-map "\C-c$" 'org-archive-subtree)
19897 (org-defkey org-mode-map "\C-c\C-x\C-s" 'org-archive-subtree)
19898 (org-defkey org-mode-map "\C-c\C-x\C-a" 'org-archive-subtree-default)
19899 (org-defkey org-mode-map "\C-c\C-xd" 'org-insert-drawer)
19900 (org-defkey org-mode-map "\C-c\C-xa" 'org-toggle-archive-tag)
19901 (org-defkey org-mode-map "\C-c\C-xA" 'org-archive-to-archive-sibling)
19902 (org-defkey org-mode-map "\C-c\C-xb" 'org-tree-to-indirect-buffer)
19903 (org-defkey org-mode-map "\C-c\C-xq" 'org-toggle-tags-groups)
19904 (org-defkey org-mode-map "\C-c\C-j" 'org-goto)
19905 (org-defkey org-mode-map "\C-c\C-t" 'org-todo)
19906 (org-defkey org-mode-map "\C-c\C-q" 'org-set-tags-command)
19907 (org-defkey org-mode-map "\C-c\C-s" 'org-schedule)
19908 (org-defkey org-mode-map "\C-c\C-d" 'org-deadline)
19909 (org-defkey org-mode-map "\C-c;" 'org-toggle-comment)
19910 (org-defkey org-mode-map "\C-c\C-w" 'org-refile)
19911 (org-defkey org-mode-map "\C-c\M-w" 'org-copy)
19912 (org-defkey org-mode-map "\C-c/" 'org-sparse-tree) ; Minor-mode reserved
19913 (org-defkey org-mode-map "\C-c\\" 'org-match-sparse-tree) ; Minor-mode res.
19914 (org-defkey org-mode-map "\C-c\C-m" 'org-ctrl-c-ret)
19915 (org-defkey org-mode-map "\M-\C-m" 'org-insert-heading)
19916 (org-defkey org-mode-map "\C-c\C-xc" 'org-clone-subtree-with-time-shift)
19917 (org-defkey org-mode-map "\C-c\C-xv" 'org-copy-visible)
19918 (org-defkey org-mode-map [(control return)] 'org-insert-heading-respect-content)
19919 (org-defkey org-mode-map [(shift control return)] 'org-insert-todo-heading-respect-content)
19920 (org-defkey org-mode-map "\C-c\C-x\C-n" 'org-next-link)
19921 (org-defkey org-mode-map "\C-c\C-x\C-p" 'org-previous-link)
19922 (org-defkey org-mode-map "\C-c\C-l" 'org-insert-link)
19923 (org-defkey org-mode-map "\C-c\M-l" 'org-insert-last-stored-link)
19924 (org-defkey org-mode-map "\C-c\C-\M-l" 'org-insert-all-links)
19925 (org-defkey org-mode-map "\C-c\C-o" 'org-open-at-point)
19926 (org-defkey org-mode-map "\C-c%" 'org-mark-ring-push)
19927 (org-defkey org-mode-map "\C-c&" 'org-mark-ring-goto)
19928 (org-defkey org-mode-map "\C-c\C-z" 'org-add-note) ; Alternative binding
19929 (org-defkey org-mode-map "\C-c." 'org-time-stamp) ; Minor-mode reserved
19930 (org-defkey org-mode-map "\C-c!" 'org-time-stamp-inactive) ; Minor-mode r.
19931 (org-defkey org-mode-map "\C-c," 'org-priority) ; Minor-mode reserved
19932 (org-defkey org-mode-map "\C-c\C-y" 'org-evaluate-time-range)
19933 (org-defkey org-mode-map "\C-c>" 'org-goto-calendar)
19934 (org-defkey org-mode-map "\C-c<" 'org-date-from-calendar)
19935 (org-defkey org-mode-map [(control ?,)] 'org-cycle-agenda-files)
19936 (org-defkey org-mode-map [(control ?\')] 'org-cycle-agenda-files)
19937 (org-defkey org-mode-map "\C-c[" 'org-agenda-file-to-front)
19938 (org-defkey org-mode-map "\C-c]" 'org-remove-file)
19939 (org-defkey org-mode-map "\C-c\C-x<" 'org-agenda-set-restriction-lock)
19940 (org-defkey org-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
19941 (org-defkey org-mode-map "\C-c-" 'org-ctrl-c-minus)
19942 (org-defkey org-mode-map "\C-c*" 'org-ctrl-c-star)
19943 (org-defkey org-mode-map "\C-c^" 'org-sort)
19944 (org-defkey org-mode-map "\C-c\C-c" 'org-ctrl-c-ctrl-c)
19945 (org-defkey org-mode-map "\C-c\C-k" 'org-kill-note-or-show-branches)
19946 (org-defkey org-mode-map "\C-c#" 'org-update-statistics-cookies)
19947 (org-defkey org-mode-map [remap open-line] 'org-open-line)
19948 (org-defkey org-mode-map [remap comment-dwim] 'org-comment-dwim)
19949 (org-defkey org-mode-map [remap forward-paragraph] 'org-forward-paragraph)
19950 (org-defkey org-mode-map [remap backward-paragraph] 'org-backward-paragraph)
19951 (org-defkey org-mode-map "\M-^" 'org-delete-indentation)
19952 (org-defkey org-mode-map "\C-m" 'org-return)
19953 (org-defkey org-mode-map "\C-j" 'org-return-indent)
19954 (org-defkey org-mode-map "\C-c?" 'org-table-field-info)
19955 (org-defkey org-mode-map "\C-c " 'org-table-blank-field)
19956 (org-defkey org-mode-map "\C-c+" 'org-table-sum)
19957 (org-defkey org-mode-map "\C-c=" 'org-table-eval-formula)
19958 (org-defkey org-mode-map "\C-c'" 'org-edit-special)
19959 (org-defkey org-mode-map "\C-c`" 'org-table-edit-field)
19960 (org-defkey org-mode-map "\C-c\"a" 'orgtbl-ascii-plot)
19961 (org-defkey org-mode-map "\C-c\"g" 'org-plot/gnuplot)
19962 (org-defkey org-mode-map "\C-c|" 'org-table-create-or-convert-from-region)
19963 (org-defkey org-mode-map [(control ?#)] 'org-table-rotate-recalc-marks)
19964 (org-defkey org-mode-map "\C-c~" 'org-table-create-with-table.el)
19965 (org-defkey org-mode-map "\C-c\C-a" 'org-attach)
19966 (org-defkey org-mode-map "\C-c}" 'org-table-toggle-coordinate-overlays)
19967 (org-defkey org-mode-map "\C-c{" 'org-table-toggle-formula-debugger)
19968 (org-defkey org-mode-map "\C-c\C-e" 'org-export-dispatch)
19969 (org-defkey org-mode-map "\C-c:" 'org-toggle-fixed-width)
19970 (org-defkey org-mode-map "\C-c\C-x\C-f" 'org-emphasize)
19971 (org-defkey org-mode-map "\C-c\C-xf" 'org-footnote-action)
19972 (org-defkey org-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
19973 (org-defkey org-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
19974 (org-defkey org-mode-map "\C-c@" 'org-mark-subtree)
19975 (org-defkey org-mode-map "\M-h" 'org-mark-element)
19976 (org-defkey org-mode-map [?\C-c (control ?*)] 'org-list-make-subtree)
19977 ;;(org-defkey org-mode-map [?\C-c (control ?-)] 'org-list-make-list-from-subtree)
19979 (org-defkey org-mode-map "\C-c\C-x\C-w" 'org-cut-special)
19980 (org-defkey org-mode-map "\C-c\C-x\M-w" 'org-copy-special)
19981 (org-defkey org-mode-map "\C-c\C-x\C-y" 'org-paste-special)
19983 (org-defkey org-mode-map "\C-c\C-x\C-t" 'org-toggle-time-stamp-overlays)
19984 (org-defkey org-mode-map "\C-c\C-x\C-i" 'org-clock-in)
19985 (org-defkey org-mode-map "\C-c\C-x\C-x" 'org-clock-in-last)
19986 (org-defkey org-mode-map "\C-c\C-x\C-z" 'org-resolve-clocks)
19987 (org-defkey org-mode-map "\C-c\C-x\C-o" 'org-clock-out)
19988 (org-defkey org-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
19989 (org-defkey org-mode-map "\C-c\C-x\C-q" 'org-clock-cancel)
19990 (org-defkey org-mode-map "\C-c\C-x\C-d" 'org-clock-display)
19991 (org-defkey org-mode-map "\C-c\C-x\C-r" 'org-clock-report)
19992 (org-defkey org-mode-map "\C-c\C-x\C-u" 'org-dblock-update)
19993 (org-defkey org-mode-map "\C-c\C-x\C-l" 'org-toggle-latex-fragment)
19994 (org-defkey org-mode-map "\C-c\C-x\C-v" 'org-toggle-inline-images)
19995 (org-defkey org-mode-map "\C-c\C-x\C-\M-v" 'org-redisplay-inline-images)
19996 (org-defkey org-mode-map "\C-c\C-x\\" 'org-toggle-pretty-entities)
19997 (org-defkey org-mode-map "\C-c\C-x\C-b" 'org-toggle-checkbox)
19998 (org-defkey org-mode-map "\C-c\C-xp" 'org-set-property)
19999 (org-defkey org-mode-map "\C-c\C-xP" 'org-set-property-and-value)
20000 (org-defkey org-mode-map "\C-c\C-xe" 'org-set-effort)
20001 (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort)
20002 (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property)
20003 (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock)
20004 (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer)
20006 (org-defkey org-mode-map "\C-c\C-x." 'org-timer)
20007 (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item)
20008 (org-defkey org-mode-map "\C-c\C-x0" 'org-timer-start)
20009 (org-defkey org-mode-map "\C-c\C-x_" 'org-timer-stop)
20010 (org-defkey org-mode-map "\C-c\C-x," 'org-timer-pause-or-continue)
20012 (define-key org-mode-map "\C-c\C-x\C-c" 'org-columns)
20014 (define-key org-mode-map "\C-c\C-x!" 'org-reload)
20016 (define-key org-mode-map "\C-c\C-xg" 'org-feed-update-all)
20017 (define-key org-mode-map "\C-c\C-xG" 'org-feed-goto-inbox)
20019 (define-key org-mode-map "\C-c\C-x[" 'org-reftex-citation)
20022 (when (featurep 'xemacs)
20023 (org-defkey org-mode-map 'button3 'popup-mode-menu))
20026 (defconst org-speed-commands-default
20028 ("Outline Navigation")
20029 ("n" . (org-speed-move-safe 'org-next-visible-heading))
20030 ("p" . (org-speed-move-safe 'org-previous-visible-heading))
20031 ("f" . (org-speed-move-safe 'org-forward-heading-same-level))
20032 ("b" . (org-speed-move-safe 'org-backward-heading-same-level))
20033 ("F" . org-next-block)
20034 ("B" . org-previous-block)
20035 ("u" . (org-speed-move-safe 'outline-up-heading))
20036 ("j" . org-goto)
20037 ("g" . (org-refile t))
20038 ("Outline Visibility")
20039 ("c" . org-cycle)
20040 ("C" . org-shifttab)
20041 (" " . org-display-outline-path)
20042 ("s" . org-narrow-to-subtree)
20043 ("=" . org-columns)
20044 ("Outline Structure Editing")
20045 ("U" . org-metaup)
20046 ("D" . org-metadown)
20047 ("r" . org-metaright)
20048 ("l" . org-metaleft)
20049 ("R" . org-shiftmetaright)
20050 ("L" . org-shiftmetaleft)
20051 ("i" . (progn (forward-char 1) (call-interactively
20052 'org-insert-heading-respect-content)))
20053 ("^" . org-sort)
20054 ("w" . org-refile)
20055 ("a" . org-archive-subtree-default-with-confirmation)
20056 ("@" . org-mark-subtree)
20057 ("#" . org-toggle-comment)
20058 ("Clock Commands")
20059 ("I" . org-clock-in)
20060 ("O" . org-clock-out)
20061 ("Meta Data Editing")
20062 ("t" . org-todo)
20063 ("," . (org-priority))
20064 ("0" . (org-priority ?\ ))
20065 ("1" . (org-priority ?A))
20066 ("2" . (org-priority ?B))
20067 ("3" . (org-priority ?C))
20068 (":" . org-set-tags-command)
20069 ("e" . org-set-effort)
20070 ("E" . org-inc-effort)
20071 ("W" . (lambda(m) (interactive "sMinutes before warning: ")
20072 (org-entry-put (point) "APPT_WARNTIME" m)))
20073 ("Agenda Views etc")
20074 ("v" . org-agenda)
20075 ("/" . org-sparse-tree)
20076 ("Misc")
20077 ("o" . org-open-at-point)
20078 ("?" . org-speed-command-help)
20079 ("<" . (org-agenda-set-restriction-lock 'subtree))
20080 (">" . (org-agenda-remove-restriction-lock))
20082 "The default speed commands.")
20084 (defun org-print-speed-command (e)
20085 (if (> (length (car e)) 1)
20086 (progn
20087 (princ "\n")
20088 (princ (car e))
20089 (princ "\n")
20090 (princ (make-string (length (car e)) ?-))
20091 (princ "\n"))
20092 (princ (car e))
20093 (princ " ")
20094 (if (symbolp (cdr e))
20095 (princ (symbol-name (cdr e)))
20096 (prin1 (cdr e)))
20097 (princ "\n")))
20099 (defun org-speed-command-help ()
20100 "Show the available speed commands."
20101 (interactive)
20102 (if (not org-use-speed-commands)
20103 (user-error "Speed commands are not activated, customize `org-use-speed-commands'")
20104 (with-output-to-temp-buffer "*Help*"
20105 (princ "User-defined Speed commands\n===========================\n")
20106 (mapc 'org-print-speed-command org-speed-commands-user)
20107 (princ "\n")
20108 (princ "Built-in Speed commands\n=======================\n")
20109 (mapc 'org-print-speed-command org-speed-commands-default))
20110 (with-current-buffer "*Help*"
20111 (setq truncate-lines t))))
20113 (defun org-speed-move-safe (cmd)
20114 "Execute CMD, but make sure that the cursor always ends up in a headline.
20115 If not, return to the original position and throw an error."
20116 (interactive)
20117 (let ((pos (point)))
20118 (call-interactively cmd)
20119 (unless (and (bolp) (org-at-heading-p))
20120 (goto-char pos)
20121 (error "Boundary reached while executing %s" cmd))))
20123 (defvar org-self-insert-command-undo-counter 0)
20125 (defvar org-table-auto-blank-field) ; defined in org-table.el
20126 (defvar org-speed-command nil)
20128 (define-obsolete-function-alias
20129 'org-speed-command-default-hook 'org-speed-command-activate "24.3")
20131 (defun org-speed-command-activate (keys)
20132 "Hook for activating single-letter speed commands.
20133 `org-speed-commands-default' specifies a minimal command set.
20134 Use `org-speed-commands-user' for further customization."
20135 (when (or (and (bolp) (looking-at org-outline-regexp))
20136 (and (functionp org-use-speed-commands)
20137 (funcall org-use-speed-commands)))
20138 (cdr (assoc keys (append org-speed-commands-user
20139 org-speed-commands-default)))))
20141 (define-obsolete-function-alias
20142 'org-babel-speed-command-hook 'org-babel-speed-command-activate "24.3")
20144 (defun org-babel-speed-command-activate (keys)
20145 "Hook for activating single-letter code block commands."
20146 (when (and (bolp) (looking-at org-babel-src-block-regexp))
20147 (cdr (assoc keys org-babel-key-bindings))))
20149 (defcustom org-speed-command-hook
20150 '(org-speed-command-default-hook org-babel-speed-command-hook)
20151 "Hook for activating speed commands at strategic locations.
20152 Hook functions are called in sequence until a valid handler is
20153 found.
20155 Each hook takes a single argument, a user-pressed command key
20156 which is also a `self-insert-command' from the global map.
20158 Within the hook, examine the cursor position and the command key
20159 and return nil or a valid handler as appropriate. Handler could
20160 be one of an interactive command, a function, or a form.
20162 Set `org-use-speed-commands' to non-nil value to enable this
20163 hook. The default setting is `org-speed-command-activate'."
20164 :group 'org-structure
20165 :version "24.1"
20166 :type 'hook)
20168 (defun org-self-insert-command (N)
20169 "Like `self-insert-command', use overwrite-mode for whitespace in tables.
20170 If the cursor is in a table looking at whitespace, the whitespace is
20171 overwritten, and the table is not marked as requiring realignment."
20172 (interactive "p")
20173 (org-check-before-invisible-edit 'insert)
20174 (cond
20175 ((and org-use-speed-commands
20176 (let ((kv (this-command-keys-vector)))
20177 (setq org-speed-command
20178 (run-hook-with-args-until-success
20179 'org-speed-command-hook
20180 (make-string 1 (aref kv (1- (length kv))))))))
20181 (cond
20182 ((commandp org-speed-command)
20183 (setq this-command org-speed-command)
20184 (call-interactively org-speed-command))
20185 ((functionp org-speed-command)
20186 (funcall org-speed-command))
20187 ((and org-speed-command (listp org-speed-command))
20188 (eval org-speed-command))
20189 (t (let (org-use-speed-commands)
20190 (call-interactively 'org-self-insert-command)))))
20191 ((and
20192 (org-table-p)
20193 (progn
20194 ;; Check if we blank the field, and if that triggers align.
20195 (and (featurep 'org-table) org-table-auto-blank-field
20196 (memq last-command
20197 '(org-cycle org-return org-shifttab org-ctrl-c-ctrl-c))
20198 (if (or (eq (char-after) ?\s) (looking-at "[^|\n]* |"))
20199 ;; Got extra space, this field does not determine
20200 ;; column width.
20201 (let (org-table-may-need-update) (org-table-blank-field))
20202 ;; No extra space, this field may determine column
20203 ;; width.
20204 (org-table-blank-field)))
20206 (eq N 1)
20207 (looking-at "[^|\n]* \\( \\)|"))
20208 ;; There is room for insertion without re-aligning the table.
20209 (delete-region (match-beginning 1) (match-end 1))
20210 (self-insert-command N))
20212 (setq org-table-may-need-update t)
20213 (self-insert-command N)
20214 (org-fix-tags-on-the-fly)
20215 (if org-self-insert-cluster-for-undo
20216 (if (not (eq last-command 'org-self-insert-command))
20217 (setq org-self-insert-command-undo-counter 1)
20218 (if (>= org-self-insert-command-undo-counter 20)
20219 (setq org-self-insert-command-undo-counter 1)
20220 (and (> org-self-insert-command-undo-counter 0)
20221 buffer-undo-list (listp buffer-undo-list)
20222 (not (cadr buffer-undo-list)) ; remove nil entry
20223 (setcdr buffer-undo-list (cddr buffer-undo-list)))
20224 (setq org-self-insert-command-undo-counter
20225 (1+ org-self-insert-command-undo-counter))))))))
20227 (defun org-check-before-invisible-edit (kind)
20228 "Check is editing if kind KIND would be dangerous with invisible text around.
20229 The detailed reaction depends on the user option `org-catch-invisible-edits'."
20230 ;; First, try to get out of here as quickly as possible, to reduce overhead
20231 (if (and org-catch-invisible-edits
20232 (or (not (boundp 'visible-mode)) (not visible-mode))
20233 (or (get-char-property (point) 'invisible)
20234 (get-char-property (max (point-min) (1- (point))) 'invisible)))
20235 ;; OK, we need to take a closer look
20236 (let* ((invisible-at-point (get-char-property (point) 'invisible))
20237 (invisible-before-point (if (bobp) nil (get-char-property
20238 (1- (point)) 'invisible)))
20239 (border-and-ok-direction
20241 ;; Check if we are acting predictably before invisible text
20242 (and invisible-at-point (not invisible-before-point)
20243 (memq kind '(insert delete-backward)))
20244 ;; Check if we are acting predictably after invisible text
20245 ;; This works not well, and I have turned it off. It seems
20246 ;; better to always show and stop after invisible text.
20247 ;; (and (not invisible-at-point) invisible-before-point
20248 ;; (memq kind '(insert delete)))
20250 (when (or (memq invisible-at-point '(outline org-hide-block t))
20251 (memq invisible-before-point '(outline org-hide-block t)))
20252 (if (eq org-catch-invisible-edits 'error)
20253 (user-error "Editing in invisible areas is prohibited, make them visible first"))
20254 (if (and org-custom-properties-overlays
20255 (y-or-n-p "Display invisible properties in this buffer? "))
20256 (org-toggle-custom-properties-visibility)
20257 ;; Make the area visible
20258 (save-excursion
20259 (if invisible-before-point
20260 (goto-char (previous-single-char-property-change
20261 (point) 'invisible)))
20262 (outline-show-subtree))
20263 (cond
20264 ((eq org-catch-invisible-edits 'show)
20265 ;; That's it, we do the edit after showing
20266 (message
20267 "Unfolding invisible region around point before editing")
20268 (sit-for 1))
20269 ((and (eq org-catch-invisible-edits 'smart)
20270 border-and-ok-direction)
20271 (message "Unfolding invisible region around point before editing"))
20273 ;; Don't do the edit, make the user repeat it in full visibility
20274 (user-error "Edit in invisible region aborted, repeat to confirm with text visible"))))))))
20276 (defun org-fix-tags-on-the-fly ()
20277 (when (and (equal (char-after (point-at-bol)) ?*)
20278 (org-at-heading-p))
20279 (org-align-tags-here org-tags-column)))
20281 (defun org-delete-backward-char (N)
20282 "Like `delete-backward-char', insert whitespace at field end in tables.
20283 When deleting backwards, in tables this function will insert whitespace in
20284 front of the next \"|\" separator, to keep the table aligned. The table will
20285 still be marked for re-alignment if the field did fill the entire column,
20286 because, in this case the deletion might narrow the column."
20287 (interactive "p")
20288 (save-match-data
20289 (org-check-before-invisible-edit 'delete-backward)
20290 (if (and (org-table-p)
20291 (eq N 1)
20292 (string-match "|" (buffer-substring (point-at-bol) (point)))
20293 (looking-at ".*?|"))
20294 (let ((pos (point))
20295 (noalign (looking-at "[^|\n\r]* |"))
20296 (c org-table-may-need-update))
20297 (backward-delete-char N)
20298 (if (not overwrite-mode)
20299 (progn
20300 (skip-chars-forward "^|")
20301 (insert " ")
20302 (goto-char (1- pos))))
20303 ;; noalign: if there were two spaces at the end, this field
20304 ;; does not determine the width of the column.
20305 (if noalign (setq org-table-may-need-update c)))
20306 (backward-delete-char N)
20307 (org-fix-tags-on-the-fly))))
20309 (defun org-delete-char (N)
20310 "Like `delete-char', but insert whitespace at field end in tables.
20311 When deleting characters, in tables this function will insert whitespace in
20312 front of the next \"|\" separator, to keep the table aligned. The table will
20313 still be marked for re-alignment if the field did fill the entire column,
20314 because, in this case the deletion might narrow the column."
20315 (interactive "p")
20316 (save-match-data
20317 (org-check-before-invisible-edit 'delete)
20318 (if (and (org-table-p)
20319 (not (bolp))
20320 (not (= (char-after) ?|))
20321 (eq N 1))
20322 (if (looking-at ".*?|")
20323 (let ((pos (point))
20324 (noalign (looking-at "[^|\n\r]* |"))
20325 (c org-table-may-need-update))
20326 (replace-match
20327 (concat (substring (match-string 0) 1 -1) " |") nil t)
20328 (goto-char pos)
20329 ;; noalign: if there were two spaces at the end, this field
20330 ;; does not determine the width of the column.
20331 (if noalign (setq org-table-may-need-update c)))
20332 (delete-char N))
20333 (delete-char N)
20334 (org-fix-tags-on-the-fly))))
20336 ;; Make `delete-selection-mode' work with org-mode and orgtbl-mode
20337 (put 'org-self-insert-command 'delete-selection
20338 (lambda ()
20339 (not (run-hook-with-args-until-success
20340 'self-insert-uses-region-functions))))
20341 (put 'orgtbl-self-insert-command 'delete-selection
20342 (lambda ()
20343 (not (run-hook-with-args-until-success
20344 'self-insert-uses-region-functions))))
20345 (put 'org-delete-char 'delete-selection 'supersede)
20346 (put 'org-delete-backward-char 'delete-selection 'supersede)
20347 (put 'org-yank 'delete-selection 'yank)
20349 ;; Make `flyspell-mode' delay after some commands
20350 (put 'org-self-insert-command 'flyspell-delayed t)
20351 (put 'orgtbl-self-insert-command 'flyspell-delayed t)
20352 (put 'org-delete-char 'flyspell-delayed t)
20353 (put 'org-delete-backward-char 'flyspell-delayed t)
20355 ;; Make pabbrev-mode expand after org-mode commands
20356 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
20357 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
20359 (defun org-remap (map &rest commands)
20360 "In MAP, remap the functions given in COMMANDS.
20361 COMMANDS is a list of alternating OLDDEF NEWDEF command names."
20362 (let (new old)
20363 (while commands
20364 (setq old (pop commands) new (pop commands))
20365 (if (fboundp 'command-remapping)
20366 (org-defkey map (vector 'remap old) new)
20367 (substitute-key-definition old new map global-map)))))
20369 (defun org-transpose-words ()
20370 "Transpose words for Org.
20371 This uses the `org-mode-transpose-word-syntax-table' syntax
20372 table, which interprets characters in `org-emphasis-alist' as
20373 word constituents."
20374 (interactive)
20375 (with-syntax-table org-mode-transpose-word-syntax-table
20376 (call-interactively 'transpose-words)))
20377 (org-remap org-mode-map 'transpose-words 'org-transpose-words)
20379 (when (eq org-enable-table-editor 'optimized)
20380 ;; If the user wants maximum table support, we need to hijack
20381 ;; some standard editing functions
20382 (org-remap org-mode-map
20383 'self-insert-command 'org-self-insert-command
20384 'delete-char 'org-delete-char
20385 'delete-backward-char 'org-delete-backward-char)
20386 (org-defkey org-mode-map "|" 'org-force-self-insert))
20388 (defvar org-ctrl-c-ctrl-c-hook nil
20389 "Hook for functions attaching themselves to `C-c C-c'.
20391 This can be used to add additional functionality to the C-c C-c
20392 key which executes context-dependent commands. This hook is run
20393 before any other test, while `org-ctrl-c-ctrl-c-final-hook' is
20394 run after the last test.
20396 Each function will be called with no arguments. The function
20397 must check if the context is appropriate for it to act. If yes,
20398 it should do its thing and then return a non-nil value. If the
20399 context is wrong, just do nothing and return nil.")
20401 (defvar org-ctrl-c-ctrl-c-final-hook nil
20402 "Hook for functions attaching themselves to `C-c C-c'.
20404 This can be used to add additional functionality to the C-c C-c
20405 key which executes context-dependent commands. This hook is run
20406 after any other test, while `org-ctrl-c-ctrl-c-hook' is run
20407 before the first test.
20409 Each function will be called with no arguments. The function
20410 must check if the context is appropriate for it to act. If yes,
20411 it should do its thing and then return a non-nil value. If the
20412 context is wrong, just do nothing and return nil.")
20414 (defvar org-tab-first-hook nil
20415 "Hook for functions to attach themselves to TAB.
20416 See `org-ctrl-c-ctrl-c-hook' for more information.
20417 This hook runs as the first action when TAB is pressed, even before
20418 `org-cycle' messes around with the `outline-regexp' to cater for
20419 inline tasks and plain list item folding.
20420 If any function in this hook returns t, any other actions that
20421 would have been caused by TAB (such as table field motion or visibility
20422 cycling) will not occur.")
20424 (defvar org-tab-after-check-for-table-hook nil
20425 "Hook for functions to attach themselves to TAB.
20426 See `org-ctrl-c-ctrl-c-hook' for more information.
20427 This hook runs after it has been established that the cursor is not in a
20428 table, but before checking if the cursor is in a headline or if global cycling
20429 should be done.
20430 If any function in this hook returns t, not other actions like visibility
20431 cycling will be done.")
20433 (defvar org-tab-after-check-for-cycling-hook nil
20434 "Hook for functions to attach themselves to TAB.
20435 See `org-ctrl-c-ctrl-c-hook' for more information.
20436 This hook runs after it has been established that not table field motion and
20437 not visibility should be done because of current context. This is probably
20438 the place where a package like yasnippets can hook in.")
20440 (defvar org-tab-before-tab-emulation-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 every other options for TAB have been exhausted, but
20444 before indentation and \t insertion takes place.")
20446 (defvar org-metaleft-hook nil
20447 "Hook for functions attaching themselves to `M-left'.
20448 See `org-ctrl-c-ctrl-c-hook' for more information.")
20449 (defvar org-metaright-hook nil
20450 "Hook for functions attaching themselves to `M-right'.
20451 See `org-ctrl-c-ctrl-c-hook' for more information.")
20452 (defvar org-metaup-hook nil
20453 "Hook for functions attaching themselves to `M-up'.
20454 See `org-ctrl-c-ctrl-c-hook' for more information.")
20455 (defvar org-metadown-hook nil
20456 "Hook for functions attaching themselves to `M-down'.
20457 See `org-ctrl-c-ctrl-c-hook' for more information.")
20458 (defvar org-shiftmetaleft-hook nil
20459 "Hook for functions attaching themselves to `M-S-left'.
20460 See `org-ctrl-c-ctrl-c-hook' for more information.")
20461 (defvar org-shiftmetaright-hook nil
20462 "Hook for functions attaching themselves to `M-S-right'.
20463 See `org-ctrl-c-ctrl-c-hook' for more information.")
20464 (defvar org-shiftmetaup-hook nil
20465 "Hook for functions attaching themselves to `M-S-up'.
20466 See `org-ctrl-c-ctrl-c-hook' for more information.")
20467 (defvar org-shiftmetadown-hook nil
20468 "Hook for functions attaching themselves to `M-S-down'.
20469 See `org-ctrl-c-ctrl-c-hook' for more information.")
20470 (defvar org-metareturn-hook nil
20471 "Hook for functions attaching themselves to `M-RET'.
20472 See `org-ctrl-c-ctrl-c-hook' for more information.")
20473 (defvar org-shiftup-hook nil
20474 "Hook for functions attaching themselves to `S-up'.
20475 See `org-ctrl-c-ctrl-c-hook' for more information.")
20476 (defvar org-shiftup-final-hook nil
20477 "Hook for functions attaching themselves to `S-up'.
20478 This one runs after all other options except shift-select have been excluded.
20479 See `org-ctrl-c-ctrl-c-hook' for more information.")
20480 (defvar org-shiftdown-hook nil
20481 "Hook for functions attaching themselves to `S-down'.
20482 See `org-ctrl-c-ctrl-c-hook' for more information.")
20483 (defvar org-shiftdown-final-hook nil
20484 "Hook for functions attaching themselves to `S-down'.
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-shiftleft-hook nil
20488 "Hook for functions attaching themselves to `S-left'.
20489 See `org-ctrl-c-ctrl-c-hook' for more information.")
20490 (defvar org-shiftleft-final-hook nil
20491 "Hook for functions attaching themselves to `S-left'.
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-shiftright-hook nil
20495 "Hook for functions attaching themselves to `S-right'.
20496 See `org-ctrl-c-ctrl-c-hook' for more information.")
20497 (defvar org-shiftright-final-hook nil
20498 "Hook for functions attaching themselves to `S-right'.
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.")
20502 (defun org-modifier-cursor-error ()
20503 "Throw an error, a modified cursor command was applied in wrong context."
20504 (user-error "This command is active in special context like tables, headlines or items"))
20506 (defun org-shiftselect-error ()
20507 "Throw an error because Shift-Cursor command was applied in wrong context."
20508 (if (and (boundp 'shift-select-mode) shift-select-mode)
20509 (user-error "To use shift-selection with Org-mode, customize `org-support-shift-select'")
20510 (user-error "This command works only in special context like headlines or timestamps")))
20512 (defun org-call-for-shift-select (cmd)
20513 (let ((this-command-keys-shift-translated t))
20514 (call-interactively cmd)))
20516 (defun org-shifttab (&optional arg)
20517 "Global visibility cycling or move to previous table field.
20518 Call `org-table-previous-field' within a table.
20519 When ARG is nil, cycle globally through visibility states.
20520 When ARG is a numeric prefix, show contents of this level."
20521 (interactive "P")
20522 (cond
20523 ((org-at-table-p) (call-interactively 'org-table-previous-field))
20524 ((integerp arg)
20525 (let ((arg2 (if org-odd-levels-only (1- (* 2 arg)) arg)))
20526 (message "Content view to level: %d" arg)
20527 (org-content (prefix-numeric-value arg2))
20528 (org-cycle-show-empty-lines t)
20529 (setq org-cycle-global-status 'overview)))
20530 (t (call-interactively 'org-global-cycle))))
20532 (defun org-shiftmetaleft ()
20533 "Promote subtree or delete table column.
20534 Calls `org-promote-subtree', `org-outdent-item-tree', or
20535 `org-table-delete-column', depending on context. See the
20536 individual commands for more information."
20537 (interactive)
20538 (cond
20539 ((run-hook-with-args-until-success 'org-shiftmetaleft-hook))
20540 ((org-at-table-p) (call-interactively 'org-table-delete-column))
20541 ((org-at-heading-p) (call-interactively 'org-promote-subtree))
20542 ((if (not (org-region-active-p)) (org-at-item-p)
20543 (save-excursion (goto-char (region-beginning))
20544 (org-at-item-p)))
20545 (call-interactively 'org-outdent-item-tree))
20546 (t (org-modifier-cursor-error))))
20548 (defun org-shiftmetaright ()
20549 "Demote subtree or insert table column.
20550 Calls `org-demote-subtree', `org-indent-item-tree', or
20551 `org-table-insert-column', depending on context. See the
20552 individual commands for more information."
20553 (interactive)
20554 (cond
20555 ((run-hook-with-args-until-success 'org-shiftmetaright-hook))
20556 ((org-at-table-p) (call-interactively 'org-table-insert-column))
20557 ((org-at-heading-p) (call-interactively 'org-demote-subtree))
20558 ((if (not (org-region-active-p)) (org-at-item-p)
20559 (save-excursion (goto-char (region-beginning))
20560 (org-at-item-p)))
20561 (call-interactively 'org-indent-item-tree))
20562 (t (org-modifier-cursor-error))))
20564 (defun org-shiftmetaup (&optional arg)
20565 "Drag the line at point up.
20566 In a table, kill the current row.
20567 On a clock timestamp, update the value of the timestamp like `S-<up>'
20568 but also adjust the previous clocked item in the clock history.
20569 Everywhere else, drag the line at point up."
20570 (interactive "P")
20571 (cond
20572 ((run-hook-with-args-until-success 'org-shiftmetaup-hook))
20573 ((org-at-table-p) (call-interactively 'org-table-kill-row))
20574 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20575 (call-interactively 'org-timestamp-up)))
20576 (t (call-interactively 'org-drag-line-backward))))
20578 (defun org-shiftmetadown (&optional arg)
20579 "Drag the line at point down.
20580 In a table, insert an empty row at the current line.
20581 On a clock timestamp, update the value of the timestamp like `S-<down>'
20582 but also adjust the previous clocked item in the clock history.
20583 Everywhere else, drag the line at point down."
20584 (interactive "P")
20585 (cond
20586 ((run-hook-with-args-until-success 'org-shiftmetadown-hook))
20587 ((org-at-table-p) (call-interactively 'org-table-insert-row))
20588 ((org-at-clock-log-p) (let ((org-clock-adjust-closest t))
20589 (call-interactively 'org-timestamp-down)))
20590 (t (call-interactively 'org-drag-line-forward))))
20592 (defsubst org-hidden-tree-error ()
20593 (user-error
20594 "Hidden subtree, open with TAB or use subtree command M-S-<left>/<right>"))
20596 (defun org-metaleft (&optional arg)
20597 "Promote heading, list item at point or move table column left.
20599 Calls `org-do-promote', `org-outdent-item' or `org-table-move-column',
20600 depending on context. With no specific context, calls the Emacs
20601 default `backward-word'. See the individual commands for more
20602 information.
20604 This function runs the hook `org-metaleft-hook' as a first step,
20605 and returns at first non-nil value."
20606 (interactive "P")
20607 (cond
20608 ((run-hook-with-args-until-success 'org-metaleft-hook))
20609 ((org-at-table-p) (org-call-with-arg 'org-table-move-column 'left))
20610 ((org-with-limited-levels
20611 (or (org-at-heading-p)
20612 (and (org-region-active-p)
20613 (save-excursion
20614 (goto-char (region-beginning))
20615 (org-at-heading-p)))))
20616 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20617 (call-interactively 'org-do-promote))
20618 ;; At an inline task.
20619 ((org-at-heading-p)
20620 (call-interactively 'org-inlinetask-promote))
20621 ((or (org-at-item-p)
20622 (and (org-region-active-p)
20623 (save-excursion
20624 (goto-char (region-beginning))
20625 (org-at-item-p))))
20626 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20627 (call-interactively 'org-outdent-item))
20628 (t (call-interactively 'backward-word))))
20630 (defun org-metaright (&optional arg)
20631 "Demote heading, list item at point or move table column right.
20633 In front of a drawer or a block keyword, indent it correctly.
20635 Calls `org-do-demote', `org-indent-item', `org-table-move-column',
20636 `org-indnet-drawer' or `org-indent-block' depending on context.
20637 With no specific context, calls the Emacs default `forward-word'.
20638 See the individual commands for more information.
20640 This function runs the hook `org-metaright-hook' as a first step,
20641 and returns at first non-nil value."
20642 (interactive "P")
20643 (cond
20644 ((run-hook-with-args-until-success 'org-metaright-hook))
20645 ((org-at-table-p) (call-interactively 'org-table-move-column))
20646 ((org-at-drawer-p) (call-interactively 'org-indent-drawer))
20647 ((org-at-block-p) (call-interactively 'org-indent-block))
20648 ((org-with-limited-levels
20649 (or (org-at-heading-p)
20650 (and (org-region-active-p)
20651 (save-excursion
20652 (goto-char (region-beginning))
20653 (org-at-heading-p)))))
20654 (when (org-check-for-hidden 'headlines) (org-hidden-tree-error))
20655 (call-interactively 'org-do-demote))
20656 ;; At an inline task.
20657 ((org-at-heading-p)
20658 (call-interactively 'org-inlinetask-demote))
20659 ((or (org-at-item-p)
20660 (and (org-region-active-p)
20661 (save-excursion
20662 (goto-char (region-beginning))
20663 (org-at-item-p))))
20664 (when (org-check-for-hidden 'items) (org-hidden-tree-error))
20665 (call-interactively 'org-indent-item))
20666 (t (call-interactively 'forward-word))))
20668 (defun org-check-for-hidden (what)
20669 "Check if there are hidden headlines/items in the current visual line.
20670 WHAT can be either `headlines' or `items'. If the current line is
20671 an outline or item heading and it has a folded subtree below it,
20672 this function returns t, nil otherwise."
20673 (let ((re (cond
20674 ((eq what 'headlines) org-outline-regexp-bol)
20675 ((eq what 'items) (org-item-beginning-re))
20676 (t (error "This should not happen"))))
20677 beg end)
20678 (save-excursion
20679 (catch 'exit
20680 (unless (org-region-active-p)
20681 (setq beg (point-at-bol))
20682 (beginning-of-line 2)
20683 (while (and (not (eobp)) ;; this is like `next-line'
20684 (get-char-property (1- (point)) 'invisible))
20685 (beginning-of-line 2))
20686 (setq end (point))
20687 (goto-char beg)
20688 (goto-char (point-at-eol))
20689 (setq end (max end (point)))
20690 (while (re-search-forward re end t)
20691 (if (get-char-property (match-beginning 0) 'invisible)
20692 (throw 'exit t))))
20693 nil))))
20695 (defun org-metaup (&optional arg)
20696 "Move subtree up or move table row up.
20697 Calls `org-move-subtree-up' or `org-table-move-row' or
20698 `org-move-item-up', depending on context. See the individual commands
20699 for more information."
20700 (interactive "P")
20701 (cond
20702 ((run-hook-with-args-until-success 'org-metaup-hook))
20703 ((org-region-active-p)
20704 (let* ((a (min (region-beginning) (region-end)))
20705 (b (1- (max (region-beginning) (region-end))))
20706 (c (save-excursion (goto-char a)
20707 (move-beginning-of-line 0)))
20708 (d (save-excursion (goto-char a)
20709 (move-end-of-line 0) (point))))
20710 (transpose-regions a b c d)
20711 (goto-char c)))
20712 ((org-at-table-p) (org-call-with-arg 'org-table-move-row 'up))
20713 ((org-at-heading-p) (call-interactively 'org-move-subtree-up))
20714 ((org-at-item-p) (call-interactively 'org-move-item-up))
20715 (t (org-drag-element-backward))))
20717 (defun org-metadown (&optional arg)
20718 "Move subtree down or move table row down.
20719 Calls `org-move-subtree-down' or `org-table-move-row' or
20720 `org-move-item-down', depending on context. See the individual
20721 commands for more information."
20722 (interactive "P")
20723 (cond
20724 ((run-hook-with-args-until-success 'org-metadown-hook))
20725 ((org-region-active-p)
20726 (let* ((a (min (region-beginning) (region-end)))
20727 (b (max (region-beginning) (region-end)))
20728 (c (save-excursion (goto-char b)
20729 (move-beginning-of-line 1)))
20730 (d (save-excursion (goto-char b)
20731 (move-end-of-line 1) (1+ (point)))))
20732 (transpose-regions a b c d)
20733 (goto-char d)))
20734 ((org-at-table-p) (call-interactively 'org-table-move-row))
20735 ((org-at-heading-p) (call-interactively 'org-move-subtree-down))
20736 ((org-at-item-p) (call-interactively 'org-move-item-down))
20737 (t (org-drag-element-forward))))
20739 (defun org-shiftup (&optional arg)
20740 "Increase item in timestamp or increase priority of current headline.
20741 Calls `org-timestamp-up' or `org-priority-up', or `org-previous-item',
20742 depending on context. See the individual commands for more information."
20743 (interactive "P")
20744 (cond
20745 ((run-hook-with-args-until-success 'org-shiftup-hook))
20746 ((and org-support-shift-select (org-region-active-p))
20747 (org-call-for-shift-select 'previous-line))
20748 ((org-at-timestamp-p t)
20749 (call-interactively (if org-edit-timestamp-down-means-later
20750 'org-timestamp-down 'org-timestamp-up)))
20751 ((and (not (eq org-support-shift-select 'always))
20752 org-enable-priority-commands
20753 (org-at-heading-p))
20754 (call-interactively 'org-priority-up))
20755 ((and (not org-support-shift-select) (org-at-item-p))
20756 (call-interactively 'org-previous-item))
20757 ((org-clocktable-try-shift 'up arg))
20758 ((run-hook-with-args-until-success 'org-shiftup-final-hook))
20759 (org-support-shift-select
20760 (org-call-for-shift-select 'previous-line))
20761 (t (org-shiftselect-error))))
20763 (defun org-shiftdown (&optional arg)
20764 "Decrease item in timestamp or decrease priority of current headline.
20765 Calls `org-timestamp-down' or `org-priority-down', or `org-next-item'
20766 depending on context. See the individual commands for more information."
20767 (interactive "P")
20768 (cond
20769 ((run-hook-with-args-until-success 'org-shiftdown-hook))
20770 ((and org-support-shift-select (org-region-active-p))
20771 (org-call-for-shift-select 'next-line))
20772 ((org-at-timestamp-p t)
20773 (call-interactively (if org-edit-timestamp-down-means-later
20774 'org-timestamp-up 'org-timestamp-down)))
20775 ((and (not (eq org-support-shift-select 'always))
20776 org-enable-priority-commands
20777 (org-at-heading-p))
20778 (call-interactively 'org-priority-down))
20779 ((and (not org-support-shift-select) (org-at-item-p))
20780 (call-interactively 'org-next-item))
20781 ((org-clocktable-try-shift 'down arg))
20782 ((run-hook-with-args-until-success 'org-shiftdown-final-hook))
20783 (org-support-shift-select
20784 (org-call-for-shift-select 'next-line))
20785 (t (org-shiftselect-error))))
20787 (defun org-shiftright (&optional arg)
20788 "Cycle the thing at point or in the current line, depending on context.
20789 Depending on context, this does one of the following:
20791 - switch a timestamp at point one day into the future
20792 - on a headline, switch to the next TODO keyword.
20793 - on an item, switch entire list to the next bullet type
20794 - on a property line, switch to the next allowed value
20795 - on a clocktable definition line, move time block into the future"
20796 (interactive "P")
20797 (cond
20798 ((run-hook-with-args-until-success 'org-shiftright-hook))
20799 ((and org-support-shift-select (org-region-active-p))
20800 (org-call-for-shift-select 'forward-char))
20801 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-up-day))
20802 ((and (not (eq org-support-shift-select 'always))
20803 (org-at-heading-p))
20804 (let ((org-inhibit-logging
20805 (not org-treat-S-cursor-todo-selection-as-state-change))
20806 (org-inhibit-blocking
20807 (not org-treat-S-cursor-todo-selection-as-state-change)))
20808 (org-call-with-arg 'org-todo 'right)))
20809 ((or (and org-support-shift-select
20810 (not (eq org-support-shift-select 'always))
20811 (org-at-item-bullet-p))
20812 (and (not org-support-shift-select) (org-at-item-p)))
20813 (org-call-with-arg 'org-cycle-list-bullet nil))
20814 ((and (not (eq org-support-shift-select 'always))
20815 (org-at-property-p))
20816 (call-interactively 'org-property-next-allowed-value))
20817 ((org-clocktable-try-shift 'right arg))
20818 ((run-hook-with-args-until-success 'org-shiftright-final-hook))
20819 (org-support-shift-select
20820 (org-call-for-shift-select 'forward-char))
20821 (t (org-shiftselect-error))))
20823 (defun org-shiftleft (&optional arg)
20824 "Cycle the thing at point or in the current line, depending on context.
20825 Depending on context, this does one of the following:
20827 - switch a timestamp at point one day into the past
20828 - on a headline, switch to the previous TODO keyword.
20829 - on an item, switch entire list to the previous bullet type
20830 - on a property line, switch to the previous allowed value
20831 - on a clocktable definition line, move time block into the past"
20832 (interactive "P")
20833 (cond
20834 ((run-hook-with-args-until-success 'org-shiftleft-hook))
20835 ((and org-support-shift-select (org-region-active-p))
20836 (org-call-for-shift-select 'backward-char))
20837 ((org-at-timestamp-p t) (call-interactively 'org-timestamp-down-day))
20838 ((and (not (eq org-support-shift-select 'always))
20839 (org-at-heading-p))
20840 (let ((org-inhibit-logging
20841 (not org-treat-S-cursor-todo-selection-as-state-change))
20842 (org-inhibit-blocking
20843 (not org-treat-S-cursor-todo-selection-as-state-change)))
20844 (org-call-with-arg 'org-todo 'left)))
20845 ((or (and org-support-shift-select
20846 (not (eq org-support-shift-select 'always))
20847 (org-at-item-bullet-p))
20848 (and (not org-support-shift-select) (org-at-item-p)))
20849 (org-call-with-arg 'org-cycle-list-bullet 'previous))
20850 ((and (not (eq org-support-shift-select 'always))
20851 (org-at-property-p))
20852 (call-interactively 'org-property-previous-allowed-value))
20853 ((org-clocktable-try-shift 'left arg))
20854 ((run-hook-with-args-until-success 'org-shiftleft-final-hook))
20855 (org-support-shift-select
20856 (org-call-for-shift-select 'backward-char))
20857 (t (org-shiftselect-error))))
20859 (defun org-shiftcontrolright ()
20860 "Switch to next TODO set."
20861 (interactive)
20862 (cond
20863 ((and org-support-shift-select (org-region-active-p))
20864 (org-call-for-shift-select 'forward-word))
20865 ((and (not (eq org-support-shift-select 'always))
20866 (org-at-heading-p))
20867 (org-call-with-arg 'org-todo 'nextset))
20868 (org-support-shift-select
20869 (org-call-for-shift-select 'forward-word))
20870 (t (org-shiftselect-error))))
20872 (defun org-shiftcontrolleft ()
20873 "Switch to previous TODO set."
20874 (interactive)
20875 (cond
20876 ((and org-support-shift-select (org-region-active-p))
20877 (org-call-for-shift-select 'backward-word))
20878 ((and (not (eq org-support-shift-select 'always))
20879 (org-at-heading-p))
20880 (org-call-with-arg 'org-todo 'previousset))
20881 (org-support-shift-select
20882 (org-call-for-shift-select 'backward-word))
20883 (t (org-shiftselect-error))))
20885 (defun org-shiftcontrolup (&optional n)
20886 "Change timestamps synchronously up in CLOCK log lines.
20887 Optional argument N tells to change by that many units."
20888 (interactive "P")
20889 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20890 (let (org-support-shift-select)
20891 (org-clock-timestamps-up n))
20892 (user-error "Not at a clock log")))
20894 (defun org-shiftcontroldown (&optional n)
20895 "Change timestamps synchronously down in CLOCK log lines.
20896 Optional argument N tells to change by that many units."
20897 (interactive "P")
20898 (if (and (org-at-clock-log-p) (org-at-timestamp-p t))
20899 (let (org-support-shift-select)
20900 (org-clock-timestamps-down n))
20901 (user-error "Not at a clock log")))
20903 (defun org-increase-number-at-point (&optional inc)
20904 "Increment the number at point.
20905 With an optional prefix numeric argument INC, increment using
20906 this numeric value."
20907 (interactive "p")
20908 (if (not (number-at-point))
20909 (user-error "Not on a number")
20910 (unless inc (setq inc 1))
20911 (let ((pos (point))
20912 (beg (skip-chars-backward "-+^/*0-9eE."))
20913 (end (skip-chars-forward "-+^/*0-9eE^.")) nap)
20914 (setq nap (buffer-substring-no-properties
20915 (+ pos beg) (+ pos beg end)))
20916 (delete-region (+ pos beg) (+ pos beg end))
20917 (insert (calc-eval (concat (number-to-string inc) "+" nap))))
20918 (when (org-at-table-p)
20919 (org-table-align)
20920 (org-table-end-of-field 1))))
20922 (defun org-decrease-number-at-point (&optional inc)
20923 "Decrement the number at point.
20924 With an optional prefix numeric argument INC, decrement using
20925 this numeric value."
20926 (interactive "p")
20927 (org-increase-number-at-point (- (or inc 1))))
20929 (defun org-ctrl-c-ret ()
20930 "Call `org-table-hline-and-move' or `org-insert-heading' dep. on context."
20931 (interactive)
20932 (cond
20933 ((org-at-table-p) (call-interactively 'org-table-hline-and-move))
20934 (t (call-interactively 'org-insert-heading))))
20936 (defun org-find-visible ()
20937 (let ((s (point)))
20938 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20939 (get-char-property s 'invisible)))
20941 (defun org-find-invisible ()
20942 (let ((s (point)))
20943 (while (and (not (= (point-max) (setq s (next-overlay-change s))))
20944 (not (get-char-property s 'invisible))))
20947 (defun org-copy-visible (beg end)
20948 "Copy the visible parts of the region."
20949 (interactive "r")
20950 (let (snippets s)
20951 (save-excursion
20952 (save-restriction
20953 (narrow-to-region beg end)
20954 (setq s (goto-char (point-min)))
20955 (while (not (= (point) (point-max)))
20956 (goto-char (org-find-invisible))
20957 (push (buffer-substring s (point)) snippets)
20958 (setq s (goto-char (org-find-visible))))))
20959 (kill-new (apply 'concat (nreverse snippets)))))
20961 (defun org-copy-special ()
20962 "Copy region in table or copy current subtree.
20963 Calls `org-table-copy' or `org-copy-subtree', depending on context.
20964 See the individual commands for more information."
20965 (interactive)
20966 (call-interactively
20967 (if (org-at-table-p) 'org-table-copy-region 'org-copy-subtree)))
20969 (defun org-cut-special ()
20970 "Cut region in table or cut current subtree.
20971 Calls `org-table-copy' or `org-cut-subtree', depending on context.
20972 See the individual commands for more information."
20973 (interactive)
20974 (call-interactively
20975 (if (org-at-table-p) 'org-table-cut-region 'org-cut-subtree)))
20977 (defun org-paste-special (arg)
20978 "Paste rectangular region into table, or past subtree relative to level.
20979 Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
20980 See the individual commands for more information."
20981 (interactive "P")
20982 (if (org-at-table-p)
20983 (org-table-paste-rectangle)
20984 (org-paste-subtree arg)))
20986 (defsubst org-in-fixed-width-region-p ()
20987 "Is point in a fixed-width region?"
20988 (save-match-data
20989 (eq 'fixed-width (org-element-type (org-element-at-point)))))
20991 (defun org-edit-special (&optional arg)
20992 "Call a special editor for the element at point.
20993 When at a table, call the formula editor with `org-table-edit-formulas'.
20994 When in a source code block, call `org-edit-src-code'.
20995 When in a fixed-width region, call `org-edit-fixed-width-region'.
20996 When in an export block, call `org-edit-export-block'.
20997 When at an #+INCLUDE keyword, visit the included file.
20998 When at a footnote reference, call `org-edit-footnote-reference'
20999 On a link, call `ffap' to visit the link at point.
21000 Otherwise, return a user error."
21001 (interactive "P")
21002 (let ((element (org-element-at-point)))
21003 (assert (not buffer-read-only) nil
21004 "Buffer is read-only: %s" (buffer-name))
21005 (case (org-element-type element)
21006 (src-block
21007 (if (not arg) (org-edit-src-code)
21008 (let* ((info (org-babel-get-src-block-info))
21009 (lang (nth 0 info))
21010 (params (nth 2 info))
21011 (session (cdr (assq :session params))))
21012 (if (not session) (org-edit-src-code)
21013 ;; At a src-block with a session and function called with
21014 ;; an ARG: switch to the buffer related to the inferior
21015 ;; process.
21016 (switch-to-buffer
21017 (funcall (intern (concat "org-babel-prep-session:" lang))
21018 session params))))))
21019 (keyword
21020 (if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
21021 (org-open-link-from-string
21022 (format "[[%s]]"
21023 (expand-file-name
21024 (let ((value (org-element-property :value element)))
21025 (cond ((not (org-string-nw-p value))
21026 (user-error "No file to edit"))
21027 ((string-match "\\`\"\\(.*?\\)\"" value)
21028 (match-string 1 value))
21029 ((string-match "\\`[^ \t\"]\\S-*" value)
21030 (match-string 0 value))
21031 (t (user-error "No valid file specified")))))))
21032 (user-error "No special environment to edit here")))
21033 (table
21034 (if (eq (org-element-property :type element) 'table.el)
21035 (org-edit-table.el)
21036 (call-interactively 'org-table-edit-formulas)))
21037 ;; Only Org tables contain `table-row' type elements.
21038 (table-row (call-interactively 'org-table-edit-formulas))
21039 (example-block (org-edit-src-code))
21040 (export-block (org-edit-export-block))
21041 (fixed-width (org-edit-fixed-width-region))
21042 (otherwise
21043 ;; No notable element at point. Though, we may be at a link or
21044 ;; a footnote reference, which are objects. Thus, scan deeper.
21045 (let ((context (org-element-context element)))
21046 (case (org-element-type context)
21047 (link (call-interactively #'ffap))
21048 (footnote-reference (org-edit-footnote-reference))
21049 (t (user-error "No special environment to edit here"))))))))
21051 (defvar org-table-coordinate-overlays) ; defined in org-table.el
21052 (defun org-ctrl-c-ctrl-c (&optional arg)
21053 "Set tags in headline, or update according to changed information at point.
21055 This command does many different things, depending on context:
21057 - If a function in `org-ctrl-c-ctrl-c-hook' recognizes this location,
21058 this is what we do.
21060 - If the cursor is on a statistics cookie, update it.
21062 - If the cursor is in a headline, prompt for tags and insert them
21063 into the current line, aligned to `org-tags-column'. When called
21064 with prefix arg, realign all tags in the current buffer.
21066 - If the cursor is in one of the special #+KEYWORD lines, this
21067 triggers scanning the buffer for these lines and updating the
21068 information.
21070 - If the cursor is inside a table, realign the table. This command
21071 works even if the automatic table editor has been turned off.
21073 - If the cursor is on a #+TBLFM line, re-apply the formulas to
21074 the entire table.
21076 - If the cursor is at a footnote reference or definition, jump to
21077 the corresponding definition or references, respectively.
21079 - If the cursor is a the beginning of a dynamic block, update it.
21081 - If the current buffer is a capture buffer, close note and file it.
21083 - If the cursor is on a <<<target>>>, update radio targets and
21084 corresponding links in this buffer.
21086 - If the cursor is on a numbered item in a plain list, renumber the
21087 ordered list.
21089 - If the cursor is on a checkbox, toggle it.
21091 - If the cursor is on a code block, evaluate it. The variable
21092 `org-confirm-babel-evaluate' can be used to control prompting
21093 before code block evaluation, by default every code block
21094 evaluation requires confirmation. Code block evaluation can be
21095 inhibited by setting `org-babel-no-eval-on-ctrl-c-ctrl-c'."
21096 (interactive "P")
21097 (cond
21098 ((or (and (boundp 'org-clock-overlays) org-clock-overlays)
21099 org-occur-highlights)
21100 (and (boundp 'org-clock-overlays) (org-clock-remove-overlays))
21101 (org-remove-occur-highlights)
21102 (message "Temporary highlights/overlays removed from current buffer"))
21103 ((and (local-variable-p 'org-finish-function (current-buffer))
21104 (fboundp org-finish-function))
21105 (funcall org-finish-function))
21106 ((run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-hook))
21108 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
21109 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21110 (user-error "C-c C-c can do nothing useful at this location"))
21111 (let* ((context (org-element-context))
21112 (type (org-element-type context)))
21113 (case type
21114 ;; When at a link, act according to the parent instead.
21115 (link (setq context (org-element-property :parent context))
21116 (setq type (org-element-type context)))
21117 ;; Unsupported object types: refer to the first supported
21118 ;; element or object containing it.
21119 ((bold code entity export-snippet inline-babel-call inline-src-block
21120 italic latex-fragment line-break macro strike-through subscript
21121 superscript underline verbatim)
21122 (setq context
21123 (org-element-lineage
21124 context '(radio-target paragraph verse-block table-cell)))))
21125 ;; For convenience: at the first line of a paragraph on the
21126 ;; same line as an item, apply function on that item instead.
21127 (when (eq type 'paragraph)
21128 (let ((parent (org-element-property :parent context)))
21129 (when (and (eq (org-element-type parent) 'item)
21130 (= (line-beginning-position)
21131 (org-element-property :begin parent)))
21132 (setq context parent type 'item))))
21133 ;; Act according to type of element or object at point.
21134 (case type
21135 (clock (org-clock-update-time-maybe))
21136 (dynamic-block
21137 (save-excursion
21138 (goto-char (org-element-property :post-affiliated context))
21139 (org-update-dblock)))
21140 (footnote-definition
21141 (goto-char (org-element-property :post-affiliated context))
21142 (call-interactively 'org-footnote-action))
21143 (footnote-reference (call-interactively 'org-footnote-action))
21144 ((headline inlinetask)
21145 (save-excursion (goto-char (org-element-property :begin context))
21146 (call-interactively 'org-set-tags)))
21147 (item
21148 ;; At an item: a double C-u set checkbox to "[-]"
21149 ;; unconditionally, whereas a single one will toggle its
21150 ;; presence. Without a universal argument, if the item
21151 ;; has a checkbox, toggle it. Otherwise repair the list.
21152 (let* ((box (org-element-property :checkbox context))
21153 (struct (org-element-property :structure context))
21154 (old-struct (copy-tree struct))
21155 (parents (org-list-parents-alist struct))
21156 (prevs (org-list-prevs-alist struct))
21157 (orderedp (org-not-nil (org-entry-get nil "ORDERED"))))
21158 (org-list-set-checkbox
21159 (org-element-property :begin context) struct
21160 (cond ((equal arg '(16)) "[-]")
21161 ((and (not box) (equal arg '(4))) "[ ]")
21162 ((or (not box) (equal arg '(4))) nil)
21163 ((eq box 'on) "[ ]")
21164 (t "[X]")))
21165 ;; Mimic `org-list-write-struct' but with grabbing
21166 ;; a return value from `org-list-struct-fix-box'.
21167 (org-list-struct-fix-ind struct parents 2)
21168 (org-list-struct-fix-item-end struct)
21169 (org-list-struct-fix-bul struct prevs)
21170 (org-list-struct-fix-ind struct parents)
21171 (let ((block-item
21172 (org-list-struct-fix-box struct parents prevs orderedp)))
21173 (if (and box (equal struct old-struct))
21174 (if (equal arg '(16))
21175 (message "Checkboxes already reset")
21176 (user-error "Cannot toggle this checkbox: %s"
21177 (if (eq box 'on)
21178 "all subitems checked"
21179 "unchecked subitems")))
21180 (org-list-struct-apply-struct struct old-struct)
21181 (org-update-checkbox-count-maybe))
21182 (when block-item
21183 (message "Checkboxes were removed due to empty box at line %d"
21184 (org-current-line block-item))))))
21185 (keyword
21186 (let ((org-inhibit-startup-visibility-stuff t)
21187 (org-startup-align-all-tables nil))
21188 (when (boundp 'org-table-coordinate-overlays)
21189 (mapc 'delete-overlay org-table-coordinate-overlays)
21190 (setq org-table-coordinate-overlays nil))
21191 (org-save-outline-visibility 'use-markers (org-mode-restart)))
21192 (message "Local setup has been refreshed"))
21193 (plain-list
21194 ;; At a plain list, with a double C-u argument, set
21195 ;; checkboxes of each item to "[-]", whereas a single one
21196 ;; will toggle their presence according to the state of the
21197 ;; first item in the list. Without an argument, repair the
21198 ;; list.
21199 (let* ((begin (org-element-property :contents-begin context))
21200 (beginm (move-marker (make-marker) begin))
21201 (struct (org-element-property :structure context))
21202 (old-struct (copy-tree struct))
21203 (first-box (save-excursion
21204 (goto-char begin)
21205 (looking-at org-list-full-item-re)
21206 (match-string-no-properties 3)))
21207 (new-box (cond ((equal arg '(16)) "[-]")
21208 ((equal arg '(4)) (unless first-box "[ ]"))
21209 ((equal first-box "[X]") "[ ]")
21210 (t "[X]"))))
21211 (cond
21212 (arg
21213 (mapc (lambda (pos) (org-list-set-checkbox pos struct new-box))
21214 (org-list-get-all-items
21215 begin struct (org-list-prevs-alist struct))))
21216 ((and first-box (eq (point) begin))
21217 ;; For convenience, when point is at bol on the first
21218 ;; item of the list and no argument is provided, simply
21219 ;; toggle checkbox of that item, if any.
21220 (org-list-set-checkbox begin struct new-box)))
21221 (org-list-write-struct
21222 struct (org-list-parents-alist struct) old-struct)
21223 (org-update-checkbox-count-maybe)
21224 (save-excursion (goto-char beginm) (org-list-send-list 'maybe))))
21225 ((property-drawer node-property)
21226 (call-interactively 'org-property-action))
21227 ((radio-target target)
21228 (call-interactively 'org-update-radio-target-regexp))
21229 (statistics-cookie
21230 (call-interactively 'org-update-statistics-cookies))
21231 ((table table-cell table-row)
21232 ;; At a table, recalculate every field and align it. Also
21233 ;; send the table if necessary. If the table has
21234 ;; a `table.el' type, just give up. At a table row or
21235 ;; cell, maybe recalculate line but always align table.
21236 (if (eq (org-element-property :type context) 'table.el)
21237 (message "%s" (substitute-command-keys "\\<org-mode-map>\
21238 Use \\[org-edit-special] to edit table.el tables"))
21239 (let ((org-enable-table-editor t))
21240 (if (or (eq type 'table)
21241 ;; Check if point is at a TBLFM line.
21242 (and (eq type 'table-row)
21243 (= (point) (org-element-property :end context))))
21244 (save-excursion
21245 (if (org-at-TBLFM-p)
21246 (progn (require 'org-table)
21247 (org-table-calc-current-TBLFM))
21248 (goto-char (org-element-property :contents-begin context))
21249 (org-call-with-arg 'org-table-recalculate (or arg t))
21250 (orgtbl-send-table 'maybe)))
21251 (org-table-maybe-eval-formula)
21252 (cond (arg (call-interactively 'org-table-recalculate))
21253 ((org-table-maybe-recalculate-line))
21254 (t (org-table-align)))))))
21255 (timestamp (org-timestamp-change 0 'day))
21256 (otherwise
21257 (or (run-hook-with-args-until-success 'org-ctrl-c-ctrl-c-final-hook)
21258 (user-error
21259 "C-c C-c can do nothing useful at this location")))))))))
21261 (defun org-mode-restart ()
21262 (interactive)
21263 (let ((indent-status (org-bound-and-true-p org-indent-mode)))
21264 (funcall major-mode)
21265 (hack-local-variables)
21266 (when (and indent-status (not (org-bound-and-true-p org-indent-mode)))
21267 (org-indent-mode -1)))
21268 (message "%s restarted" major-mode))
21270 (defun org-kill-note-or-show-branches ()
21271 "If this is a Note buffer, abort storing the note. Else call `show-branches'."
21272 (interactive)
21273 (if (not org-finish-function)
21274 (progn
21275 (outline-hide-subtree)
21276 (call-interactively 'outline-show-branches))
21277 (let ((org-note-abort t))
21278 (funcall org-finish-function))))
21280 (defun org-delete-indentation (&optional ARG)
21281 "Join current line to previous and fix whitespace at join.
21283 If previous line is a headline add to headline title. Otherwise
21284 the function calls `delete-indentation'.
21286 With argument, join this line to following line."
21287 (interactive "*P")
21288 (if (save-excursion
21289 (if ARG (beginning-of-line)
21290 (forward-line -1))
21291 (looking-at org-complex-heading-regexp))
21292 ;; At headline.
21293 (let ((tags-column (when (match-beginning 5)
21294 (save-excursion (goto-char (match-beginning 5))
21295 (current-column))))
21296 (string (concat " " (progn (when ARG (forward-line 1))
21297 (org-trim (delete-and-extract-region
21298 (line-beginning-position)
21299 (line-end-position)))))))
21300 (unless (bobp) (delete-region (point) (1- (point))))
21301 (goto-char (or (match-end 4)
21302 (match-beginning 5)
21303 (match-end 0)))
21304 (skip-chars-backward " \t")
21305 (save-excursion (insert string))
21306 ;; Adjust alignment of tags.
21307 (when tags-column
21308 (org-align-tags-here (if org-auto-align-tags
21309 org-tags-column
21310 tags-column))))
21311 (delete-indentation ARG)))
21313 (defun org-open-line (n)
21314 "Insert a new row in tables, call `open-line' elsewhere.
21315 If `org-special-ctrl-o' is nil, just call `open-line' everywhere."
21316 (interactive "*p")
21317 (cond
21318 ((not org-special-ctrl-o)
21319 (open-line n))
21320 ((org-at-table-p)
21321 (org-table-insert-row))
21323 (open-line n))))
21325 (defun org-return (&optional indent)
21326 "Goto next table row or insert a newline.
21328 Calls `org-table-next-row' or `newline', depending on context.
21330 When optional INDENT argument is non-nil, call
21331 `newline-and-indent' instead of `newline'.
21333 When `org-return-follows-link' is non-nil and point is on
21334 a timestamp or a link, call `org-open-at-point'. However, it
21335 will not happen if point is in a table or on a \"dead\"
21336 object (e.g., within a comment). In these case, you need to use
21337 `org-open-at-point' directly."
21338 (interactive)
21339 (let ((context (if org-return-follows-link (org-element-context)
21340 (org-element-at-point))))
21341 (cond
21342 ;; In a table, call `org-table-next-row'.
21343 ((or (and (eq (org-element-type context) 'table)
21344 (>= (point) (org-element-property :contents-begin context))
21345 (< (point) (org-element-property :contents-end context)))
21346 (org-element-lineage context '(table-row table-cell) t))
21347 (org-table-justify-field-maybe)
21348 (call-interactively #'org-table-next-row))
21349 ;; On a link or a timestamp, call `org-open-line' if
21350 ;; `org-return-follows-link' allows it. Tolerate fuzzy
21351 ;; locations, e.g., in a comment, as `org-open-line'.
21352 ((and org-return-follows-link
21353 (or (org-at-timestamp-p t)
21354 (org-at-date-range-p t)
21355 (org-in-regexp org-any-link-re)))
21356 (call-interactively #'org-open-at-point))
21357 ;; Insert newline in heading, but preserve tags.
21358 ((and (not (bolp))
21359 (save-excursion (beginning-of-line)
21360 (looking-at org-complex-heading-regexp)))
21361 ;; At headline. Split line. However, if point is on keyword,
21362 ;; priority cookie or tags, do not break any of them: add
21363 ;; a newline after the headline instead.
21364 (let ((tags-column (and (match-beginning 5)
21365 (save-excursion (goto-char (match-beginning 5))
21366 (current-column))))
21367 (string
21368 (when (and (match-end 4)
21369 (>= (point)
21370 (or (match-end 3) (match-end 2) (1+ (match-end 1))))
21371 (<= (point) (match-end 4)))
21372 (delete-and-extract-region (point) (match-end 4)))))
21373 (when (and tags-column string) ; Adjust tag alignment.
21374 (org-align-tags-here
21375 (if org-auto-align-tags org-tags-column tags-column)))
21376 (end-of-line)
21377 (org-show-entry)
21378 (if indent (newline-and-indent) (newline))
21379 (when string (save-excursion (insert (org-trim string))))))
21380 ;; In a list, make sure indenting keeps trailing text within.
21381 ((and indent
21382 (not (eolp))
21383 (org-element-lineage context '(item)))
21384 (let ((trailing-data
21385 (delete-and-extract-region (point) (line-end-position))))
21386 (newline-and-indent)
21387 (save-excursion (insert trailing-data))))
21388 (t (if indent (newline-and-indent) (newline))))))
21390 (defun org-return-indent ()
21391 "Goto next table row or insert a newline and indent.
21392 Calls `org-table-next-row' or `newline-and-indent', depending on
21393 context. See the individual commands for more information."
21394 (interactive)
21395 (org-return t))
21397 (defun org-ctrl-c-star ()
21398 "Compute table, or change heading status of lines.
21399 Calls `org-table-recalculate' or `org-toggle-heading',
21400 depending on context."
21401 (interactive)
21402 (cond
21403 ((org-at-table-p)
21404 (call-interactively 'org-table-recalculate))
21406 ;; Convert all lines in region to list items
21407 (call-interactively 'org-toggle-heading))))
21409 (defun org-ctrl-c-minus ()
21410 "Insert separator line in table or modify bullet status of line.
21411 Also turns a plain line or a region of lines into list items.
21412 Calls `org-table-insert-hline', `org-toggle-item', or
21413 `org-cycle-list-bullet', depending on context."
21414 (interactive)
21415 (cond
21416 ((org-at-table-p)
21417 (call-interactively 'org-table-insert-hline))
21418 ((org-region-active-p)
21419 (call-interactively 'org-toggle-item))
21420 ((org-in-item-p)
21421 (call-interactively 'org-cycle-list-bullet))
21423 (call-interactively 'org-toggle-item))))
21425 (defun org-toggle-item (arg)
21426 "Convert headings or normal lines to items, items to normal lines.
21427 If there is no active region, only the current line is considered.
21429 If the first non blank line in the region is a headline, convert
21430 all headlines to items, shifting text accordingly.
21432 If it is an item, convert all items to normal lines.
21434 If it is normal text, change region into a list of items.
21435 With a prefix argument ARG, change the region in a single item."
21436 (interactive "P")
21437 (let ((shift-text
21438 (function
21439 ;; Shift text in current section to IND, from point to END.
21440 ;; The function leaves point to END line.
21441 (lambda (ind end)
21442 (let ((min-i 1000) (end (copy-marker end)))
21443 ;; First determine the minimum indentation (MIN-I) of
21444 ;; the text.
21445 (save-excursion
21446 (catch 'exit
21447 (while (< (point) end)
21448 (let ((i (org-get-indentation)))
21449 (cond
21450 ;; Skip blank lines and inline tasks.
21451 ((looking-at "^[ \t]*$"))
21452 ((looking-at org-outline-regexp-bol))
21453 ;; We can't find less than 0 indentation.
21454 ((zerop i) (throw 'exit (setq min-i 0)))
21455 ((< i min-i) (setq min-i i))))
21456 (forward-line))))
21457 ;; Then indent each line so that a line indented to
21458 ;; MIN-I becomes indented to IND. Ignore blank lines
21459 ;; and inline tasks in the process.
21460 (let ((delta (- ind min-i)))
21461 (while (< (point) end)
21462 (unless (or (looking-at "^[ \t]*$")
21463 (looking-at org-outline-regexp-bol))
21464 (org-indent-line-to (+ (org-get-indentation) delta)))
21465 (forward-line)))))))
21466 (skip-blanks
21467 (function
21468 ;; Return beginning of first non-blank line, starting from
21469 ;; line at POS.
21470 (lambda (pos)
21471 (save-excursion
21472 (goto-char pos)
21473 (skip-chars-forward " \r\t\n")
21474 (point-at-bol)))))
21475 beg end)
21476 ;; Determine boundaries of changes.
21477 (if (org-region-active-p)
21478 (setq beg (funcall skip-blanks (region-beginning))
21479 end (copy-marker (region-end)))
21480 (setq beg (funcall skip-blanks (point-at-bol))
21481 end (copy-marker (point-at-eol))))
21482 ;; Depending on the starting line, choose an action on the text
21483 ;; between BEG and END.
21484 (org-with-limited-levels
21485 (save-excursion
21486 (goto-char beg)
21487 (cond
21488 ;; Case 1. Start at an item: de-itemize. Note that it only
21489 ;; happens when a region is active: `org-ctrl-c-minus'
21490 ;; would call `org-cycle-list-bullet' otherwise.
21491 ((org-at-item-p)
21492 (while (< (point) end)
21493 (when (org-at-item-p)
21494 (skip-chars-forward " \t")
21495 (delete-region (point) (match-end 0)))
21496 (forward-line)))
21497 ;; Case 2. Start at an heading: convert to items.
21498 ((org-at-heading-p)
21499 (let* ((bul (org-list-bullet-string "-"))
21500 (bul-len (length bul))
21501 (done (org-entry-is-done-p))
21502 (todo (org-entry-is-todo-p))
21503 ;; Indentation of the first heading. It should be
21504 ;; relative to the indentation of its parent, if any.
21505 (start-ind (save-excursion
21506 (cond
21507 ((not org-adapt-indentation) 0)
21508 ((not (outline-previous-heading)) 0)
21509 (t (length (match-string 0))))))
21510 ;; Level of first heading. Further headings will be
21511 ;; compared to it to determine hierarchy in the list.
21512 (ref-level (org-reduced-level (org-outline-level))))
21513 (when (or done todo) (org-todo ""))
21514 (while (< (point) end)
21515 (let* ((level (org-reduced-level (org-outline-level)))
21516 (delta (max 0 (- level ref-level))))
21517 ;; If current headline is less indented than the first
21518 ;; one, set it as reference, in order to preserve
21519 ;; subtrees.
21520 (when (< level ref-level) (setq ref-level level))
21521 (replace-match bul t t)
21522 (org-indent-line-to (+ start-ind (* delta bul-len)))
21523 (when (or done todo)
21524 (let* ((struct (org-list-struct))
21525 (old (copy-tree struct)))
21526 (org-list-set-checkbox (line-beginning-position)
21527 struct
21528 (if done "[X]" "[ ]"))
21529 (org-list-write-struct struct
21530 (org-list-parents-alist struct)
21531 old)))
21532 ;; Ensure all text down to END (or SECTION-END) belongs
21533 ;; to the newly created item.
21534 (let ((section-end (save-excursion
21535 (or (outline-next-heading) (point)))))
21536 (forward-line)
21537 (funcall shift-text
21538 (+ start-ind (* (1+ delta) bul-len))
21539 (min end section-end)))))))
21540 ;; Case 3. Normal line with ARG: make the first line of region
21541 ;; an item, and shift indentation of others lines to
21542 ;; set them as item's body.
21543 (arg (let* ((bul (org-list-bullet-string "-"))
21544 (bul-len (length bul))
21545 (ref-ind (org-get-indentation)))
21546 (skip-chars-forward " \t")
21547 (insert bul)
21548 (forward-line)
21549 (while (< (point) end)
21550 ;; Ensure that lines less indented than first one
21551 ;; still get included in item body.
21552 (funcall shift-text
21553 (+ ref-ind bul-len)
21554 (min end (save-excursion (or (outline-next-heading)
21555 (point)))))
21556 (forward-line))))
21557 ;; Case 4. Normal line without ARG: turn each non-item line
21558 ;; into an item.
21560 (while (< (point) end)
21561 (unless (or (org-at-heading-p) (org-at-item-p))
21562 (if (looking-at "\\([ \t]*\\)\\(\\S-\\)")
21563 (replace-match
21564 (concat "\\1" (org-list-bullet-string "-") "\\2"))))
21565 (forward-line))))))))
21567 (defun org-toggle-heading (&optional nstars)
21568 "Convert headings to normal text, or items or text to headings.
21569 If there is no active region, only convert the current line.
21571 With a \\[universal-argument] prefix, convert the whole list at
21572 point into heading.
21574 In a region:
21576 - If the first non blank line is a headline, remove the stars
21577 from all headlines in the region.
21579 - If it is a normal line, turn each and every normal line (i.e.,
21580 not an heading or an item) in the region into headings. If you
21581 want to convert only the first line of this region, use one
21582 universal prefix argument.
21584 - If it is a plain list item, turn all plain list items into headings.
21586 When converting a line into a heading, the number of stars is chosen
21587 such that the lines become children of the current entry. However,
21588 when a numeric prefix argument is given, its value determines the
21589 number of stars to add."
21590 (interactive "P")
21591 (let ((skip-blanks
21592 (function
21593 ;; Return beginning of first non-blank line, starting from
21594 ;; line at POS.
21595 (lambda (pos)
21596 (save-excursion
21597 (goto-char pos)
21598 (while (org-at-comment-p) (forward-line))
21599 (skip-chars-forward " \r\t\n")
21600 (point-at-bol)))))
21601 beg end toggled)
21602 ;; Determine boundaries of changes. If a universal prefix has
21603 ;; been given, put the list in a region. If region ends at a bol,
21604 ;; do not consider the last line to be in the region.
21606 (when (and current-prefix-arg (org-at-item-p))
21607 (if (listp current-prefix-arg) (setq current-prefix-arg 1))
21608 (org-mark-element))
21610 (if (org-region-active-p)
21611 (setq beg (funcall skip-blanks (region-beginning))
21612 end (copy-marker (save-excursion
21613 (goto-char (region-end))
21614 (if (bolp) (point) (point-at-eol)))))
21615 (setq beg (funcall skip-blanks (point-at-bol))
21616 end (copy-marker (point-at-eol))))
21617 ;; Ensure inline tasks don't count as headings.
21618 (org-with-limited-levels
21619 (save-excursion
21620 (goto-char beg)
21621 (cond
21622 ;; Case 1. Started at an heading: de-star headings.
21623 ((org-at-heading-p)
21624 (while (< (point) end)
21625 (when (org-at-heading-p t)
21626 (looking-at org-outline-regexp) (replace-match "")
21627 (setq toggled t))
21628 (forward-line)))
21629 ;; Case 2. Started at an item: change items into headlines.
21630 ;; One star will be added by `org-list-to-subtree'.
21631 ((org-at-item-p)
21632 (while (< (point) end)
21633 (when (org-at-item-p)
21634 ;; Pay attention to cases when region ends before list.
21635 (let* ((struct (org-list-struct))
21636 (list-end (min (org-list-get-bottom-point struct) (1+ end))))
21637 (save-restriction
21638 (narrow-to-region (point) list-end)
21639 (insert (org-list-to-subtree (org-list-parse-list t)))))
21640 (setq toggled t))
21641 (forward-line)))
21642 ;; Case 3. Started at normal text: make every line an heading,
21643 ;; skipping headlines and items.
21644 (t (let* ((stars
21645 (make-string
21646 (if (numberp nstars) nstars (or (org-current-level) 0)) ?*))
21647 (add-stars
21648 (cond (nstars "") ; stars from prefix only
21649 ((equal stars "") "*") ; before first heading
21650 (org-odd-levels-only "**") ; inside heading, odd
21651 (t "*"))) ; inside heading, oddeven
21652 (rpl (concat stars add-stars " "))
21653 (lend (if (listp nstars) (save-excursion (end-of-line) (point)))))
21654 (while (< (point) (if (equal nstars '(4)) lend end))
21655 (when (and (not (or (org-at-heading-p) (org-at-item-p) (org-at-comment-p)))
21656 (looking-at "\\([ \t]*\\)\\(\\S-\\)"))
21657 (replace-match (concat rpl (match-string 2))) (setq toggled t))
21658 (forward-line)))))))
21659 (unless toggled (message "Cannot toggle heading from here"))))
21661 (defun org-meta-return (&optional _arg)
21662 "Insert a new heading or wrap a region in a table.
21663 Calls `org-insert-heading' or `org-table-wrap-region', depending
21664 on context. See the individual commands for more information."
21665 (interactive)
21666 (org-check-before-invisible-edit 'insert)
21667 (or (run-hook-with-args-until-success 'org-metareturn-hook)
21668 (call-interactively (if (org-at-table-p) #'org-table-wrap-region
21669 #'org-insert-heading))))
21671 ;;; Menu entries
21673 (defsubst org-in-subtree-not-table-p ()
21674 "Are we in a subtree and not in a table?"
21675 (and (not (org-before-first-heading-p))
21676 (not (org-at-table-p))))
21678 ;; Define the Org-mode menus
21679 (easy-menu-define org-tbl-menu org-mode-map "Tbl menu"
21680 '("Tbl"
21681 ["Align" org-ctrl-c-ctrl-c :active (org-at-table-p)]
21682 ["Next Field" org-cycle (org-at-table-p)]
21683 ["Previous Field" org-shifttab (org-at-table-p)]
21684 ["Next Row" org-return (org-at-table-p)]
21685 "--"
21686 ["Blank Field" org-table-blank-field (org-at-table-p)]
21687 ["Edit Field" org-table-edit-field (org-at-table-p)]
21688 ["Copy Field from Above" org-table-copy-down (org-at-table-p)]
21689 "--"
21690 ("Column"
21691 ["Move Column Left" org-metaleft (org-at-table-p)]
21692 ["Move Column Right" org-metaright (org-at-table-p)]
21693 ["Delete Column" org-shiftmetaleft (org-at-table-p)]
21694 ["Insert Column" org-shiftmetaright (org-at-table-p)])
21695 ("Row"
21696 ["Move Row Up" org-metaup (org-at-table-p)]
21697 ["Move Row Down" org-metadown (org-at-table-p)]
21698 ["Delete Row" org-shiftmetaup (org-at-table-p)]
21699 ["Insert Row" org-shiftmetadown (org-at-table-p)]
21700 ["Sort lines in region" org-table-sort-lines (org-at-table-p)]
21701 "--"
21702 ["Insert Hline" org-ctrl-c-minus (org-at-table-p)])
21703 ("Rectangle"
21704 ["Copy Rectangle" org-copy-special (org-at-table-p)]
21705 ["Cut Rectangle" org-cut-special (org-at-table-p)]
21706 ["Paste Rectangle" org-paste-special (org-at-table-p)]
21707 ["Fill Rectangle" org-table-wrap-region (org-at-table-p)])
21708 "--"
21709 ("Calculate"
21710 ["Set Column Formula" org-table-eval-formula (org-at-table-p)]
21711 ["Set Field Formula" (org-table-eval-formula '(4)) :active (org-at-table-p) :keys "C-u C-c ="]
21712 ["Edit Formulas" org-edit-special (org-at-table-p)]
21713 "--"
21714 ["Recalculate line" org-table-recalculate (org-at-table-p)]
21715 ["Recalculate all" (lambda () (interactive) (org-table-recalculate '(4))) :active (org-at-table-p) :keys "C-u C-c *"]
21716 ["Iterate all" (lambda () (interactive) (org-table-recalculate '(16))) :active (org-at-table-p) :keys "C-u C-u C-c *"]
21717 "--"
21718 ["Toggle Recalculate Mark" org-table-rotate-recalc-marks (org-at-table-p)]
21719 "--"
21720 ["Sum Column/Rectangle" org-table-sum
21721 (or (org-at-table-p) (org-region-active-p))]
21722 ["Which Column?" org-table-current-column (org-at-table-p)])
21723 ["Debug Formulas"
21724 org-table-toggle-formula-debugger
21725 :style toggle :selected (org-bound-and-true-p org-table-formula-debug)]
21726 ["Show Col/Row Numbers"
21727 org-table-toggle-coordinate-overlays
21728 :style toggle
21729 :selected (org-bound-and-true-p org-table-overlay-coordinates)]
21730 "--"
21731 ["Create" org-table-create (and (not (org-at-table-p))
21732 org-enable-table-editor)]
21733 ["Convert Region" org-table-convert-region (not (org-at-table-p 'any))]
21734 ["Import from File" org-table-import (not (org-at-table-p))]
21735 ["Export to File" org-table-export (org-at-table-p)]
21736 "--"
21737 ["Create/Convert from/to table.el" org-table-create-with-table.el t]
21738 "--"
21739 ("Plot"
21740 ["Ascii plot" orgtbl-ascii-plot :active (org-at-table-p) :keys "C-c \" a"]
21741 ["Gnuplot" org-plot/gnuplot :active (org-at-table-p) :keys "C-c \" g"])))
21743 (easy-menu-define org-org-menu org-mode-map "Org menu"
21744 '("Org"
21745 ("Show/Hide"
21746 ["Cycle Visibility" org-cycle :active (or (bobp) (outline-on-heading-p))]
21747 ["Cycle Global Visibility" org-shifttab :active (not (org-at-table-p))]
21748 ["Sparse Tree..." org-sparse-tree t]
21749 ["Reveal Context" org-reveal t]
21750 ["Show All" outline-show-all t]
21751 "--"
21752 ["Subtree to indirect buffer" org-tree-to-indirect-buffer t])
21753 "--"
21754 ["New Heading" org-insert-heading t]
21755 ("Navigate Headings"
21756 ["Up" outline-up-heading t]
21757 ["Next" outline-next-visible-heading t]
21758 ["Previous" outline-previous-visible-heading t]
21759 ["Next Same Level" outline-forward-same-level t]
21760 ["Previous Same Level" outline-backward-same-level t]
21761 "--"
21762 ["Jump" org-goto t])
21763 ("Edit Structure"
21764 ["Refile Subtree" org-refile (org-in-subtree-not-table-p)]
21765 "--"
21766 ["Move Subtree Up" org-metaup (org-at-heading-p)]
21767 ["Move Subtree Down" org-metadown (org-at-heading-p)]
21768 "--"
21769 ["Copy Subtree" org-copy-special (org-in-subtree-not-table-p)]
21770 ["Cut Subtree" org-cut-special (org-in-subtree-not-table-p)]
21771 ["Paste Subtree" org-paste-special (not (org-at-table-p))]
21772 "--"
21773 ["Clone subtree, shift time" org-clone-subtree-with-time-shift t]
21774 "--"
21775 ["Copy visible text" org-copy-visible t]
21776 "--"
21777 ["Promote Heading" org-metaleft (org-in-subtree-not-table-p)]
21778 ["Promote Subtree" org-shiftmetaleft (org-in-subtree-not-table-p)]
21779 ["Demote Heading" org-metaright (org-in-subtree-not-table-p)]
21780 ["Demote Subtree" org-shiftmetaright (org-in-subtree-not-table-p)]
21781 "--"
21782 ["Sort Region/Children" org-sort t]
21783 "--"
21784 ["Convert to odd levels" org-convert-to-odd-levels t]
21785 ["Convert to odd/even levels" org-convert-to-oddeven-levels t])
21786 ("Editing"
21787 ["Emphasis..." org-emphasize t]
21788 ["Edit Source Example" org-edit-special t]
21789 "--"
21790 ["Footnote new/jump" org-footnote-action t]
21791 ["Footnote extra" (org-footnote-action t) :active t :keys "C-u C-c C-x f"])
21792 ("Archive"
21793 ["Archive (default method)" org-archive-subtree-default (org-in-subtree-not-table-p)]
21794 "--"
21795 ["Move Subtree to Archive file" org-archive-subtree (org-in-subtree-not-table-p)]
21796 ["Toggle ARCHIVE tag" org-toggle-archive-tag (org-in-subtree-not-table-p)]
21797 ["Move subtree to Archive sibling" org-archive-to-archive-sibling (org-in-subtree-not-table-p)]
21799 "--"
21800 ("Hyperlinks"
21801 ["Store Link (Global)" org-store-link t]
21802 ["Find existing link to here" org-occur-link-in-agenda-files t]
21803 ["Insert Link" org-insert-link t]
21804 ["Follow Link" org-open-at-point t]
21805 "--"
21806 ["Next link" org-next-link t]
21807 ["Previous link" org-previous-link t]
21808 "--"
21809 ["Descriptive Links"
21810 org-toggle-link-display
21811 :style radio
21812 :selected org-descriptive-links
21814 ["Literal Links"
21815 org-toggle-link-display
21816 :style radio
21817 :selected (not org-descriptive-links)])
21818 "--"
21819 ("TODO Lists"
21820 ["TODO/DONE/-" org-todo t]
21821 ("Select keyword"
21822 ["Next keyword" org-shiftright (org-at-heading-p)]
21823 ["Previous keyword" org-shiftleft (org-at-heading-p)]
21824 ["Complete Keyword" pcomplete (assq :todo-keyword (org-context))]
21825 ["Next keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))]
21826 ["Previous keyword set" org-shiftcontrolright (and (> (length org-todo-sets) 1) (org-at-heading-p))])
21827 ["Show TODO Tree" org-show-todo-tree :active t :keys "C-c / t"]
21828 ["Global TODO list" org-todo-list :active t :keys "C-c a t"]
21829 "--"
21830 ["Enforce dependencies" (customize-variable 'org-enforce-todo-dependencies)
21831 :selected org-enforce-todo-dependencies :style toggle :active t]
21832 "Settings for tree at point"
21833 ["Do Children sequentially" org-toggle-ordered-property :style radio
21834 :selected (org-entry-get nil "ORDERED")
21835 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21836 ["Do Children parallel" org-toggle-ordered-property :style radio
21837 :selected (not (org-entry-get nil "ORDERED"))
21838 :active org-enforce-todo-dependencies :keys "C-c C-x o"]
21839 "--"
21840 ["Set Priority" org-priority t]
21841 ["Priority Up" org-shiftup t]
21842 ["Priority Down" org-shiftdown t]
21843 "--"
21844 ["Get news from all feeds" org-feed-update-all t]
21845 ["Go to the inbox of a feed..." org-feed-goto-inbox t]
21846 ["Customize feeds" (customize-variable 'org-feed-alist) t])
21847 ("TAGS and Properties"
21848 ["Set Tags" org-set-tags-command (not (org-before-first-heading-p))]
21849 ["Change tag in region" org-change-tag-in-region (org-region-active-p)]
21850 "--"
21851 ["Set property" org-set-property (not (org-before-first-heading-p))]
21852 ["Column view of properties" org-columns t]
21853 ["Insert Column View DBlock" org-insert-columns-dblock t])
21854 ("Dates and Scheduling"
21855 ["Timestamp" org-time-stamp (not (org-before-first-heading-p))]
21856 ["Timestamp (inactive)" org-time-stamp-inactive (not (org-before-first-heading-p))]
21857 ("Change Date"
21858 ["1 Day Later" org-shiftright (org-at-timestamp-p)]
21859 ["1 Day Earlier" org-shiftleft (org-at-timestamp-p)]
21860 ["1 ... Later" org-shiftup (org-at-timestamp-p)]
21861 ["1 ... Earlier" org-shiftdown (org-at-timestamp-p)])
21862 ["Compute Time Range" org-evaluate-time-range t]
21863 ["Schedule Item" org-schedule (not (org-before-first-heading-p))]
21864 ["Deadline" org-deadline (not (org-before-first-heading-p))]
21865 "--"
21866 ["Custom time format" org-toggle-time-stamp-overlays
21867 :style radio :selected org-display-custom-times]
21868 "--"
21869 ["Goto Calendar" org-goto-calendar t]
21870 ["Date from Calendar" org-date-from-calendar t]
21871 "--"
21872 ["Start/Restart Timer" org-timer-start t]
21873 ["Pause/Continue Timer" org-timer-pause-or-continue t]
21874 ["Stop Timer" org-timer-pause-or-continue :active t :keys "C-u C-c C-x ,"]
21875 ["Insert Timer String" org-timer t]
21876 ["Insert Timer Item" org-timer-item t])
21877 ("Logging work"
21878 ["Clock in" org-clock-in :active t :keys "C-c C-x C-i"]
21879 ["Switch task" (lambda () (interactive) (org-clock-in '(4))) :active t :keys "C-u C-c C-x C-i"]
21880 ["Clock out" org-clock-out t]
21881 ["Clock cancel" org-clock-cancel t]
21882 "--"
21883 ["Mark as default task" org-clock-mark-default-task t]
21884 ["Clock in, mark as default" (lambda () (interactive) (org-clock-in '(16))) :active t :keys "C-u C-u C-c C-x C-i"]
21885 ["Goto running clock" org-clock-goto t]
21886 "--"
21887 ["Display times" org-clock-display t]
21888 ["Create clock table" org-clock-report t]
21889 "--"
21890 ["Record DONE time"
21891 (progn (setq org-log-done (not org-log-done))
21892 (message "Switching to %s will %s record a timestamp"
21893 (car org-done-keywords)
21894 (if org-log-done "automatically" "not")))
21895 :style toggle :selected org-log-done])
21896 "--"
21897 ["Agenda Command..." org-agenda t]
21898 ["Set Restriction Lock" org-agenda-set-restriction-lock t]
21899 ("File List for Agenda")
21900 ("Special views current file"
21901 ["TODO Tree" org-show-todo-tree t]
21902 ["Check Deadlines" org-check-deadlines t]
21903 ["Timeline" org-timeline t]
21904 ["Tags/Property tree" org-match-sparse-tree t])
21905 "--"
21906 ["Export/Publish..." org-export-dispatch t]
21907 ("LaTeX"
21908 ["Org CDLaTeX mode" org-cdlatex-mode :style toggle
21909 :selected org-cdlatex-mode]
21910 ["Insert Environment" cdlatex-environment (fboundp 'cdlatex-environment)]
21911 ["Insert math symbol" cdlatex-math-symbol (fboundp 'cdlatex-math-symbol)]
21912 ["Modify math symbol" org-cdlatex-math-modify
21913 (org-inside-LaTeX-fragment-p)]
21914 ["Insert citation" org-reftex-citation t]
21915 "--"
21916 ["Template for BEAMER" (org-beamer-insert-options-template) t])
21917 "--"
21918 ("MobileOrg"
21919 ["Push Files and Views" org-mobile-push t]
21920 ["Get Captured and Flagged" org-mobile-pull t]
21921 ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
21922 "--"
21923 ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
21924 "--"
21925 ("Documentation"
21926 ["Show Version" org-version t]
21927 ["Info Documentation" org-info t])
21928 ("Customize"
21929 ["Browse Org Group" org-customize t]
21930 "--"
21931 ["Expand This Menu" org-create-customize-menu
21932 (fboundp 'customize-menu-create)])
21933 ["Send bug report" org-submit-bug-report t]
21934 "--"
21935 ("Refresh/Reload"
21936 ["Refresh setup current buffer" org-mode-restart t]
21937 ["Reload Org (after update)" org-reload t]
21938 ["Reload Org uncompiled" (org-reload t) :active t :keys "C-u C-c C-x !"])
21941 (defun org-info (&optional node)
21942 "Read documentation for Org-mode in the info system.
21943 With optional NODE, go directly to that node."
21944 (interactive)
21945 (info (format "(org)%s" (or node ""))))
21947 ;;;###autoload
21948 (defun org-submit-bug-report ()
21949 "Submit a bug report on Org-mode via mail.
21951 Don't hesitate to report any problems or inaccurate documentation.
21953 If you don't have setup sending mail from (X)Emacs, please copy the
21954 output buffer into your mail program, as it gives us important
21955 information about your Org-mode version and configuration."
21956 (interactive)
21957 (require 'reporter)
21958 (defvar reporter-prompt-for-summary-p)
21959 (org-load-modules-maybe)
21960 (org-require-autoloaded-modules)
21961 (let ((reporter-prompt-for-summary-p "Bug report subject: "))
21962 (reporter-submit-bug-report
21963 "emacs-orgmode@gnu.org"
21964 (org-version nil 'full)
21965 (let (list)
21966 (save-window-excursion
21967 (org-pop-to-buffer-same-window (get-buffer-create "*Warn about privacy*"))
21968 (delete-other-windows)
21969 (erase-buffer)
21970 (insert "You are about to submit a bug report to the Org-mode mailing list.
21972 We would like to add your full Org-mode and Outline configuration to the
21973 bug report. This greatly simplifies the work of the maintainer and
21974 other experts on the mailing list.
21976 HOWEVER, some variables you have customized may contain private
21977 information. The names of customers, colleagues, or friends, might
21978 appear in the form of file names, tags, todo states, or search strings.
21979 If you answer yes to the prompt, you might want to check and remove
21980 such private information before sending the email.")
21981 (add-text-properties (point-min) (point-max) '(face org-warning))
21982 (when (yes-or-no-p "Include your Org-mode configuration ")
21983 (mapatoms
21984 (lambda (v)
21985 (and (boundp v)
21986 (string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
21987 (or (and (symbol-value v)
21988 (string-match "\\(-hook\\|-function\\)\\'" (symbol-name v)))
21989 (and
21990 (get v 'custom-type) (get v 'standard-value)
21991 (not (equal (symbol-value v) (eval (car (get v 'standard-value)))))))
21992 (push v list)))))
21993 (kill-buffer (get-buffer "*Warn about privacy*"))
21994 list))
21995 nil nil
21996 "Remember to cover the basics, that is, what you expected to happen and
21997 what in fact did happen. You don't know how to make a good report? See
21999 http://orgmode.org/manual/Feedback.html#Feedback
22001 Your bug report will be posted to the Org-mode mailing list.
22002 ------------------------------------------------------------------------")
22003 (save-excursion
22004 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
22005 (replace-match "\\1Bug: \\3 [\\2]")))))
22008 (defun org-install-agenda-files-menu ()
22009 (let ((bl (buffer-list)))
22010 (save-excursion
22011 (while bl
22012 (set-buffer (pop bl))
22013 (if (derived-mode-p 'org-mode) (setq bl nil)))
22014 (when (derived-mode-p 'org-mode)
22015 (easy-menu-change
22016 '("Org") "File List for Agenda"
22017 (append
22018 (list
22019 ["Edit File List" (org-edit-agenda-file-list) t]
22020 ["Add/Move Current File to Front of List" org-agenda-file-to-front t]
22021 ["Remove Current File from List" org-remove-file t]
22022 ["Cycle through agenda files" org-cycle-agenda-files t]
22023 ["Occur in all agenda files" org-occur-in-agenda-files t]
22024 "--")
22025 (mapcar 'org-file-menu-entry (org-agenda-files t))))))))
22027 ;;;; Documentation
22029 (defun org-require-autoloaded-modules ()
22030 (interactive)
22031 (mapc 'require
22032 '(org-agenda org-archive org-attach org-clock org-colview org-id
22033 org-table org-timer)))
22035 ;;;###autoload
22036 (defun org-reload (&optional uncompiled)
22037 "Reload all org lisp files.
22038 With prefix arg UNCOMPILED, load the uncompiled versions."
22039 (interactive "P")
22040 (require 'loadhist)
22041 (let* ((org-dir (org-find-library-dir "org"))
22042 (contrib-dir (or (org-find-library-dir "org-contribdir") org-dir))
22043 (feature-re "^\\(org\\|ob\\|ox\\)\\(-.*\\)?")
22044 (remove-re (mapconcat 'identity
22045 (mapcar (lambda (f) (concat "^" f "$"))
22046 (list (if (featurep 'xemacs)
22047 "org-colview"
22048 "org-colview-xemacs")
22049 "org" "org-loaddefs" "org-version"))
22050 "\\|"))
22051 (feats (delete-dups
22052 (mapcar 'file-name-sans-extension
22053 (mapcar 'file-name-nondirectory
22054 (delq nil
22055 (mapcar 'feature-file
22056 features))))))
22057 (lfeat (append
22058 (sort
22059 (setq feats
22060 (delq nil (mapcar
22061 (lambda (f)
22062 (if (and (string-match feature-re f)
22063 (not (string-match remove-re f)))
22064 f nil))
22065 feats)))
22066 'string-lessp)
22067 (list "org-version" "org")))
22068 (load-suffixes (when (boundp 'load-suffixes) load-suffixes))
22069 (load-suffixes (if uncompiled (reverse load-suffixes) load-suffixes))
22070 load-uncore load-misses)
22071 (setq load-misses
22072 (delq 't
22073 (mapcar (lambda (f)
22074 (or (org-load-noerror-mustsuffix (concat org-dir f))
22075 (and (string= org-dir contrib-dir)
22076 (org-load-noerror-mustsuffix (concat contrib-dir f)))
22077 (and (org-load-noerror-mustsuffix (concat (org-find-library-dir f) f))
22078 (add-to-list 'load-uncore f 'append)
22081 lfeat)))
22082 (if load-uncore
22083 (message "The following feature%s found in load-path, please check if that's correct:\n%s"
22084 (if (> (length load-uncore) 1) "s were" " was") load-uncore))
22085 (if load-misses
22086 (message "Some error occurred while reloading Org feature%s\n%s\nPlease check *Messages*!\n%s"
22087 (if (> (length load-misses) 1) "s" "") load-misses (org-version nil 'full))
22088 (message "Successfully reloaded Org\n%s" (org-version nil 'full)))))
22090 ;;;###autoload
22091 (defun org-customize ()
22092 "Call the customize function with org as argument."
22093 (interactive)
22094 (org-load-modules-maybe)
22095 (org-require-autoloaded-modules)
22096 (customize-browse 'org))
22098 (defun org-create-customize-menu ()
22099 "Create a full customization menu for Org-mode, insert it into the menu."
22100 (interactive)
22101 (org-load-modules-maybe)
22102 (org-require-autoloaded-modules)
22103 (if (fboundp 'customize-menu-create)
22104 (progn
22105 (easy-menu-change
22106 '("Org") "Customize"
22107 `(["Browse Org group" org-customize t]
22108 "--"
22109 ,(customize-menu-create 'org)
22110 ["Set" Custom-set t]
22111 ["Save" Custom-save t]
22112 ["Reset to Current" Custom-reset-current t]
22113 ["Reset to Saved" Custom-reset-saved t]
22114 ["Reset to Standard Settings" Custom-reset-standard t]))
22115 (message "\"Org\"-menu now contains full customization menu"))
22116 (error "Cannot expand menu (outdated version of cus-edit.el)")))
22118 ;;;; Miscellaneous stuff
22120 ;;; Generally useful functions
22122 (defsubst org-get-at-eol (property n)
22123 "Get text property PROPERTY at the end of line less N characters."
22124 (get-text-property (- (point-at-eol) n) property))
22126 (defun org-find-text-property-in-string (prop s)
22127 "Return the first non-nil value of property PROP in string S."
22128 (or (get-text-property 0 prop s)
22129 (get-text-property (or (next-single-property-change 0 prop s) 0)
22130 prop s)))
22132 (defun org-display-warning (message) ;; Copied from Emacs-Muse
22133 "Display the given MESSAGE as a warning."
22134 (if (fboundp 'display-warning)
22135 (display-warning 'org message
22136 (if (featurep 'xemacs) 'warning :warning))
22137 (let ((buf (get-buffer-create "*Org warnings*")))
22138 (with-current-buffer buf
22139 (goto-char (point-max))
22140 (insert "Warning (Org): " message)
22141 (unless (bolp)
22142 (newline)))
22143 (display-buffer buf)
22144 (sit-for 0))))
22146 (defun org-eval (form)
22147 "Eval FORM and return result."
22148 (condition-case error
22149 (eval form)
22150 (error (format "%%![Error: %s]" error))))
22152 (defun org-in-clocktable-p ()
22153 "Check if the cursor is in a clocktable."
22154 (let ((pos (point)) start)
22155 (save-excursion
22156 (end-of-line 1)
22157 (and (re-search-backward "^[ \t]*#\\+BEGIN:[ \t]+clocktable" nil t)
22158 (setq start (match-beginning 0))
22159 (re-search-forward "^[ \t]*#\\+END:.*" nil t)
22160 (>= (match-end 0) pos)
22161 start))))
22163 (defun org-in-verbatim-emphasis ()
22164 (save-match-data
22165 (and (org-in-regexp org-emph-re 2)
22166 (>= (point) (match-beginning 3))
22167 (<= (point) (match-end 4))
22168 (member (match-string 3) '("=" "~")))))
22170 (defun org-goto-marker-or-bmk (marker &optional bookmark)
22171 "Go to MARKER, widen if necessary. When marker is not live, try BOOKMARK."
22172 (if (and marker (marker-buffer marker)
22173 (buffer-live-p (marker-buffer marker)))
22174 (progn
22175 (org-pop-to-buffer-same-window (marker-buffer marker))
22176 (if (or (> marker (point-max)) (< marker (point-min)))
22177 (widen))
22178 (goto-char marker)
22179 (org-show-context 'org-goto))
22180 (if bookmark
22181 (bookmark-jump bookmark)
22182 (error "Cannot find location"))))
22184 (defun org-quote-csv-field (s)
22185 "Quote field for inclusion in CSV material."
22186 (if (string-match "[\",]" s)
22187 (concat "\"" (mapconcat 'identity (split-string s "\"") "\"\"") "\"")
22190 (defun org-force-self-insert (N)
22191 "Needed to enforce self-insert under remapping."
22192 (interactive "p")
22193 (self-insert-command N))
22195 (defun org-string-width (s)
22196 "Compute width of string, ignoring invisible characters.
22197 This ignores character with invisibility property `org-link', and also
22198 characters with property `org-cwidth', because these will become invisible
22199 upon the next fontification round."
22200 (let (b l)
22201 (when (or (eq t buffer-invisibility-spec)
22202 (assq 'org-link buffer-invisibility-spec))
22203 (while (setq b (text-property-any 0 (length s)
22204 'invisible 'org-link s))
22205 (setq s (concat (substring s 0 b)
22206 (substring s (or (next-single-property-change
22207 b 'invisible s)
22208 (length s)))))))
22209 (while (setq b (text-property-any 0 (length s) 'org-cwidth t s))
22210 (setq s (concat (substring s 0 b)
22211 (substring s (or (next-single-property-change
22212 b 'org-cwidth s)
22213 (length s))))))
22214 (setq l (string-width s) b -1)
22215 (while (setq b (text-property-any (1+ b) (length s) 'org-dwidth t s))
22216 (setq l (- l (get-text-property b 'org-dwidth-n s))))
22219 (defun org-shorten-string (s maxlength)
22220 "Shorten string S so tht it is no longer than MAXLENGTH characters.
22221 If the string is shorter or has length MAXLENGTH, just return the
22222 original string. If it is longer, the functions finds a space in the
22223 string, breaks this string off at that locations and adds three dots
22224 as ellipsis. Including the ellipsis, the string will not be longer
22225 than MAXLENGTH. If finding a good breaking point in the string does
22226 not work, the string is just chopped off in the middle of a word
22227 if necessary."
22228 (if (<= (length s) maxlength)
22230 (let* ((n (max (- maxlength 4) 1))
22231 (re (concat "\\`\\(.\\{1," (int-to-string n) "\\}[^ ]\\)\\([ ]\\|\\'\\)")))
22232 (if (string-match re s)
22233 (concat (match-string 1 s) "...")
22234 (concat (substring s 0 (max (- maxlength 3) 0)) "...")))))
22236 (defun org-get-indentation (&optional line)
22237 "Get the indentation of the current line, interpreting tabs.
22238 When LINE is given, assume it represents a line and compute its indentation."
22239 (if line
22240 (if (string-match "^ *" (org-remove-tabs line))
22241 (match-end 0))
22242 (save-excursion
22243 (beginning-of-line 1)
22244 (skip-chars-forward " \t")
22245 (current-column))))
22247 (defun org-get-string-indentation (s)
22248 "What indentation has S due to SPACE and TAB at the beginning of the string?"
22249 (let ((n -1) (i 0) (w tab-width) c)
22250 (catch 'exit
22251 (while (< (setq n (1+ n)) (length s))
22252 (setq c (aref s n))
22253 (cond ((= c ?\ ) (setq i (1+ i)))
22254 ((= c ?\t) (setq i (* (/ (+ w i) w) w)))
22255 (t (throw 'exit t)))))
22258 (defun org-remove-tabs (s &optional width)
22259 "Replace tabulators in S with spaces.
22260 Assumes that s is a single line, starting in column 0."
22261 (setq width (or width tab-width))
22262 (while (string-match "\t" s)
22263 (setq s (replace-match
22264 (make-string
22265 (- (* width (/ (+ (match-beginning 0) width) width))
22266 (match-beginning 0)) ?\ )
22267 t t s)))
22270 (defun org-fix-indentation (line ind)
22271 "Fix indentation in LINE.
22272 IND is a cons cell with target and minimum indentation.
22273 If the current indentation in LINE is smaller than the minimum,
22274 leave it alone. If it is larger than ind, set it to the target."
22275 (let* ((l (org-remove-tabs line))
22276 (i (org-get-indentation l))
22277 (i1 (car ind)) (i2 (cdr ind)))
22278 (if (>= i i2) (setq l (substring line i2)))
22279 (if (> i1 0)
22280 (concat (make-string i1 ?\ ) l)
22281 l)))
22283 (defun org-remove-indentation (code &optional n)
22284 "Remove the maximum common indentation from the lines in CODE.
22285 N may optionally be the number of spaces to remove."
22286 (with-temp-buffer
22287 (insert code)
22288 (org-do-remove-indentation n)
22289 (buffer-string)))
22291 (defun org-do-remove-indentation (&optional n)
22292 "Remove the maximum common indentation from the buffer."
22293 (untabify (point-min) (point-max))
22294 (let ((min 10000) re)
22295 (if n
22296 (setq min n)
22297 (goto-char (point-min))
22298 (while (re-search-forward "^ *[^ \n]" nil t)
22299 (setq min (min min (1- (- (match-end 0) (match-beginning 0)))))))
22300 (unless (or (= min 0) (= min 10000))
22301 (setq re (format "^ \\{%d\\}" min))
22302 (goto-char (point-min))
22303 (while (re-search-forward re nil t)
22304 (replace-match "")
22305 (end-of-line 1))
22306 min)))
22308 (defun org-fill-template (template alist)
22309 "Find each %key of ALIST in TEMPLATE and replace it."
22310 (let ((case-fold-search nil))
22311 (dolist (entry (sort (copy-sequence alist)
22312 (lambda (a b) (< (length (car a)) (length (car b))))))
22313 (setq template
22314 (replace-regexp-in-string
22315 (concat "%" (regexp-quote (car entry)))
22316 (or (cdr entry) "") template t t)))
22317 template))
22319 (defun org-base-buffer (buffer)
22320 "Return the base buffer of BUFFER, if it has one. Else return the buffer."
22321 (if (not buffer)
22322 buffer
22323 (or (buffer-base-buffer buffer)
22324 buffer)))
22326 (defun org-wrap (string &optional width lines)
22327 "Wrap string to either a number of lines, or a width in characters.
22328 If WIDTH is non-nil, the string is wrapped to that width, however many lines
22329 that costs. If there is a word longer than WIDTH, the text is actually
22330 wrapped to the length of that word.
22331 IF WIDTH is nil and LINES is non-nil, the string is forced into at most that
22332 many lines, whatever width that takes.
22333 The return value is a list of lines, without newlines at the end."
22334 (let* ((words (org-split-string string "[ \t\n]+"))
22335 (maxword (apply 'max (mapcar 'org-string-width words)))
22336 w ll)
22337 (cond (width
22338 (org-do-wrap words (max maxword width)))
22339 (lines
22340 (setq w maxword)
22341 (setq ll (org-do-wrap words maxword))
22342 (if (<= (length ll) lines)
22344 (setq ll words)
22345 (while (> (length ll) lines)
22346 (setq w (1+ w))
22347 (setq ll (org-do-wrap words w)))
22348 ll))
22349 (t (error "Cannot wrap this")))))
22351 (defun org-do-wrap (words width)
22352 "Create lines of maximum width WIDTH (in characters) from word list WORDS."
22353 (let (lines line)
22354 (while words
22355 (setq line (pop words))
22356 (while (and words (< (+ (length line) (length (car words))) width))
22357 (setq line (concat line " " (pop words))))
22358 (setq lines (push line lines)))
22359 (nreverse lines)))
22361 (defun org-split-string (string &optional separators)
22362 "Splits STRING into substrings at SEPARATORS.
22363 SEPARATORS is a regular expression.
22364 No empty strings are returned if there are matches at the beginning
22365 and end of string."
22366 ;; FIXME: why not use (split-string STRING SEPARATORS t)?
22367 (let ((start 0) notfirst list)
22368 (while (and (string-match (or separators "[ \f\t\n\r\v]+") string
22369 (if (and notfirst
22370 (= start (match-beginning 0))
22371 (< start (length string)))
22372 (1+ start) start))
22373 (< (match-beginning 0) (length string)))
22374 (setq notfirst t)
22375 (or (eq (match-beginning 0) 0)
22376 (and (eq (match-beginning 0) (match-end 0))
22377 (eq (match-beginning 0) start))
22378 (push (substring string start (match-beginning 0)) list))
22379 (setq start (match-end 0)))
22380 (or (eq start (length string))
22381 (push (substring string start) list))
22382 (nreverse list)))
22384 (defun org-quote-vert (s)
22385 "Replace \"|\" with \"\\vert\"."
22386 (while (string-match "|" s)
22387 (setq s (replace-match "\\vert" t t s)))
22390 (defun org-uuidgen-p (s)
22391 "Is S an ID created by UUIDGEN?"
22392 (string-match "\\`[0-9a-f]\\{8\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{4\\}-[0-9a-f]\\{12\\}\\'" (downcase s)))
22394 (defun org-in-src-block-p (&optional inside)
22395 "Whether point is in a code source block.
22396 When INSIDE is non-nil, don't consider we are within a src block
22397 when point is at #+BEGIN_SRC or #+END_SRC."
22398 (let ((case-fold-search t) ov)
22399 (or (and (eq (get-char-property (point) 'src-block) t))
22400 (and (not inside)
22401 (save-match-data
22402 (save-excursion
22403 (beginning-of-line)
22404 (looking-at ".*#\\+\\(begin\\|end\\)_src")))))))
22406 (defun org-context ()
22407 "Return a list of contexts of the current cursor position.
22408 If several contexts apply, all are returned.
22409 Each context entry is a list with a symbol naming the context, and
22410 two positions indicating start and end of the context. Possible
22411 contexts are:
22413 :headline anywhere in a headline
22414 :headline-stars on the leading stars in a headline
22415 :todo-keyword on a TODO keyword (including DONE) in a headline
22416 :tags on the TAGS in a headline
22417 :priority on the priority cookie in a headline
22418 :item on the first line of a plain list item
22419 :item-bullet on the bullet/number of a plain list item
22420 :checkbox on the checkbox in a plain list item
22421 :table in an org-mode table
22422 :table-special on a special filed in a table
22423 :table-table in a table.el table
22424 :clocktable in a clocktable
22425 :src-block in a source block
22426 :link on a hyperlink
22427 :keyword on a keyword: SCHEDULED, DEADLINE, CLOSE, COMMENT.
22428 :target on a <<target>>
22429 :radio-target on a <<<radio-target>>>
22430 :latex-fragment on a LaTeX fragment
22431 :latex-preview on a LaTeX fragment with overlaid preview image
22433 This function expects the position to be visible because it uses font-lock
22434 faces as a help to recognize the following contexts: :table-special, :link,
22435 and :keyword."
22436 (let* ((f (get-text-property (point) 'face))
22437 (faces (if (listp f) f (list f)))
22438 (case-fold-search t)
22439 (p (point)) clist o)
22440 ;; First the large context
22441 (cond
22442 ((org-at-heading-p t)
22443 (push (list :headline (point-at-bol) (point-at-eol)) clist)
22444 (when (progn
22445 (beginning-of-line 1)
22446 (looking-at org-todo-line-tags-regexp))
22447 (push (org-point-in-group p 1 :headline-stars) clist)
22448 (push (org-point-in-group p 2 :todo-keyword) clist)
22449 (push (org-point-in-group p 4 :tags) clist))
22450 (goto-char p)
22451 (skip-chars-backward "^[\n\r \t") (or (bobp) (backward-char 1))
22452 (if (looking-at "\\[#[A-Z0-9]\\]")
22453 (push (org-point-in-group p 0 :priority) clist)))
22455 ((org-at-item-p)
22456 (push (org-point-in-group p 2 :item-bullet) clist)
22457 (push (list :item (point-at-bol)
22458 (save-excursion (org-end-of-item) (point)))
22459 clist)
22460 (and (org-at-item-checkbox-p)
22461 (push (org-point-in-group p 0 :checkbox) clist)))
22463 ((org-at-table-p)
22464 (push (list :table (org-table-begin) (org-table-end)) clist)
22465 (if (memq 'org-formula faces)
22466 (push (list :table-special
22467 (previous-single-property-change p 'face)
22468 (next-single-property-change p 'face)) clist)))
22469 ((org-at-table-p 'any)
22470 (push (list :table-table) clist)))
22471 (goto-char p)
22473 (let ((case-fold-search t))
22474 ;; New the "medium" contexts: clocktables, source blocks
22475 (cond ((org-in-clocktable-p)
22476 (push (list :clocktable
22477 (and (or (looking-at "[ \t]*\\(#\\+BEGIN: clocktable\\)")
22478 (re-search-backward "[ \t]*\\(#+BEGIN: clocktable\\)" nil t))
22479 (match-beginning 1))
22480 (and (re-search-forward "[ \t]*#\\+END:?" nil t)
22481 (match-end 0))) clist))
22482 ((org-in-src-block-p)
22483 (push (list :src-block
22484 (and (or (looking-at "[ \t]*\\(#\\+BEGIN_SRC\\)")
22485 (re-search-backward "[ \t]*\\(#+BEGIN_SRC\\)" nil t))
22486 (match-beginning 1))
22487 (and (search-forward "#+END_SRC" nil t)
22488 (match-beginning 0))) clist))))
22489 (goto-char p)
22491 ;; Now the small context
22492 (cond
22493 ((org-at-timestamp-p)
22494 (push (org-point-in-group p 0 :timestamp) clist))
22495 ((memq 'org-link faces)
22496 (push (list :link
22497 (previous-single-property-change p 'face)
22498 (next-single-property-change p 'face)) clist))
22499 ((memq 'org-special-keyword faces)
22500 (push (list :keyword
22501 (previous-single-property-change p 'face)
22502 (next-single-property-change p 'face)) clist))
22503 ((org-at-target-p)
22504 (push (org-point-in-group p 0 :target) clist)
22505 (goto-char (1- (match-beginning 0)))
22506 (if (looking-at org-radio-target-regexp)
22507 (push (org-point-in-group p 0 :radio-target) clist))
22508 (goto-char p))
22509 ((setq o (car (delq nil
22510 (mapcar
22511 (lambda (x)
22512 (if (memq x org-latex-fragment-image-overlays) x))
22513 (overlays-at (point))))))
22514 (push (list :latex-fragment
22515 (overlay-start o) (overlay-end o)) clist)
22516 (push (list :latex-preview
22517 (overlay-start o) (overlay-end o)) clist))
22518 ((org-inside-LaTeX-fragment-p)
22519 ;; FIXME: positions wrong.
22520 (push (list :latex-fragment (point) (point)) clist)))
22522 (setq clist (nreverse (delq nil clist)))
22523 clist))
22525 (defun org-in-regexp (re &optional nlines visually)
22526 "Check if point is inside a match of RE.
22528 Normally only the current line is checked, but you can include
22529 NLINES extra lines after point into the search. If VISUALLY is
22530 set, require that the cursor is not after the match but really
22531 on, so that the block visually is on the match."
22532 (catch 'exit
22533 (let ((pos (point))
22534 (eol (point-at-eol (+ 1 (or nlines 0))))
22535 (inc (if visually 1 0)))
22536 (save-excursion
22537 (beginning-of-line (- 1 (or nlines 0)))
22538 (while (re-search-forward re eol t)
22539 (if (and (<= (match-beginning 0) pos)
22540 (>= (+ inc (match-end 0)) pos))
22541 (throw 'exit (cons (match-beginning 0) (match-end 0)))))))))
22542 (define-obsolete-function-alias 'org-at-regexp-p 'org-in-regexp
22543 "Org mode 8.3")
22545 (defun org-between-regexps-p (start-re end-re &optional lim-up lim-down)
22546 "Non-nil when point is between matches of START-RE and END-RE.
22548 Also return a non-nil value when point is on one of the matches.
22550 Optional arguments LIM-UP and LIM-DOWN bound the search; they are
22551 buffer positions. Default values are the positions of headlines
22552 surrounding the point.
22554 The functions returns a cons cell whose car (resp. cdr) is the
22555 position before START-RE (resp. after END-RE)."
22556 (save-match-data
22557 (let ((pos (point))
22558 (limit-up (or lim-up (save-excursion (outline-previous-heading))))
22559 (limit-down (or lim-down (save-excursion (outline-next-heading))))
22560 beg end)
22561 (save-excursion
22562 ;; Point is on a block when on START-RE or if START-RE can be
22563 ;; found before it...
22564 (and (or (org-in-regexp start-re)
22565 (re-search-backward start-re limit-up t))
22566 (setq beg (match-beginning 0))
22567 ;; ... and END-RE after it...
22568 (goto-char (match-end 0))
22569 (re-search-forward end-re limit-down t)
22570 (> (setq end (match-end 0)) pos)
22571 ;; ... without another START-RE in-between.
22572 (goto-char (match-beginning 0))
22573 (not (re-search-backward start-re (1+ beg) t))
22574 ;; Return value.
22575 (cons beg end))))))
22577 (defun org-in-block-p (names)
22578 "Non-nil when point belongs to a block whose name belongs to NAMES.
22580 NAMES is a list of strings containing names of blocks.
22582 Return first block name matched, or nil. Beware that in case of
22583 nested blocks, the returned name may not belong to the closest
22584 block from point."
22585 (save-match-data
22586 (catch 'exit
22587 (let ((case-fold-search t)
22588 (lim-up (save-excursion (outline-previous-heading)))
22589 (lim-down (save-excursion (outline-next-heading))))
22590 (mapc (lambda (name)
22591 (let ((n (regexp-quote name)))
22592 (when (org-between-regexps-p
22593 (concat "^[ \t]*#\\+begin_" n)
22594 (concat "^[ \t]*#\\+end_" n)
22595 lim-up lim-down)
22596 (throw 'exit n))))
22597 names))
22598 nil)))
22600 (defun org-occur-in-agenda-files (regexp &optional _nlines)
22601 "Call `multi-occur' with buffers for all agenda files."
22602 (interactive "sOrg-files matching: ")
22603 (let* ((files (org-agenda-files))
22604 (tnames (mapcar #'file-truename files))
22605 (extra org-agenda-text-search-extra-files))
22606 (when (eq (car extra) 'agenda-archives)
22607 (setq extra (cdr extra))
22608 (setq files (org-add-archive-files files)))
22609 (dolist (f extra)
22610 (unless (member (file-truename f) tnames)
22611 (unless (member f files) (setq files (append files (list f))))
22612 (setq tnames (append tnames (list (file-truename f))))))
22613 (multi-occur
22614 (mapcar (lambda (x)
22615 (with-current-buffer
22616 ;; FIXME: Why not just (find-file-noselect x)?
22617 ;; Is it to avoid the "revert buffer" prompt?
22618 (or (get-file-buffer x) (find-file-noselect x))
22619 (widen)
22620 (current-buffer)))
22621 files)
22622 regexp)))
22624 (if (boundp 'occur-mode-find-occurrence-hook)
22625 ;; Emacs 23
22626 (add-hook 'occur-mode-find-occurrence-hook
22627 (lambda ()
22628 (when (derived-mode-p 'org-mode)
22629 (org-reveal))))
22630 ;; Emacs 22
22631 (defadvice occur-mode-goto-occurrence
22632 (after org-occur-reveal activate)
22633 (and (derived-mode-p 'org-mode) (org-reveal)))
22634 (defadvice occur-mode-goto-occurrence-other-window
22635 (after org-occur-reveal activate)
22636 (and (derived-mode-p 'org-mode) (org-reveal)))
22637 (defadvice occur-mode-display-occurrence
22638 (after org-occur-reveal activate)
22639 (when (derived-mode-p 'org-mode)
22640 (let ((pos (occur-mode-find-occurrence)))
22641 (with-current-buffer (marker-buffer pos)
22642 (save-excursion
22643 (goto-char pos)
22644 (org-reveal)))))))
22646 (defun org-occur-link-in-agenda-files ()
22647 "Create a link and search for it in the agendas.
22648 The link is not stored in `org-stored-links', it is just created
22649 for the search purpose."
22650 (interactive)
22651 (let ((link (condition-case nil
22652 (org-store-link nil)
22653 (error "Unable to create a link to here"))))
22654 (org-occur-in-agenda-files (regexp-quote link))))
22656 (defun org-reverse-string (string)
22657 "Return the reverse of STRING."
22658 (apply 'string (reverse (string-to-list string))))
22660 ;; defsubst org-uniquify must be defined before first use
22662 (defun org-uniquify-alist (alist)
22663 "Merge elements of ALIST with the same key.
22665 For example, in this alist:
22667 \(org-uniquify-alist \\='((a 1) (b 2) (a 3)))
22668 => \\='((a 1 3) (b 2))
22670 merge (a 1) and (a 3) into (a 1 3).
22672 The function returns the new ALIST."
22673 (let (rtn)
22674 (mapc
22675 (lambda (e)
22676 (let (n)
22677 (if (not (assoc (car e) rtn))
22678 (push e rtn)
22679 (setq n (cons (car e) (append (cdr (assoc (car e) rtn)) (cdr e))))
22680 (setq rtn (assq-delete-all (car e) rtn))
22681 (push n rtn))))
22682 alist)
22683 rtn))
22685 (defun org-delete-all (elts list)
22686 "Remove all elements in ELTS from LIST."
22687 (while elts
22688 (setq list (delete (pop elts) list)))
22689 list)
22691 (defun org-count (cl-item cl-seq)
22692 "Count the number of occurrences of ITEM in SEQ.
22693 Taken from `count' in cl-seq.el with all keyword arguments removed."
22694 (let ((cl-end (length cl-seq)) (cl-start 0) (cl-count 0) cl-x)
22695 (when (consp cl-seq) (setq cl-seq (nthcdr cl-start cl-seq)))
22696 (while (< cl-start cl-end)
22697 (setq cl-x (if (consp cl-seq) (pop cl-seq) (aref cl-seq cl-start)))
22698 (if (equal cl-item cl-x) (setq cl-count (1+ cl-count)))
22699 (setq cl-start (1+ cl-start)))
22700 cl-count))
22702 (defun org-remove-if (predicate seq)
22703 "Remove everything from SEQ that fulfills PREDICATE."
22704 (let (res e)
22705 (while seq
22706 (setq e (pop seq))
22707 (if (not (funcall predicate e)) (push e res)))
22708 (nreverse res)))
22710 (defun org-remove-if-not (predicate seq)
22711 "Remove everything from SEQ that does not fulfill PREDICATE."
22712 (let (res e)
22713 (while seq
22714 (setq e (pop seq))
22715 (if (funcall predicate e) (push e res)))
22716 (nreverse res)))
22718 (defun org-reduce (cl-func cl-seq &rest cl-keys)
22719 "Reduce two-argument FUNCTION across SEQ.
22720 Taken from `reduce' in cl-seq.el with all keyword arguments but
22721 \":initial-value\" removed."
22722 (let ((cl-accum (cond ((memq :initial-value cl-keys)
22723 (cadr (memq :initial-value cl-keys)))
22724 (cl-seq (pop cl-seq))
22725 (t (funcall cl-func)))))
22726 (while cl-seq
22727 (setq cl-accum (funcall cl-func cl-accum (pop cl-seq))))
22728 cl-accum))
22730 (defun org-every (pred seq)
22731 "Return true if PREDICATE is true of every element of SEQ.
22732 Adapted from `every' in cl.el."
22733 (catch 'org-every
22734 (mapc (lambda (e) (unless (funcall pred e) (throw 'org-every nil))) seq)
22737 (defun org-some (pred seq)
22738 "Return true if PREDICATE is true of any element of SEQ.
22739 Adapted from `some' in cl.el."
22740 (catch 'org-some
22741 (mapc (lambda (e) (when (funcall pred e) (throw 'org-some t))) seq)
22742 nil))
22744 (defun org-back-over-empty-lines ()
22745 "Move backwards over whitespace, to the beginning of the first empty line.
22746 Returns the number of empty lines passed."
22747 (let ((pos (point)))
22748 (if (cdr (assoc 'heading org-blank-before-new-entry))
22749 (skip-chars-backward " \t\n\r")
22750 (unless (eobp)
22751 (forward-line -1)))
22752 (beginning-of-line 2)
22753 (goto-char (min (point) pos))
22754 (count-lines (point) pos)))
22756 (defun org-skip-whitespace ()
22757 (skip-chars-forward " \t\n\r"))
22759 (defun org-point-in-group (point group &optional context)
22760 "Check if POINT is in match-group GROUP.
22761 If CONTEXT is non-nil, return a list with CONTEXT and the boundaries of the
22762 match. If the match group does not exist or point is not inside it,
22763 return nil."
22764 (and (match-beginning group)
22765 (>= point (match-beginning group))
22766 (<= point (match-end group))
22767 (if context
22768 (list context (match-beginning group) (match-end group))
22769 t)))
22771 (defun org-switch-to-buffer-other-window (&rest args)
22772 "Switch to buffer in a second window on the current frame.
22773 In particular, do not allow pop-up frames.
22774 Returns the newly created buffer."
22775 (org-no-popups
22776 (apply 'switch-to-buffer-other-window args)))
22778 (defun org-combine-plists (&rest plists)
22779 "Create a single property list from all plists in PLISTS.
22780 The process starts by copying the first list, and then setting properties
22781 from the other lists. Settings in the last list are the most significant
22782 ones and overrule settings in the other lists."
22783 (let ((rtn (copy-sequence (pop plists)))
22784 p v ls)
22785 (while plists
22786 (setq ls (pop plists))
22787 (while ls
22788 (setq p (pop ls) v (pop ls))
22789 (setq rtn (plist-put rtn p v))))
22790 rtn))
22792 (defun org-replace-escapes (string table)
22793 "Replace %-escapes in STRING with values in TABLE.
22794 TABLE is an association list with keys like \"%a\" and string values.
22795 The sequences in STRING may contain normal field width and padding information,
22796 for example \"%-5s\". Replacements happen in the sequence given by TABLE,
22797 so values can contain further %-escapes if they are define later in TABLE."
22798 (let ((tbl (copy-alist table))
22799 (case-fold-search nil)
22800 (pchg 0)
22801 e re rpl)
22802 (dolist (e tbl)
22803 (setq re (concat "%-?[0-9.]*" (substring (car e) 1)))
22804 (when (and (cdr e) (string-match re (cdr e)))
22805 (let ((sref (substring (cdr e) (match-beginning 0) (match-end 0)))
22806 (safe "SREF"))
22807 (add-text-properties 0 3 (list 'sref sref) safe)
22808 (setcdr e (replace-match safe t t (cdr e)))))
22809 (while (string-match re string)
22810 (setq rpl (format (concat (substring (match-string 0 string) 0 -1) "s")
22811 (cdr e)))
22812 (setq string (replace-match rpl t t string))))
22813 (while (setq pchg (next-property-change pchg string))
22814 (let ((sref (get-text-property pchg 'sref string)))
22815 (when (and sref (string-match "SREF" string pchg))
22816 (setq string (replace-match sref t t string)))))
22817 string))
22819 (defun org-sublist (list start end)
22820 "Return a section of LIST, from START to END.
22821 Counting starts at 1."
22822 (let (rtn (c start))
22823 (setq list (nthcdr (1- start) list))
22824 (while (and list (<= c end))
22825 (push (pop list) rtn)
22826 (setq c (1+ c)))
22827 (nreverse rtn)))
22829 (defun org-find-base-buffer-visiting (file)
22830 "Like `find-buffer-visiting' but always return the base buffer and
22831 not an indirect buffer."
22832 (let ((buf (or (get-file-buffer file)
22833 (find-buffer-visiting file))))
22834 (if buf
22835 (or (buffer-base-buffer buf) buf)
22836 nil)))
22838 (defun org-image-file-name-regexp (&optional extensions)
22839 "Return regexp matching the file names of images.
22840 If EXTENSIONS is given, only match these."
22841 (if (and (not extensions) (fboundp 'image-file-name-regexp))
22842 (image-file-name-regexp)
22843 (let ((image-file-name-extensions
22844 (or extensions
22845 '("png" "jpeg" "jpg" "gif" "tiff" "tif"
22846 "xbm" "xpm" "pbm" "pgm" "ppm"))))
22847 (concat "\\."
22848 (regexp-opt (nconc (mapcar 'upcase
22849 image-file-name-extensions)
22850 image-file-name-extensions)
22852 "\\'"))))
22854 (defun org-file-image-p (file &optional extensions)
22855 "Return non-nil if FILE is an image."
22856 (save-match-data
22857 (string-match (org-image-file-name-regexp extensions) file)))
22859 (defun org-get-cursor-date (&optional with-time)
22860 "Return the date at cursor in as a time.
22861 This works in the calendar and in the agenda, anywhere else it just
22862 returns the current time.
22863 If WITH-TIME is non-nil, returns the time of the event at point (in
22864 the agenda) or the current time of the day."
22865 (let (date day defd tp hod mod)
22866 (when with-time
22867 (setq tp (get-text-property (point) 'time))
22868 (when (and tp (string-match "\\([0-9][0-9]\\):\\([0-9][0-9]\\)" tp))
22869 (setq hod (string-to-number (match-string 1 tp))
22870 mod (string-to-number (match-string 2 tp))))
22871 (or tp (let ((now (decode-time)))
22872 (setq hod (nth 2 now)
22873 mod (nth 1 now)))))
22874 (cond
22875 ((eq major-mode 'calendar-mode)
22876 (setq date (calendar-cursor-to-date)
22877 defd (encode-time 0 (or mod 0) (or hod 0)
22878 (nth 1 date) (nth 0 date) (nth 2 date))))
22879 ((eq major-mode 'org-agenda-mode)
22880 (setq day (get-text-property (point) 'day))
22881 (if day
22882 (setq date (calendar-gregorian-from-absolute day)
22883 defd (encode-time 0 (or mod 0) (or hod 0)
22884 (nth 1 date) (nth 0 date) (nth 2 date))))))
22885 (or defd (current-time))))
22887 (defun org-mark-subtree (&optional up)
22888 "Mark the current subtree.
22889 This puts point at the start of the current subtree, and mark at
22890 the end. If a numeric prefix UP is given, move up into the
22891 hierarchy of headlines by UP levels before marking the subtree."
22892 (interactive "P")
22893 (org-with-limited-levels
22894 (cond ((org-at-heading-p) (beginning-of-line))
22895 ((org-before-first-heading-p) (user-error "Not in a subtree"))
22896 (t (outline-previous-visible-heading 1))))
22897 (when up (while (and (> up 0) (org-up-heading-safe)) (decf up)))
22898 (if (org-called-interactively-p 'any)
22899 (call-interactively 'org-mark-element)
22900 (org-mark-element)))
22903 ;;; Indentation
22905 (defun org--get-expected-indentation (element contentsp)
22906 "Expected indentation column for current line, according to ELEMENT.
22907 ELEMENT is an element containing point. CONTENTSP is non-nil
22908 when indentation is to be computed according to contents of
22909 ELEMENT."
22910 (let ((type (org-element-type element))
22911 (start (org-element-property :begin element))
22912 (post-affiliated (org-element-property :post-affiliated element)))
22913 (org-with-wide-buffer
22914 (cond
22915 (contentsp
22916 (case type
22917 ((diary-sexp footnote-definition) 0)
22918 ((headline inlinetask nil)
22919 (if (not org-adapt-indentation) 0
22920 (let ((level (org-current-level)))
22921 (if level (1+ level) 0))))
22922 ((item plain-list) (org-list-item-body-column post-affiliated))
22924 (goto-char start)
22925 (org-get-indentation))))
22926 ((memq type '(headline inlinetask nil))
22927 (if (save-excursion (beginning-of-line) (looking-at "[ \t]*$"))
22928 (org--get-expected-indentation element t)
22930 ((memq type '(diary-sexp footnote-definition)) 0)
22931 ;; First paragraph of a footnote definition or an item.
22932 ;; Indent like parent.
22933 ((< (line-beginning-position) start)
22934 (org--get-expected-indentation
22935 (org-element-property :parent element) t))
22936 ;; At first line: indent according to previous sibling, if any,
22937 ;; ignoring footnote definitions and inline tasks, or parent's
22938 ;; contents.
22939 ((= (line-beginning-position) start)
22940 (catch 'exit
22941 (while t
22942 (if (= (point-min) start) (throw 'exit 0)
22943 (goto-char (1- start))
22944 (let* ((previous (org-element-at-point))
22945 (parent previous))
22946 (while (and parent (<= (org-element-property :end parent) start))
22947 (setq previous parent
22948 parent (org-element-property :parent parent)))
22949 (cond
22950 ((not previous) (throw 'exit 0))
22951 ((> (org-element-property :end previous) start)
22952 (throw 'exit (org--get-expected-indentation previous t)))
22953 ((memq (org-element-type previous)
22954 '(footnote-definition inlinetask))
22955 (setq start (org-element-property :begin previous)))
22956 (t (goto-char (org-element-property :begin previous))
22957 (throw 'exit
22958 (if (bolp) (org-get-indentation)
22959 ;; At first paragraph in an item or
22960 ;; a footnote definition.
22961 (org--get-expected-indentation
22962 (org-element-property :parent previous) t))))))))))
22963 ;; Otherwise, move to the first non-blank line above.
22965 (beginning-of-line)
22966 (let ((pos (point)))
22967 (skip-chars-backward " \r\t\n")
22968 (cond
22969 ;; Two blank lines end a footnote definition or a plain
22970 ;; list. When we indent an empty line after them, the
22971 ;; containing list or footnote definition is over, so it
22972 ;; qualifies as a previous sibling. Therefore, we indent
22973 ;; like its first line.
22974 ((and (memq type '(footnote-definition plain-list))
22975 (> (count-lines (point) pos) 2))
22976 (goto-char start)
22977 (org-get-indentation))
22978 ;; Line above is the first one of a paragraph at the
22979 ;; beginning of an item or a footnote definition. Indent
22980 ;; like parent.
22981 ((< (line-beginning-position) start)
22982 (org--get-expected-indentation
22983 (org-element-property :parent element) t))
22984 ;; Line above is the beginning of an element, i.e., point
22985 ;; was originally on the blank lines between element's start
22986 ;; and contents.
22987 ((= (line-beginning-position) post-affiliated)
22988 (org--get-expected-indentation element t))
22989 ;; POS is after contents in a greater element. Indent like
22990 ;; the beginning of the element.
22992 ;; As a special case, if point is at the end of a footnote
22993 ;; definition or an item, indent like the very last element
22994 ;; within.
22995 ((and (not (eq type 'paragraph))
22996 (let ((cend (org-element-property :contents-end element)))
22997 (and cend (<= cend pos))))
22998 (if (memq type '(footnote-definition item plain-list))
22999 (let ((last (org-element-at-point)))
23000 (org--get-expected-indentation
23001 last
23002 (memq (org-element-type last)
23003 '(footnote-definition item plain-list))))
23004 (goto-char start)
23005 (org-get-indentation)))
23006 ;; In any other case, indent like the current line.
23007 (t (org-get-indentation)))))))))
23009 (defun org--align-node-property ()
23010 "Align node property at point.
23011 Alignment is done according to `org-property-format', which see."
23012 (when (save-excursion
23013 (beginning-of-line)
23014 (looking-at org-property-re))
23015 (replace-match
23016 (concat (match-string 4)
23017 (org-trim
23018 (format org-property-format (match-string 1) (match-string 3))))
23019 t t)))
23021 (defun org-indent-line ()
23022 "Indent line depending on context.
23024 Indentation is done according to the following rules:
23026 - Footnote definitions, diary sexps, headlines and inline tasks
23027 have to start at column 0.
23029 - On the very first line of an element, consider, in order, the
23030 next rules until one matches:
23032 1. If there's a sibling element before, ignoring footnote
23033 definitions and inline tasks, indent like its first line.
23035 2. If element has a parent, indent like its contents. More
23036 precisely, if parent is an item, indent after the
23037 description part, if any, or the bullet (see
23038 `org-list-description-max-indent'). Else, indent like
23039 parent's first line.
23041 3. Otherwise, indent relatively to current level, if
23042 `org-adapt-indentation' is non-nil, or to left margin.
23044 - On a blank line at the end of an element, indent according to
23045 the type of the element. More precisely
23047 1. If element is a plain list, an item, or a footnote
23048 definition, indent like the very last element within.
23050 2. If element is a paragraph, indent like its last non blank
23051 line.
23053 3. Otherwise, indent like its very first line.
23055 - In the code part of a source block, use language major mode
23056 to indent current line if `org-src-tab-acts-natively' is
23057 non-nil. If it is nil, do nothing.
23059 - Otherwise, indent like the first non-blank line above.
23061 The function doesn't indent an item as it could break the whole
23062 list structure. Instead, use \\<org-mode-map>\\[org-shiftmetaleft] or \
23063 \\[org-shiftmetaright].
23065 Also align node properties according to `org-property-format'."
23066 (interactive)
23067 (cond
23068 (orgstruct-is-++
23069 (let ((indent-line-function
23070 (cadadr (assq 'indent-line-function org-fb-vars))))
23071 (indent-according-to-mode)))
23072 ((org-at-heading-p) 'noindent)
23074 (let* ((element (save-excursion (beginning-of-line) (org-element-at-point)))
23075 (type (org-element-type element)))
23076 (cond ((and (memq type '(plain-list item))
23077 (= (line-beginning-position)
23078 (org-element-property :post-affiliated element)))
23079 'noindent)
23080 ((and (eq type 'src-block)
23081 org-src-tab-acts-natively
23082 (> (line-beginning-position)
23083 (org-element-property :post-affiliated element))
23084 (< (line-beginning-position)
23085 (org-with-wide-buffer
23086 (goto-char (org-element-property :end element))
23087 (skip-chars-backward " \r\t\n")
23088 (line-beginning-position))))
23089 (org-babel-do-key-sequence-in-edit-buffer (kbd "TAB")))
23091 (let ((column (org--get-expected-indentation element nil)))
23092 ;; Preserve current column.
23093 (if (<= (current-column) (current-indentation))
23094 (org-indent-line-to column)
23095 (save-excursion (org-indent-line-to column))))
23096 ;; Align node property. Also preserve current column.
23097 (when (eq type 'node-property)
23098 (let ((column (current-column)))
23099 (org--align-node-property)
23100 (org-move-to-column column)))))))))
23102 (defun org-indent-region (start end)
23103 "Indent each non-blank line in the region.
23104 Called from a program, START and END specify the region to
23105 indent. The function will not indent contents of example blocks,
23106 verse blocks and export blocks as leading white spaces are
23107 assumed to be significant there."
23108 (interactive "r")
23109 (save-excursion
23110 (goto-char start)
23111 (skip-chars-forward " \r\t\n")
23112 (unless (eobp) (beginning-of-line))
23113 (let ((indent-to
23114 (lambda (ind pos)
23115 ;; Set IND as indentation for all lines between point and
23116 ;; POS or END, whichever comes first. Blank lines are
23117 ;; ignored. Leave point after POS once done.
23118 (let ((limit (copy-marker (min end pos))))
23119 (while (< (point) limit)
23120 (unless (org-looking-at-p "[ \t]*$") (org-indent-line-to ind))
23121 (forward-line))
23122 (set-marker limit nil))))
23123 (end (copy-marker end)))
23124 (while (< (point) end)
23125 (if (or (org-looking-at-p " \r\t\n") (org-at-heading-p)) (forward-line)
23126 (let* ((element (org-element-at-point))
23127 (type (org-element-type element))
23128 (element-end (copy-marker (org-element-property :end element)))
23129 (ind (org--get-expected-indentation element nil)))
23130 (cond
23131 ((or (memq type '(paragraph table table-row))
23132 (not (or (org-element-property :contents-begin element)
23133 (memq type
23134 '(example-block export-block src-block)))))
23135 ;; Elements here are indented as a single block. Also
23136 ;; align node properties.
23137 (when (eq type 'node-property)
23138 (org--align-node-property)
23139 (beginning-of-line))
23140 (funcall indent-to ind element-end))
23142 ;; Elements in this category consist of three parts:
23143 ;; before the contents, the contents, and after the
23144 ;; contents. The contents are treated specially,
23145 ;; according to the element type, or not indented at
23146 ;; all. Other parts are indented as a single block.
23147 (let* ((post (copy-marker
23148 (org-element-property :post-affiliated element)))
23149 (cbeg
23150 (copy-marker
23151 (cond
23152 ((not (org-element-property :contents-begin element))
23153 ;; Fake contents for source blocks.
23154 (org-with-wide-buffer
23155 (goto-char post)
23156 (forward-line)
23157 (point)))
23158 ((memq type '(footnote-definition item plain-list))
23159 ;; Contents in these elements could start on
23160 ;; the same line as the beginning of the
23161 ;; element. Make sure we start indenting
23162 ;; from the second line.
23163 (org-with-wide-buffer
23164 (goto-char post)
23165 (end-of-line)
23166 (skip-chars-forward " \r\t\n")
23167 (if (eobp) (point) (line-beginning-position))))
23168 (t (org-element-property :contents-begin element)))))
23169 (cend (copy-marker
23170 (or (org-element-property :contents-end element)
23171 ;; Fake contents for source blocks.
23172 (org-with-wide-buffer
23173 (goto-char element-end)
23174 (skip-chars-backward " \r\t\n")
23175 (line-beginning-position)))
23176 t)))
23177 ;; Do not change items indentation individually as it
23178 ;; might break the list as a whole. On the other
23179 ;; hand, when at a plain list, indent it as a whole.
23180 (cond ((eq type 'plain-list)
23181 (let ((offset (- ind (org-get-indentation))))
23182 (unless (zerop offset)
23183 (indent-rigidly (org-element-property :begin element)
23184 (org-element-property :end element)
23185 offset))
23186 (goto-char cbeg)))
23187 ((eq type 'item) (goto-char cbeg))
23188 (t (funcall indent-to ind cbeg)))
23189 (when (< (point) end)
23190 (case type
23191 ((example-block export-block verse-block))
23192 (src-block
23193 ;; In a source block, indent source code
23194 ;; according to language major mode, but only if
23195 ;; `org-src-tab-acts-natively' is non-nil.
23196 (when (and (< (point) end) org-src-tab-acts-natively)
23197 (ignore-errors
23198 (org-babel-do-in-edit-buffer
23199 (indent-region (point-min) (point-max))))))
23200 (t (org-indent-region (point) (min cend end))))
23201 (goto-char (min cend end))
23202 (when (< (point) end) (funcall indent-to ind element-end)))
23203 (set-marker post nil)
23204 (set-marker cbeg nil)
23205 (set-marker cend nil))))
23206 (set-marker element-end nil))))
23207 (set-marker end nil))))
23209 (defun org-indent-drawer ()
23210 "Indent the drawer at point."
23211 (interactive)
23212 (unless (save-excursion
23213 (beginning-of-line)
23214 (org-looking-at-p org-drawer-regexp))
23215 (user-error "Not at a drawer"))
23216 (let ((element (org-element-at-point)))
23217 (unless (memq (org-element-type element) '(drawer property-drawer))
23218 (user-error "Not at a drawer"))
23219 (org-with-wide-buffer
23220 (org-indent-region (org-element-property :begin element)
23221 (org-element-property :end element))))
23222 (message "Drawer at point indented"))
23224 (defun org-indent-block ()
23225 "Indent the block at point."
23226 (interactive)
23227 (unless (save-excursion
23228 (beginning-of-line)
23229 (let ((case-fold-search t))
23230 (org-looking-at-p "[ \t]*#\\+\\(begin\\|end\\)_")))
23231 (user-error "Not at a block"))
23232 (let ((element (org-element-at-point)))
23233 (unless (memq (org-element-type element)
23234 '(comment-block center-block dynamic-block example-block
23235 export-block quote-block special-block
23236 src-block verse-block))
23237 (user-error "Not at a block"))
23238 (org-with-wide-buffer
23239 (org-indent-region (org-element-property :begin element)
23240 (org-element-property :end element))))
23241 (message "Block at point indented"))
23244 ;;; Filling
23246 ;; We use our own fill-paragraph and auto-fill functions.
23248 ;; `org-fill-paragraph' relies on adaptive filling and context
23249 ;; checking. Appropriate `fill-prefix' is computed with
23250 ;; `org-adaptive-fill-function'.
23252 ;; `org-auto-fill-function' takes care of auto-filling. It calls
23253 ;; `do-auto-fill' only on valid areas with `fill-prefix' shadowed with
23254 ;; `org-adaptive-fill-function' value. Internally,
23255 ;; `org-comment-line-break-function' breaks the line.
23257 ;; `org-setup-filling' installs filling and auto-filling related
23258 ;; variables during `org-mode' initialization.
23260 (defvar org-element-paragraph-separate) ; org-element.el
23261 (defun org-setup-filling ()
23262 (require 'org-element)
23263 ;; Prevent auto-fill from inserting unwanted new items.
23264 (when (boundp 'fill-nobreak-predicate)
23265 (org-set-local
23266 'fill-nobreak-predicate
23267 (org-uniquify
23268 (append fill-nobreak-predicate
23269 '(org-fill-line-break-nobreak-p
23270 org-fill-paragraph-with-timestamp-nobreak-p)))))
23271 (let ((paragraph-ending (substring org-element-paragraph-separate 1)))
23272 (org-set-local 'paragraph-start paragraph-ending)
23273 (org-set-local 'paragraph-separate paragraph-ending))
23274 (org-set-local 'fill-paragraph-function 'org-fill-paragraph)
23275 (org-set-local 'auto-fill-inhibit-regexp nil)
23276 (org-set-local 'adaptive-fill-function 'org-adaptive-fill-function)
23277 (org-set-local 'normal-auto-fill-function 'org-auto-fill-function)
23278 (org-set-local 'comment-line-break-function 'org-comment-line-break-function))
23280 (defun org-fill-line-break-nobreak-p ()
23281 "Non-nil when a new line at point would create an Org line break."
23282 (save-excursion
23283 (skip-chars-backward "[ \t]")
23284 (skip-chars-backward "\\\\")
23285 (looking-at "\\\\\\\\\\($\\|[^\\\\]\\)")))
23287 (defun org-fill-paragraph-with-timestamp-nobreak-p ()
23288 "Non-nil when a new line at point would split a timestamp."
23289 (and (org-at-timestamp-p t)
23290 (not (looking-at org-ts-regexp-both))))
23292 (declare-function message-in-body-p "message" ())
23293 (defvar orgtbl-line-start-regexp) ; From org-table.el
23294 (defun org-adaptive-fill-function ()
23295 "Compute a fill prefix for the current line.
23296 Return fill prefix, as a string, or nil if current line isn't
23297 meant to be filled. For convenience, if `adaptive-fill-regexp'
23298 matches in paragraphs or comments, use it."
23299 (catch 'exit
23300 (when (derived-mode-p 'message-mode)
23301 (save-excursion
23302 (beginning-of-line)
23303 (cond ((not (message-in-body-p)) (throw 'exit nil))
23304 ((org-looking-at-p org-table-line-regexp) (throw 'exit nil))
23305 ((looking-at message-cite-prefix-regexp)
23306 (throw 'exit (match-string-no-properties 0)))
23307 ((looking-at org-outline-regexp)
23308 (throw 'exit (make-string (length (match-string 0)) ?\s))))))
23309 (org-with-wide-buffer
23310 (unless (org-at-heading-p)
23311 (let* ((p (line-beginning-position))
23312 (element (save-excursion
23313 (beginning-of-line)
23314 (org-element-at-point)))
23315 (type (org-element-type element))
23316 (post-affiliated (org-element-property :post-affiliated element)))
23317 (unless (< p post-affiliated)
23318 (case type
23319 (comment
23320 (save-excursion
23321 (beginning-of-line)
23322 (looking-at "[ \t]*")
23323 (concat (match-string 0) "# ")))
23324 (footnote-definition "")
23325 ((item plain-list)
23326 (make-string (org-list-item-body-column post-affiliated) ?\s))
23327 (paragraph
23328 ;; Fill prefix is usually the same as the current line,
23329 ;; unless the paragraph is at the beginning of an item.
23330 (let ((parent (org-element-property :parent element)))
23331 (save-excursion
23332 (beginning-of-line)
23333 (cond ((eq (org-element-type parent) 'item)
23334 (make-string (org-list-item-body-column
23335 (org-element-property :begin parent))
23336 ?\s))
23337 ((and adaptive-fill-regexp
23338 ;; Locally disable
23339 ;; `adaptive-fill-function' to let
23340 ;; `fill-context-prefix' handle
23341 ;; `adaptive-fill-regexp' variable.
23342 (let (adaptive-fill-function)
23343 (fill-context-prefix
23344 post-affiliated
23345 (org-element-property :end element)))))
23346 ((looking-at "[ \t]+") (match-string 0))
23347 (t "")))))
23348 (comment-block
23349 ;; Only fill contents if P is within block boundaries.
23350 (let* ((cbeg (save-excursion (goto-char post-affiliated)
23351 (forward-line)
23352 (point)))
23353 (cend (save-excursion
23354 (goto-char (org-element-property :end element))
23355 (skip-chars-backward " \r\t\n")
23356 (line-beginning-position))))
23357 (when (and (>= p cbeg) (< p cend))
23358 (if (save-excursion (beginning-of-line) (looking-at "[ \t]+"))
23359 (match-string 0)
23360 "")))))))))))
23362 (declare-function message-goto-body "message" ())
23363 (defvar message-cite-prefix-regexp) ; From message.el
23364 (defun org-fill-paragraph (&optional justify)
23365 "Fill element at point, when applicable.
23367 This function only applies to comment blocks, comments, example
23368 blocks and paragraphs. Also, as a special case, re-align table
23369 when point is at one.
23371 If JUSTIFY is non-nil (interactively, with prefix argument),
23372 justify as well. If `sentence-end-double-space' is non-nil, then
23373 period followed by one space does not end a sentence, so don't
23374 break a line there. The variable `fill-column' controls the
23375 width for filling.
23377 For convenience, when point is at a plain list, an item or
23378 a footnote definition, try to fill the first paragraph within."
23379 (interactive)
23380 (if (and (derived-mode-p 'message-mode)
23381 (or (not (message-in-body-p))
23382 (save-excursion (move-beginning-of-line 1)
23383 (looking-at message-cite-prefix-regexp))))
23384 ;; First ensure filling is correct in message-mode.
23385 (let ((fill-paragraph-function
23386 (cadadr (assoc 'fill-paragraph-function org-fb-vars)))
23387 (fill-prefix (cadadr (assoc 'fill-prefix org-fb-vars)))
23388 (paragraph-start (cadadr (assoc 'paragraph-start org-fb-vars)))
23389 (paragraph-separate
23390 (cadadr (assoc 'paragraph-separate org-fb-vars))))
23391 (fill-paragraph nil))
23392 (with-syntax-table org-mode-transpose-word-syntax-table
23393 ;; Move to end of line in order to get the first paragraph
23394 ;; within a plain list or a footnote definition.
23395 (let ((element (save-excursion
23396 (end-of-line)
23397 (or (ignore-errors (org-element-at-point))
23398 (user-error "An element cannot be parsed line %d"
23399 (line-number-at-pos (point)))))))
23400 ;; First check if point is in a blank line at the beginning of
23401 ;; the buffer. In that case, ignore filling.
23402 (case (org-element-type element)
23403 ;; Use major mode filling function is src blocks.
23404 (src-block (org-babel-do-key-sequence-in-edit-buffer (kbd "M-q")))
23405 ;; Align Org tables, leave table.el tables as-is.
23406 (table-row (org-table-align) t)
23407 (table
23408 (when (eq (org-element-property :type element) 'org)
23409 (save-excursion
23410 (goto-char (org-element-property :post-affiliated element))
23411 (org-table-align)))
23413 (paragraph
23414 ;; Paragraphs may contain `line-break' type objects.
23415 (let ((beg (max (point-min)
23416 (org-element-property :contents-begin element)))
23417 (end (min (point-max)
23418 (org-element-property :contents-end element))))
23419 ;; Do nothing if point is at an affiliated keyword.
23420 (if (< (line-end-position) beg) t
23421 (when (derived-mode-p 'message-mode)
23422 ;; In `message-mode', do not fill following citation
23423 ;; in current paragraph nor text before message body.
23424 (let ((body-start (save-excursion (message-goto-body))))
23425 (when body-start (setq beg (max body-start beg))))
23426 (when (save-excursion
23427 (re-search-forward
23428 (concat "^" message-cite-prefix-regexp) end t))
23429 (setq end (match-beginning 0))))
23430 ;; Fill paragraph, taking line breaks into account.
23431 (save-excursion
23432 (goto-char beg)
23433 (let ((cuts (list beg)))
23434 (while (re-search-forward "\\\\\\\\[ \t]*\n" end t)
23435 (when (eq 'line-break
23436 (org-element-type
23437 (save-excursion (backward-char)
23438 (org-element-context))))
23439 (push (point) cuts)))
23440 (dolist (c (delq end cuts))
23441 (fill-region-as-paragraph c end justify)
23442 (setq end c))))
23443 t)))
23444 ;; Contents of `comment-block' type elements should be
23445 ;; filled as plain text, but only if point is within block
23446 ;; markers.
23447 (comment-block
23448 (let* ((case-fold-search t)
23449 (beg (save-excursion
23450 (goto-char (org-element-property :begin element))
23451 (re-search-forward "^[ \t]*#\\+begin_comment" nil t)
23452 (forward-line)
23453 (point)))
23454 (end (save-excursion
23455 (goto-char (org-element-property :end element))
23456 (re-search-backward "^[ \t]*#\\+end_comment" nil t)
23457 (line-beginning-position))))
23458 (if (or (< (point) beg) (> (point) end)) t
23459 (fill-region-as-paragraph
23460 (save-excursion (end-of-line)
23461 (re-search-backward "^[ \t]*$" beg 'move)
23462 (line-beginning-position))
23463 (save-excursion (beginning-of-line)
23464 (re-search-forward "^[ \t]*$" end 'move)
23465 (line-beginning-position))
23466 justify))))
23467 ;; Fill comments.
23468 (comment
23469 (let ((begin (org-element-property :post-affiliated element))
23470 (end (org-element-property :end element)))
23471 (when (and (>= (point) begin) (<= (point) end))
23472 (let ((begin (save-excursion
23473 (end-of-line)
23474 (if (re-search-backward "^[ \t]*#[ \t]*$" begin t)
23475 (progn (forward-line) (point))
23476 begin)))
23477 (end (save-excursion
23478 (end-of-line)
23479 (if (re-search-forward "^[ \t]*#[ \t]*$" end 'move)
23480 (1- (line-beginning-position))
23481 (skip-chars-backward " \r\t\n")
23482 (line-end-position)))))
23483 ;; Do not fill comments when at a blank line.
23484 (when (> end begin)
23485 (let ((fill-prefix
23486 (save-excursion
23487 (beginning-of-line)
23488 (looking-at "[ \t]*#")
23489 (let ((comment-prefix (match-string 0)))
23490 (goto-char (match-end 0))
23491 (if (looking-at adaptive-fill-regexp)
23492 (concat comment-prefix (match-string 0))
23493 (concat comment-prefix " "))))))
23494 (save-excursion
23495 (fill-region-as-paragraph begin end justify))))))
23497 ;; Ignore every other element.
23498 (otherwise t))))))
23500 (defun org-auto-fill-function ()
23501 "Auto-fill function."
23502 ;; Check if auto-filling is meaningful.
23503 (let ((fc (current-fill-column)))
23504 (when (and fc (> (current-column) fc))
23505 (let* ((fill-prefix (org-adaptive-fill-function))
23506 ;; Enforce empty fill prefix, if required. Otherwise, it
23507 ;; will be computed again.
23508 (adaptive-fill-mode (not (equal fill-prefix ""))))
23509 (when fill-prefix (do-auto-fill))))))
23511 (defun org-comment-line-break-function (&optional soft)
23512 "Break line at point and indent, continuing comment if within one.
23513 The inserted newline is marked hard if variable
23514 `use-hard-newlines' is true, unless optional argument SOFT is
23515 non-nil."
23516 (if soft (insert-and-inherit ?\n) (newline 1))
23517 (save-excursion (forward-char -1) (delete-horizontal-space))
23518 (delete-horizontal-space)
23519 (indent-to-left-margin)
23520 (insert-before-markers-and-inherit fill-prefix))
23523 ;;; Fixed Width Areas
23525 (defun org-toggle-fixed-width ()
23526 "Toggle fixed-width markup.
23528 Add or remove fixed-width markup on current line, whenever it
23529 makes sense. Return an error otherwise.
23531 If a region is active and if it contains only fixed-width areas
23532 or blank lines, remove all fixed-width markup in it. If the
23533 region contains anything else, convert all non-fixed-width lines
23534 to fixed-width ones.
23536 Blank lines at the end of the region are ignored unless the
23537 region only contains such lines."
23538 (interactive)
23539 (if (not (org-region-active-p))
23540 ;; No region:
23542 ;; Remove fixed width marker only in a fixed-with element.
23544 ;; Add fixed width maker in paragraphs, in blank lines after
23545 ;; elements or at the beginning of a headline or an inlinetask,
23546 ;; and before any one-line elements (e.g., a clock).
23547 (progn
23548 (beginning-of-line)
23549 (let* ((element (org-element-at-point))
23550 (type (org-element-type element)))
23551 (cond
23552 ((and (eq type 'fixed-width)
23553 (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)"))
23554 (replace-match
23555 "" nil nil nil (if (= (line-end-position) (match-end 0)) 0 1)))
23556 ((and (memq type '(babel-call clock comment diary-sexp headline
23557 horizontal-rule keyword paragraph
23558 planning))
23559 (<= (org-element-property :post-affiliated element) (point)))
23560 (skip-chars-forward " \t")
23561 (insert ": "))
23562 ((and (org-looking-at-p "[ \t]*$")
23563 (or (eq type 'inlinetask)
23564 (save-excursion
23565 (skip-chars-forward " \r\t\n")
23566 (<= (org-element-property :end element) (point)))))
23567 (delete-region (point) (line-end-position))
23568 (org-indent-line)
23569 (insert ": "))
23570 (t (user-error "Cannot insert a fixed-width line here")))))
23571 ;; Region active.
23572 (let* ((begin (save-excursion
23573 (goto-char (region-beginning))
23574 (line-beginning-position)))
23575 (end (copy-marker
23576 (save-excursion
23577 (goto-char (region-end))
23578 (unless (eolp) (beginning-of-line))
23579 (if (save-excursion (re-search-backward "\\S-" begin t))
23580 (progn (skip-chars-backward " \r\t\n") (point))
23581 (point)))))
23582 (all-fixed-width-p
23583 (catch 'not-all-p
23584 (save-excursion
23585 (goto-char begin)
23586 (skip-chars-forward " \r\t\n")
23587 (when (eobp) (throw 'not-all-p nil))
23588 (while (< (point) end)
23589 (let ((element (org-element-at-point)))
23590 (if (eq (org-element-type element) 'fixed-width)
23591 (goto-char (org-element-property :end element))
23592 (throw 'not-all-p nil))))
23593 t))))
23594 (if all-fixed-width-p
23595 (save-excursion
23596 (goto-char begin)
23597 (while (< (point) end)
23598 (when (looking-at "[ \t]*\\(:\\(?: \\|$\\)\\)")
23599 (replace-match
23600 "" nil nil nil
23601 (if (= (line-end-position) (match-end 0)) 0 1)))
23602 (forward-line)))
23603 (let ((min-ind (point-max)))
23604 ;; Find minimum indentation across all lines.
23605 (save-excursion
23606 (goto-char begin)
23607 (if (not (save-excursion (re-search-forward "\\S-" end t)))
23608 (setq min-ind 0)
23609 (catch 'zerop
23610 (while (< (point) end)
23611 (unless (org-looking-at-p "[ \t]*$")
23612 (let ((ind (org-get-indentation)))
23613 (setq min-ind (min min-ind ind))
23614 (when (zerop ind) (throw 'zerop t))))
23615 (forward-line)))))
23616 ;; Loop over all lines and add fixed-width markup everywhere
23617 ;; but in fixed-width lines.
23618 (save-excursion
23619 (goto-char begin)
23620 (while (< (point) end)
23621 (cond
23622 ((org-at-heading-p)
23623 (insert ": ")
23624 (forward-line)
23625 (while (and (< (point) end) (org-looking-at-p "[ \t]*$"))
23626 (insert ":")
23627 (forward-line)))
23628 ((org-looking-at-p "[ \t]*:\\( \\|$\\)")
23629 (let* ((element (org-element-at-point))
23630 (element-end (org-element-property :end element)))
23631 (if (eq (org-element-type element) 'fixed-width)
23632 (progn (goto-char element-end)
23633 (skip-chars-backward " \r\t\n")
23634 (forward-line))
23635 (let ((limit (min end element-end)))
23636 (while (< (point) limit)
23637 (org-move-to-column min-ind t)
23638 (insert ": ")
23639 (forward-line))))))
23641 (org-move-to-column min-ind t)
23642 (insert ": ")
23643 (forward-line)))))))
23644 (set-marker end nil))))
23647 ;;; Comments
23649 ;; Org comments syntax is quite complex. It requires the entire line
23650 ;; to be just a comment. Also, even with the right syntax at the
23651 ;; beginning of line, some some elements (i.e. verse-block or
23652 ;; example-block) don't accept comments. Usual Emacs comment commands
23653 ;; cannot cope with those requirements. Therefore, Org replaces them.
23655 ;; Org still relies on `comment-dwim', but cannot trust
23656 ;; `comment-only-p'. So, `comment-region-function' and
23657 ;; `uncomment-region-function' both point
23658 ;; to`org-comment-or-uncomment-region'. Eventually,
23659 ;; `org-insert-comment' takes care of insertion of comments at the
23660 ;; beginning of line.
23662 ;; `org-setup-comments-handling' install comments related variables
23663 ;; during `org-mode' initialization.
23665 (defun org-setup-comments-handling ()
23666 (interactive)
23667 (org-set-local 'comment-use-syntax nil)
23668 (org-set-local 'comment-start "# ")
23669 (org-set-local 'comment-start-skip "^\\s-*#\\(?: \\|$\\)")
23670 (org-set-local 'comment-insert-comment-function 'org-insert-comment)
23671 (org-set-local 'comment-region-function 'org-comment-or-uncomment-region)
23672 (org-set-local 'uncomment-region-function 'org-comment-or-uncomment-region))
23674 (defun org-insert-comment ()
23675 "Insert an empty comment above current line.
23676 If the line is empty, insert comment at its beginning. When
23677 point is within a source block, comment according to the related
23678 major mode."
23679 (if (let ((element (org-element-at-point)))
23680 (and (eq (org-element-type element) 'src-block)
23681 (< (save-excursion
23682 (goto-char (org-element-property :post-affiliated element))
23683 (line-end-position))
23684 (point))
23685 (> (save-excursion
23686 (goto-char (org-element-property :end element))
23687 (skip-chars-backward " \r\t\n")
23688 (line-beginning-position))
23689 (point))))
23690 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23691 (beginning-of-line)
23692 (if (looking-at "\\s-*$") (delete-region (point) (point-at-eol))
23693 (open-line 1))
23694 (org-indent-line)
23695 (insert "# ")))
23697 (defvar comment-empty-lines) ; From newcomment.el.
23698 (defun org-comment-or-uncomment-region (beg end &rest _)
23699 "Comment or uncomment each non-blank line in the region.
23700 Uncomment each non-blank line between BEG and END if it only
23701 contains commented lines. Otherwise, comment them. If region is
23702 strictly within a source block, use appropriate comment syntax."
23703 (if (let ((element (org-element-at-point)))
23704 (and (eq (org-element-type element) 'src-block)
23705 (< (save-excursion
23706 (goto-char (org-element-property :post-affiliated element))
23707 (line-end-position))
23708 beg)
23709 (>= (save-excursion
23710 (goto-char (org-element-property :end element))
23711 (skip-chars-backward " \r\t\n")
23712 (line-beginning-position))
23713 end)))
23714 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23715 (save-restriction
23716 ;; Restrict region
23717 (narrow-to-region (save-excursion (goto-char beg)
23718 (skip-chars-forward " \r\t\n" end)
23719 (line-beginning-position))
23720 (save-excursion (goto-char end)
23721 (skip-chars-backward " \r\t\n" beg)
23722 (line-end-position)))
23723 (let ((uncommentp
23724 ;; UNCOMMENTP is non-nil when every non blank line between
23725 ;; BEG and END is a comment.
23726 (save-excursion
23727 (goto-char (point-min))
23728 (while (and (not (eobp))
23729 (let ((element (org-element-at-point)))
23730 (and (eq (org-element-type element) 'comment)
23731 (goto-char (min (point-max)
23732 (org-element-property
23733 :end element)))))))
23734 (eobp))))
23735 (if uncommentp
23736 ;; Only blank lines and comments in region: uncomment it.
23737 (save-excursion
23738 (goto-char (point-min))
23739 (while (not (eobp))
23740 (when (looking-at "[ \t]*\\(#\\(?: \\|$\\)\\)")
23741 (replace-match "" nil nil nil 1))
23742 (forward-line)))
23743 ;; Comment each line in region.
23744 (let ((min-indent (point-max)))
23745 ;; First find the minimum indentation across all lines.
23746 (save-excursion
23747 (goto-char (point-min))
23748 (while (and (not (eobp)) (not (zerop min-indent)))
23749 (unless (looking-at "[ \t]*$")
23750 (setq min-indent (min min-indent (current-indentation))))
23751 (forward-line)))
23752 ;; Then loop over all lines.
23753 (save-excursion
23754 (goto-char (point-min))
23755 (while (not (eobp))
23756 (unless (and (not comment-empty-lines) (looking-at "[ \t]*$"))
23757 ;; Don't get fooled by invisible text (e.g. link path)
23758 ;; when moving to column MIN-INDENT.
23759 (let ((buffer-invisibility-spec nil))
23760 (org-move-to-column min-indent t))
23761 (insert comment-start))
23762 (forward-line)))))))))
23764 (defun org-comment-dwim (arg)
23765 "Call `comment-dwim' within a source edit buffer if needed."
23766 (interactive "*P")
23767 (if (org-in-src-block-p)
23768 (org-babel-do-in-edit-buffer (call-interactively 'comment-dwim))
23769 (call-interactively 'comment-dwim)))
23772 ;;; Timestamps API
23774 ;; This section contains tools to operate on timestamp objects, as
23775 ;; returned by, e.g. `org-element-context'.
23777 (defun org-timestamp--to-internal-time (timestamp &optional end)
23778 "Encode TIMESTAMP object into Emacs internal time.
23779 Use end of date range or time range when END is non-nil."
23780 (apply #'encode-time
23781 (cons 0
23782 (mapcar
23783 (lambda (prop) (or (org-element-property prop timestamp) 0))
23784 (if end '(:minute-end :hour-end :day-end :month-end :year-end)
23785 '(:minute-start :hour-start :day-start :month-start
23786 :year-start))))))
23788 (defun org-timestamp-has-time-p (timestamp)
23789 "Non-nil when TIMESTAMP has a time specified."
23790 (org-element-property :hour-start timestamp))
23792 (defun org-timestamp-format (timestamp format &optional end utc)
23793 "Format a TIMESTAMP object into a string.
23795 FORMAT is a format specifier to be passed to
23796 `format-time-string'.
23798 When optional argument END is non-nil, use end of date-range or
23799 time-range, if possible.
23801 When optional argument UTC is non-nil, time will be expressed as
23802 Universal Time."
23803 (format-time-string
23804 format (org-timestamp--to-internal-time timestamp end) utc))
23806 (defun org-timestamp-split-range (timestamp &optional end)
23807 "Extract a TIMESTAMP object from a date or time range.
23809 END, when non-nil, means extract the end of the range.
23810 Otherwise, extract its start.
23812 Return a new timestamp object."
23813 (let ((type (org-element-property :type timestamp)))
23814 (if (memq type '(active inactive diary)) timestamp
23815 (let ((split-ts (org-element-copy timestamp)))
23816 ;; Set new type.
23817 (org-element-put-property
23818 split-ts :type (if (eq type 'active-range) 'active 'inactive))
23819 ;; Copy start properties over end properties if END is
23820 ;; non-nil. Otherwise, copy end properties over `start' ones.
23821 (let ((p-alist '((:minute-start . :minute-end)
23822 (:hour-start . :hour-end)
23823 (:day-start . :day-end)
23824 (:month-start . :month-end)
23825 (:year-start . :year-end))))
23826 (dolist (p-cell p-alist)
23827 (org-element-put-property
23828 split-ts
23829 (funcall (if end #'car #'cdr) p-cell)
23830 (org-element-property
23831 (funcall (if end #'cdr #'car) p-cell) split-ts)))
23832 ;; Eventually refresh `:raw-value'.
23833 (org-element-put-property split-ts :raw-value nil)
23834 (org-element-put-property
23835 split-ts :raw-value (org-element-interpret-data split-ts)))))))
23837 (defun org-timestamp-translate (timestamp &optional boundary)
23838 "Translate TIMESTAMP object to custom format.
23840 Format string is defined in `org-time-stamp-custom-formats',
23841 which see.
23843 When optional argument BOUNDARY is non-nil, it is either the
23844 symbol `start' or `end'. In this case, only translate the
23845 starting or ending part of TIMESTAMP if it is a date or time
23846 range. Otherwise, translate both parts.
23848 Return timestamp as-is if `org-display-custom-times' is nil or if
23849 it has a `diary' type."
23850 (let ((type (org-element-property :type timestamp)))
23851 (if (or (not org-display-custom-times) (eq type 'diary))
23852 (org-element-interpret-data timestamp)
23853 (let ((fmt (funcall (if (org-timestamp-has-time-p timestamp) #'cdr #'car)
23854 org-time-stamp-custom-formats)))
23855 (if (and (not boundary) (memq type '(active-range inactive-range)))
23856 (concat (org-timestamp-format timestamp fmt)
23857 "--"
23858 (org-timestamp-format timestamp fmt t))
23859 (org-timestamp-format timestamp fmt (eq boundary 'end)))))))
23863 ;;; Other stuff.
23865 (defvar reftex-docstruct-symbol)
23866 (defvar reftex-cite-format)
23867 (defvar org--rds)
23869 (defun org-reftex-citation ()
23870 "Use reftex-citation to insert a citation into the buffer.
23871 This looks for a line like
23873 #+BIBLIOGRAPHY: foo plain option:-d
23875 and derives from it that foo.bib is the bibliography file relevant
23876 for this document. It then installs the necessary environment for RefTeX
23877 to work in this buffer and calls `reftex-citation' to insert a citation
23878 into the buffer.
23880 Export of such citations to both LaTeX and HTML is handled by the contributed
23881 package ox-bibtex by Taru Karttunen."
23882 (interactive)
23883 (let ((reftex-docstruct-symbol 'org--rds)
23884 (reftex-cite-format "\\cite{%l}")
23885 org--rds bib)
23886 (save-excursion
23887 (save-restriction
23888 (widen)
23889 (let ((case-fold-search t)
23890 (re "^[ \t]*#\\+BIBLIOGRAPHY:[ \t]+\\([^ \t\n]+\\)"))
23891 (if (not (save-excursion
23892 (or (re-search-forward re nil t)
23893 (re-search-backward re nil t))))
23894 (user-error "No bibliography defined in file")
23895 (setq bib (concat (match-string 1) ".bib")
23896 org--rds (list (list 'bib bib)))))))
23897 (call-interactively 'reftex-citation)))
23899 ;;;; Functions extending outline functionality
23901 (defun org-beginning-of-line (&optional arg)
23902 "Go to the beginning of the current line. If that is invisible, continue
23903 to a visible line beginning. This makes the function of C-a more intuitive.
23904 If this is a headline, and `org-special-ctrl-a/e' is set, ignore tags on the
23905 first attempt, and only move to after the tags when the cursor is already
23906 beyond the end of the headline."
23907 (interactive "P")
23908 (let ((pos (point))
23909 (special (if (consp org-special-ctrl-a/e)
23910 (car org-special-ctrl-a/e)
23911 org-special-ctrl-a/e))
23912 deactivate-mark refpos)
23913 (if (org-bound-and-true-p visual-line-mode)
23914 (beginning-of-visual-line 1)
23915 (beginning-of-line 1))
23916 (if (and arg (fboundp 'move-beginning-of-line))
23917 (call-interactively 'move-beginning-of-line)
23918 (if (bobp)
23920 (backward-char 1)
23921 (if (org-truely-invisible-p)
23922 (while (and (not (bobp)) (org-truely-invisible-p))
23923 (backward-char 1)
23924 (beginning-of-line 1))
23925 (forward-char 1))))
23926 (when special
23927 (cond
23928 ((and (looking-at org-complex-heading-regexp)
23929 (eq (char-after (match-end 1)) ?\s))
23930 (setq refpos (min (1+ (or (match-end 3) (match-end 2) (match-end 1)))
23931 (point-at-eol)))
23932 (goto-char
23933 (if (eq special t)
23934 (cond ((> pos refpos) refpos)
23935 ((= pos (point)) refpos)
23936 (t (point)))
23937 (cond ((> pos (point)) (point))
23938 ((not (eq last-command this-command)) (point))
23939 (t refpos)))))
23940 ((org-at-item-p)
23941 ;; Being at an item and not looking at an the item means point
23942 ;; was previously moved to beginning of a visual line, which
23943 ;; doesn't contain the item. Therefore, do nothing special,
23944 ;; just stay here.
23945 (when (looking-at org-list-full-item-re)
23946 ;; Set special position at first white space character after
23947 ;; bullet, and check-box, if any.
23948 (let ((after-bullet
23949 (let ((box (match-end 3)))
23950 (if (not box) (match-end 1)
23951 (let ((after (char-after box)))
23952 (if (and after (= after ? )) (1+ box) box))))))
23953 ;; Special case: Move point to special position when
23954 ;; currently after it or at beginning of line.
23955 (if (eq special t)
23956 (when (or (> pos after-bullet) (= (point) pos))
23957 (goto-char after-bullet))
23958 ;; Reversed case: Move point to special position when
23959 ;; point was already at beginning of line and command is
23960 ;; repeated.
23961 (when (and (= (point) pos) (eq last-command this-command))
23962 (goto-char after-bullet))))))))
23963 (org-no-warnings
23964 (and (featurep 'xemacs) (setq zmacs-region-stays t))))
23965 (setq disable-point-adjustment
23966 (or (not (invisible-p (point)))
23967 (not (invisible-p (max (point-min) (1- (point))))))))
23969 (defun org-end-of-line (&optional arg)
23970 "Go to the end of the line.
23971 If this is a headline, and `org-special-ctrl-a/e' is set, ignore
23972 tags on the first attempt, and only move to after the tags when
23973 the cursor is already beyond the end of the headline."
23974 (interactive "P")
23975 (let ((special (if (consp org-special-ctrl-a/e) (cdr org-special-ctrl-a/e)
23976 org-special-ctrl-a/e))
23977 (move-fun (cond ((org-bound-and-true-p visual-line-mode)
23978 'end-of-visual-line)
23979 ((fboundp 'move-end-of-line) 'move-end-of-line)
23980 (t 'end-of-line)))
23981 deactivate-mark)
23982 (if (or (not special) arg) (call-interactively move-fun)
23983 (let* ((element (save-excursion (beginning-of-line)
23984 (org-element-at-point)))
23985 (type (org-element-type element)))
23986 (cond
23987 ((memq type '(headline inlinetask))
23988 (let ((pos (point)))
23989 (beginning-of-line 1)
23990 (if (looking-at (org-re ".*?\\(?:\\([ \t]*\\)\\(:[[:alnum:]_@#%:]+:\\)?[ \t]*\\)?$"))
23991 (if (eq special t)
23992 (if (or (< pos (match-beginning 1)) (= pos (match-end 0)))
23993 (goto-char (match-beginning 1))
23994 (goto-char (match-end 0)))
23995 (if (or (< pos (match-end 0))
23996 (not (eq this-command last-command)))
23997 (goto-char (match-end 0))
23998 (goto-char (match-beginning 1))))
23999 (call-interactively move-fun))))
24000 ((outline-invisible-p (line-end-position))
24001 ;; If element is hidden, `move-end-of-line' would put point
24002 ;; after it. Use `end-of-line' to stay on current line.
24003 (call-interactively 'end-of-line))
24004 (t (call-interactively move-fun)))))
24005 (org-no-warnings (and (featurep 'xemacs) (setq zmacs-region-stays t))))
24006 (setq disable-point-adjustment
24007 (or (not (invisible-p (point)))
24008 (not (invisible-p (max (point-min) (1- (point))))))))
24010 (define-key org-mode-map "\C-a" 'org-beginning-of-line)
24011 (define-key org-mode-map "\C-e" 'org-end-of-line)
24013 (defun org-backward-sentence (&optional _arg)
24014 "Go to beginning of sentence, or beginning of table field.
24015 This will call `backward-sentence' or `org-table-beginning-of-field',
24016 depending on context."
24017 (interactive)
24018 (let* ((element (org-element-at-point))
24019 (contents-begin (org-element-property :contents-begin element))
24020 (table (org-element-lineage element '(table) t)))
24021 (if (and table
24022 (> (point) contents-begin)
24023 (<= (point) (org-element-property :contents-end table)))
24024 (call-interactively #'org-table-beginning-of-field)
24025 (save-restriction
24026 (when (and contents-begin
24027 (< (point-min) contents-begin)
24028 (> (point) contents-begin))
24029 (narrow-to-region contents-begin
24030 (org-element-property :contents-end element)))
24031 (call-interactively #'backward-sentence)))))
24033 (defun org-forward-sentence (&optional _arg)
24034 "Go to end of sentence, or end of table field.
24035 This will call `forward-sentence' or `org-table-end-of-field',
24036 depending on context."
24037 (interactive)
24038 (let* ((element (org-element-at-point))
24039 (contents-end (org-element-property :contents-end element))
24040 (table (org-element-lineage element '(table) t)))
24041 (if (and table
24042 (>= (point) (org-element-property :contents-begin table))
24043 (< (point) contents-end))
24044 (call-interactively #'org-table-end-of-field)
24045 (save-restriction
24046 (when (and contents-end
24047 (> (point-max) contents-end)
24048 ;; Skip blank lines between elements.
24049 (< (org-element-property :end element)
24050 (save-excursion (goto-char contents-end)
24051 (skip-chars-forward " \r\t\n"))))
24052 (narrow-to-region (org-element-property :contents-begin element)
24053 contents-end))
24054 (call-interactively #'forward-sentence)))))
24056 (define-key org-mode-map "\M-a" 'org-backward-sentence)
24057 (define-key org-mode-map "\M-e" 'org-forward-sentence)
24059 (defun org-kill-line (&optional _arg)
24060 "Kill line, to tags or end of line."
24061 (interactive)
24062 (cond
24063 ((or (not org-special-ctrl-k)
24064 (bolp)
24065 (not (org-at-heading-p)))
24066 (if (and (get-char-property (min (point-max) (point-at-eol)) 'invisible)
24067 org-ctrl-k-protect-subtree)
24068 (if (or (eq org-ctrl-k-protect-subtree 'error)
24069 (not (y-or-n-p "Kill hidden subtree along with headline? ")))
24070 (user-error "C-k aborted as it would kill a hidden subtree")))
24071 (call-interactively
24072 (if (org-bound-and-true-p visual-line-mode) 'kill-visual-line 'kill-line)))
24073 ((looking-at (org-re ".*?\\S-\\([ \t]+\\(:[[:alnum:]_@#%:]+:\\)\\)[ \t]*$"))
24074 (kill-region (point) (match-beginning 1))
24075 (org-set-tags nil t))
24076 (t (kill-region (point) (point-at-eol)))))
24078 (define-key org-mode-map "\C-k" 'org-kill-line)
24080 (defun org-yank (&optional arg)
24081 "Yank. If the kill is a subtree, treat it specially.
24082 This command will look at the current kill and check if is a single
24083 subtree, or a series of subtrees[1]. If it passes the test, and if the
24084 cursor is at the beginning of a line or after the stars of a currently
24085 empty headline, then the yank is handled specially. How exactly depends
24086 on the value of the following variables, both set by default.
24088 `org-yank-folded-subtrees'
24089 When set, the subtree(s) will be folded after insertion, but only
24090 if doing so would now swallow text after the yanked text.
24092 `org-yank-adjusted-subtrees'
24093 When set, the subtree will be promoted or demoted in order to
24094 fit into the local outline tree structure, which means that the
24095 level will be adjusted so that it becomes the smaller one of the
24096 two *visible* surrounding headings.
24098 Any prefix to this command will cause `yank' to be called directly with
24099 no special treatment. In particular, a simple \\[universal-argument] prefix \
24100 will just
24101 plainly yank the text as it is.
24103 \[1] The test checks if the first non-white line is a heading
24104 and if there are no other headings with fewer stars."
24105 (interactive "P")
24106 (org-yank-generic 'yank arg))
24108 (defun org-yank-generic (command arg)
24109 "Perform some yank-like command.
24111 This function implements the behavior described in the `org-yank'
24112 documentation. However, it has been generalized to work for any
24113 interactive command with similar behavior."
24115 ;; pretend to be command COMMAND
24116 (setq this-command command)
24118 (if arg
24119 (call-interactively command)
24121 (let ((subtreep ; is kill a subtree, and the yank position appropriate?
24122 (and (org-kill-is-subtree-p)
24123 (or (bolp)
24124 (and (looking-at "[ \t]*$")
24125 (string-match
24126 "\\`\\*+\\'"
24127 (buffer-substring (point-at-bol) (point)))))))
24128 swallowp)
24129 (cond
24130 ((and subtreep org-yank-folded-subtrees)
24131 (let ((beg (point))
24132 end)
24133 (if (and subtreep org-yank-adjusted-subtrees)
24134 (org-paste-subtree nil nil 'for-yank)
24135 (call-interactively command))
24137 (setq end (point))
24138 (goto-char beg)
24139 (when (and (bolp) subtreep
24140 (not (setq swallowp
24141 (org-yank-folding-would-swallow-text beg end))))
24142 (org-with-limited-levels
24143 (or (looking-at org-outline-regexp)
24144 (re-search-forward org-outline-regexp-bol end t))
24145 (while (and (< (point) end) (looking-at org-outline-regexp))
24146 (outline-hide-subtree)
24147 (org-cycle-show-empty-lines 'folded)
24148 (condition-case nil
24149 (outline-forward-same-level 1)
24150 (error (goto-char end))))))
24151 (when swallowp
24152 (message
24153 "Inserted text not folded because that would swallow text"))
24155 (goto-char end)
24156 (skip-chars-forward " \t\n\r")
24157 (beginning-of-line 1)
24158 (push-mark beg 'nomsg)))
24159 ((and subtreep org-yank-adjusted-subtrees)
24160 (let ((beg (point-at-bol)))
24161 (org-paste-subtree nil nil 'for-yank)
24162 (push-mark beg 'nomsg)))
24164 (call-interactively command))))))
24166 (defun org-yank-folding-would-swallow-text (beg end)
24167 "Would hide-subtree at BEG swallow any text after END?"
24168 (let (level)
24169 (org-with-limited-levels
24170 (save-excursion
24171 (goto-char beg)
24172 (when (or (looking-at org-outline-regexp)
24173 (re-search-forward org-outline-regexp-bol end t))
24174 (setq level (org-outline-level)))
24175 (goto-char end)
24176 (skip-chars-forward " \t\r\n\v\f")
24177 (if (or (eobp)
24178 (and (bolp) (looking-at org-outline-regexp)
24179 (<= (org-outline-level) level)))
24180 nil ; Nothing would be swallowed
24181 t))))) ; something would swallow
24183 (define-key org-mode-map "\C-y" 'org-yank)
24185 (defun org-truely-invisible-p ()
24186 "Check if point is at a character currently not visible.
24187 This version does not only check the character property, but also
24188 `visible-mode'."
24189 ;; Early versions of noutline don't have `outline-invisible-p'.
24190 (if (org-bound-and-true-p visible-mode)
24192 (outline-invisible-p)))
24194 (defun org-invisible-p2 ()
24195 "Check if point is at a character currently not visible."
24196 (save-excursion
24197 (if (and (eolp) (not (bobp))) (backward-char 1))
24198 ;; Early versions of noutline don't have `outline-invisible-p'.
24199 (outline-invisible-p)))
24201 (defun org-back-to-heading (&optional invisible-ok)
24202 "Call `outline-back-to-heading', but provide a better error message."
24203 (condition-case nil
24204 (outline-back-to-heading invisible-ok)
24205 (error (error "Before first headline at position %d in buffer %s"
24206 (point) (current-buffer)))))
24208 (defun org-before-first-heading-p ()
24209 "Before first heading?"
24210 (save-excursion
24211 (end-of-line)
24212 (null (re-search-backward org-outline-regexp-bol nil t))))
24214 (defun org-at-heading-p (&optional ignored)
24215 (outline-on-heading-p t))
24216 ;; Compatibility alias with Org versions < 7.8.03
24217 (defalias 'org-on-heading-p 'org-at-heading-p)
24219 (defun org-in-commented-heading-p (&optional no-inheritance)
24220 "Non-nil if point is under a commented heading.
24221 This function also checks ancestors of the current headline,
24222 unless optional argument NO-INHERITANCE is non-nil."
24223 (cond
24224 ((org-before-first-heading-p) nil)
24225 ((let ((headline (nth 4 (org-heading-components))))
24226 (and headline
24227 (let ((case-fold-search nil))
24228 (org-string-match-p (concat "^" org-comment-string "\\(?: \\|$\\)")
24229 headline)))))
24230 (no-inheritance nil)
24232 (save-excursion (and (org-up-heading-safe) (org-in-commented-heading-p))))))
24234 (defun org-at-comment-p nil
24235 "Is cursor in a commented line?"
24236 (save-excursion
24237 (save-match-data
24238 (beginning-of-line)
24239 (looking-at "^[ \t]*# "))))
24241 (defun org-at-drawer-p nil
24242 "Is cursor at a drawer keyword?"
24243 (save-excursion
24244 (move-beginning-of-line 1)
24245 (looking-at org-drawer-regexp)))
24247 (defun org-at-block-p nil
24248 "Is cursor at a block keyword?"
24249 (save-excursion
24250 (move-beginning-of-line 1)
24251 (looking-at org-block-regexp)))
24253 (defun org-point-at-end-of-empty-headline ()
24254 "If point is at the end of an empty headline, return t, else nil.
24255 If the heading only contains a TODO keyword, it is still still considered
24256 empty."
24257 (and (looking-at "[ \t]*$")
24258 (when org-todo-line-regexp
24259 (save-excursion
24260 (beginning-of-line 1)
24261 (let ((case-fold-search nil))
24262 (looking-at org-todo-line-regexp)
24263 (string= (match-string 3) ""))))))
24265 (defun org-at-heading-or-item-p ()
24266 (or (org-at-heading-p) (org-at-item-p)))
24268 (defun org-at-target-p ()
24269 (or (org-in-regexp org-radio-target-regexp)
24270 (org-in-regexp org-target-regexp)))
24271 ;; Compatibility alias with Org versions < 7.8.03
24272 (defalias 'org-on-target-p 'org-at-target-p)
24274 (defun org-up-heading-all (arg)
24275 "Move to the heading line of which the present line is a subheading.
24276 This function considers both visible and invisible heading lines.
24277 With argument, move up ARG levels."
24278 (if (fboundp 'outline-up-heading-all)
24279 (outline-up-heading-all arg) ; emacs 21 version of outline.el
24280 (outline-up-heading arg t))) ; emacs 22 version of outline.el
24282 (defun org-up-heading-safe ()
24283 "Move to the heading line of which the present line is a subheading.
24284 This version will not throw an error. It will return the level of the
24285 headline found, or nil if no higher level is found.
24287 Also, this function will be a lot faster than `outline-up-heading',
24288 because it relies on stars being the outline starters. This can really
24289 make a significant difference in outlines with very many siblings."
24290 (when (ignore-errors (org-back-to-heading t))
24291 (let ((level-up (1- (funcall outline-level))))
24292 (and (> level-up 0)
24293 (re-search-backward (format "^\\*\\{1,%d\\} " level-up) nil t)
24294 (funcall outline-level)))))
24296 (defun org-first-sibling-p ()
24297 "Is this heading the first child of its parents?"
24298 (interactive)
24299 (let ((re org-outline-regexp-bol)
24300 level l)
24301 (unless (org-at-heading-p t)
24302 (user-error "Not at a heading"))
24303 (setq level (funcall outline-level))
24304 (save-excursion
24305 (if (not (re-search-backward re nil t))
24307 (setq l (funcall outline-level))
24308 (< l level)))))
24310 (defun org-goto-sibling (&optional previous)
24311 "Goto the next sibling, even if it is invisible.
24312 When PREVIOUS is set, go to the previous sibling instead. Returns t
24313 when a sibling was found. When none is found, return nil and don't
24314 move point."
24315 (let ((fun (if previous 're-search-backward 're-search-forward))
24316 (pos (point))
24317 (re org-outline-regexp-bol)
24318 level l)
24319 (when (ignore-errors (org-back-to-heading t))
24320 (setq level (funcall outline-level))
24321 (catch 'exit
24322 (or previous (forward-char 1))
24323 (while (funcall fun re nil t)
24324 (setq l (funcall outline-level))
24325 (when (< l level) (goto-char pos) (throw 'exit nil))
24326 (when (= l level) (goto-char (match-beginning 0)) (throw 'exit t)))
24327 (goto-char pos)
24328 nil))))
24330 (defun org-show-siblings ()
24331 "Show all siblings of the current headline."
24332 (save-excursion
24333 (while (org-goto-sibling) (org-flag-heading nil)))
24334 (save-excursion
24335 (while (org-goto-sibling 'previous)
24336 (org-flag-heading nil))))
24338 (defun org-goto-first-child ()
24339 "Goto the first child, even if it is invisible.
24340 Return t when a child was found. Otherwise don't move point and
24341 return nil."
24342 (let (level (pos (point)) (re org-outline-regexp-bol))
24343 (when (ignore-errors (org-back-to-heading t))
24344 (setq level (outline-level))
24345 (forward-char 1)
24346 (if (and (re-search-forward re nil t) (> (outline-level) level))
24347 (progn (goto-char (match-beginning 0)) t)
24348 (goto-char pos) nil))))
24350 (defun org-show-hidden-entry ()
24351 "Show an entry where even the heading is hidden."
24352 (save-excursion
24353 (org-show-entry)))
24355 (defun org-flag-heading (flag &optional entry)
24356 "Flag the current heading. FLAG non-nil means make invisible.
24357 When ENTRY is non-nil, show the entire entry."
24358 (save-excursion
24359 (org-back-to-heading t)
24360 ;; Check if we should show the entire entry
24361 (if entry
24362 (progn
24363 (org-show-entry)
24364 (save-excursion
24365 (and (outline-next-heading)
24366 (org-flag-heading nil))))
24367 (outline-flag-region (max (point-min) (1- (point)))
24368 (save-excursion (outline-end-of-heading) (point))
24369 flag))))
24371 (defun org-get-next-sibling ()
24372 "Move to next heading of the same level, and return point.
24373 If there is no such heading, return nil.
24374 This is like outline-next-sibling, but invisible headings are ok."
24375 (let ((level (funcall outline-level)))
24376 (outline-next-heading)
24377 (while (and (not (eobp)) (> (funcall outline-level) level))
24378 (outline-next-heading))
24379 (if (or (eobp) (< (funcall outline-level) level))
24381 (point))))
24383 (defun org-get-last-sibling ()
24384 "Move to previous heading of the same level, and return point.
24385 If there is no such heading, return nil."
24386 (let ((opoint (point))
24387 (level (funcall outline-level)))
24388 (outline-previous-heading)
24389 (when (and (/= (point) opoint) (outline-on-heading-p t))
24390 (while (and (> (funcall outline-level) level)
24391 (not (bobp)))
24392 (outline-previous-heading))
24393 (if (< (funcall outline-level) level)
24395 (point)))))
24397 (defun org-end-of-subtree (&optional invisible-ok to-heading)
24398 "Goto to the end of a subtree."
24399 ;; This contains an exact copy of the original function, but it uses
24400 ;; `org-back-to-heading', to make it work also in invisible
24401 ;; trees. And is uses an invisible-ok argument.
24402 ;; Under Emacs this is not needed, but the old outline.el needs this fix.
24403 ;; Furthermore, when used inside Org, finding the end of a large subtree
24404 ;; with many children and grandchildren etc, this can be much faster
24405 ;; than the outline version.
24406 (org-back-to-heading invisible-ok)
24407 (let ((first t)
24408 (level (funcall outline-level)))
24409 (if (and (derived-mode-p 'org-mode) (< level 1000))
24410 ;; A true heading (not a plain list item), in Org-mode
24411 ;; This means we can easily find the end by looking
24412 ;; only for the right number of stars. Using a regexp to do
24413 ;; this is so much faster than using a Lisp loop.
24414 (let ((re (concat "^\\*\\{1," (int-to-string level) "\\} ")))
24415 (forward-char 1)
24416 (and (re-search-forward re nil 'move) (beginning-of-line 1)))
24417 ;; something else, do it the slow way
24418 (while (and (not (eobp))
24419 (or first (> (funcall outline-level) level)))
24420 (setq first nil)
24421 (outline-next-heading)))
24422 (unless to-heading
24423 (if (memq (preceding-char) '(?\n ?\^M))
24424 (progn
24425 ;; Go to end of line before heading
24426 (forward-char -1)
24427 (if (memq (preceding-char) '(?\n ?\^M))
24428 ;; leave blank line before heading
24429 (forward-char -1))))))
24430 (point))
24432 (defun org-end-of-meta-data (&optional full)
24433 "Skip planning line and properties drawer in current entry.
24434 When optional argument FULL is non-nil, also skip empty lines,
24435 clocking lines and regular drawers at the beginning of the
24436 entry."
24437 (org-back-to-heading t)
24438 (forward-line)
24439 (when (org-looking-at-p org-planning-line-re) (forward-line))
24440 (when (looking-at org-property-drawer-re)
24441 (goto-char (match-end 0))
24442 (forward-line))
24443 (when (and full (not (org-at-heading-p)))
24444 (catch 'exit
24445 (let ((end (save-excursion (outline-next-heading) (point)))
24446 (re (concat "[ \t]*$" "\\|" org-clock-line-re)))
24447 (while (not (eobp))
24448 (cond ((org-looking-at-p org-drawer-regexp)
24449 (if (re-search-forward "^[ \t]*:END:[ \t]*$" end t)
24450 (forward-line)
24451 (throw 'exit t)))
24452 ((org-looking-at-p re) (forward-line))
24453 (t (throw 'exit t))))))))
24455 (defun org-forward-heading-same-level (arg &optional invisible-ok)
24456 "Move forward to the ARG'th subheading at same level as this one.
24457 Stop at the first and last subheadings of a superior heading.
24458 Normally this only looks at visible headings, but when INVISIBLE-OK is
24459 non-nil it will also look at invisible ones."
24460 (interactive "p")
24461 (if (not (ignore-errors (org-back-to-heading invisible-ok)))
24462 (if (and arg (< arg 0))
24463 (goto-char (point-min))
24464 (outline-next-heading))
24465 (org-at-heading-p)
24466 (let ((level (- (match-end 0) (match-beginning 0) 1))
24467 (f (if (and arg (< arg 0))
24468 're-search-backward
24469 're-search-forward))
24470 (count (if arg (abs arg) 1))
24471 (result (point)))
24472 (while (and (prog1 (> count 0)
24473 (forward-char (if (and arg (< arg 0)) -1 1)))
24474 (funcall f org-outline-regexp-bol nil 'move))
24475 (let ((l (- (match-end 0) (match-beginning 0) 1)))
24476 (cond ((< l level) (setq count 0))
24477 ((and (= l level)
24478 (or invisible-ok
24479 (progn
24480 (goto-char (line-beginning-position))
24481 (not (outline-invisible-p)))))
24482 (setq count (1- count))
24483 (when (eq l level)
24484 (setq result (point)))))))
24485 (goto-char result))
24486 (beginning-of-line 1)))
24488 (defun org-backward-heading-same-level (arg &optional invisible-ok)
24489 "Move backward to the ARG'th subheading at same level as this one.
24490 Stop at the first and last subheadings of a superior heading."
24491 (interactive "p")
24492 (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok))
24494 (defun org-next-visible-heading (arg)
24495 "Move to the next visible heading.
24497 This function wraps `outline-next-visible-heading' with
24498 `org-with-limited-levels' in order to skip over inline tasks and
24499 respect customization of `org-odd-levels-only'."
24500 (interactive "p")
24501 (org-with-limited-levels
24502 (outline-next-visible-heading arg)))
24504 (defun org-previous-visible-heading (arg)
24505 "Move to the next visible heading.
24507 This function wraps `outline-previous-visible-heading' with
24508 `org-with-limited-levels' in order to skip over inline tasks and
24509 respect customization of `org-odd-levels-only'."
24510 (interactive "p")
24511 (org-with-limited-levels
24512 (outline-previous-visible-heading arg)))
24514 (defun org-next-block (arg &optional backward block-regexp)
24515 "Jump to the next block.
24517 With a prefix argument ARG, jump forward ARG many blocks.
24519 When BACKWARD is non-nil, jump to the previous block.
24521 When BLOCK-REGEXP is non-nil, use this regexp to find blocks.
24522 Match data is set according to this regexp when the function
24523 returns.
24525 Return point at beginning of the opening line of found block.
24526 Throw an error if no block is found."
24527 (interactive "p")
24528 (let ((re (or block-regexp "^[ \t]*#\\+BEGIN"))
24529 (case-fold-search t)
24530 (search-fn (if backward #'re-search-backward #'re-search-forward))
24531 (count (or arg 1))
24532 (origin (point))
24533 last-element)
24534 (if backward (beginning-of-line) (end-of-line))
24535 (while (and (> count 0) (funcall search-fn re nil t))
24536 (let ((element (save-excursion
24537 (goto-char (match-beginning 0))
24538 (save-match-data (org-element-at-point)))))
24539 (when (and (memq (org-element-type element)
24540 '(center-block comment-block dynamic-block
24541 example-block export-block quote-block
24542 special-block src-block verse-block))
24543 (<= (match-beginning 0)
24544 (org-element-property :post-affiliated element)))
24545 (setq last-element element)
24546 (decf count))))
24547 (if (= count 0)
24548 (prog1 (goto-char (org-element-property :post-affiliated last-element))
24549 (save-match-data (org-show-context)))
24550 (goto-char origin)
24551 (user-error "No %s code blocks" (if backward "previous" "further")))))
24553 (defun org-previous-block (arg &optional block-regexp)
24554 "Jump to the previous block.
24555 With a prefix argument ARG, jump backward ARG many source blocks.
24556 When BLOCK-REGEXP is non-nil, use this regexp to find blocks."
24557 (interactive "p")
24558 (org-next-block arg t block-regexp))
24560 (defun org-forward-paragraph ()
24561 "Move forward to beginning of next paragraph or equivalent.
24563 The function moves point to the beginning of the next visible
24564 structural element, which can be a paragraph, a table, a list
24565 item, etc. It also provides some special moves for convenience:
24567 - On an affiliated keyword, jump to the beginning of the
24568 relative element.
24569 - On an item or a footnote definition, move to the second
24570 element inside, if any.
24571 - On a table or a property drawer, jump after it.
24572 - On a verse or source block, stop after blank lines."
24573 (interactive)
24574 (when (eobp) (user-error "Cannot move further down"))
24575 (let* ((deactivate-mark nil)
24576 (element (org-element-at-point))
24577 (type (org-element-type element))
24578 (post-affiliated (org-element-property :post-affiliated element))
24579 (contents-begin (org-element-property :contents-begin element))
24580 (contents-end (org-element-property :contents-end element))
24581 (end (let ((end (org-element-property :end element)) (parent element))
24582 (while (and (setq parent (org-element-property :parent parent))
24583 (= (org-element-property :contents-end parent) end))
24584 (setq end (org-element-property :end parent)))
24585 end)))
24586 (cond ((not element)
24587 (skip-chars-forward " \r\t\n")
24588 (or (eobp) (beginning-of-line)))
24589 ;; On affiliated keywords, move to element's beginning.
24590 ((< (point) post-affiliated)
24591 (goto-char post-affiliated))
24592 ;; At a table row, move to the end of the table. Similarly,
24593 ;; at a node property, move to the end of the property
24594 ;; drawer.
24595 ((memq type '(node-property table-row))
24596 (goto-char (org-element-property
24597 :end (org-element-property :parent element))))
24598 ((memq type '(property-drawer table)) (goto-char end))
24599 ;; Consider blank lines as separators in verse and source
24600 ;; blocks to ease editing.
24601 ((memq type '(src-block verse-block))
24602 (when (eq type 'src-block)
24603 (setq contents-end
24604 (save-excursion (goto-char end)
24605 (skip-chars-backward " \r\t\n")
24606 (line-beginning-position))))
24607 (beginning-of-line)
24608 (when (looking-at "[ \t]*$") (skip-chars-forward " \r\t\n"))
24609 (if (not (re-search-forward "^[ \t]*$" contents-end t))
24610 (goto-char end)
24611 (skip-chars-forward " \r\t\n")
24612 (if (= (point) contents-end) (goto-char end)
24613 (beginning-of-line))))
24614 ;; With no contents, just skip element.
24615 ((not contents-begin) (goto-char end))
24616 ;; If contents are invisible, skip the element altogether.
24617 ((outline-invisible-p (line-end-position))
24618 (case type
24619 (headline
24620 (org-with-limited-levels (outline-next-visible-heading 1)))
24621 ;; At a plain list, make sure we move to the next item
24622 ;; instead of skipping the whole list.
24623 (plain-list (forward-char)
24624 (org-forward-paragraph))
24625 (otherwise (goto-char end))))
24626 ((>= (point) contents-end) (goto-char end))
24627 ((>= (point) contents-begin)
24628 ;; This can only happen on paragraphs and plain lists.
24629 (case type
24630 (paragraph (goto-char end))
24631 ;; At a plain list, try to move to second element in
24632 ;; first item, if possible.
24633 (plain-list (end-of-line)
24634 (org-forward-paragraph))))
24635 ;; When contents start on the middle of a line (e.g. in
24636 ;; items and footnote definitions), try to reach first
24637 ;; element starting after current line.
24638 ((> (line-end-position) contents-begin)
24639 (end-of-line)
24640 (org-forward-paragraph))
24641 (t (goto-char contents-begin)))))
24643 (defun org-backward-paragraph ()
24644 "Move backward to start of previous paragraph or equivalent.
24646 The function moves point to the beginning of the current
24647 structural element, which can be a paragraph, a table, a list
24648 item, etc., or to the beginning of the previous visible one if
24649 point is already there. It also provides some special moves for
24650 convenience:
24652 - On an affiliated keyword, jump to the first one.
24653 - On a table or a property drawer, move to its beginning.
24654 - On a verse or source block, stop before blank lines."
24655 (interactive)
24656 (when (bobp) (user-error "Cannot move further up"))
24657 (let* ((deactivate-mark nil)
24658 (element (org-element-at-point))
24659 (type (org-element-type element))
24660 (contents-begin (org-element-property :contents-begin element))
24661 (contents-end (org-element-property :contents-end element))
24662 (post-affiliated (org-element-property :post-affiliated element))
24663 (begin (org-element-property :begin element)))
24664 (cond
24665 ((not element) (goto-char (point-min)))
24666 ((= (point) begin)
24667 (backward-char)
24668 (org-backward-paragraph))
24669 ((<= (point) post-affiliated) (goto-char begin))
24670 ((memq type '(node-property table-row))
24671 (goto-char (org-element-property
24672 :post-affiliated (org-element-property :parent element))))
24673 ((memq type '(property-drawer table)) (goto-char begin))
24674 ((memq type '(src-block verse-block))
24675 (when (eq type 'src-block)
24676 (setq contents-begin
24677 (save-excursion (goto-char begin) (forward-line) (point))))
24678 (if (= (point) contents-begin) (goto-char post-affiliated)
24679 ;; Inside a verse block, see blank lines as paragraph
24680 ;; separators.
24681 (let ((origin (point)))
24682 (skip-chars-backward " \r\t\n" contents-begin)
24683 (when (re-search-backward "^[ \t]*$" contents-begin 'move)
24684 (skip-chars-forward " \r\t\n" origin)
24685 (if (= (point) origin) (goto-char contents-begin)
24686 (beginning-of-line))))))
24687 ((not contents-begin) (goto-char (or post-affiliated begin)))
24688 ((eq type 'paragraph)
24689 (goto-char contents-begin)
24690 ;; When at first paragraph in an item or a footnote definition,
24691 ;; move directly to beginning of line.
24692 (let ((parent-contents
24693 (org-element-property
24694 :contents-begin (org-element-property :parent element))))
24695 (when (and parent-contents (= parent-contents contents-begin))
24696 (beginning-of-line))))
24697 ;; At the end of a greater element, move to the beginning of the
24698 ;; last element within.
24699 ((>= (point) contents-end)
24700 (goto-char (1- contents-end))
24701 (org-backward-paragraph))
24702 (t (goto-char (or post-affiliated begin))))
24703 ;; Ensure we never leave point invisible.
24704 (when (outline-invisible-p (point)) (beginning-of-visual-line))))
24706 (defun org-forward-element ()
24707 "Move forward by one element.
24708 Move to the next element at the same level, when possible."
24709 (interactive)
24710 (cond ((eobp) (user-error "Cannot move further down"))
24711 ((org-with-limited-levels (org-at-heading-p))
24712 (let ((origin (point)))
24713 (goto-char (org-end-of-subtree nil t))
24714 (unless (org-with-limited-levels (org-at-heading-p))
24715 (goto-char origin)
24716 (user-error "Cannot move further down"))))
24718 (let* ((elem (org-element-at-point))
24719 (end (org-element-property :end elem))
24720 (parent (org-element-property :parent elem)))
24721 (cond ((and parent (= (org-element-property :contents-end parent) end))
24722 (goto-char (org-element-property :end parent)))
24723 ((integer-or-marker-p end) (goto-char end))
24724 (t (message "No element at point")))))))
24726 (defun org-backward-element ()
24727 "Move backward by one element.
24728 Move to the previous element at the same level, when possible."
24729 (interactive)
24730 (cond ((bobp) (user-error "Cannot move further up"))
24731 ((org-with-limited-levels (org-at-heading-p))
24732 ;; At a headline, move to the previous one, if any, or stay
24733 ;; here.
24734 (let ((origin (point)))
24735 (org-with-limited-levels (org-backward-heading-same-level 1))
24736 ;; When current headline has no sibling above, move to its
24737 ;; parent.
24738 (when (= (point) origin)
24739 (or (org-with-limited-levels (org-up-heading-safe))
24740 (progn (goto-char origin)
24741 (user-error "Cannot move further up"))))))
24743 (let* ((elem (org-element-at-point))
24744 (beg (org-element-property :begin elem)))
24745 (cond
24746 ;; Move to beginning of current element if point isn't
24747 ;; there already.
24748 ((null beg) (message "No element at point"))
24749 ((/= (point) beg) (goto-char beg))
24750 (t (goto-char beg)
24751 (skip-chars-backward " \r\t\n")
24752 (unless (bobp)
24753 (let ((prev (org-element-at-point)))
24754 (goto-char (org-element-property :begin prev))
24755 (while (and (setq prev (org-element-property :parent prev))
24756 (<= (org-element-property :end prev) beg))
24757 (goto-char (org-element-property :begin prev)))))))))))
24759 (defun org-up-element ()
24760 "Move to upper element."
24761 (interactive)
24762 (if (org-with-limited-levels (org-at-heading-p))
24763 (unless (org-up-heading-safe) (user-error "No surrounding element"))
24764 (let* ((elem (org-element-at-point))
24765 (parent (org-element-property :parent elem)))
24766 (if parent (goto-char (org-element-property :begin parent))
24767 (if (org-with-limited-levels (org-before-first-heading-p))
24768 (user-error "No surrounding element")
24769 (org-with-limited-levels (org-back-to-heading)))))))
24771 (defvar org-element-greater-elements)
24772 (defun org-down-element ()
24773 "Move to inner element."
24774 (interactive)
24775 (let ((element (org-element-at-point)))
24776 (cond
24777 ((memq (org-element-type element) '(plain-list table))
24778 (goto-char (org-element-property :contents-begin element))
24779 (forward-char))
24780 ((memq (org-element-type element) org-element-greater-elements)
24781 ;; If contents are hidden, first disclose them.
24782 (when (outline-invisible-p (line-end-position)) (org-cycle))
24783 (goto-char (or (org-element-property :contents-begin element)
24784 (user-error "No content for this element"))))
24785 (t (user-error "No inner element")))))
24787 (defun org-drag-element-backward ()
24788 "Move backward element at point."
24789 (interactive)
24790 (if (org-with-limited-levels (org-at-heading-p)) (org-move-subtree-up)
24791 (let* ((elem (org-element-at-point))
24792 (prev-elem
24793 (save-excursion
24794 (goto-char (org-element-property :begin elem))
24795 (skip-chars-backward " \r\t\n")
24796 (unless (bobp)
24797 (let* ((beg (org-element-property :begin elem))
24798 (prev (org-element-at-point))
24799 (up prev))
24800 (while (and (setq up (org-element-property :parent up))
24801 (<= (org-element-property :end up) beg))
24802 (setq prev up))
24803 prev)))))
24804 ;; Error out if no previous element or previous element is
24805 ;; a parent of the current one.
24806 (if (or (not prev-elem) (org-element-nested-p elem prev-elem))
24807 (user-error "Cannot drag element backward")
24808 (let ((pos (point)))
24809 (org-element-swap-A-B prev-elem elem)
24810 (goto-char (+ (org-element-property :begin prev-elem)
24811 (- pos (org-element-property :begin elem)))))))))
24813 (defun org-drag-element-forward ()
24814 "Move forward element at point."
24815 (interactive)
24816 (let* ((pos (point))
24817 (elem (org-element-at-point)))
24818 (when (= (point-max) (org-element-property :end elem))
24819 (user-error "Cannot drag element forward"))
24820 (goto-char (org-element-property :end elem))
24821 (let ((next-elem (org-element-at-point)))
24822 (when (or (org-element-nested-p elem next-elem)
24823 (and (eq (org-element-type next-elem) 'headline)
24824 (not (eq (org-element-type elem) 'headline))))
24825 (goto-char pos)
24826 (user-error "Cannot drag element forward"))
24827 ;; Compute new position of point: it's shifted by NEXT-ELEM
24828 ;; body's length (without final blanks) and by the length of
24829 ;; blanks between ELEM and NEXT-ELEM.
24830 (let ((size-next (- (save-excursion
24831 (goto-char (org-element-property :end next-elem))
24832 (skip-chars-backward " \r\t\n")
24833 (forward-line)
24834 ;; Small correction if buffer doesn't end
24835 ;; with a newline character.
24836 (if (and (eolp) (not (bolp))) (1+ (point)) (point)))
24837 (org-element-property :begin next-elem)))
24838 (size-blank (- (org-element-property :end elem)
24839 (save-excursion
24840 (goto-char (org-element-property :end elem))
24841 (skip-chars-backward " \r\t\n")
24842 (forward-line)
24843 (point)))))
24844 (org-element-swap-A-B elem next-elem)
24845 (goto-char (+ pos size-next size-blank))))))
24847 (defun org-drag-line-forward (arg)
24848 "Drag the line at point ARG lines forward."
24849 (interactive "p")
24850 (dotimes (n (abs arg))
24851 (let ((c (current-column)))
24852 (if (< 0 arg)
24853 (progn
24854 (beginning-of-line 2)
24855 (transpose-lines 1)
24856 (beginning-of-line 0))
24857 (transpose-lines 1)
24858 (beginning-of-line -1))
24859 (org-move-to-column c))))
24861 (defun org-drag-line-backward (arg)
24862 "Drag the line at point ARG lines backward."
24863 (interactive "p")
24864 (org-drag-line-forward (- arg)))
24866 (defun org-mark-element ()
24867 "Put point at beginning of this element, mark at end.
24869 Interactively, if this command is repeated or (in Transient Mark
24870 mode) if the mark is active, it marks the next element after the
24871 ones already marked."
24872 (interactive)
24873 (let (deactivate-mark)
24874 (if (and (org-called-interactively-p 'any)
24875 (or (and (eq last-command this-command) (mark t))
24876 (and transient-mark-mode mark-active)))
24877 (set-mark
24878 (save-excursion
24879 (goto-char (mark))
24880 (goto-char (org-element-property :end (org-element-at-point)))))
24881 (let ((element (org-element-at-point)))
24882 (end-of-line)
24883 (push-mark (org-element-property :end element) t t)
24884 (goto-char (org-element-property :begin element))))))
24886 (defun org-narrow-to-element ()
24887 "Narrow buffer to current element."
24888 (interactive)
24889 (let ((elem (org-element-at-point)))
24890 (cond
24891 ((eq (car elem) 'headline)
24892 (narrow-to-region
24893 (org-element-property :begin elem)
24894 (org-element-property :end elem)))
24895 ((memq (car elem) org-element-greater-elements)
24896 (narrow-to-region
24897 (org-element-property :contents-begin elem)
24898 (org-element-property :contents-end elem)))
24900 (narrow-to-region
24901 (org-element-property :begin elem)
24902 (org-element-property :end elem))))))
24904 (defun org-transpose-element ()
24905 "Transpose current and previous elements, keeping blank lines between.
24906 Point is moved after both elements."
24907 (interactive)
24908 (org-skip-whitespace)
24909 (let ((end (org-element-property :end (org-element-at-point))))
24910 (org-drag-element-backward)
24911 (goto-char end)))
24913 (defun org-unindent-buffer ()
24914 "Un-indent the visible part of the buffer.
24915 Relative indentation (between items, inside blocks, etc.) isn't
24916 modified."
24917 (interactive)
24918 (unless (eq major-mode 'org-mode)
24919 (user-error "Cannot un-indent a buffer not in Org mode"))
24920 (let* ((parse-tree (org-element-parse-buffer 'greater-element))
24921 unindent-tree ; For byte-compiler.
24922 (unindent-tree
24923 (function
24924 (lambda (contents)
24925 (mapc
24926 (lambda (element)
24927 (if (memq (org-element-type element) '(headline section))
24928 (funcall unindent-tree (org-element-contents element))
24929 (save-excursion
24930 (save-restriction
24931 (narrow-to-region
24932 (org-element-property :begin element)
24933 (org-element-property :end element))
24934 (org-do-remove-indentation)))))
24935 (reverse contents))))))
24936 (funcall unindent-tree (org-element-contents parse-tree))))
24938 (defun org-show-subtree ()
24939 "Show everything after this heading at deeper levels."
24940 (interactive)
24941 (outline-flag-region
24942 (point)
24943 (save-excursion
24944 (org-end-of-subtree t t))
24945 nil))
24947 (defun org-show-entry ()
24948 "Show the body directly following this heading.
24949 Show the heading too, if it is currently invisible."
24950 (interactive)
24951 (save-excursion
24952 (ignore-errors
24953 (org-back-to-heading t)
24954 (outline-flag-region
24955 (max (point-min) (1- (point)))
24956 (save-excursion
24957 (if (re-search-forward
24958 (concat "[\r\n]\\(" org-outline-regexp "\\)") nil t)
24959 (match-beginning 1)
24960 (point-max)))
24961 nil)
24962 (org-cycle-hide-drawers 'children))))
24964 (defun org-make-options-regexp (kwds &optional extra)
24965 "Make a regular expression for keyword lines.
24966 KWDS is a list of keywords, as strings. Optional argument EXTRA,
24967 when non-nil, is a regexp matching keywords names."
24968 (concat "^[ \t]*#\\+\\("
24969 (regexp-opt kwds)
24970 (and extra (concat (and kwds "\\|") extra))
24971 "\\):[ \t]*\\(.*\\)"))
24973 ;; Make isearch reveal the necessary context
24974 (defun org-isearch-end ()
24975 "Reveal context after isearch exits."
24976 (when isearch-success ; only if search was successful
24977 (if (featurep 'xemacs)
24978 ;; Under XEmacs, the hook is run in the correct place,
24979 ;; we directly show the context.
24980 (org-show-context 'isearch)
24981 ;; In Emacs the hook runs *before* restoring the overlays.
24982 ;; So we have to use a one-time post-command-hook to do this.
24983 ;; (Emacs 22 has a special variable, see function `org-mode')
24984 (unless (and (boundp 'isearch-mode-end-hook-quit)
24985 isearch-mode-end-hook-quit)
24986 ;; Only when the isearch was not quitted.
24987 (org-add-hook 'post-command-hook 'org-isearch-post-command
24988 'append 'local)))))
24990 (defun org-isearch-post-command ()
24991 "Remove self from hook, and show context."
24992 (remove-hook 'post-command-hook 'org-isearch-post-command 'local)
24993 (org-show-context 'isearch))
24996 ;;;; Integration with and fixes for other packages
24998 ;;; Imenu support
25000 (defvar org-imenu-markers nil
25001 "All markers currently used by Imenu.")
25002 (make-variable-buffer-local 'org-imenu-markers)
25004 (defun org-imenu-new-marker (&optional pos)
25005 "Return a new marker for use by Imenu, and remember the marker."
25006 (let ((m (make-marker)))
25007 (move-marker m (or pos (point)))
25008 (push m org-imenu-markers)
25011 (defun org-imenu-get-tree ()
25012 "Produce the index for Imenu."
25013 (mapc (lambda (x) (move-marker x nil)) org-imenu-markers)
25014 (setq org-imenu-markers nil)
25015 (let* ((n org-imenu-depth)
25016 (re (concat "^" (org-get-limited-outline-regexp)))
25017 (subs (make-vector (1+ n) nil))
25018 (last-level 0)
25019 m level head0 head)
25020 (save-excursion
25021 (save-restriction
25022 (widen)
25023 (goto-char (point-max))
25024 (while (re-search-backward re nil t)
25025 (setq level (org-reduced-level (funcall outline-level)))
25026 (when (and (<= level n)
25027 (looking-at org-complex-heading-regexp)
25028 (setq head0 (org-match-string-no-properties 4)))
25029 (setq head (org-link-display-format head0)
25030 m (org-imenu-new-marker))
25031 (org-add-props head nil 'org-imenu-marker m 'org-imenu t)
25032 (if (>= level last-level)
25033 (push (cons head m) (aref subs level))
25034 (push (cons head (aref subs (1+ level))) (aref subs level))
25035 (loop for i from (1+ level) to n do (aset subs i nil)))
25036 (setq last-level level)))))
25037 (aref subs 1)))
25039 (eval-after-load "imenu"
25040 '(progn
25041 (add-hook 'imenu-after-jump-hook
25042 (lambda ()
25043 (if (derived-mode-p 'org-mode)
25044 (org-show-context 'org-goto))))))
25046 (defun org-link-display-format (link)
25047 "Replace a link with its the description.
25048 If there is no description, use the link target."
25049 (save-match-data
25050 (if (string-match org-bracket-link-analytic-regexp link)
25051 (replace-match (if (match-end 5)
25052 (match-string 5 link)
25053 (concat (match-string 1 link)
25054 (match-string 3 link)))
25055 nil t link)
25056 link)))
25058 (defun org-toggle-link-display ()
25059 "Toggle the literal or descriptive display of links."
25060 (interactive)
25061 (if org-descriptive-links
25062 (progn (org-remove-from-invisibility-spec '(org-link))
25063 (org-restart-font-lock)
25064 (setq org-descriptive-links nil))
25065 (progn (add-to-invisibility-spec '(org-link))
25066 (org-restart-font-lock)
25067 (setq org-descriptive-links t))))
25069 ;; Speedbar support
25071 (defvar org-speedbar-restriction-lock-overlay (make-overlay 1 1)
25072 "Overlay marking the agenda restriction line in speedbar.")
25073 (overlay-put org-speedbar-restriction-lock-overlay
25074 'face 'org-agenda-restriction-lock)
25075 (overlay-put org-speedbar-restriction-lock-overlay
25076 'help-echo "Agendas are currently limited to this item.")
25077 (org-detach-overlay org-speedbar-restriction-lock-overlay)
25079 (defun org-speedbar-set-agenda-restriction ()
25080 "Restrict future agenda commands to the location at point in speedbar.
25081 To get rid of the restriction, use \\[org-agenda-remove-restriction-lock]."
25082 (interactive)
25083 (require 'org-agenda)
25084 (let (p m tp np dir txt)
25085 (cond
25086 ((setq p (text-property-any (point-at-bol) (point-at-eol)
25087 'org-imenu t))
25088 (setq m (get-text-property p 'org-imenu-marker))
25089 (with-current-buffer (marker-buffer m)
25090 (goto-char m)
25091 (org-agenda-set-restriction-lock 'subtree)))
25092 ((setq p (text-property-any (point-at-bol) (point-at-eol)
25093 'speedbar-function 'speedbar-find-file))
25094 (setq tp (previous-single-property-change
25095 (1+ p) 'speedbar-function)
25096 np (next-single-property-change
25097 tp 'speedbar-function)
25098 dir (speedbar-line-directory)
25099 txt (buffer-substring-no-properties (or tp (point-min))
25100 (or np (point-max))))
25101 (with-current-buffer (find-file-noselect
25102 (let ((default-directory dir))
25103 (expand-file-name txt)))
25104 (unless (derived-mode-p 'org-mode)
25105 (user-error "Cannot restrict to non-Org-mode file"))
25106 (org-agenda-set-restriction-lock 'file)))
25107 (t (user-error "Don't know how to restrict Org-mode's agenda")))
25108 (move-overlay org-speedbar-restriction-lock-overlay
25109 (point-at-bol) (point-at-eol))
25110 (setq current-prefix-arg nil)
25111 (org-agenda-maybe-redo)))
25113 (defvar speedbar-file-key-map)
25114 (declare-function speedbar-add-supported-extension "speedbar" (extension))
25115 (eval-after-load "speedbar"
25116 '(progn
25117 (speedbar-add-supported-extension ".org")
25118 (define-key speedbar-file-key-map "<" 'org-speedbar-set-agenda-restriction)
25119 (define-key speedbar-file-key-map "\C-c\C-x<" 'org-speedbar-set-agenda-restriction)
25120 (define-key speedbar-file-key-map ">" 'org-agenda-remove-restriction-lock)
25121 (define-key speedbar-file-key-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
25122 (add-hook 'speedbar-visiting-tag-hook
25123 (lambda () (and (derived-mode-p 'org-mode) (org-show-context 'org-goto))))))
25125 ;;; Fixes and Hacks for problems with other packages
25127 (defun org--flyspell-object-check-p (element)
25128 "Non-nil when Flyspell can check object at point.
25129 ELEMENT is the element at point."
25130 (let ((object (save-excursion
25131 (when (org-looking-at-p "\\>") (backward-char))
25132 (org-element-context element))))
25133 (case (org-element-type object)
25134 ;; Prevent checks in links due to keybinding conflict with
25135 ;; Flyspell.
25136 ((code entity export-snippet inline-babel-call
25137 inline-src-block line-break latex-fragment link macro
25138 statistics-cookie target timestamp verbatim)
25139 nil)
25140 (footnote-reference
25141 ;; Only in inline footnotes, within the definition.
25142 (and (eq (org-element-property :type object) 'inline)
25143 (< (save-excursion
25144 (goto-char (org-element-property :begin object))
25145 (search-forward ":" nil t 2))
25146 (point))))
25147 (otherwise t))))
25149 (defun org-mode-flyspell-verify ()
25150 "Function used for `flyspell-generic-check-word-predicate'."
25151 (if (org-at-heading-p)
25152 ;; At a headline or an inlinetask, check title only. This is
25153 ;; faster than relying on `org-element-at-point'.
25154 (and (save-excursion (beginning-of-line)
25155 (and (let ((case-fold-search t))
25156 (not (looking-at "\\*+ END[ \t]*$")))
25157 (looking-at org-complex-heading-regexp)))
25158 (match-beginning 4)
25159 (>= (point) (match-beginning 4))
25160 (or (not (match-beginning 5))
25161 (< (point) (match-beginning 5))))
25162 (let* ((element (org-element-at-point))
25163 (post-affiliated (org-element-property :post-affiliated element)))
25164 (cond
25165 ;; Ignore checks in all affiliated keywords but captions.
25166 ((< (point) post-affiliated)
25167 (and (save-excursion
25168 (beginning-of-line)
25169 (let ((case-fold-search t)) (looking-at "[ \t]*#\\+CAPTION:")))
25170 (> (point) (match-end 0))
25171 (org--flyspell-object-check-p element)))
25172 ;; Ignore checks in LOGBOOK (or equivalent) drawer.
25173 ((let ((log (org-log-into-drawer)))
25174 (and log
25175 (let ((drawer (org-element-lineage element '(drawer))))
25176 (and drawer
25177 (eq (compare-strings
25178 log nil nil
25179 (org-element-property :drawer-name drawer) nil nil t)
25180 t)))))
25181 nil)
25183 (case (org-element-type element)
25184 ((comment quote-section) t)
25185 (comment-block
25186 ;; Allow checks between block markers, not on them.
25187 (and (> (line-beginning-position) post-affiliated)
25188 (save-excursion
25189 (end-of-line)
25190 (skip-chars-forward " \r\t\n")
25191 (< (point) (org-element-property :end element)))))
25192 ;; Arbitrary list of keywords where checks are meaningful.
25193 ;; Make sure point is on the value part of the element.
25194 (keyword
25195 (and (member (org-element-property :key element)
25196 '("DESCRIPTION" "TITLE"))
25197 (save-excursion
25198 (search-backward ":" (line-beginning-position) t))))
25199 ;; Check is globally allowed in paragraphs verse blocks and
25200 ;; table rows (after affiliated keywords) but some objects
25201 ;; must not be affected.
25202 ((paragraph table-row verse-block)
25203 (let ((cbeg (org-element-property :contents-begin element))
25204 (cend (org-element-property :contents-end element)))
25205 (and cbeg (>= (point) cbeg) (< (point) cend)
25206 (org--flyspell-object-check-p element))))))))))
25207 (put 'org-mode 'flyspell-mode-predicate 'org-mode-flyspell-verify)
25209 (defun org-remove-flyspell-overlays-in (beg end)
25210 "Remove flyspell overlays in region."
25211 (and (org-bound-and-true-p flyspell-mode)
25212 (fboundp 'flyspell-delete-region-overlays)
25213 (flyspell-delete-region-overlays beg end)))
25215 (defvar flyspell-delayed-commands)
25216 (eval-after-load "flyspell"
25217 '(add-to-list 'flyspell-delayed-commands 'org-self-insert-command))
25219 ;; Make `bookmark-jump' shows the jump location if it was hidden.
25220 (eval-after-load "bookmark"
25221 '(if (boundp 'bookmark-after-jump-hook)
25222 ;; We can use the hook
25223 (add-hook 'bookmark-after-jump-hook 'org-bookmark-jump-unhide)
25224 ;; Hook not available, use advice
25225 (defadvice bookmark-jump (after org-make-visible activate)
25226 "Make the position visible."
25227 (org-bookmark-jump-unhide))))
25229 ;; Make sure saveplace shows the location if it was hidden
25230 (eval-after-load "saveplace"
25231 '(defadvice save-place-find-file-hook (after org-make-visible activate)
25232 "Make the position visible."
25233 (org-bookmark-jump-unhide)))
25235 ;; Make sure ecb shows the location if it was hidden
25236 (eval-after-load "ecb"
25237 '(defadvice ecb-method-clicked (after esf/org-show-context activate)
25238 "Make hierarchy visible when jumping into location from ECB tree buffer."
25239 (if (derived-mode-p 'org-mode)
25240 (org-show-context))))
25242 (defun org-bookmark-jump-unhide ()
25243 "Unhide the current position, to show the bookmark location."
25244 (and (derived-mode-p 'org-mode)
25245 (or (outline-invisible-p)
25246 (save-excursion (goto-char (max (point-min) (1- (point))))
25247 (outline-invisible-p)))
25248 (org-show-context 'bookmark-jump)))
25250 (defun org-mark-jump-unhide ()
25251 "Make the point visible with `org-show-context' after jumping to the mark."
25252 (when (and (derived-mode-p 'org-mode)
25253 (outline-invisible-p))
25254 (org-show-context 'mark-goto)))
25256 (eval-after-load "simple"
25257 '(defadvice pop-to-mark-command (after org-make-visible activate)
25258 "Make the point visible with `org-show-context'."
25259 (org-mark-jump-unhide)))
25261 (eval-after-load "simple"
25262 '(defadvice exchange-point-and-mark (after org-make-visible activate)
25263 "Make the point visible with `org-show-context'."
25264 (org-mark-jump-unhide)))
25266 (eval-after-load "simple"
25267 '(defadvice pop-global-mark (after org-make-visible activate)
25268 "Make the point visible with `org-show-context'."
25269 (org-mark-jump-unhide)))
25271 ;; Make session.el ignore our circular variable
25272 (defvar session-globals-exclude)
25273 (eval-after-load "session"
25274 '(add-to-list 'session-globals-exclude 'org-mark-ring))
25276 ;;;; Finish up
25278 (provide 'org)
25280 (run-hooks 'org-load-hook)
25282 ;;; org.el ends here